In [1]:
!pip install bs4
!pip install requests
Requirement already satisfied: bs4 in c:\users\hp\anaconda3\lib\site-packages (0.0.2)
Requirement already satisfied: beautifulsoup4 in c:\users\hp\anaconda3\lib\site-packages (from bs4) (4.12.2)
Requirement already satisfied: soupsieve>1.2 in c:\users\hp\anaconda3\lib\site-packages (from beautifulsoup4->bs4) (2.4)
Requirement already satisfied: requests in c:\users\hp\anaconda3\lib\site-packages (2.31.0)
Requirement already satisfied: charset-normalizer<4,>=2 in c:\users\hp\anaconda3\lib\site-packages (from requests) (2.0.4)
Requirement already satisfied: idna<4,>=2.5 in c:\users\hp\anaconda3\lib\site-packages (from requests) (3.4)
Requirement already satisfied: urllib3<3,>=1.21.1 in c:\users\hp\anaconda3\lib\site-packages (from requests) (1.26.16)
Requirement already satisfied: certifi>=2017.4.17 in c:\users\hp\anaconda3\lib\site-packages (from requests) (2023.7.22)
In [2]:
from bs4 import BeautifulSoup
import requests

Write a python program to display IMDB’s Top rated 100 Indian movies’ data https://www.imdb.com/list/ls056092300/ (i.e. name, rating, year ofrelease) and make data frame

In [42]:
page = requests.get('https://www.imdb.com/list/ls056092300/')
In [43]:
page
Out[43]:
<Response [403]>
In [44]:
soup = BeautifulSoup(page.content)
soup
Out[44]:
<html>
<head><title>403 Forbidden</title></head>
<body>
<center><h1>403 Forbidden</h1></center>
</body>
</html>

Name

In [45]:
name = soup.find('div', class_="ipc-title__text")
name
In [ ]:
name.text

Rating

In [46]:
rating = soup.find('span', class_="ipc-rating-star--rate")
rating
In [ ]:
rating.text

year of release

In [49]:
yearof_release = soup.find('span', class_="sc-b189961a-8 hCbzGp dli-title-metadata-item")
yearof_release
In [ ]:
yearof_release.text

scraping Multiple title

In [50]:
name = []

for i in soup.find_all('div',class_="ipc-title__text"):
        name.append(i.text)
        
name
Out[50]:
[]
In [51]:
rating = []

for i in soup.find_all('div',class_="ipc-rating-star--rate"):
        rating.append(i.text)
        
rating
Out[51]:
[]
In [52]:
yearof_release = []

for i in soup.find_all('div',class_="sc-b189961a-8 hCbzGp dli-title-metadata-item"):
        yearof_release.append(i.text)
        
yearof_release
Out[52]:
[]
In [53]:
print(len(name),len(rating),len(yearof_release))
0 0 0
In [54]:
import pandas as pd
df = pd.DataFrame({'Name':name, 'Rating':rating, 'Yearof_release':yearof_release,'Images_url':images})
df
Out[54]:
Name Rating Yearof_release

2) Write a python program to scrape details of all the posts from https://www.patreon.com/coreyms .Scrape the heading, date, content and the likes for the video from the link for the youtube video from the post.

In [55]:
page = requests.get('https://www.patreon.com/coreyms')
In [56]:
page
Out[56]:
<Response [200]>
In [57]:
soup = BeautifulSoup(page.content)
soup
Out[57]:
<!DOCTYPE html>
<html><head><meta charset="utf-8"/><script type="text/javascript">
            window.patreonConfig = {"apiServer":"www.patreon.com/api","nionDisableDefaultIncludes":true,"formattingLocale":"en-US","eventLoggingPlatform":"Web","isWebView":false,"pathname":"/\u003cstring:campaign_identifier\u003e","is_impersonating":false,"csrfSignature":"Ob1rdmjhHsJuXKCEYVaHOnlfHlLdF9IWo-68ymVc6sY"};
          </script><meta content="width=device-width, initial-scale=1.0, viewport-fit=cover" name="viewport"/><meta content="artists, creators, patron, sponsor, music, videos" name="keywords"/><meta content="201564" property="fb:admins"/><meta content="130127590512253" property="fb:app_id"/><meta content="IE=edge" http-equiv="X-UA-Compatible"/><meta content="@Patreon" property="twitter:site"/><meta content="Patreon" property="og:site-name"/><meta content="Patreon" prefix="og: http://ogp.me/ns#" property="og:site_name"/><meta content="Patreon" name="apple-mobile-web-app-title"/><meta content="Patreon" name="application-name"/><link as="fetch" href="https://www.patreon.com/api/experiments/assignments?json-api-version=1.0&amp;json-api-use-default-includes=false&amp;include=[]" rel="prefetch"/><link href="https://c5.patreon.com/external/favicon/rebrand/pwa-192.png?v=af5597c2ef" rel="apple-touch-icon" sizes="180x180"/><link href="https://c5.patreon.com/external/favicon/rebrand/favicon-32.png?v=af5597c2ef" rel="icon" sizes="32x32" type="image/png"/><link href="https://c5.patreon.com/external/favicon/rebrand/favicon-16.png?v=af5597c2ef" rel="icon" sizes="16x16" type="image/png"/><link href="https://c5.patreon.com/external/favicon/rebrand/manifest.json?v=af5597c2ef" rel="manifest"/><link href="https://c5.patreon.com/external/favicon/rebrand/favicon.svg?v=af5597c2ef" rel="icon" type="image/svg+xml"/><link href="https://c5.patreon.com/external/favicon/favicon-masked.svg?v=af5597c2ef" rel="mask-icon"/><link href="https://c5.patreon.com/external/favicon/rebrand/favicon.ico?v=af5597c2ef" rel="shortcut icon"/><meta content="https://c5.patreon.com/external/favicon/rebrand/browserconfig.xml?v=af5597c2ef" name="msapplication-config"/><meta content="#f5f5f5" name="theme-color"/><meta content="#f5f5f5" name="msapplication-TileColor"/><title>Corey Schafer | creating Programming Tutorials | Patreon</title><meta content="Corey Schafer | creating Programming Tutorials | Patreon" name="title"/><meta content="Get more from Corey Schafer on Patreon" property="twitter:title"/><meta content="Get more from Corey Schafer on Patreon" prefix="og: http://ogp.me/ns#" property="og:title"/><meta content="creating Programming Tutorials" name="description"/><meta content="creating Programming Tutorials" property="twitter:description"/><meta content="creating Programming Tutorials" prefix="og: http://ogp.me/ns#" property="og:description"/><link href="https://www.patreon.com/coreyms" rel="canonical"/><meta content="https://www.patreon.com/coreyms" name="canonicalURL"/><meta content="https://www.patreon.com/coreyms" prefix="og: http://ogp.me/ns#" property="og:url"/><meta content="https://www.patreon.com/coreyms" property="twitter:url"/><link href="https://c7.patreon.com/https%3A%2F%2Fwww.patreon.com%2F%2Fcard-teaser-image%2Fcreator%2F125642%3Fc=140039004642529571/selector/%23creator-teaser%2C.png" rel="image_src"/><meta content="https://c7.patreon.com/https%3A%2F%2Fwww.patreon.com%2F%2Fcard-teaser-image%2Fcreator%2F125642%3Fc=140039004642529571/selector/%23creator-teaser%2C.png" name="image"/><meta content="https://c7.patreon.com/https%3A%2F%2Fwww.patreon.com%2F%2Fcard-teaser-image%2Fcreator%2F125642%3Fc=140039004642529571/selector/%23creator-teaser%2C.png" property="twitter:image"/><meta content="https://c7.patreon.com/https%3A%2F%2Fwww.patreon.com%2F%2Fcard-teaser-image%2Fcreator%2F125642%3Fc=140039004642529571/selector/%23creator-teaser%2C.png" prefix="og: http://ogp.me/ns#" property="og:image"/><meta content="https://c7.patreon.com/https%3A%2F%2Fwww.patreon.com%2F%2Fcard-teaser-image%2Fcreator%2F125642%3Fc=140039004642529571/selector/%23creator-teaser%2C.png" prefix="og: http://ogp.me/ns#" property="og:image:url"/><meta content="summary_large_image" name="twitter:card"/><meta content="article" prefix="og: http://ogp.me/ns#" property="og:type"/><script type="application/ld+json">{
	"@context": "http://schema.org",
	"@type": "ProfilePage",
	"author": {
		"@type": "Person",
		"name": "Corey Schafer",
		"image": {
			"@type": "ImageObject",
			"contentUrl": "https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/1c891c2e3fed471599817e87388721da/eyJ3Ijo2MjB9/1.jpg?token-time=1725494400&token-hash=g4jjhugzJi4nHJK8f-WJOCCJGXDvLqOp98vGQ3HFIvA%3D",
			"thumbnailUrl": "https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/1c891c2e3fed471599817e87388721da/eyJoIjozNjAsInciOjM2MH0%3D/1.jpg?token-time=1725494400&token-hash=IowmM8RW8rSVeg4MnnpvTsOZwHy4JL-5vIr7ze8tOh0%3D"
		}
	},
	"about": {
		"@type": "Thing",
		"description": "Hi There,My name is Corey Schafer. I make YouTube tutorials and Write Blog Articles that teach beginner/intermediate programming, software engineering, development, and design.Topics Included in my videos and blog:Python, Software Engineering, Git, Programming Terms, JavaScript, Development Environments, Workflows, Development, Web Design, Geographic Information Systems (GIS), Mac Tips, and more.With your support, I'll be able to produce more high quality educational videos at a faster rate. I am extremely grateful for any support.Thank You!"
	},
	"primaryImageOfPage": {
		"@type": "ImageObject",
		"representativeOfPage": true,
		"contentUrl": "https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/4acd48bc73f64852815928f4cb952854/eyJ3IjoxNjAwLCJ3ZSI6MX0%3D/1.jpg?token-time=1725408000&token-hash=QFn2qv7-mYjOh8gX3WCcJlFvHRu4JwXLeDhZRYI7dLo%3D",
		"thumbnailUrl": "https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/4acd48bc73f64852815928f4cb952854/eyJ3Ijo5NjAsIndlIjoxfQ%3D%3D/1.jpg?token-time=1725408000&token-hash=Flw8dS6ee05xCX-yKqwHWQW8gMi-CryYO8m9ibJzAPo%3D"
	},
	"datePublished": "2014-11-23T23:20:47.000+00:00",
	"sameAs": [
		"https://www.instagram.com/coreymschafer",
		"https://twitter.com/CoreyMSchafer"
	]
}</script><script>
  // Stub airgap before it's initialized.
  self.airgap = {
    readyQueue: [],
    ready(callback) {
      this.readyQueue.push(callback);
    },
    // Block image requests from airgap telemetry.
    suppressTelemetry: {
      requestConditions: [({
        type
      }) => type === 'DOM:image'],
    },
  };

  // Pass user authentication token to Transcend to sync preferences.
  self.airgap.ready(async (airgap) => {
    await airgap.sync({
      auth: ''
    });
  });
  </script><meta content="43" name="next-head-count"/><link as="font" crossorigin="anonymous" href="https://c5.patreon.com/external/fonts/oracle/PatreonOraclePlusVariable-Regular.woff2" rel="preload" type="font/woff2"/><style>
                @font-face {
                  font-family: 'ABC Oracle Plus Variable';
                  src: url('https://c5.patreon.com/external/fonts/oracle/PatreonOraclePlusVariable-Regular.woff2') format('woff2'),
                    url('https://c5.patreon.com/external/fonts/oracle/PatreonOraclePlusVariable-Regular.woff') format('woff');
                  font-weight: 1 999;
                  font-display: fallback;
                  font-style: oblique 0deg 20deg;
                }
              </style><script data-nscript="beforeInteractive" id="google-app-id">google_app_id = "84775188414-3b1nvt8gl8nnsq5djedm232317js24ej.apps.googleusercontent.com";</script><noscript data-n-css=""></noscript><script defer="" nomodule="" src="https://c13.patreon.com/ce5c8c1ac3d2eb29e386bd0c124f078ff27f2730/_next/static/chunks/polyfills-c67a75d1b6f99dc8.js"></script><script data-backend-sync="on" data-cfasync="false" data-nscript="beforeInteractive" data-prompt="auto" data-protect="off" data-regulate-cookies="on" data-report-only="off" data-unknown-cookie-policy="block" defer="" src="https://transcend-cdn.com/cm/8dec6ba2-a601-4c04-a3ba-e4d5b45000f4/airgap.js"></script><script data-nscript="beforeInteractive" defer="" src="https://apis.google.com/js/api:client.js"></script><script async="" data-nscript="beforeInteractive" defer="" src="https://accounts.google.com/gsi/client"></script><script data-nscript="beforeInteractive" defer="" src="https://appleid.cdn-apple.com/appleauth/static/jsapi/appleid/1/en_US/appleid.auth.js"></script><script defer="" src="https://c13.patreon.com/ce5c8c1ac3d2eb29e386bd0c124f078ff27f2730/_next/static/chunks/webpack-8dad7700be353075.js"></script><script defer="" src="https://c13.patreon.com/ce5c8c1ac3d2eb29e386bd0c124f078ff27f2730/_next/static/chunks/framework-5b4b4bd7d64ffcfa.js"></script><script defer="" src="https://c13.patreon.com/ce5c8c1ac3d2eb29e386bd0c124f078ff27f2730/_next/static/chunks/main-52c29a3ca99c7615.js"></script><script defer="" src="https://c13.patreon.com/ce5c8c1ac3d2eb29e386bd0c124f078ff27f2730/_next/static/chunks/pages/_app-7e566fbcdb3bb8e2.js"></script><script defer="" src="https://c13.patreon.com/ce5c8c1ac3d2eb29e386bd0c124f078ff27f2730/_next/static/chunks/75fc9c18-373be0c5974a9111.js"></script><script defer="" src="https://c13.patreon.com/ce5c8c1ac3d2eb29e386bd0c124f078ff27f2730/_next/static/chunks/2852872c-657a224261f762b2.js"></script><script defer="" src="https://c13.patreon.com/ce5c8c1ac3d2eb29e386bd0c124f078ff27f2730/_next/static/chunks/fc56bfa5-e49782f58abae3cb.js"></script><script defer="" src="https://c13.patreon.com/ce5c8c1ac3d2eb29e386bd0c124f078ff27f2730/_next/static/chunks/f9afc4fe-a215d74be8c1c512.js"></script><script defer="" src="https://c13.patreon.com/ce5c8c1ac3d2eb29e386bd0c124f078ff27f2730/_next/static/chunks/58588-e0e06435aa683efe.js"></script><script defer="" src="https://c13.patreon.com/ce5c8c1ac3d2eb29e386bd0c124f078ff27f2730/_next/static/chunks/91036-5f8ea69e1655b108.js"></script><script defer="" src="https://c13.patreon.com/ce5c8c1ac3d2eb29e386bd0c124f078ff27f2730/_next/static/chunks/47903-998e8a1dd055161e.js"></script><script defer="" src="https://c13.patreon.com/ce5c8c1ac3d2eb29e386bd0c124f078ff27f2730/_next/static/chunks/54113-7579a20b9c2404e3.js"></script><script defer="" src="https://c13.patreon.com/ce5c8c1ac3d2eb29e386bd0c124f078ff27f2730/_next/static/chunks/63494-5c9dd9cb5ccdc007.js"></script><script defer="" src="https://c13.patreon.com/ce5c8c1ac3d2eb29e386bd0c124f078ff27f2730/_next/static/chunks/92872-ed68e4606e4c0aea.js"></script><script defer="" src="https://c13.patreon.com/ce5c8c1ac3d2eb29e386bd0c124f078ff27f2730/_next/static/chunks/30917-e01ddad104f611f9.js"></script><script defer="" src="https://c13.patreon.com/ce5c8c1ac3d2eb29e386bd0c124f078ff27f2730/_next/static/chunks/80665-ada1dfa18ad75f37.js"></script><script defer="" src="https://c13.patreon.com/ce5c8c1ac3d2eb29e386bd0c124f078ff27f2730/_next/static/chunks/77279-6ba1548a9fe80c2e.js"></script><script defer="" src="https://c13.patreon.com/ce5c8c1ac3d2eb29e386bd0c124f078ff27f2730/_next/static/chunks/16133-d15e89f1aba8dfb0.js"></script><script defer="" src="https://c13.patreon.com/ce5c8c1ac3d2eb29e386bd0c124f078ff27f2730/_next/static/chunks/52211-6dc189ee6046afe2.js"></script><script defer="" src="https://c13.patreon.com/ce5c8c1ac3d2eb29e386bd0c124f078ff27f2730/_next/static/chunks/79657-6e0dbc9907f9d888.js"></script><script defer="" src="https://c13.patreon.com/ce5c8c1ac3d2eb29e386bd0c124f078ff27f2730/_next/static/chunks/52810-2b450bc9d9738acb.js"></script><script defer="" src="https://c13.patreon.com/ce5c8c1ac3d2eb29e386bd0c124f078ff27f2730/_next/static/chunks/98325-dfe83f62668ec34d.js"></script><script defer="" src="https://c13.patreon.com/ce5c8c1ac3d2eb29e386bd0c124f078ff27f2730/_next/static/chunks/65943-27edce6655e116b6.js"></script><script defer="" src="https://c13.patreon.com/ce5c8c1ac3d2eb29e386bd0c124f078ff27f2730/_next/static/chunks/26947-623ecf5ab7b91133.js"></script><script defer="" src="https://c13.patreon.com/ce5c8c1ac3d2eb29e386bd0c124f078ff27f2730/_next/static/chunks/58446-3506bad8819b3055.js"></script><script defer="" src="https://c13.patreon.com/ce5c8c1ac3d2eb29e386bd0c124f078ff27f2730/_next/static/chunks/23278-deabd30393080d02.js"></script><script defer="" src="https://c13.patreon.com/ce5c8c1ac3d2eb29e386bd0c124f078ff27f2730/_next/static/chunks/90252-91c54c203b06e60e.js"></script><script defer="" src="https://c13.patreon.com/ce5c8c1ac3d2eb29e386bd0c124f078ff27f2730/_next/static/chunks/89019-a37edb3c0dbc7872.js"></script><script defer="" src="https://c13.patreon.com/ce5c8c1ac3d2eb29e386bd0c124f078ff27f2730/_next/static/chunks/33036-e05afacd1029f357.js"></script><script defer="" src="https://c13.patreon.com/ce5c8c1ac3d2eb29e386bd0c124f078ff27f2730/_next/static/chunks/41089-185ce79ca532b60f.js"></script><script defer="" src="https://c13.patreon.com/ce5c8c1ac3d2eb29e386bd0c124f078ff27f2730/_next/static/chunks/79977-e97dcab31f407769.js"></script><script defer="" src="https://c13.patreon.com/ce5c8c1ac3d2eb29e386bd0c124f078ff27f2730/_next/static/chunks/40703-a5ba4bad21e88521.js"></script><script defer="" src="https://c13.patreon.com/ce5c8c1ac3d2eb29e386bd0c124f078ff27f2730/_next/static/chunks/42993-242966284d238493.js"></script><script defer="" src="https://c13.patreon.com/ce5c8c1ac3d2eb29e386bd0c124f078ff27f2730/_next/static/chunks/18800-261a21407cc684ea.js"></script><script defer="" src="https://c13.patreon.com/ce5c8c1ac3d2eb29e386bd0c124f078ff27f2730/_next/static/chunks/95799-529a2030539f1877.js"></script><script defer="" src="https://c13.patreon.com/ce5c8c1ac3d2eb29e386bd0c124f078ff27f2730/_next/static/chunks/65088-5a935f7e09173f79.js"></script><script defer="" src="https://c13.patreon.com/ce5c8c1ac3d2eb29e386bd0c124f078ff27f2730/_next/static/chunks/87167-244659693790b792.js"></script><script defer="" src="https://c13.patreon.com/ce5c8c1ac3d2eb29e386bd0c124f078ff27f2730/_next/static/chunks/32832-3cf6b7940abdf17e.js"></script><script defer="" src="https://c13.patreon.com/ce5c8c1ac3d2eb29e386bd0c124f078ff27f2730/_next/static/chunks/94122-05fd3ddd5c355fa8.js"></script><script defer="" src="https://c13.patreon.com/ce5c8c1ac3d2eb29e386bd0c124f078ff27f2730/_next/static/chunks/21932-62af094bbaabaca1.js"></script><script defer="" src="https://c13.patreon.com/ce5c8c1ac3d2eb29e386bd0c124f078ff27f2730/_next/static/chunks/85307-5f5e39295d13f64f.js"></script><script defer="" src="https://c13.patreon.com/ce5c8c1ac3d2eb29e386bd0c124f078ff27f2730/_next/static/chunks/83285-6b78354804c8e608.js"></script><script defer="" src="https://c13.patreon.com/ce5c8c1ac3d2eb29e386bd0c124f078ff27f2730/_next/static/chunks/32395-1024a419d6453384.js"></script><script defer="" src="https://c13.patreon.com/ce5c8c1ac3d2eb29e386bd0c124f078ff27f2730/_next/static/chunks/9181-5bf4e9896d75459c.js"></script><script defer="" src="https://c13.patreon.com/ce5c8c1ac3d2eb29e386bd0c124f078ff27f2730/_next/static/chunks/76957-f2e4b9e96c350041.js"></script><script defer="" src="https://c13.patreon.com/ce5c8c1ac3d2eb29e386bd0c124f078ff27f2730/_next/static/chunks/61222-649093c74657a4f9.js"></script><script defer="" src="https://c13.patreon.com/ce5c8c1ac3d2eb29e386bd0c124f078ff27f2730/_next/static/chunks/18320-fa259b7dcc1f868d.js"></script><script defer="" src="https://c13.patreon.com/ce5c8c1ac3d2eb29e386bd0c124f078ff27f2730/_next/static/chunks/54897-56e3925cfbf95f1a.js"></script><script defer="" src="https://c13.patreon.com/ce5c8c1ac3d2eb29e386bd0c124f078ff27f2730/_next/static/chunks/43813-97037010720ef5fd.js"></script><script defer="" src="https://c13.patreon.com/ce5c8c1ac3d2eb29e386bd0c124f078ff27f2730/_next/static/chunks/pages/creatorPublicPage/%5Bvanity%5D/%5B%5B...tab%5D%5D-9f61092f9e276af2.js"></script><script defer="" src="https://c13.patreon.com/ce5c8c1ac3d2eb29e386bd0c124f078ff27f2730/_next/static/Mr4Fa2XN6Xfe0FnPAXhJb/_buildManifest.js"></script><script defer="" src="https://c13.patreon.com/ce5c8c1ac3d2eb29e386bd0c124f078ff27f2730/_next/static/Mr4Fa2XN6Xfe0FnPAXhJb/_ssgManifest.js"></script><style data-styled="" data-styled-version="5.3.3">.iFMLae{display:block;border-radius:inherit;object-fit:cover;background-color:var(--global-constant-white-default);position:absolute;width:100%;height:100%;inset:0;}/*!sc*/
data-styled.g1[id="sc-bdvvtL"]{content:"iFMLae,"}/*!sc*/
.dRLyBe{position:relative;border-radius:clamp(var(--global-radius-sm),15%,var(--global-radius-lg));width:120px;min-width:120px;height:120px;}/*!sc*/
.dRLyBe::after{content:'';position:absolute;inset:0;border-radius:inherit;box-shadow:inset 0 0 0 var(--global-borderWidth-thin) var(--global-border-muted-default);}/*!sc*/
.fYqQWC{position:relative;border-radius:var(--global-radius-circle);width:48px;min-width:48px;height:48px;}/*!sc*/
.fYqQWC::after{content:'';position:absolute;inset:0;border-radius:inherit;box-shadow:inset 0 0 0 var(--global-borderWidth-thin) var(--global-border-muted-default);}/*!sc*/
data-styled.g2[id="sc-gsDKAQ"]{content:"dRLyBe,fYqQWC,"}/*!sc*/
.kyvGZN{font-family:var(--global-fontStack-body);font-weight:var(--global-fontWeights-body-default);-webkit-letter-spacing:var(--global-letterSpacing-body);-moz-letter-spacing:var(--global-letterSpacing-body);-ms-letter-spacing:var(--global-letterSpacing-body);letter-spacing:var(--global-letterSpacing-body);line-height:var(--global-lineHeights-body);font-size:var(--global-fontSizes-body-md);color:var(--global-content-regular-default);margin:0;}/*!sc*/
.kyvGZN strong,.kyvGZN b{font-weight:var(--global-fontWeights-body-bold);}/*!sc*/
.kyvGZN em{font-style:italic;}/*!sc*/
.kyvGZN s{-webkit-text-decoration:line-through;text-decoration:line-through;}/*!sc*/
.fiyzGe{font-family:var(--global-fontStack-body);font-weight:var(--global-fontWeights-body-default);-webkit-letter-spacing:var(--global-letterSpacing-body);-moz-letter-spacing:var(--global-letterSpacing-body);-ms-letter-spacing:var(--global-letterSpacing-body);letter-spacing:var(--global-letterSpacing-body);line-height:var(--global-lineHeights-body);font-size:var(--global-fontSizes-body-md);color:var(--global-content-muted-default);margin:0;}/*!sc*/
.fiyzGe strong,.fiyzGe b{font-weight:var(--global-fontWeights-body-bold);}/*!sc*/
.fiyzGe em{font-style:italic;}/*!sc*/
.fiyzGe s{-webkit-text-decoration:line-through;text-decoration:line-through;}/*!sc*/
.gDwjmJ{font-family:var(--global-fontStack-body);font-weight:var(--global-fontWeights-body-default);-webkit-letter-spacing:var(--global-letterSpacing-body);-moz-letter-spacing:var(--global-letterSpacing-body);-ms-letter-spacing:var(--global-letterSpacing-body);letter-spacing:var(--global-letterSpacing-body);line-height:var(--global-lineHeights-body);font-size:var(--global-fontSizes-body-sm);color:var(--global-content-muted-default);margin:0;}/*!sc*/
.gDwjmJ strong,.gDwjmJ b{font-weight:var(--global-fontWeights-body-bold);}/*!sc*/
.gDwjmJ em{font-style:italic;}/*!sc*/
.gDwjmJ s{-webkit-text-decoration:line-through;text-decoration:line-through;}/*!sc*/
data-styled.g3[id="sc-dkPtRN"]{content:"kyvGZN,fiyzGe,gDwjmJ,"}/*!sc*/
.gtwjjn{display:inline-block;vertical-align:unset;}/*!sc*/
.gtwjjn svg{display:block;fill:var(--global-primary-onMuted-default);width:24px;height:24px;}/*!sc*/
@media (min-width:36.75rem){.gtwjjn svg{width:20px;height:20px;}}/*!sc*/
.kzaoWz{display:inline-block;vertical-align:middle;}/*!sc*/
.kzaoWz svg{display:block;fill:var(--global-content-muted-default);width:24px;height:24px;}/*!sc*/
.jTjmcT{display:inline-block;vertical-align:unset;}/*!sc*/
.jTjmcT svg{display:block;fill:var(--global-content-muted-default);width:24px;height:24px;}/*!sc*/
@media (min-width:36.75rem){.jTjmcT svg{width:20px;height:20px;}}/*!sc*/
.fgpqcx{display:inline-block;vertical-align:unset;}/*!sc*/
.fgpqcx svg{display:block;fill:var(--icon-color);width:24px;height:24px;}/*!sc*/
.dIslBw{display:inline-block;vertical-align:unset;}/*!sc*/
.dIslBw svg{display:block;fill:var(--global-content-regular-default);width:24px;height:24px;}/*!sc*/
@media (min-width:36.75rem){.dIslBw svg{width:20px;height:20px;}}/*!sc*/
.hhhOWu{display:inline-block;vertical-align:unset;}/*!sc*/
.hhhOWu svg{display:block;fill:currentColor;width:20px;height:20px;}/*!sc*/
.XDBWy{display:inline-block;vertical-align:unset;}/*!sc*/
.XDBWy svg{display:block;fill:var(--global-constant-black-default);width:24px;height:24px;}/*!sc*/
@media (min-width:36.75rem){.XDBWy svg{width:20px;height:20px;}}/*!sc*/
data-styled.g5[id="sc-eCImPb"]{content:"gtwjjn,kzaoWz,jTjmcT,fgpqcx,dIslBw,hhhOWu,XDBWy,"}/*!sc*/
.cmGSBk{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-column-gap:4px;column-gap:4px;visibility:visible;padding:0;margin:auto 0;}/*!sc*/
data-styled.g9[id="sc-furwcr"]{content:"cmGSBk,"}/*!sc*/
.hNVLeS{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:100%;white-space:nowrap;padding:0 0 0 0;margin:8px 0;}/*!sc*/
@media (min-width:36.75rem){.hNVLeS{margin:10px 0;}}/*!sc*/
.gqryOG{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:100%;white-space:nowrap;padding:0 0 0 4px;margin:8px 0;}/*!sc*/
@media (min-width:36.75rem){.gqryOG{margin:10px 0;}}/*!sc*/
.jQIboX{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:100%;white-space:nowrap;padding:0 0 0 0;margin:8px 0;}/*!sc*/
@media (min-width:36.75rem){.jQIboX{margin:4px 0;}}/*!sc*/
data-styled.g10[id="sc-pVTFL"]{content:"hNVLeS,gqryOG,jQIboX,"}/*!sc*/
.inFiZu{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative;box-sizing:border-box;-webkit-text-decoration:none;text-decoration:none;color:var(--global-primary-onMuted-default);background-color:transparent;border:var(--global-borderWidth-thin) solid transparent;padding:0;border-radius:var(--global-radius-md);outline-offset:0;white-space:unset;-webkit-transition:var(--global-transition-regular-easing) var(--global-transition-regular-duration);transition:var(--global-transition-regular-easing) var(--global-transition-regular-duration);font-size:var(--component-fontSizes-button-md);font-family:var(--global-fontStack-button);font-weight:var(--component-fontWeights-button-default);-webkit-letter-spacing:var(--component-letterSpacing-button);-moz-letter-spacing:var(--component-letterSpacing-button);-ms-letter-spacing:var(--component-letterSpacing-button);letter-spacing:var(--component-letterSpacing-button);line-height:var(--component-lineHeights-button);}/*!sc*/
.inFiZu:hover{background-color:var(--global-secondary-muted-hover);border:var(--global-borderWidth-thin) solid transparent;}/*!sc*/
.inFiZu:focus:not(:focus-visible){outline:none;border:var(--global-borderWidth-thin) solid transparent;}/*!sc*/
.inFiZu:focus-visible{background-color:var(--global-secondary-muted-default);}/*!sc*/
.inFiZu:active{background-color:var(--global-secondary-muted-pressed);border:var(--global-borderWidth-thin) solid transparent;}/*!sc*/
.inFiZu[aria-disabled='true']{opacity:var(--global-opacity-disabled);}/*!sc*/
@media (min-width:36.75rem){.inFiZu{padding:0;}}/*!sc*/
.gXIGpe{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative;box-sizing:border-box;-webkit-text-decoration:none;text-decoration:none;color:var(--component-button-onAction-default);background-color:var(--component-button-action-default);border:var(--global-borderWidth-thin) solid transparent;min-height:44px;max-height:44px;padding:0 20px;border-radius:var(--global-radius-pill);outline-offset:0;white-space:unset;-webkit-transition:var(--global-transition-regular-easing) var(--global-transition-regular-duration);transition:var(--global-transition-regular-easing) var(--global-transition-regular-duration);font-size:var(--component-fontSizes-button-md);font-family:var(--global-fontStack-button);font-weight:var(--component-fontWeights-button-default);-webkit-letter-spacing:var(--component-letterSpacing-button);-moz-letter-spacing:var(--component-letterSpacing-button);-ms-letter-spacing:var(--component-letterSpacing-button);letter-spacing:var(--component-letterSpacing-button);line-height:var(--component-lineHeights-button);}/*!sc*/
.gXIGpe:hover{background-color:var(--component-button-action-hover);border:var(--global-borderWidth-thin) solid transparent;}/*!sc*/
.gXIGpe:focus:not(:focus-visible){outline:none;border:var(--global-borderWidth-thin) solid transparent;}/*!sc*/
.gXIGpe:active{background-color:var(--component-button-action-pressed);border:var(--global-borderWidth-thin) solid transparent;}/*!sc*/
.gXIGpe[aria-disabled='true']{opacity:var(--global-opacity-disabled);}/*!sc*/
@media (min-width:36.75rem){.gXIGpe{min-height:40px;max-height:40px;padding:0 20px;}}/*!sc*/
.HeRcC{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative;box-sizing:border-box;-webkit-text-decoration:none;text-decoration:none;color:var(--global-primary-onMuted-default);background-color:transparent;border:var(--global-borderWidth-thin) solid transparent;min-height:44px;max-height:44px;min-width:44px;padding:0;border-radius:var(--global-radius-md);outline-offset:0;white-space:unset;-webkit-transition:var(--global-transition-regular-easing) var(--global-transition-regular-duration);transition:var(--global-transition-regular-easing) var(--global-transition-regular-duration);font-size:var(--component-fontSizes-button-md);font-family:var(--global-fontStack-button);font-weight:var(--component-fontWeights-button-default);-webkit-letter-spacing:var(--component-letterSpacing-button);-moz-letter-spacing:var(--component-letterSpacing-button);-ms-letter-spacing:var(--component-letterSpacing-button);letter-spacing:var(--component-letterSpacing-button);line-height:var(--component-lineHeights-button);}/*!sc*/
.HeRcC:hover{background-color:var(--global-secondary-muted-hover);border:var(--global-borderWidth-thin) solid transparent;}/*!sc*/
.HeRcC:focus:not(:focus-visible){outline:none;border:var(--global-borderWidth-thin) solid transparent;}/*!sc*/
.HeRcC:focus-visible{background-color:var(--global-secondary-muted-default);}/*!sc*/
.HeRcC:active{background-color:var(--global-secondary-muted-pressed);border:var(--global-borderWidth-thin) solid transparent;}/*!sc*/
.HeRcC[aria-disabled='true']{opacity:var(--global-opacity-disabled);}/*!sc*/
@media (min-width:36.75rem){.HeRcC{min-width:40px;min-height:40px;max-height:40px;padding:0;}}/*!sc*/
.fUjrle{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative;box-sizing:border-box;-webkit-text-decoration:none;text-decoration:none;color:var(--global-content-muted-default);background-color:transparent;border:var(--global-borderWidth-thin) solid transparent;min-height:44px;max-height:44px;min-width:44px;padding:0;border-radius:var(--global-radius-md);outline-offset:0;white-space:unset;-webkit-transition:var(--global-transition-regular-easing) var(--global-transition-regular-duration);transition:var(--global-transition-regular-easing) var(--global-transition-regular-duration);font-size:var(--component-fontSizes-button-md);font-family:var(--global-fontStack-button);font-weight:var(--component-fontWeights-button-default);-webkit-letter-spacing:var(--component-letterSpacing-button);-moz-letter-spacing:var(--component-letterSpacing-button);-ms-letter-spacing:var(--component-letterSpacing-button);letter-spacing:var(--component-letterSpacing-button);line-height:var(--component-lineHeights-button);}/*!sc*/
.fUjrle:hover{background-color:var(--global-secondary-muted-hover);border:var(--global-borderWidth-thin) solid transparent;}/*!sc*/
.fUjrle:focus:not(:focus-visible){outline:none;border:var(--global-borderWidth-thin) solid transparent;}/*!sc*/
.fUjrle:focus-visible{background-color:var(--global-secondary-muted-default);}/*!sc*/
.fUjrle:active{background-color:var(--global-secondary-muted-pressed);border:var(--global-borderWidth-thin) solid transparent;}/*!sc*/
.fUjrle[aria-disabled='true']{opacity:var(--global-opacity-disabled);}/*!sc*/
@media (min-width:36.75rem){.fUjrle{min-width:40px;min-height:40px;max-height:40px;padding:0;}}/*!sc*/
.jXTMNh{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative;box-sizing:border-box;-webkit-text-decoration:none;text-decoration:none;color:var(--component-button-onAction-default);background-color:var(--component-button-action-default);border:var(--global-borderWidth-thin) solid transparent;min-height:44px;max-height:44px;padding:0 20px;border-radius:var(--global-radius-md);outline-offset:0;width:100%;white-space:unset;-webkit-transition:var(--global-transition-regular-easing) var(--global-transition-regular-duration);transition:var(--global-transition-regular-easing) var(--global-transition-regular-duration);font-size:var(--component-fontSizes-button-md);font-family:var(--global-fontStack-button);font-weight:var(--component-fontWeights-button-default);-webkit-letter-spacing:var(--component-letterSpacing-button);-moz-letter-spacing:var(--component-letterSpacing-button);-ms-letter-spacing:var(--component-letterSpacing-button);letter-spacing:var(--component-letterSpacing-button);line-height:var(--component-lineHeights-button);}/*!sc*/
.jXTMNh:hover{background-color:var(--component-button-action-hover);border:var(--global-borderWidth-thin) solid transparent;}/*!sc*/
.jXTMNh:focus:not(:focus-visible){outline:none;border:var(--global-borderWidth-thin) solid transparent;}/*!sc*/
.jXTMNh:active{background-color:var(--component-button-action-pressed);border:var(--global-borderWidth-thin) solid transparent;}/*!sc*/
.jXTMNh[aria-disabled='true']{opacity:var(--global-opacity-disabled);}/*!sc*/
@media (min-width:36.75rem){.jXTMNh{min-height:40px;max-height:40px;padding:0 20px;}}/*!sc*/
.gHHdcz{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative;box-sizing:border-box;cursor:not-allowed;-webkit-text-decoration:none;text-decoration:none;color:var(--global-primary-onMuted-default);background-color:var(--global-secondary-action-default);border:var(--global-borderWidth-thin) solid transparent;min-height:44px;max-height:44px;min-width:44px;padding:0;border-radius:var(--global-radius-pill);outline-offset:0;white-space:unset;-webkit-transition:var(--global-transition-regular-easing) var(--global-transition-regular-duration);transition:var(--global-transition-regular-easing) var(--global-transition-regular-duration);font-size:var(--component-fontSizes-button-md);font-family:var(--global-fontStack-button);font-weight:var(--component-fontWeights-button-default);-webkit-letter-spacing:var(--component-letterSpacing-button);-moz-letter-spacing:var(--component-letterSpacing-button);-ms-letter-spacing:var(--component-letterSpacing-button);letter-spacing:var(--component-letterSpacing-button);line-height:var(--component-lineHeights-button);}/*!sc*/
.gHHdcz:hover{border:var(--global-borderWidth-thin) solid transparent;}/*!sc*/
.gHHdcz:focus:not(:focus-visible){outline:none;border:var(--global-borderWidth-thin) solid transparent;}/*!sc*/
.gHHdcz:active{border:var(--global-borderWidth-thin) solid transparent;}/*!sc*/
.gHHdcz[aria-disabled='true']{opacity:var(--global-opacity-disabled);}/*!sc*/
@media (min-width:36.75rem){.gHHdcz{min-width:40px;min-height:40px;max-height:40px;padding:0;}}/*!sc*/
.dnUAkj{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative;box-sizing:border-box;-webkit-text-decoration:none;text-decoration:none;color:var(--global-primary-onMuted-default);background-color:var(--global-secondary-action-default);border:var(--global-borderWidth-thin) solid transparent;min-height:44px;max-height:44px;min-width:44px;padding:0;border-radius:var(--global-radius-pill);outline-offset:0;white-space:unset;-webkit-transition:var(--global-transition-regular-easing) var(--global-transition-regular-duration);transition:var(--global-transition-regular-easing) var(--global-transition-regular-duration);font-size:var(--component-fontSizes-button-md);font-family:var(--global-fontStack-button);font-weight:var(--component-fontWeights-button-default);-webkit-letter-spacing:var(--component-letterSpacing-button);-moz-letter-spacing:var(--component-letterSpacing-button);-ms-letter-spacing:var(--component-letterSpacing-button);letter-spacing:var(--component-letterSpacing-button);line-height:var(--component-lineHeights-button);}/*!sc*/
.dnUAkj:hover{background-color:var(--global-secondary-action-hover);border:var(--global-borderWidth-thin) solid transparent;}/*!sc*/
.dnUAkj:focus:not(:focus-visible){outline:none;border:var(--global-borderWidth-thin) solid transparent;}/*!sc*/
.dnUAkj:active{background-color:var(--global-secondary-action-pressed);border:var(--global-borderWidth-thin) solid transparent;}/*!sc*/
.dnUAkj[aria-disabled='true']{opacity:var(--global-opacity-disabled);}/*!sc*/
@media (min-width:36.75rem){.dnUAkj{min-width:40px;min-height:40px;max-height:40px;padding:0;}}/*!sc*/
.dPtNPe{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative;box-sizing:border-box;-webkit-text-decoration:none;text-decoration:none;color:var(--global-content-regular-default);background-color:transparent;border:var(--global-borderWidth-thin) solid var(--global-border-action-default);min-height:44px;max-height:44px;padding:0 20px 0 18px;border-radius:var(--global-radius-md);outline-offset:0;width:100%;white-space:unset;-webkit-transition:var(--global-transition-regular-easing) var(--global-transition-regular-duration);transition:var(--global-transition-regular-easing) var(--global-transition-regular-duration);font-size:var(--component-fontSizes-button-md);font-family:var(--global-fontStack-button);font-weight:var(--component-fontWeights-button-default);-webkit-letter-spacing:var(--component-letterSpacing-button);-moz-letter-spacing:var(--component-letterSpacing-button);-ms-letter-spacing:var(--component-letterSpacing-button);letter-spacing:var(--component-letterSpacing-button);line-height:var(--component-lineHeights-button);}/*!sc*/
.dPtNPe:hover{background-color:transparent;border:var(--global-borderWidth-thin) solid var(--global-border-action-hover);}/*!sc*/
.dPtNPe:focus:not(:focus-visible){outline:none;border:var(--global-borderWidth-thin) solid var(--global-border-action-hover);}/*!sc*/
.dPtNPe:focus{border:var(--global-borderWidth-thin) solid transparent;}/*!sc*/
.dPtNPe:active{background-color:transparent;border:var(--global-borderWidth-thin) solid var(--global-border-action-pressed);}/*!sc*/
.dPtNPe[aria-disabled='true']{opacity:var(--global-opacity-disabled);}/*!sc*/
@media (min-width:36.75rem){.dPtNPe{min-height:40px;max-height:40px;padding:0 20px 0 16px;}}/*!sc*/
.kxKkGX{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative;box-sizing:border-box;-webkit-text-decoration:none;text-decoration:none;color:var(--global-content-regular-default);background-color:transparent;border:var(--global-borderWidth-thin) solid var(--global-border-action-default);min-height:44px;max-height:44px;min-width:44px;padding:0;border-radius:var(--global-radius-md);outline-offset:0;white-space:unset;-webkit-transition:var(--global-transition-regular-easing) var(--global-transition-regular-duration);transition:var(--global-transition-regular-easing) var(--global-transition-regular-duration);font-size:var(--component-fontSizes-button-md);font-family:var(--global-fontStack-button);font-weight:var(--component-fontWeights-button-default);-webkit-letter-spacing:var(--component-letterSpacing-button);-moz-letter-spacing:var(--component-letterSpacing-button);-ms-letter-spacing:var(--component-letterSpacing-button);letter-spacing:var(--component-letterSpacing-button);line-height:var(--component-lineHeights-button);}/*!sc*/
.kxKkGX:hover{background-color:transparent;border:var(--global-borderWidth-thin) solid var(--global-border-action-hover);}/*!sc*/
.kxKkGX:focus:not(:focus-visible){outline:none;border:var(--global-borderWidth-thin) solid var(--global-border-action-hover);}/*!sc*/
.kxKkGX:focus{border:var(--global-borderWidth-thin) solid transparent;}/*!sc*/
.kxKkGX:active{background-color:transparent;border:var(--global-borderWidth-thin) solid var(--global-border-action-pressed);}/*!sc*/
.kxKkGX[aria-disabled='true']{opacity:var(--global-opacity-disabled);}/*!sc*/
@media (min-width:36.75rem){.kxKkGX{min-width:40px;min-height:40px;max-height:40px;padding:0;}}/*!sc*/
.bhcasA{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative;box-sizing:border-box;-webkit-text-decoration:none;text-decoration:none;color:var(--global-constant-black-default);background-color:var(--global-constant-white-default);border:var(--global-borderWidth-thin) solid var(--global-constant-blackSubtle-default);min-height:44px;max-height:44px;padding:0 20px 0 18px;border-radius:var(--global-radius-md);outline-offset:0;white-space:unset;-webkit-transition:var(--global-transition-regular-easing) var(--global-transition-regular-duration);transition:var(--global-transition-regular-easing) var(--global-transition-regular-duration);font-size:var(--component-fontSizes-button-md);font-family:var(--global-fontStack-button);font-weight:var(--component-fontWeights-button-default);-webkit-letter-spacing:var(--component-letterSpacing-button);-moz-letter-spacing:var(--component-letterSpacing-button);-ms-letter-spacing:var(--component-letterSpacing-button);letter-spacing:var(--component-letterSpacing-button);line-height:var(--component-lineHeights-button);}/*!sc*/
.bhcasA:hover{background-color:var(--global-constant-white-hover);border:var(--global-borderWidth-thin) solid var(--global-constant-blackSubtle-hover);}/*!sc*/
.bhcasA:focus:not(:focus-visible){outline:none;border:var(--global-borderWidth-thin) solid var(--global-constant-blackSubtle-hover);}/*!sc*/
.bhcasA:active{background-color:var(--global-constant-white-pressed);border:var(--global-borderWidth-thin) solid var(--global-constant-blackSubtle-pressed);}/*!sc*/
.bhcasA[aria-disabled='true']{opacity:var(--global-opacity-disabled);}/*!sc*/
@media (min-width:36.75rem){.bhcasA{min-height:40px;max-height:40px;padding:0 20px 0 16px;}}/*!sc*/
.gZZcCj{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative;box-sizing:border-box;-webkit-text-decoration:none;text-decoration:none;color:var(--component-button-onAction-default);background-color:var(--component-button-action-default);border:var(--global-borderWidth-thin) solid transparent;min-height:36px;max-height:36px;padding:0 18px;border-radius:var(--global-radius-md);outline-offset:0;white-space:unset;-webkit-transition:var(--global-transition-regular-easing) var(--global-transition-regular-duration);transition:var(--global-transition-regular-easing) var(--global-transition-regular-duration);font-size:var(--component-fontSizes-button-sm);font-family:var(--global-fontStack-button);font-weight:var(--component-fontWeights-button-default);-webkit-letter-spacing:var(--component-letterSpacing-button);-moz-letter-spacing:var(--component-letterSpacing-button);-ms-letter-spacing:var(--component-letterSpacing-button);letter-spacing:var(--component-letterSpacing-button);line-height:var(--component-lineHeights-button);}/*!sc*/
.gZZcCj:hover{background-color:var(--component-button-action-hover);border:var(--global-borderWidth-thin) solid transparent;}/*!sc*/
.gZZcCj:focus:not(:focus-visible){outline:none;border:var(--global-borderWidth-thin) solid transparent;}/*!sc*/
.gZZcCj:active{background-color:var(--component-button-action-pressed);border:var(--global-borderWidth-thin) solid transparent;}/*!sc*/
.gZZcCj[aria-disabled='true']{opacity:var(--global-opacity-disabled);}/*!sc*/
@media (min-width:36.75rem){.gZZcCj{min-height:32px;max-height:32px;padding:0 16px;}}/*!sc*/
data-styled.g11[id="sc-jrQzAO"]{content:"inFiZu,gXIGpe,HeRcC,fUjrle,jXTMNh,gHHdcz,dnUAkj,dPtNPe,kxKkGX,bhcasA,gZZcCj,"}/*!sc*/
.eNdlaa{font-family:var(--global-fontStack-heading);font-weight:var(--global-fontWeights-heading-default);-webkit-letter-spacing:var(--global-letterSpacing-heading);-moz-letter-spacing:var(--global-letterSpacing-heading);-ms-letter-spacing:var(--global-letterSpacing-heading);letter-spacing:var(--global-letterSpacing-heading);line-height:var(--global-lineHeights-heading);font-size:var(--global-fontSizes-heading-xl);color:var(--global-content-regular-default);margin:0;}/*!sc*/
.eNdlaa em{font-style:italic;}/*!sc*/
.eNdlaa s{-webkit-text-decoration:line-through;text-decoration:line-through;}/*!sc*/
.hbWAxe{font-family:var(--global-fontStack-heading);font-weight:var(--global-fontWeights-heading-default);-webkit-letter-spacing:var(--global-letterSpacing-heading);-moz-letter-spacing:var(--global-letterSpacing-heading);-ms-letter-spacing:var(--global-letterSpacing-heading);letter-spacing:var(--global-letterSpacing-heading);line-height:var(--global-lineHeights-heading);font-size:var(--global-fontSizes-heading-xs);color:inherit;margin:0;}/*!sc*/
.hbWAxe em{font-style:italic;}/*!sc*/
.hbWAxe s{-webkit-text-decoration:line-through;text-decoration:line-through;}/*!sc*/
.kuYbdJ{font-family:var(--global-fontStack-heading);font-weight:var(--global-fontWeights-heading-default);-webkit-letter-spacing:var(--global-letterSpacing-heading);-moz-letter-spacing:var(--global-letterSpacing-heading);-ms-letter-spacing:var(--global-letterSpacing-heading);letter-spacing:var(--global-letterSpacing-heading);line-height:var(--global-lineHeights-heading);font-size:var(--global-fontSizes-heading-lg);color:var(--global-content-regular-default);margin:0;}/*!sc*/
.kuYbdJ em{font-style:italic;}/*!sc*/
.kuYbdJ s{-webkit-text-decoration:line-through;text-decoration:line-through;}/*!sc*/
.cybmOn{font-family:var(--global-fontStack-heading);font-weight:var(--global-fontWeights-heading-default);-webkit-letter-spacing:var(--global-letterSpacing-heading);-moz-letter-spacing:var(--global-letterSpacing-heading);-ms-letter-spacing:var(--global-letterSpacing-heading);letter-spacing:var(--global-letterSpacing-heading);line-height:var(--global-lineHeights-heading);font-size:var(--global-fontSizes-heading-md);color:var(--global-content-regular-default);margin:0;}/*!sc*/
.cybmOn em{font-style:italic;}/*!sc*/
.cybmOn s{-webkit-text-decoration:line-through;text-decoration:line-through;}/*!sc*/
.dEbHGk{font-family:var(--global-fontStack-heading);font-weight:var(--global-fontWeights-heading-default);-webkit-letter-spacing:var(--global-letterSpacing-heading);-moz-letter-spacing:var(--global-letterSpacing-heading);-ms-letter-spacing:var(--global-letterSpacing-heading);letter-spacing:var(--global-letterSpacing-heading);line-height:var(--global-lineHeights-heading);font-size:var(--global-fontSizes-heading-sm);color:var(--global-content-regular-default);margin:0;}/*!sc*/
.dEbHGk em{font-style:italic;}/*!sc*/
.dEbHGk s{-webkit-text-decoration:line-through;text-decoration:line-through;}/*!sc*/
data-styled.g22[id="sc-ieecCq"]{content:"eNdlaa,hbWAxe,kuYbdJ,cybmOn,dEbHGk,"}/*!sc*/
.kSPIgI{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-column-gap:4px;column-gap:4px;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;-webkit-text-decoration:none;text-decoration:none;color:var(--global-primary-action-default);border-radius:var(--global-radius-sm);-webkit-transition:var(--global-transition-regular-easing) var(--global-transition-regular-duration);transition:var(--global-transition-regular-easing) var(--global-transition-regular-duration);font-family:var(--global-fontStack-body);font-weight:var(--global-fontWeights-body-default);-webkit-letter-spacing:var(--global-letterSpacing-body);-moz-letter-spacing:var(--global-letterSpacing-body);-ms-letter-spacing:var(--global-letterSpacing-body);letter-spacing:var(--global-letterSpacing-body);line-height:var(--global-lineHeights-body);font-size:var(--global-fontSizes-body-md);}/*!sc*/
.kSPIgI strong,.kSPIgI b{font-weight:var(--global-fontWeights-body-bold);}/*!sc*/
.kSPIgI em{font-style:italic;}/*!sc*/
.kSPIgI s{-webkit-text-decoration:line-through;text-decoration:line-through;}/*!sc*/
.kSPIgI svg{fill:currentColor;}/*!sc*/
.kSPIgI:focus:not(:focus-visible){outline:none;}/*!sc*/
.kSPIgI:hover{color:var(--global-primary-action-hover);}/*!sc*/
.kSPIgI:active{color:var(--global-primary-action-pressed);}/*!sc*/
data-styled.g23[id="sc-dJjYzT"]{content:"kSPIgI,"}/*!sc*/
.eQUVfS{padding:0;border:none;background:none;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-column-gap:4px;column-gap:4px;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;-webkit-text-decoration:none;text-decoration:none;color:var(--global-primary-action-default);border-radius:var(--global-radius-sm);-webkit-transition:var(--global-transition-regular-easing) var(--global-transition-regular-duration);transition:var(--global-transition-regular-easing) var(--global-transition-regular-duration);font-family:var(--global-fontStack-body);font-weight:var(--global-fontWeights-body-bold);-webkit-letter-spacing:var(--global-letterSpacing-body);-moz-letter-spacing:var(--global-letterSpacing-body);-ms-letter-spacing:var(--global-letterSpacing-body);letter-spacing:var(--global-letterSpacing-body);line-height:var(--global-lineHeights-body);font-size:var(--global-fontSizes-body-md);}/*!sc*/
.eQUVfS em{font-style:italic;}/*!sc*/
.eQUVfS s{-webkit-text-decoration:line-through;text-decoration:line-through;}/*!sc*/
.eQUVfS svg{fill:currentColor;}/*!sc*/
.eQUVfS:focus:not(:focus-visible){outline:none;}/*!sc*/
.eQUVfS:hover{color:var(--global-primary-action-hover);}/*!sc*/
.eQUVfS:active{color:var(--global-primary-action-pressed);}/*!sc*/
data-styled.g24[id="sc-hGPBjI"]{content:"eQUVfS,"}/*!sc*/
.OvGmz{box-sizing:border-box;-webkit-transition:all var(--global-transition-regular-duration) var(--global-transition-regular-easing);transition:all var(--global-transition-regular-duration) var(--global-transition-regular-easing);padding-right:5.4px;padding-left:16.2px;}/*!sc*/
@media (min-width:61.125rem){.OvGmz{padding-right:6px;}}/*!sc*/
@media (min-width:61.125rem){.OvGmz{padding-left:18px;}}/*!sc*/
.hQAMrR{box-sizing:border-box;-webkit-transition:all var(--global-transition-regular-duration) var(--global-transition-regular-easing);transition:all var(--global-transition-regular-duration) var(--global-transition-regular-easing);padding-right:0px;padding-left:13.5px;}/*!sc*/
@media (min-width:61.125rem){.hQAMrR{padding-right:0px;}}/*!sc*/
@media (min-width:61.125rem){.hQAMrR{padding-left:15px;}}/*!sc*/
.hGPVP{box-sizing:border-box;-webkit-transition:all var(--global-transition-regular-duration) var(--global-transition-regular-easing);transition:all var(--global-transition-regular-duration) var(--global-transition-regular-easing);padding-right:4.5px;padding-left:13.5px;}/*!sc*/
@media (min-width:61.125rem){.hGPVP{padding-right:5px;}}/*!sc*/
@media (min-width:61.125rem){.hGPVP{padding-left:15px;}}/*!sc*/
.bBVwnB{box-sizing:border-box;-webkit-transition:all var(--global-transition-regular-duration) var(--global-transition-regular-easing);transition:all var(--global-transition-regular-duration) var(--global-transition-regular-easing);display:block;}/*!sc*/
@media (min-width:49.75rem){.bBVwnB{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}}/*!sc*/
.iGHJRA{box-sizing:border-box;-webkit-transition:all var(--global-transition-regular-duration) var(--global-transition-regular-easing);transition:all var(--global-transition-regular-duration) var(--global-transition-regular-easing);-webkit-box-flex:2;-webkit-flex-grow:2;-ms-flex-positive:2;flex-grow:2;}/*!sc*/
.gdvxoW{box-sizing:border-box;-webkit-transition:all var(--global-transition-regular-duration) var(--global-transition-regular-easing);transition:all var(--global-transition-regular-duration) var(--global-transition-regular-easing);-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;position:relative;}/*!sc*/
.fvJsro{box-sizing:border-box;-webkit-transition:all var(--global-transition-regular-duration) var(--global-transition-regular-easing);transition:all var(--global-transition-regular-duration) var(--global-transition-regular-easing);-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}/*!sc*/
data-styled.g34[id="sc-ezbkAF"]{content:"OvGmz,hQAMrR,hGPVP,bBVwnB,iGHJRA,gdvxoW,fvJsro,"}/*!sc*/
.fJWvCc{margin:0;color:var(--global-content-regular-default);font-family:var(--global-fontStack-display);font-weight:var(--global-fontWeights-display-default);-webkit-letter-spacing:var(--global-letterSpacing-display);-moz-letter-spacing:var(--global-letterSpacing-display);-ms-letter-spacing:var(--global-letterSpacing-display);letter-spacing:var(--global-letterSpacing-display);line-height:var(--global-lineHeights-display);font-size:var(--global-fontSizes-display-md);text-align:center;}/*!sc*/
.fJWvCc em{font-style:italic;}/*!sc*/
.fJWvCc s{-webkit-text-decoration:line-through;text-decoration:line-through;}/*!sc*/
data-styled.g52[id="sc-cNKqjZ"]{content:"fJWvCc,"}/*!sc*/
.dApvCB{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;border:none;margin-bottom:0;cursor:pointer;max-width:100%;padding:0;}/*!sc*/
data-styled.g76[id="sc-hmjpVf"]{content:"dApvCB,"}/*!sc*/
body{min-width:320px;background-color:var(--global-bg-base-default);font-feature-settings:"ss15" 1;}/*!sc*/
.mr-xs{margin-right:var(--global-space-4);}/*!sc*/
.mr-sm{margin-right:var(--global-space-8);}/*!sc*/
.mr-md{margin-right:var(--global-space-16);}/*!sc*/
.mb-xs{margin-bottom:var(--global-space-4);}/*!sc*/
.mb-md{margin-bottom:var(--global-space-16);}/*!sc*/
.ml-sm{margin-left:var(--global-space-8);}/*!sc*/
.mv-md{margin-top:var(--global-space-16);margin-bottom:var(--global-space-16);}/*!sc*/
data-styled.g77[id="sc-global-icsNGC1"]{content:"sc-global-icsNGC1,"}/*!sc*/
.container,.container-fluid{margin-right:auto;margin-left:auto;}/*!sc*/
.container-fluid{padding-right:0;padding-left:0;}/*!sc*/
.row{box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-.5rem;margin-left:-.5rem;}/*!sc*/
.row.reverse{-webkit-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse;}/*!sc*/
.col.reverse{-webkit-flex-direction:column-reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse;}/*!sc*/
.col-xs-6,.col-xs-8,.col-xs-12{box-sizing:border-box;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;padding-right:.5rem;padding-left:.5rem;}/*!sc*/
.col-xs-6{-webkit-flex-basis:50%;-ms-flex-preferred-size:50%;flex-basis:50%;max-width:50%;}/*!sc*/
.col-xs-8{-webkit-flex-basis:66.667%;-ms-flex-preferred-size:66.667%;flex-basis:66.667%;max-width:66.667%;}/*!sc*/
.col-xs-12{-webkit-flex-basis:100%;-ms-flex-preferred-size:100%;flex-basis:100%;max-width:100%;}/*!sc*/
.center-xs{-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;text-align:center;}/*!sc*/
.end-xs{-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end;text-align:end;}/*!sc*/
.middle-xs{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
@media only screen and (min-width:30em){.container{width:31rem;}.col-sm-4,.col-sm-12{box-sizing:border-box;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;padding-right:.5rem;padding-left:.5rem;}.col-sm-4{-webkit-flex-basis:33.333%;-ms-flex-preferred-size:33.333%;flex-basis:33.333%;max-width:33.333%;}.col-sm-12{-webkit-flex-basis:100%;-ms-flex-preferred-size:100%;flex-basis:100%;max-width:100%;}}/*!sc*/
@media only screen and (min-width:48em){.container{width:49rem;}.col-md-3,.col-md-8,.col-md-12{box-sizing:border-box;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;padding-right:.5rem;padding-left:.5rem;}.col-md-3{-webkit-flex-basis:25%;-ms-flex-preferred-size:25%;flex-basis:25%;max-width:25%;}.col-md-8{-webkit-flex-basis:66.667%;-ms-flex-preferred-size:66.667%;flex-basis:66.667%;max-width:66.667%;}.col-md-12{-webkit-flex-basis:100%;-ms-flex-preferred-size:100%;flex-basis:100%;max-width:100%;}.start-md{-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;text-align:start;}}/*!sc*/
@media only screen and (min-width:64em){.container{width:65rem;}.col-lg-2{-webkit-flex-basis:16.667%;-ms-flex-preferred-size:16.667%;flex-basis:16.667%;max-width:16.667%;}.col-lg-4{-webkit-flex-basis:33.333%;-ms-flex-preferred-size:33.333%;flex-basis:33.333%;max-width:33.333%;}.col-lg-5{-webkit-flex-basis:41.667%;-ms-flex-preferred-size:41.667%;flex-basis:41.667%;max-width:41.667%;}.col-lg-8{-webkit-flex-basis:66.667%;-ms-flex-preferred-size:66.667%;flex-basis:66.667%;max-width:66.667%;}}/*!sc*/
@media only screen and (min-width:85.375rem){.container{width:85.375rem;}}/*!sc*/
data-styled.g78[id="sc-global-gTOXcC1"]{content:"sc-global-gTOXcC1,"}/*!sc*/
html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;}/*!sc*/
body{margin:0;}/*!sc*/
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block;}/*!sc*/
audio,canvas,progress,video{display:inline-block;vertical-align:baseline;}/*!sc*/
audio:not([controls]){display:none;height:0;}/*!sc*/
[hidden],template{display:none;}/*!sc*/
a{background-color:transparent;}/*!sc*/
a:active,a:hover{outline:0;}/*!sc*/
abbr[title]{border-bottom:1px dotted;}/*!sc*/
b,strong{font-weight:bold;}/*!sc*/
dfn{font-style:italic;}/*!sc*/
h1{font-size:2em;margin:0.67em 0;}/*!sc*/
mark{background:#ff0;color:#000;}/*!sc*/
small{font-size:80%;}/*!sc*/
sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;}/*!sc*/
sup{top:-0.5em;}/*!sc*/
sub{bottom:-0.25em;}/*!sc*/
img{border:0;}/*!sc*/
svg:not(:root){overflow:hidden;}/*!sc*/
figure{margin:1em 40px;}/*!sc*/
hr{box-sizing:content-box;height:0;}/*!sc*/
pre{overflow:auto;}/*!sc*/
code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em;}/*!sc*/
button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0;}/*!sc*/
button{overflow:visible;}/*!sc*/
button,select{text-transform:none;}/*!sc*/
button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer;}/*!sc*/
html input[disabled]{cursor:default;}/*!sc*/
button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0;}/*!sc*/
input{line-height:normal;}/*!sc*/
input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0;}/*!sc*/
input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto;}/*!sc*/
input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none;}/*!sc*/
fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em;}/*!sc*/
legend{border:0;padding:0;}/*!sc*/
textarea{overflow:auto;}/*!sc*/
optgroup{font-weight:bold;}/*!sc*/
table{border-collapse:collapse;border-spacing:0;}/*!sc*/
td,th{padding:0;}/*!sc*/
data-styled.g79[id="sc-global-keqigg1"]{content:"sc-global-keqigg1,"}/*!sc*/
:root{--global-borderWidth-none:0;--global-borderWidth-thick:2px;--global-borderWidth-thin:1px;--global-boxShadow-high:0px 6px 24px 0px rgba(0,0,0,0.14);--global-boxShadow-low:0px 1px 4px 0px rgba(0,0,0,0.14);--global-boxShadow-mid:0px 4px 14px 0px rgba(0,0,0,0.10);--global-boxShadow-subtle:0px 1px 4px 0px rgba(0,0,0,0.10);--global-brand-discord:#5865f2;--global-brand-facebook:#1877f2;--global-brand-google:#d9453d;--global-brand-memberful:#de5b38;--global-brand-patreon:#f1465a;--global-brand-pinterest:#e60023;--global-brand-reddit:#ff4500;--global-brand-spotify:#00db54;--global-brand-tumblr:#35465c;--global-brand-twitch:#9046ff;--global-brand-twitter:#1da1f2;--global-brand-youtube:#ff0000;--global-brand-youtubeBlack:#282828;--global-constant-black-default:#070707;--global-constant-black-hover:#131313;--global-constant-black-pressed:#252525;--global-constant-blackMuted-default:rgba(0,0,0,0.5);--global-constant-blackMuted-hover:rgba(0,0,0,0.66);--global-constant-blackMuted-pressed:rgba(0,0,0,0.82);--global-constant-blackSubtle-default:rgba(0,0,0,0.14);--global-constant-blackSubtle-hover:rgba(0,0,0,0.2);--global-constant-blackSubtle-pressed:rgba(0,0,0,0.26);--global-constant-white-default:#ffffff;--global-constant-white-hover:#f5f5f5;--global-constant-white-pressed:#e8e8e8;--global-constant-whiteMuted-default:rgba(255,255,255,0.5);--global-constant-whiteMuted-hover:rgba(255,255,255,0.66);--global-constant-whiteMuted-pressed:rgba(255,255,255,0.82);--global-constant-whiteSubtle-default:rgba(255,255,255,0.14);--global-constant-whiteSubtle-hover:rgba(255,255,255,0.2);--global-constant-whiteSubtle-pressed:rgba(255,255,255,0.26);--global-effects-lg:100px;--global-effects-md:50px;--global-effects-sm:20px;--global-fontSettings-fontWidth-mono:'TRIP' .5;--global-fontSettings-fontWidth-regular:'TRIP' 0;--global-icon-lg:32px;--global-icon-md:24px;--global-icon-sm:20px;--global-icon-xl:40px;--global-icon-xs:16px;--global-layer-0:0;--global-layer-1:100;--global-layer-10:1000;--global-layer-11:1100;--global-layer-12:1200;--global-layer-2:200;--global-layer-20:2000;--global-layer-3:300;--global-layer-4:400;--global-layer-5:500;--global-layer-6:600;--global-layer-7:700;--global-layer-8:800;--global-layer-9:900;--global-nonSemantic-blueberry:#1a52a7;--global-nonSemantic-holly:#0cac7e;--global-nonSemantic-honeycomb:#f5b400;--global-nonSemantic-jasper:#f75058;--global-nonSemantic-lavender:#6e479d;--global-nonSemantic-lollipop:#ea1f44;--global-nonSemantic-moonshade:#4f71ba;--global-nonSemantic-ocean:#1d8acb;--global-nonSemantic-pumpkin:#fb790e;--global-nonSemantic-raspberry:#be2a61;--global-opacity-disabled:0.6;--global-opacity-enabled:1;--global-radius-circle:9999px;--global-radius-lg:12px;--global-radius-md:8px;--global-radius-pill:9999px;--global-radius-sm:4px;--global-radius-smMd:6px;--global-radius-xl:16px;--global-space-12:12px;--global-space-16:16px;--global-space-24:24px;--global-space-32:32px;--global-space-4:4px;--global-space-40:40px;--global-space-48:48px;--global-space-56:56px;--global-space-8:8px;--global-transition-fast-duration:200ms;--global-transition-fast-easing:ease;--global-transition-regular-duration:350ms;--global-transition-regular-easing:ease;--global-transition-slow-duration:500ms;--global-transition-slow-easing:ease;}/*!sc*/
:root{--component-data-fontWeights-body-bold:700;--component-data-fontWeights-body-default:325;--component-data-fontWeights-display-default:500;--component-data-fontWeights-heading-default:500;--component-fontFamilies-button:ABC Oracle Plus Variable;--component-fontSizes-button-lg:18px;--component-fontSizes-button-md:16px;--component-fontSizes-button-sm:14px;--component-fontWeights-button-default:700;--component-letterSpacing-button:-0.02em;--component-lineHeights-button:1;--global-fontFamilies-body:ABC Oracle Plus Variable;--global-fontFamilies-data:ABC Oracle Plus Variable;--global-fontFamilies-display:ABC Oracle Plus Variable;--global-fontFamilies-heading:ABC Oracle Plus Variable;--global-fontSizes-body-lg:16px;--global-fontSizes-body-md:16px;--global-fontSizes-body-sm:14px;--global-fontSizes-body-xs:10px;--global-fontSizes-data-md:14px;--global-fontSizes-display-lg:36px;--global-fontSizes-display-md:30px;--global-fontSizes-display-xl:42px;--global-fontSizes-display-xxl:60px;--global-fontSizes-display-xxxl:80px;--global-fontSizes-heading-lg:22px;--global-fontSizes-heading-md:18px;--global-fontSizes-heading-sm:16px;--global-fontSizes-heading-xl:26px;--global-fontSizes-heading-xs:14px;--global-fontWeights-body-bold:700;--global-fontWeights-body-default:325;--global-fontWeights-data-default:500;--global-fontWeights-display-default:500;--global-fontWeights-heading-default:500;--global-letterSpacing-body:-0.01em;--global-letterSpacing-data:0;--global-letterSpacing-display:-0.03em;--global-letterSpacing-heading:-0.02em;--global-lineHeights-body:1.4;--global-lineHeights-data:1.4;--global-lineHeights-display:1.2;--global-lineHeights-heading:1.3;}/*!sc*/
@media (min-width:36.75rem){:root{--component-data-fontWeights-body-bold:700;--component-data-fontWeights-body-default:325;--component-data-fontWeights-display-default:500;--component-data-fontWeights-heading-default:500;--component-fontFamilies-button:ABC Oracle Plus Variable;--component-fontSizes-button-lg:16px;--component-fontSizes-button-md:14px;--component-fontSizes-button-sm:12px;--component-fontWeights-button-default:700;--component-letterSpacing-button:-0.02em;--component-lineHeights-button:1;--global-fontFamilies-body:ABC Oracle Plus Variable;--global-fontFamilies-data:ABC Oracle Plus Variable;--global-fontFamilies-display:ABC Oracle Plus Variable;--global-fontFamilies-heading:ABC Oracle Plus Variable;--global-fontSizes-body-lg:16px;--global-fontSizes-body-md:14px;--global-fontSizes-body-sm:12px;--global-fontSizes-body-xs:10px;--global-fontSizes-data-md:12px;--global-fontSizes-display-lg:40px;--global-fontSizes-display-md:32px;--global-fontSizes-display-xl:48px;--global-fontSizes-display-xxl:60px;--global-fontSizes-display-xxxl:80px;--global-fontSizes-heading-lg:22px;--global-fontSizes-heading-md:16px;--global-fontSizes-heading-sm:14px;--global-fontSizes-heading-xl:26px;--global-fontSizes-heading-xs:12px;--global-fontWeights-body-bold:700;--global-fontWeights-body-default:325;--global-fontWeights-data-default:500;--global-fontWeights-display-default:500;--global-fontWeights-heading-default:500;--global-letterSpacing-body:-0.01em;--global-letterSpacing-data:0;--global-letterSpacing-display:-0.03em;--global-letterSpacing-heading:-0.02em;--global-lineHeights-body:1.4;--global-lineHeights-data:1.4;--global-lineHeights-display:1.2;--global-lineHeights-heading:1.3;}}/*!sc*/
:root{--component-button-action-default:#070707;--component-button-action-hover:#252525;--component-button-action-pressed:#4a4a4a;--component-button-onAction-default:#ffffff;--component-button-onAction-hover:#ffffff;--component-button-onAction-pressed:#ffffff;--component-dialog-overlay-bg:rgba(0,0,0,0.51);--global-bg-base-default:#ffffff;--global-bg-base-hover:#e8e8e8;--global-bg-base-pressed:#dbdbdb;--global-bg-baseAlt-default:#f5f5f5;--global-bg-baseAlt-hover:#e8e8e8;--global-bg-baseAlt-pressed:#dbdbdb;--global-bg-elevated-default:#ffffff;--global-bg-elevated-hover:#f5f5f5;--global-bg-elevated-pressed:#e8e8e8;--global-bg-page-default:#f5f5f5;--global-bg-page-hover:#e8e8e8;--global-bg-page-pressed:#dbdbdb;--global-bg-pageAlt-default:#ffffff;--global-bg-pageAlt-hover:#f5f5f5;--global-bg-pageAlt-pressed:#e8e8e8;--global-border-action-default:rgba(0,0,0,0.2);--global-border-action-hover:rgba(0,0,0,0.28);--global-border-action-pressed:rgba(0,0,0,0.35);--global-border-muted-default:rgba(0,0,0,0.09);--global-border-muted-hover:rgba(0,0,0,0.14);--global-border-muted-pressed:rgba(0,0,0,0.2);--global-content-inverted-default:#ffffff;--global-content-inverted-hover:rgba(255,255,255,0.93);--global-content-inverted-pressed:rgba(255,255,255,0.87);--global-content-invertedMuted-default:rgba(255,255,255,0.6);--global-content-invertedMuted-hover:rgba(255,255,255,0.53);--global-content-invertedMuted-pressed:rgba(255,255,255,0.46);--global-content-invertedSubtle-default:rgba(255,255,255,0.39);--global-content-invertedSubtle-hover:rgba(255,255,255,0.46);--global-content-invertedSubtle-pressed:rgba(255,255,255,0.53);--global-content-muted-default:rgba(0,0,0,0.6);--global-content-muted-hover:rgba(0,0,0,0.51);--global-content-muted-pressed:rgba(0,0,0,0.43);--global-content-regular-default:#000000;--global-content-regular-hover:rgba(0,0,0,0.95);--global-content-regular-pressed:rgba(0,0,0,0.9);--global-content-subtle-default:rgba(0,0,0,0.43);--global-content-subtle-hover:rgba(0,0,0,0.51);--global-content-subtle-pressed:rgba(0,0,0,0.6);--global-critical-action-default:#e54059;--global-critical-action-hover:#c6374d;--global-critical-action-pressed:#a72f41;--global-critical-muted-default:rgba(198,55,77,0.13);--global-critical-muted-hover:rgba(198,55,77,0.2);--global-critical-muted-pressed:rgba(198,55,77,0.27);--global-critical-onAction-default:#ffffff;--global-critical-onAction-hover:#feecef;--global-critical-onAction-pressed:#fedee2;--global-critical-onMuted-default:#a72f41;--global-critical-onMuted-hover:#8a2736;--global-critical-onMuted-pressed:#6e1f2b;--global-primary-action-default:#0b69b7;--global-primary-action-hover:#0d7cd8;--global-primary-action-pressed:#1c8eec;--global-primary-actionBase-default:#0d7cd8;--global-primary-actionBase-hover:#0b69b7;--global-primary-actionBase-pressed:#095696;--global-primary-muted-default:rgba(0,0,0,0.09);--global-primary-muted-hover:rgba(0,0,0,0.14);--global-primary-muted-pressed:rgba(0,0,0,0.2);--global-primary-onActionBase-default:#ffffff;--global-primary-onActionBase-hover:#e7f3fd;--global-primary-onActionBase-pressed:#d4e9fb;--global-primary-onMuted-default:#000000;--global-primary-onMuted-hover:#000000;--global-primary-onMuted-pressed:#000000;--global-primary-onSubtle-default:rgba(0,0,0,0.6);--global-primary-onSubtle-hover:rgba(0,0,0,0.68);--global-primary-onSubtle-pressed:rgba(0,0,0,0.76);--global-primary-subtle-default:rgba(0,0,0,0.04);--global-primary-subtle-hover:rgba(0,0,0,0.09);--global-primary-subtle-pressed:rgba(0,0,0,0.14);--global-secondary-action-default:rgba(0,0,0,0.09);--global-secondary-action-hover:rgba(0,0,0,0.14);--global-secondary-action-pressed:rgba(0,0,0,0.2);--global-secondary-muted-default:rgba(0,0,0,0.04);--global-secondary-muted-hover:rgba(0,0,0,0.09);--global-secondary-muted-pressed:rgba(0,0,0,0.14);--global-secondary-onAction-default:#000000;--global-secondary-onAction-hover:#000000;--global-secondary-onAction-pressed:#000000;--global-secondary-onMuted-default:rgba(0,0,0,0.6);--global-secondary-onMuted-hover:rgba(0,0,0,0.68);--global-secondary-onMuted-pressed:rgba(0,0,0,0.76);--global-success-action-default:#097d3f;--global-success-action-hover:#076232;--global-success-action-pressed:#054724;--global-success-muted-default:rgba(13,180,91,0.13);--global-success-muted-hover:rgba(13,180,91,0.2);--global-success-muted-pressed:rgba(13,180,91,0.27);--global-success-onAction-default:#ffffff;--global-success-onAction-hover:rgba(255,255,255,0.93);--global-success-onAction-pressed:rgba(255,255,255,0.87);--global-success-onMuted-default:#097d3f;--global-success-onMuted-hover:#076232;--global-success-onMuted-pressed:#054724;--global-warning-action-default:#c38b08;--global-warning-action-hover:#a07206;--global-warning-action-pressed:#7d5905;--global-warning-muted-default:rgba(230,164,9,0.13);--global-warning-muted-hover:rgba(230,164,9,0.2);--global-warning-muted-pressed:rgba(230,164,9,0.27);--global-warning-onAction-default:#ffffff;--global-warning-onAction-hover:#fff7e6;--global-warning-onAction-pressed:#fef1d3;--global-warning-onMuted-default:#7d5905;--global-warning-onMuted-hover:#5a4004;--global-warning-onMuted-pressed:#372702;--internal-focusOutline:#8ba9ed;}/*!sc*/
data-styled.g80[id="sc-global-gWmEJC1"]{content:"sc-global-gWmEJC1,"}/*!sc*/
:root{--global-fontStack-fallback:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;--global-fontStack-data-fallback:ui-monospace,Menlo,Monaco,"Cascadia Mono","Segoe UI Mono","Roboto Mono",monospace;--global-fontStack-display:var(--global-fontFamilies-display),var(--global-fontStack-fallback);--global-fontStack-heading:var(--global-fontFamilies-heading),var(--global-fontStack-fallback);--global-fontStack-body:var(--global-fontFamilies-body),var(--global-fontStack-fallback);--global-fontStack-button:var(--component-fontFamilies-button),var(--global-fontStack-fallback);--global-fontStack-data:var(--global-fontFamilies-data),var(--global-fontStack-data-fallback);}/*!sc*/
data-styled.g81[id="sc-global-dGmOaz1"]{content:"sc-global-dGmOaz1,"}/*!sc*/
.gFFlsB{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}/*!sc*/
.gFFlsB,.gFFlsB svg{height:24px;width:24px;}/*!sc*/
.gFFlsB svg{-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;fill:transparent;stroke-width:1.2px;}/*!sc*/
.gFFlsB svg *{-webkit-transition:all var(--global-transition-regular-duration) var(--global-transition-regular-easing);transition:all var(--global-transition-regular-duration) var(--global-transition-regular-easing);vector-effect:non-scaling-stroke;}/*!sc*/
.gFFlsB svg *[data-color],.gFFlsB svg *[data-fill]{fill:var(--global-content-regular-default);}/*!sc*/
data-styled.g90[id="sc-fvxzrP"]{content:"gFFlsB,"}/*!sc*/
.lfQAKW{height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;position:relative;box-sizing:border-box;cursor:text;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;}/*!sc*/
data-styled.g104[id="sc-XxNYO"]{content:"lfQAKW,"}/*!sc*/
.jVmowx{position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;height:40px;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;background:var(--global-secondary-muted-default);border-color:transparent;border-style:solid;border-width:1px;border-radius:var(--global-radius-md);box-sizing:border-box;outline-offset:-2px;overflow:hidden;}/*!sc*/
.jVmowx:focus-within{outline:solid Highlight;outline:solid -webkit-focus-ring-color;border-color:transparent;}/*!sc*/
.jVmowx:focus-within:hover{border-color:transparent;}/*!sc*/
.jVmowx:focus-within:active{border-color:transparent;}/*!sc*/
.jVmowx:hover{background:var(--global-secondary-muted-hover);border-color:transparent;}/*!sc*/
.jVmowx:active{background:var(--global-secondary-muted-pressed);border-color:transparent;}/*!sc*/
data-styled.g105[id="sc-ilfuhL"]{content:"jVmowx,"}/*!sc*/
.cYUZBQ{color:var(--global-content-regular-default);-webkit-appearance:none;-moz-appearance:none;appearance:none;background:none;box-sizing:border-box;border:none;display:block;line-height:1.5;resize:none;text-align:left;outline:none;width:100%;min-height:38px;font-size:var(--global-fontSizes-body-md) !important;-webkit-transition:border-color var(--global-transition-regular-duration) var(--global-transition-regular-easing);transition:border-color var(--global-transition-regular-duration) var(--global-transition-regular-easing);padding:8px 12px 8px;}/*!sc*/
.cYUZBQ::-webkit-input-placeholder{color:var(--global-content-muted-default);opacity:1;}/*!sc*/
.cYUZBQ::-moz-placeholder{color:var(--global-content-muted-default);opacity:1;}/*!sc*/
.cYUZBQ:-ms-input-placeholder{color:var(--global-content-muted-default);opacity:1;}/*!sc*/
.cYUZBQ::placeholder{color:var(--global-content-muted-default);opacity:1;}/*!sc*/
data-styled.g106[id="sc-uojGG"]{content:"cYUZBQ,"}/*!sc*/
.dWvbda{display:block;width:100%;}/*!sc*/
.dWvbda:has([data-com-onepassword-filled]) .sc-uojGG,.dWvbda:has([data-com-onepassword-filled]) .sc-ilfuhL{box-shadow:0 0 0 38px #dceeff inset;}/*!sc*/
.dWvbda:has([data-com-onepassword-filled]) .sc-ilfuhL:focus-within{border-width:2px;}/*!sc*/
data-styled.g107[id="sc-bilyIR"]{content:"dWvbda,"}/*!sc*/
.crOCNQ{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;line-height:1.5;box-sizing:border-box;z-index:1;font-size:var(--global-fontSizes-body-md) !important;padding:8px 0 8px 12px;min-height:40px;color:var(--global-content-muted-default);}/*!sc*/
.crOCNQ svg{fill:var(--global-content-muted-default);}/*!sc*/
.crOCNQ div{-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;}/*!sc*/
data-styled.g110[id="sc-kYHfwS"]{content:"crOCNQ,"}/*!sc*/
.bplCn{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;padding:0;margin:0;border:none;background:transparent;}/*!sc*/
data-styled.g111[id="sc-xiLah"]{content:"bplCn,"}/*!sc*/
.eXlOcr{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;position:relative;}/*!sc*/
data-styled.g113[id="sc-jHkVzv"]{content:"eXlOcr,"}/*!sc*/
.iCOXHn{bottom:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-flex-direction:column-reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse;left:0;pointer-events:none;position:fixed;right:0;top:0;padding:var(--global-space-24);gap:var(--global-space-12);z-index:var(--global-layer-20);}/*!sc*/
@media (min-width:49.75rem){.iCOXHn{-webkit-align-items:flex-end;-webkit-box-align:flex-end;-ms-flex-align:flex-end;align-items:flex-end;gap:var(--global-space-16);}}/*!sc*/
data-styled.g114[id="sc-bQtKYq"]{content:"iCOXHn,"}/*!sc*/
.yvUVz{margin-bottom:var(--global-space-16);}/*!sc*/
.iiNNVA{margin-bottom:var(--global-space-4);}/*!sc*/
.dEsjgs{margin-bottom:var(--global-space-8);}/*!sc*/
.elafvT{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;}/*!sc*/
.KBKZg{text-transform:uppercase;}/*!sc*/
.cVKxat{margin-top:var(--global-space-32);}/*!sc*/
data-styled.g117[id="sc-jWUzzU"]{content:"jeVIgr,yvUVz,iiNNVA,dEsjgs,elafvT,KBKZg,cVKxat,"}/*!sc*/
.hkWVPZ{position:relative;cursor:pointer;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;padding:var(--global-space-16) 0;}/*!sc*/
data-styled.g122[id="sc-dUbtfd"]{content:"hkWVPZ,"}/*!sc*/
.bcZIVM{color:var(--global-constant-black-default);}/*!sc*/
data-styled.g124[id="sc-cbTzjv"]{content:"bcZIVM,"}/*!sc*/
.gtcEYT{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;list-style:none;margin:0;padding:0;}/*!sc*/
data-styled.g125[id="sc-hjGZqJ"]{content:"gtcEYT,"}/*!sc*/
.bqiJlM{position:relative;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;}/*!sc*/
data-styled.g126[id="sc-gUQvok"]{content:"bqiJlM,"}/*!sc*/
.jAeTvK{position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
data-styled.g127[id="sc-fXeWAj"]{content:"jAeTvK,"}/*!sc*/
.bpKJth{border-radius:var(--global-radius-md);cursor:default;position:absolute;right:0;width:auto;z-index:var(--global-layer-10);}/*!sc*/
data-styled.g128[id="sc-fIosxK"]{content:"bpKJth,"}/*!sc*/
.dxSiN{background-color:var(--global-bg-base-default);color:var(--global-content-regular-default);height:40px;box-sizing:border-box !important;border:1px solid var(--global-border-action-default);border-radius:var(--global-radius-md);font-size:var(--global-fontSizes-heading-sm);line-height:1.5;padding:var(--global-space-4) var(--global-space-12);padding-left:36px;text-overflow:ellipsis;-webkit-transition:all var(--global-transition-regular-duration) var(--global-transition-regular-easing);transition:all var(--global-transition-regular-duration) var(--global-transition-regular-easing);-webkit-transition-property:width;transition-property:width;width:208px;z-index:var(--global-layer-9);}/*!sc*/
.dxSiN::-webkit-input-placeholder{color:var(--global-content-muted-default);}/*!sc*/
.dxSiN::-moz-placeholder{color:var(--global-content-muted-default);}/*!sc*/
.dxSiN:-ms-input-placeholder{color:var(--global-content-muted-default);}/*!sc*/
.dxSiN::placeholder{color:var(--global-content-muted-default);}/*!sc*/
data-styled.g129[id="sc-gyElHZ"]{content:"dxSiN,"}/*!sc*/
.kCeCms{position:relative;left:var(--global-space-8);-webkit-transition:all var(--global-transition-regular-duration) var(--global-transition-regular-easing);transition:all var(--global-transition-regular-duration) var(--global-transition-regular-easing);-webkit-transition-property:left,width;transition-property:left,width;z-index:var(--global-layer-10);top:1px;width:0px;}/*!sc*/
data-styled.g130[id="sc-gjNHFA"]{content:"kCeCms,"}/*!sc*/
.ARCAH{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:var(--global-bg-base-default);border-bottom:var(--global-borderWidth-thin) solid var(--global-border-muted-default);box-sizing:border-box;display:grid;grid-column-gap:var(--global-space-16);grid-template-columns:auto auto;grid-template-rows:64px;padding:0 var(--global-space-16);position:fixed;width:100%;}/*!sc*/
data-styled.g131[id="sc-fmciRz"]{content:"ARCAH,"}/*!sc*/
.haOcpy{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}/*!sc*/
data-styled.g132[id="sc-eXlEPa"]{content:"haOcpy,"}/*!sc*/
.fCOHzE{justify-self:end;}/*!sc*/
data-styled.g133[id="sc-iFMAIt"]{content:"fCOHzE,"}/*!sc*/
.jZXlzz{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:var(--global-space-16) var(--global-space-16) var(--global-space-16) 0;}/*!sc*/
.jZXlzz:hover{opacity:0.8;}/*!sc*/
data-styled.g135[id="sc-eWfVMQ"]{content:"jZXlzz,"}/*!sc*/
.kaqlMR{padding-left:var(--global-space-16);padding-right:var(--global-space-16);margin-left:auto;margin-right:auto;}/*!sc*/
.kaqlMR [data-cardlayout-edgeless='true']{margin-left:calc(var(--global-space-16) * -1);width:calc(100% + var(--global-space-16) * 2);}/*!sc*/
.kaqlMR [data-cardlayout-edgeless='true'] [data-cardlayout-edgeless='true']{margin-left:0;width:initial;}/*!sc*/
@media (min-width:36.75rem){.kaqlMR{padding-left:var(--global-space-40);padding-right:var(--global-space-40);}.kaqlMR [data-cardlayout-edgeless='true']{margin-left:0;width:initial;}}/*!sc*/
@media (min-width:61.125rem){.kaqlMR{max-width:984px;}}/*!sc*/
data-styled.g157[id="sc-JkixQ"]{content:"kaqlMR,"}/*!sc*/
.hYzMAY{padding-left:var(--global-space-16);padding-right:var(--global-space-16);margin-left:auto;margin-right:auto;}/*!sc*/
.hYzMAY [data-cardlayout-edgeless='true']{margin-left:calc(var(--global-space-16) * -1);width:calc(100% + var(--global-space-16) * 2);}/*!sc*/
.hYzMAY [data-cardlayout-edgeless='true'] [data-cardlayout-edgeless='true']{margin-left:0;width:initial;}/*!sc*/
@media (min-width:36.75rem){.hYzMAY{padding-left:var(--global-space-40);padding-right:var(--global-space-40);}.hYzMAY [data-cardlayout-edgeless='true']{margin-left:0;width:initial;}}/*!sc*/
@media (min-width:61.125rem){.hYzMAY{max-width:648px;}}/*!sc*/
data-styled.g158[id="sc-gGPzkF"]{content:"hYzMAY,"}/*!sc*/
body{padding:env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);background-color:var(--background-color-fill);--background-color-mobile-fill:var(--global-bg-page-default);--background-color-mobile-transparent:rgba(245,245,245,0);--background-color-desktop-fill:var(--global-bg-page-default);--background-color-desktop-transparent:rgba(245,245,245,0);--background-color-fill:var(--background-color-mobile-fill);--background-color-transparent:var(--background-color-mobile-transparent);}/*!sc*/
@media (min-width:36.75rem){body{--background-color-fill:var(--background-color-desktop-fill);--background-color-transparent:var(--background-color-desktop-transparent);}}/*!sc*/
data-styled.g183[id="sc-global-fRmjWM1"]{content:"sc-global-fRmjWM1,"}/*!sc*/
html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;}/*!sc*/
body{min-width:320px;margin:0;color:var(--global-content-regular-default);font-family:var(--global-fontStack-body);font-size:var(--global-fontSizes-body-lg);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;}/*!sc*/
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block;}/*!sc*/
audio,canvas,progress,video{display:inline-block;vertical-align:baseline;}/*!sc*/
audio:not([controls]){display:none;height:0;}/*!sc*/
a{-webkit-text-decoration:none;text-decoration:none;cursor:pointer;background-color:transparent;}/*!sc*/
a:active,a:hover{outline:0;}/*!sc*/
p{margin:0;}/*!sc*/
p,ol{font-size:var(--global-fontSizes-body-md);line-height:1.5;}/*!sc*/
mark{background:var(--global-warning-muted-default);color:var(--global-content-regular-default);}/*!sc*/
img{border:0;}/*!sc*/
svg:not(:root){overflow:hidden;}/*!sc*/
figure{margin:1em 40px;}/*!sc*/
hr{box-sizing:content-box;height:0;}/*!sc*/
pre{overflow:auto;}/*!sc*/
code,kbd,pre,samp{font-family:ui-monospace,monospace;font-size:md:var(--global-fontSizes-data-md);font-feature-settings:normal;font-variation-settings:normal;font-weight:var(--global-fontWeights-data-default);line-height:var(--global-lineHeights-data);-webkit-letter-spacing:var(--global-letterSpacing-data);-moz-letter-spacing:var(--global-letterSpacing-data);-ms-letter-spacing:var(--global-letterSpacing-data);letter-spacing:var(--global-letterSpacing-data);}/*!sc*/
button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0;}/*!sc*/
button{overflow:visible;}/*!sc*/
button,select{text-transform:none;}/*!sc*/
button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;-webkit-appearance:button;-moz-appearance:button;appearance:button;cursor:pointer;}/*!sc*/
button[disabled],html input[disabled]{cursor:default;}/*!sc*/
button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0;}/*!sc*/
iframe{color-scheme:normal;}/*!sc*/
input{line-height:normal;}/*!sc*/
input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0;}/*!sc*/
input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto;}/*!sc*/
input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none;}/*!sc*/
fieldset{border:1px solid var(--global-border-muted-default);margin:0 2px;padding:0.35em 0.625em 0.75em;}/*!sc*/
legend{border:0;padding:0;}/*!sc*/
textarea{overflow:auto;}/*!sc*/
optgroup{font-weight:bold;}/*!sc*/
table{border-collapse:collapse;border-spacing:0;}/*!sc*/
td,th{padding:0;}/*!sc*/
data-styled.g184[id="sc-global-cBNAym1"]{content:"sc-global-cBNAym1,"}/*!sc*/
.gbWrlx{display:block;}/*!sc*/
@media (min-width:36.75rem){.gbWrlx{display:block;}}/*!sc*/
@media (min-width:49.75rem){.gbWrlx{display:block;}}/*!sc*/
@media (min-width:61.125rem){.gbWrlx{display:none;}}/*!sc*/
@media (min-width:61.125rem){.gbWrlx{display:none;}}/*!sc*/
.cinZIi{display:none;}/*!sc*/
@media (min-width:36.75rem){.cinZIi{display:none;}}/*!sc*/
@media (min-width:49.75rem){.cinZIi{display:none;}}/*!sc*/
@media (min-width:61.125rem){.cinZIi{display:block;}}/*!sc*/
@media (min-width:61.125rem){.cinZIi{display:block;}}/*!sc*/
.gqVWhu{display:none;}/*!sc*/
@media (min-width:36.75rem){.gqVWhu{display:block;}}/*!sc*/
@media (min-width:49.75rem){.gqVWhu{display:block;}}/*!sc*/
@media (min-width:61.125rem){.gqVWhu{display:block;}}/*!sc*/
@media (min-width:61.125rem){.gqVWhu{display:block;}}/*!sc*/
data-styled.g185[id="sc-pr0f0g-0"]{content:"gbWrlx,cinZIi,gqVWhu,"}/*!sc*/
.kZALel{width:100%;}/*!sc*/
data-styled.g207[id="sc-1aplu8i-0"]{content:"kZALel,"}/*!sc*/
.dJleju{width:100%;}/*!sc*/
data-styled.g208[id="sc-1aplu8i-1"]{content:"dJleju,"}/*!sc*/
.diaATw{z-index:2147483647;padding:var(--global-space-12);color:var(--global-content-inverted-default);background-color:var(--global-success-action-default);font-size:var(--global-fontSizes-body-lg);font-weight:var(--global-fontWeights-body-bold);position:fixed;left:0;top:-9999px;-webkit-transform:translateY(-100%);-ms-transform:translateY(-100%);transform:translateY(-100%);-webkit-transition:-webkit-transform 0.3s,top 0s 0.3s;-webkit-transition:transform 0.3s,top 0s 0.3s;transition:transform 0.3s,top 0s 0.3s;}/*!sc*/
.diaATw:focus{top:0;-webkit-transform:translateY(0%);-ms-transform:translateY(0%);transform:translateY(0%);-webkit-transition:-webkit-transform 0.3s;-webkit-transition:transform 0.3s;transition:transform 0.3s;}/*!sc*/
data-styled.g220[id="sc-1opqsst-0"]{content:"diaATw,"}/*!sc*/
.kYEDjN{margin-top:64px;}/*!sc*/
@media (min-width:61.125rem){.kYEDjN{margin-top:64px;}}/*!sc*/
data-styled.g270[id="sc-17dklxu-0"]{content:"kYEDjN,"}/*!sc*/
.izqYZq{background-color:var(--global-bg-base-default);box-shadow:0 var(--global-borderWidth-thin) 0 0 var(--global-constant-blackSubtle-default);left:0;position:fixed;top:0;z-index:var(--global-layer-11);white-space:nowrap;width:100%;}/*!sc*/
data-styled.g345[id="sc-unbejs-0"]{content:"izqYZq,"}/*!sc*/
.lgILgm > *{z-index:calc(var(--global-layer-11) + 1);}/*!sc*/
data-styled.g346[id="sc-unbejs-1"]{content:"lgILgm,"}/*!sc*/
.hwVpLV{z-index:var(--global-layer-11);}/*!sc*/
.hwVpLV header{z-index:var(--global-layer-12);}/*!sc*/
data-styled.g347[id="sc-kayc2k-0"]{content:"hwVpLV,"}/*!sc*/
.bmBQmN{width:100%;position:fixed;z-index:var(--global-layer-12);top:0;}/*!sc*/
data-styled.g348[id="sc-e5i2zv-0"]{content:"bmBQmN,"}/*!sc*/
.fJPhOg{text-align:center;}/*!sc*/
data-styled.g349[id="sc-qfokmo-0"]{content:"fJPhOg,"}/*!sc*/
.jzrvjz{display:block;}/*!sc*/
data-styled.g360[id="sc-1khzwz0-0"]{content:"jzrvjz,"}/*!sc*/
.jeokUF{width:100%;overflow:visible;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;}/*!sc*/
data-styled.g368[id="sc-1g6snea-0"]{content:"jeokUF,"}/*!sc*/
.ewIhgk{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:var(--global-space-32);}/*!sc*/
data-styled.g428[id="sc-137kp8k-0"]{content:"ewIhgk,"}/*!sc*/
.lbjiyO{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;gap:var(--global-space-32);-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-align-items:flex-start;-webkit-box-align:flex-start;-ms-flex-align:flex-start;align-items:flex-start;margin-top:var(--global-space-32);width:100%;}/*!sc*/
data-styled.g429[id="sc-137kp8k-1"]{content:"lbjiyO,"}/*!sc*/
.cHAFXQ{display:inline-block;position:relative;}/*!sc*/
data-styled.g589[id="sc-e3beep-0"]{content:"cHAFXQ,"}/*!sc*/
.joDnRq{-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;}/*!sc*/
data-styled.g674[id="sc-fh6tmm-0"]{content:"joDnRq,"}/*!sc*/
.hbrUXj{margin-left:var(--global-space-12);margin-right:var(--global-space-4);}/*!sc*/
data-styled.g675[id="sc-fh6tmm-1"]{content:"hbrUXj,"}/*!sc*/
.kOJquo{margin-left:var(--global-space-4);margin-right:var(--global-space-12);}/*!sc*/
data-styled.g676[id="sc-fh6tmm-2"]{content:"kOJquo,"}/*!sc*/
.fapWEE{display:none;}/*!sc*/
@media (min-width:36.75rem){.fapWEE{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;gap:4px;margin-top:calc(var(--global-space-12) * -1);}}/*!sc*/
data-styled.g677[id="sc-dt7zip-0"]{content:"fapWEE,"}/*!sc*/
.furbZZ{color:var(--global-primary-action-default);cursor:pointer;font-size:var(--global-fontSizes-heading-xl);opacity:0.33;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}/*!sc*/
data-styled.g678[id="sc-dt7zip-1"]{content:"furbZZ,"}/*!sc*/
.iHGIhv{color:var(--global-primary-action-default);cursor:auto;font-size:var(--global-fontSizes-heading-xl);opacity:1;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}/*!sc*/
data-styled.g679[id="sc-dt7zip-2"]{content:"iHGIhv,"}/*!sc*/
.dlXIVJ{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;}/*!sc*/
data-styled.g680[id="sc-1dmyb6b-0"]{content:"dlXIVJ,"}/*!sc*/
.kbuAEa{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;overflow:visible;width:100%;max-width:100vw;}/*!sc*/
@media (min-width:36.75rem){.kbuAEa{margin-left:var(--global-space-12);margin-right:var(--global-space-12);}}/*!sc*/
data-styled.g681[id="sc-1dmyb6b-1"]{content:"kbuAEa,"}/*!sc*/
.hLtYbF{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;grid-gap:16px;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto;margin-left:0;margin-right:0;padding-top:var(--global-space-16);padding-bottom:var(--global-space-24);}/*!sc*/
@media (min-width:36.75rem){.hLtYbF{-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-align-items:stretch;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;overflow-x:hidden;-webkit-scroll-behavior:auto;-moz-scroll-behavior:auto;-ms-scroll-behavior:auto;scroll-behavior:auto;-ms-overflow-style:none;-webkit-scrollbar-width:none;-moz-scrollbar-width:none;-ms-scrollbar-width:none;scrollbar-width:none;--carousel-items-horizontal-padding:var(--global-space-12);padding-left:var(--carousel-items-horizontal-padding);padding-right:var(--carousel-items-horizontal-padding);-webkit-mask:linear-gradient( to right,var(--global-constant-blackSubtle-default) 0,var(--global-constant-black-default) var(--carousel-items-horizontal-padding),var(--global-constant-black-default) calc(100% - var(--carousel-items-horizontal-padding)),var(--global-constant-blackSubtle-default) 100% );mask:linear-gradient( to right,var(--global-constant-blackSubtle-default) 0,var(--global-constant-black-default) var(--carousel-items-horizontal-padding),var(--global-constant-black-default) calc(100% - var(--carousel-items-horizontal-padding)),var(--global-constant-blackSubtle-default) 100% );}.hLtYbF::-webkit-scrollbar{display:none;}}/*!sc*/
data-styled.g682[id="sc-1dmyb6b-2"]{content:"hLtYbF,"}/*!sc*/
.iwysrW{display:block;overflow:visible;}/*!sc*/
@media (min-width:36.75rem){.iwysrW{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex:1 0 auto;-ms-flex:1 0 auto;flex:1 0 auto;width:calc(33.333333333333336% - 10.666666666666666px);max-width:380px;}}/*!sc*/
.cLMLuh{display:none;overflow:visible;}/*!sc*/
@media (min-width:36.75rem){.cLMLuh{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex:1 0 auto;-ms-flex:1 0 auto;flex:1 0 auto;width:calc(33.333333333333336% - 10.666666666666666px);max-width:380px;}}/*!sc*/
data-styled.g683[id="sc-1dmyb6b-3"]{content:"iwysrW,cLMLuh,"}/*!sc*/
.etQDMC{margin-top:var(--global-space-8);max-width:94%;display:block;}/*!sc*/
@media (min-width:36.75rem){.etQDMC{display:none;}}/*!sc*/
data-styled.g684[id="sc-1dmyb6b-4"]{content:"etQDMC,"}/*!sc*/
.ieKKhT{box-sizing:border-box;padding:6px 6px 8px;}/*!sc*/
data-styled.g685[id="sc-148r5xf-0"]{content:"ieKKhT,"}/*!sc*/
.kxMuSq{width:100%;box-sizing:border-box;padding:var(--global-space-56) 0 var(--global-space-40);display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;overflow:visible;}/*!sc*/
data-styled.g686[id="sc-l4u1zt-0"]{content:"kxMuSq,"}/*!sc*/
.gSEDWh{box-sizing:border-box;width:100%;}/*!sc*/
@media (min-width:36.75rem){.gSEDWh{width:calc(100% - calc(var(--global-space-40) * 2));box-sizing:content-box;}}/*!sc*/
data-styled.g687[id="sc-l4u1zt-1"]{content:"gSEDWh,"}/*!sc*/
.bsra-Dy{background-color:var(--global-content-regular-default);box-sizing:border-box;padding:var(--global-space-56) 0;width:100%;}/*!sc*/
data-styled.g711[id="sc-fxpbb1-0"]{content:"bsra-Dy,"}/*!sc*/
.hRHYUQ{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:var(--global-space-16);}/*!sc*/
@media (min-width:36.75rem){.hRHYUQ{-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;-webkit-flex-direction:revert;-ms-flex-direction:revert;flex-direction:revert;}}/*!sc*/
data-styled.g712[id="sc-fxpbb1-1"]{content:"hRHYUQ,"}/*!sc*/
.dVJlZU{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;gap:var(--global-space-16);margin-bottom:var(--global-space-8);}/*!sc*/
@media (min-width:36.75rem){.dVJlZU{-webkit-box-pack:revert;-webkit-justify-content:revert;-ms-flex-pack:revert;justify-content:revert;}}/*!sc*/
data-styled.g713[id="sc-fxpbb1-2"]{content:"dVJlZU,"}/*!sc*/
.cwtPzu{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:baseline;-webkit-box-align:baseline;-ms-flex-align:baseline;align-items:baseline;gap:var(--global-space-8);}/*!sc*/
data-styled.g714[id="sc-fxpbb1-3"]{content:"cwtPzu,"}/*!sc*/
.dsatFT{color:var(--global-content-invertedMuted-default);}/*!sc*/
data-styled.g715[id="sc-fxpbb1-4"]{content:"dsatFT,"}/*!sc*/
.iZNHuw{color:var(--global-content-inverted-default);}/*!sc*/
.iZNHuw svg{fill:var(--global-content-inverted-default);}/*!sc*/
.iZNHuw:hover{color:var(--global-content-inverted-hover);}/*!sc*/
.iZNHuw:hover svg{fill:var(--global-content-inverted-hover);}/*!sc*/
data-styled.g716[id="sc-fxpbb1-5"]{content:"iZNHuw,"}/*!sc*/
.jvFFYD{color:var(--global-content-invertedMuted-default);}/*!sc*/
.jvFFYD svg{fill:var(--global-content-invertedMuted-default);}/*!sc*/
.jvFFYD:hover{color:var(--global-content-invertedMuted-hover);}/*!sc*/
.jvFFYD:hover svg{fill:var(--global-content-invertedMuted-hover);}/*!sc*/
data-styled.g717[id="sc-fxpbb1-6"]{content:"jvFFYD,"}/*!sc*/
.hsTbSd{position:relative;}/*!sc*/
.hsTbSd::after{content:'';display:block;position:absolute;bottom:0;z-index:0;width:100%;border-bottom:var(--global-borderWidth-thin) solid var(--global-border-muted-default);}/*!sc*/
data-styled.g718[id="sc-163nd07-0"]{content:"hsTbSd,"}/*!sc*/
.kCVCfQ{background-color:var(--background-color-fill);overflow:auto hidden;-ms-overflow-style:none;-webkit-scrollbar-width:none;-moz-scrollbar-width:none;-ms-scrollbar-width:none;scrollbar-width:none;}/*!sc*/
.kCVCfQ::-webkit-scrollbar{display:none;}/*!sc*/
.kCVCfQ::before,.kCVCfQ::after{content:'';display:block;position:absolute;top:0;bottom:0;width:var(--global-space-32);z-index:2;pointer-events:none;-webkit-transition:opacity 350ms ease;transition:opacity 350ms ease;}/*!sc*/
.kCVCfQ::before{left:0;background-image:linear-gradient(to left,var(--background-color-transparent),var(--background-color-fill));opacity:0;}/*!sc*/
.kCVCfQ::after{right:0;background-image:linear-gradient(to right,var(--background-color-transparent),var(--background-color-fill));opacity:0;}/*!sc*/
data-styled.g719[id="sc-163nd07-1"]{content:"kCVCfQ,"}/*!sc*/
.jbqtqc{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap;padding:0;margin:auto !important;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;}/*!sc*/
data-styled.g720[id="sc-163nd07-2"]{content:"jbqtqc,"}/*!sc*/
.wuDwR{display:block;}/*!sc*/
.wuDwR:first-child{margin-left:auto;}/*!sc*/
.wuDwR:last-child{margin-right:auto;}/*!sc*/
data-styled.g721[id="sc-163nd07-3"]{content:"wuDwR,"}/*!sc*/
.cinyTP{position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:var(--global-space-40);margin:0 var(--global-space-16);font-size:var(--global-fontSizes-heading-sm);font-weight:var(--global-fontWeights-body-default);font-weight:var(--global-fontWeights-heading-default);color:var(--global-content-regular-default);}/*!sc*/
.cinyTP[aria-current='page']{color:var(--global-primary-action-default);}/*!sc*/
.cinyTP[aria-current='page']::after{content:'';display:block;position:absolute;bottom:0;left:20%;width:60%;height:1px;background-color:var(--global-primary-action-default);z-index:1;}/*!sc*/
data-styled.g722[id="sc-163nd07-4"]{content:"cinyTP,"}/*!sc*/
.zttnK{position:relative;color:var(--global-content-regular-default);text-align:center;width:100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:block;}/*!sc*/
data-styled.g725[id="sc-1b5vbhn-0"]{content:"zttnK,"}/*!sc*/
.hqVCmM{background-color:transparent;border:none;--icon-color:var(--global-brand-youtubeBlack);}/*!sc*/
.hqVCmM:hover,.hqVCmM:active,.hqVCmM:focus{background-color:transparent;border:none;}/*!sc*/
data-styled.g726[id="sc-1b5vbhn-1"]{content:"hqVCmM,"}/*!sc*/
.gTqRpn{aspect-ratio:3 / 1;border-radius:0;margin:0px;position:relative;margin:0 auto;}/*!sc*/
@media (min-width:36.75rem){.gTqRpn{aspect-ratio:4 / 1;}}/*!sc*/
data-styled.g727[id="sc-1b5vbhn-2"]{content:"gTqRpn,"}/*!sc*/
.gIwlKT{padding:var(--global-space-24);box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;padding:0 var(--global-space-24);margin-top:calc(-1 * 64px);position:relative;padding-bottom:var(--global-space-32);}/*!sc*/
@media (min-width:36.75rem){.gIwlKT{margin-top:calc(-1 * 64px);}}/*!sc*/
data-styled.g728[id="sc-1b5vbhn-3"]{content:"gIwlKT,"}/*!sc*/
.cAVPxl{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:horizontal;-ms-flex-direction:horizontal;flex-direction:horizontal;gap:4px;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;}/*!sc*/
data-styled.g729[id="sc-1b5vbhn-4"]{content:"cAVPxl,"}/*!sc*/
.RzWue{margin-block-start:0px;list-style:none;padding:0px;}/*!sc*/
data-styled.g730[id="sc-1b5vbhn-5"]{content:"RzWue,"}/*!sc*/
.bFPwFa{display:inline-block;}/*!sc*/
.bFPwFa:not(:first-child):before{content:'•';font-size:12px;padding:0px 8px;color:var(--global-content-muted-default);}/*!sc*/
data-styled.g731[id="sc-1b5vbhn-6"]{content:"bFPwFa,"}/*!sc*/
.YnMro{max-width:800px;margin:0 auto;}/*!sc*/
data-styled.g733[id="sc-1b5vbhn-8"]{content:"YnMro,"}/*!sc*/
.vxXYJ{max-width:220px;margin:auto;}/*!sc*/
data-styled.g734[id="sc-1b5vbhn-9"]{content:"vxXYJ,"}/*!sc*/
.iotdiL{position:absolute;top:calc(64px + var(--global-space-12));right:var(--global-space-12);}/*!sc*/
@media (min-width:36.75rem){.iotdiL{top:calc(64px + var(--global-space-12));right:var(--global-space-24);}}/*!sc*/
data-styled.g736[id="sc-1b5vbhn-11"]{content:"iotdiL,"}/*!sc*/
.jynlXy{z-index:var(--global-layer-11);position:fixed;right:0;-webkit-transition:var(--global-transition-slow-easing) var(--global-transition-slow-duration);transition:var(--global-transition-slow-easing) var(--global-transition-slow-duration);width:inherit;box-sizing:border-box;padding:var(--global-space-16);bottom:0;-webkit-transform:translateY(100%);-ms-transform:translateY(100%);transform:translateY(100%);border-bottom:0;border-top:var(--global-borderWidth-thin) solid var(--global-border-muted-default);background-color:var(--global-bg-base-default);left:0;}/*!sc*/
@media (min-width:36.75rem){.jynlXy{border-top:var(--global-borderWidth-thin) solid var(--global-border-muted-default);}}/*!sc*/
@media (min-width:36.75rem){.jynlXy{left:68px;}}/*!sc*/
@media (min-width:61.125rem){.jynlXy{left:248px;}}/*!sc*/
data-styled.g739[id="sc-8tqpk9-0"]{content:"jynlXy,"}/*!sc*/
.dBqRum{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column-reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse;width:100%;}/*!sc*/
data-styled.g804[id="sc-1kelcyo-0"]{content:"dBqRum,"}/*!sc*/
.daMCfa{width:100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;gap:var(--global-space-8);margin-top:var(--global-space-24);}/*!sc*/
data-styled.g1047[id="sc-1cdacby-0"]{content:"daMCfa,"}/*!sc*/
.hGJiuv{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
data-styled.g1050[id="sc-zut8gy-0"]{content:"hGJiuv,"}/*!sc*/
.jxqpNa{overflow-wrap:break-word;word-wrap:break-word;word-break:break-word;}/*!sc*/
.jxqpNa img{max-width:100%;}/*!sc*/
.jxqpNa a{color:var(--global-primary-action-default);font-weight:var(--global-fontWeights-body-bold);-webkit-text-decoration:none;text-decoration:none;}/*!sc*/
.jxqpNa a:hover{color:var(--global-primary-action-hover);}/*!sc*/
.jxqpNa a:active{color:var(--global-primary-action-pressed);}/*!sc*/
.jxqpNa p:empty{overflow:auto;margin-bottom:1em !important;}/*!sc*/
.jxqpNa ul,.jxqpNa ol{margin-block-start:0;margin-block-end:0;padding-inline-start:calc(var(--global-space-16) + var(--global-space-4));}/*!sc*/
data-styled.g1058[id="sc-6emzep-0"]{content:"jxqpNa,"}/*!sc*/
.jNaFcj{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;-webkit-align-items:start;-webkit-box-align:start;-ms-flex-align:start;align-items:start;}/*!sc*/
data-styled.g1059[id="sc-1mq9x0f-0"]{content:"jNaFcj,"}/*!sc*/
.fQuYwT{height:29px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:baseline;-webkit-box-align:baseline;-ms-flex-align:baseline;align-items:baseline;margin-top:2px;}/*!sc*/
data-styled.g1060[id="sc-1mq9x0f-1"]{content:"fQuYwT,"}/*!sc*/
.gjQPbG{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;height:100%;padding:0;overflow:hidden;border-radius:var(--global-radius-lg);background-color:var(--global-bg-base-default);border-color:var(--component-button-action-default);border-width:var(--global-borderWidth-thick);margin:0 var(--global-borderWidth-thick) var(--global-borderWidth-thick);border-style:none;border-top:none;}/*!sc*/
.ihRjLB{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;height:100%;padding:0;overflow:hidden;border-radius:0 0 var(--global-radius-lg) var(--global-radius-lg);background-color:var(--global-bg-base-default);border-color:var(--component-button-action-default);border-width:var(--global-borderWidth-thick);margin:0;border-style:solid;border-top:none;}/*!sc*/
data-styled.g1062[id="sc-1a2jhmw-0"]{content:"gjQPbG,ihRjLB,"}/*!sc*/
.bIlSfu{display:none;width:100%;background-color:var(--component-button-action-default);color:var(--component-button-onAction-default);border-radius:var(--global-radius-lg) var(--global-radius-lg) 0 0;text-align:center;}/*!sc*/
@media (min-width:36.75rem){.bIlSfu{display:block;visibility:hidden;}}/*!sc*/
.iPNPsh{display:block;width:100%;background-color:var(--component-button-action-default);color:var(--component-button-onAction-default);border-radius:var(--global-radius-lg) var(--global-radius-lg) 0 0;text-align:center;}/*!sc*/
@media (min-width:36.75rem){.iPNPsh{display:block;visibility:visible;}}/*!sc*/
data-styled.g1063[id="sc-1a2jhmw-1"]{content:"bIlSfu,iPNPsh,"}/*!sc*/
.dggRUR{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto;overflow:hidden;gap:var(--global-space-12);padding:var(--global-space-16);}/*!sc*/
@media (min-width:36.75rem){.dggRUR{gap:var(--global-space-16);padding-top:var(--global-space-24);padding-bottom:var(--global-space-24);}}/*!sc*/
data-styled.g1066[id="sc-1a2jhmw-4"]{content:"dggRUR,"}/*!sc*/
.dNpzBR{-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto;}/*!sc*/
data-styled.g1067[id="sc-1a2jhmw-5"]{content:"dNpzBR,"}/*!sc*/
.gPLDUn{-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto;}/*!sc*/
data-styled.g1068[id="sc-1a2jhmw-6"]{content:"gPLDUn,"}/*!sc*/
.kClFZP{-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto;}/*!sc*/
data-styled.g1069[id="sc-1a2jhmw-7"]{content:"kClFZP,"}/*!sc*/
.kPBzPp{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:var(--global-space-16);width:100%;}/*!sc*/
data-styled.g1070[id="sc-fyi050-0"]{content:"kPBzPp,"}/*!sc*/
.cRmHzU{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:var(--global-space-12);text-align:center;}/*!sc*/
data-styled.g1071[id="sc-fyi050-1"]{content:"cRmHzU,"}/*!sc*/
.gUsbAk{width:100%;}/*!sc*/
data-styled.g1072[id="sc-fyi050-2"]{content:"gUsbAk,"}/*!sc*/
.dofSdt{position:absolute;width:100%;height:100%;overflow:hidden;background-color:var(--global-bg-page-default);}/*!sc*/
.dofSdt:hover .sc-1fqtlwo-0{-webkit-transition:opacity 300ms ease-in-out;transition:opacity 300ms ease-in-out;opacity:1;}/*!sc*/
data-styled.g1126[id="sc-1fqtlwo-2"]{content:"dofSdt,"}/*!sc*/
.gNJHGB{position:absolute;top:0;width:100%;height:100%;opacity:0.3;background:linear-gradient(to bottom,rgba(0,0,0,0.7),rgba(0,0,0,var(--header-cover-overlay-opacity)) 100%);}/*!sc*/
@media (min-width:36.75rem){.gNJHGB{opacity:0;visibility:hidden;}}/*!sc*/
data-styled.g1127[id="sc-1fqtlwo-3"]{content:"gNJHGB,"}/*!sc*/
.GqaqU source,.GqaqU img{width:100%;height:100%;object-fit:cover;-webkit-filter:blur(var(--header-cover-blur));filter:blur(var(--header-cover-blur));-webkit-transform:scale(var(--header-cover-scale));-ms-transform:scale(var(--header-cover-scale));transform:scale(var(--header-cover-scale));}/*!sc*/
@media (min-width:36.75rem){.GqaqU source,.GqaqU img{-webkit-filter:none;filter:none;-webkit-transform:none;-ms-transform:none;transform:none;}}/*!sc*/
data-styled.g1129[id="sc-1fqtlwo-5"]{content:"GqaqU,"}/*!sc*/
.lgUuRc{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:var(--global-space-16);width:100%;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;}/*!sc*/
@media (min-width:61.125rem){.lgUuRc{-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;}}/*!sc*/
data-styled.g1132[id="sc-ozt2d0-0"]{content:"lgUuRc,"}/*!sc*/
.caHMNA{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:var(--global-space-8);}/*!sc*/
data-styled.g1133[id="sc-ozt2d0-1"]{content:"caHMNA,"}/*!sc*/
.eHOjuK{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-align-items:flex-start;-webkit-box-align:flex-start;-ms-flex-align:flex-start;align-items:flex-start;gap:var(--global-space-4);}/*!sc*/
data-styled.g1134[id="sc-ozt2d0-2"]{content:"eHOjuK,"}/*!sc*/
.gPqcjh{-webkit-flex:1 0 auto;-ms-flex:1 0 auto;flex:1 0 auto;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:flex-end;-webkit-box-align:flex-end;-ms-flex-align:flex-end;align-items:flex-end;}/*!sc*/
data-styled.g1135[id="sc-17rkj4l-0"]{content:"gPqcjh,"}/*!sc*/
.dNBDZc{min-height:100vh;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;}/*!sc*/
data-styled.g1136[id="sc-17rkj4l-1"]{content:"dNBDZc,"}/*!sc*/
</style></head><body><div data-reactroot="" id="__next"><a class="sc-1opqsst-0 diaATw" href="#renderPageContentWrapper">Skip navigation</a><div class="sc-e5i2zv-0 bmBQmN"><div class="sc-pr0f0g-0 gbWrlx"><div data-tag="mobile-navbar"><header class="sc-unbejs-0 izqYZq"><div class="sc-unbejs-1 lgILgm"><header class="sc-fmciRz ARCAH"><div class="sc-eXlEPa haOcpy"><a aria-label="Go to home page" class="sc-eWfVMQ jZXlzz" href="/"><span class="sc-fvxzrP gFFlsB"><svg viewbox="0 0 436 476" xmlns="http://www.w3.org/2000/svg"><title>Patreon logo</title><path d="M436 143c-.084-60.778-47.57-110.591-103.285-128.565C263.528-7.884 172.279-4.649 106.214 26.424 26.142 64.089.988 146.596.051 228.883c-.77 67.653 6.004 245.841 106.83 247.11 74.917.948 86.072-95.279 120.737-141.623 24.662-32.972 56.417-42.285 95.507-51.929C390.309 265.865 436.097 213.011 436 143Z" data-fill="1"></path></svg></span></a></div><div class="sc-iFMAIt fCOHzE"><ul class="sc-hjGZqJ gtcEYT"><li class="sc-gUQvok bqiJlM"><div class="sc-ezbkAF OvGmz"><a class="sc-dJjYzT kSPIgI sc-cbTzjv bcZIVM" href="/login">Log in</a></div></li><li class="sc-gUQvok bqiJlM"><div class="sc-ezbkAF hQAMrR"><a class="sc-dUbtfd hkWVPZ"><button aria-disabled="false" aria-label="Mobile navigation menu button" class="sc-jrQzAO inFiZu" type="button"><div class="sc-furwcr cmGSBk"><span aria-hidden="true" class="sc-eCImPb gtwjjn"><svg data-tag="IconMenu" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M3 7.125c0-.45.056-.731.225-.9.169-.169.45-.225.9-.225h15.75c.45 0 .73.056.9.225.169.169.225.45.225.9s-.056.73-.225.9c-.169.169-.45.225-.9.225H4.125c-.45 0-.73-.056-.9-.225-.169-.169-.225-.45-.225-.9m16.875 4.125H4.125c-.45 0-.73.056-.9.225-.169.169-.225.45-.225.9s.056.73.225.9c.169.169.45.225.9.225h15.75c.45 0 .73-.056.9-.225.169-.169.225-.45.225-.9s-.056-.731-.225-.9c-.169-.169-.45-.225-.9-.225m0 5.25H4.125c-.45 0-.73.056-.9.225-.169.169-.225.45-.225.9s.056.73.225.9c.169.169.45.225.9.225h15.75c.45 0 .73-.056.9-.225.169-.169.225-.45.225-.9s-.056-.731-.225-.9c-.169-.169-.45-.225-.9-.225"></path></svg></span></div></button></a></div></li></ul></div></header></div></header></div></div><div class="sc-pr0f0g-0 cinZIi"><div data-tag="navbar"><div class="sc-kayc2k-0 hwVpLV"><header class="sc-fmciRz ARCAH"><div class="sc-eXlEPa haOcpy"><a aria-label="Go to home page" class="sc-eWfVMQ jZXlzz" href="/"><span class="sc-fvxzrP gFFlsB"><svg viewbox="0 0 436 476" xmlns="http://www.w3.org/2000/svg"><title>Patreon logo</title><path d="M436 143c-.084-60.778-47.57-110.591-103.285-128.565C263.528-7.884 172.279-4.649 106.214 26.424 26.142 64.089.988 146.596.051 228.883c-.77 67.653 6.004 245.841 106.83 247.11 74.917.948 86.072-95.279 120.737-141.623 24.662-32.972 56.417-42.285 95.507-51.929C390.309 265.865 436.097 213.011 436 143Z" data-fill="1"></path></svg></span></a></div><div class="sc-iFMAIt fCOHzE"><ul class="sc-hjGZqJ gtcEYT"><li class="sc-gUQvok bqiJlM"><div class="sc-ezbkAF hGPVP"><a class="sc-dUbtfd hkWVPZ"><div class="sc-ezbkAF bBVwnB"><div class="sc-ezbkAF iGHJRA"><form action="/search" class="sc-fXeWAj jAeTvK" method="GET" role="search"><div class="sc-fIosxK bpKJth"><div class="sc-ezbkAF gdvxoW"><div aria-expanded="false" aria-haspopup="true" aria-label="Search" class="sc-hmjpVf dApvCB" data-tag="menuToggleDiv"><div class="sc-ezbkAF fvJsro"><div class="sc-gjNHFA kCeCms"><button aria-disabled="false" class="sc-jrQzAO inFiZu" type="button"><div class="sc-furwcr cmGSBk"><span aria-hidden="true" class="sc-eCImPb kzaoWz"><svg data-tag="IconSearch" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m20.006 17.354-.804-.804-.804-.804c-.661-.661-.988-.967-1.079-1.33-.09-.364.054-.785.336-1.677A7.422 7.422 0 0 0 18 10.5c0-2.071-.84-3.946-2.197-5.303A7.477 7.477 0 0 0 10.5 3c-2.071 0-3.946.84-5.303 2.197A7.477 7.477 0 0 0 3 10.5c0 2.071.84 3.946 2.197 5.303a7.477 7.477 0 0 0 7.543 1.852c.89-.282 1.312-.427 1.675-.336.364.091.67.418 1.331 1.079l.804.803.804.805c.663.662.994.994 1.326.994.331 0 .663-.332 1.326-.994.663-.663.994-.995.994-1.326 0-.332-.331-.663-.994-1.326M10.5 15.75a5.233 5.233 0 0 1-3.712-1.538A5.234 5.234 0 0 1 5.25 10.5c0-1.45.588-2.762 1.538-3.712A5.234 5.234 0 0 1 10.5 5.25c1.45 0 2.762.588 3.712 1.538A5.234 5.234 0 0 1 15.75 10.5c0 1.45-.588 2.762-1.538 3.712A5.234 5.234 0 0 1 10.5 15.75"></path></svg></span></div></button></div><input aria-label="Search" autocomplete="off" class="sc-gyElHZ dxSiN" name="q" placeholder="Find a creator" type="search"/></div></div></div></div></form></div></div></a></div></li><li class="sc-gUQvok bqiJlM"><div class="sc-ezbkAF OvGmz"><a class="sc-dJjYzT kSPIgI sc-cbTzjv bcZIVM" href="/login">Log in</a></div></li><li class="sc-gUQvok bqiJlM"><div class="sc-ezbkAF hQAMrR"><a class="sc-dUbtfd hkWVPZ"></a><a aria-disabled="false" class="sc-jrQzAO gXIGpe" href="/create" role="link"><div class="sc-furwcr cmGSBk"><div class="sc-pVTFL hNVLeS">Create on Patreon</div></div></a></div></li></ul></div></header></div></div></div></div><div class="sc-17dklxu-0 kYEDjN" data-tag="navigation-offset-top"></div><div class="sc-qfokmo-0 fJPhOg" id="banner-manager"></div><main class="sc-1aplu8i-0 sc-1aplu8i-1 kZALel dJleju" id="renderPageContentWrapper" role="main"><div class="sc-1khzwz0-0 jzrvjz"><div class="sc-jWUzzU jeVIgr" data-tag="age-gate-blur"><div class="sc-17rkj4l-1 dNBDZc"><div class="sc-1g6snea-0"><header class="sc-1b5vbhn-0 zttnK"><div class="sc-1b5vbhn-2 gTqRpn" data-tag="creator-public-page-cover"><div class="sc-1fqtlwo-2 dofSdt"><picture class="sc-1fqtlwo-5 GqaqU"><source media="(max-width: 620px)" srcset="https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/4acd48bc73f64852815928f4cb952854/eyJ3Ijo2MjAsIndlIjoxfQ%3D%3D/1.jpg?token-time=1725408000&amp;token-hash=HsOct1Bjejdp1XUxhtiZHXZrUz2Ye3AUCpPt8BfA_Wo%3D"/><source media="(max-width: 1100px)" srcset="https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/4acd48bc73f64852815928f4cb952854/eyJ3Ijo5NjAsIndlIjoxfQ%3D%3D/1.jpg?token-time=1725408000&amp;token-hash=Flw8dS6ee05xCX-yKqwHWQW8gMi-CryYO8m9ibJzAPo%3D"/><source media="(max-width: 1400px)" srcset="https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/4acd48bc73f64852815928f4cb952854/eyJ3IjoxMjAwLCJ3ZSI6MX0%3D/1.jpg?token-time=1725408000&amp;token-hash=y39z03HQjT1pKP7UbY5PtSJgAzy7OEmsDQIH2rdXyBU%3D"/><source media="(max-width: 1700px)" srcset="https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/4acd48bc73f64852815928f4cb952854/eyJ3IjoxNjAwLCJ3ZSI6MX0%3D/1.jpg?token-time=1725408000&amp;token-hash=QFn2qv7-mYjOh8gX3WCcJlFvHRu4JwXLeDhZRYI7dLo%3D"/><source media="(min-width: 1700px)" srcset="https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/4acd48bc73f64852815928f4cb952854/eyJ3IjoxOTIwLCJ3ZSI6MX0%3D/1.jpg?token-time=1725408000&amp;token-hash=8sMRhUNh5J6W08bwZar0Oq4wfENvvuU9bXwuLj997C4%3D"/><img alt="" src="https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/4acd48bc73f64852815928f4cb952854/eyJ3IjoxOTIwLCJ3ZSI6MX0%3D/1.jpg?token-time=1725408000&amp;token-hash=8sMRhUNh5J6W08bwZar0Oq4wfENvvuU9bXwuLj997C4%3D"/></picture><div class="sc-1fqtlwo-3 gNJHGB"></div></div></div><div class="sc-1b5vbhn-3 gIwlKT"><div class="sc-gsDKAQ dRLyBe" shape="square"><img alt="" class="sc-bdvvtL iFMLae" data-tag="creator-public-page-avatar" src="https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/1c891c2e3fed471599817e87388721da/eyJoIjoxMDgwLCJ3IjoxMDgwfQ%3D%3D/1.jpg?token-time=1725494400&amp;token-hash=vEqR5DenL9jV9Uxf90CIlfUiW8VhN6h3xFP_kqAwsTM%3D"/></div><div class="sc-jWUzzU yvUVz"></div><div class="sc-1b5vbhn-11 iotdiL"><button aria-disabled="false" aria-expanded="false" aria-label="Share" class="sc-jrQzAO HeRcC" data-tag="pages-creator-public-page-Header-ShareCampaign" type="button"><div class="sc-furwcr cmGSBk"></div></button><button aria-disabled="false" aria-expanded="false" aria-label="More actions" class="sc-jrQzAO fUjrle" data-testid="overflow-menu-button" type="button"><div class="sc-furwcr cmGSBk"><span aria-hidden="true" class="sc-eCImPb jTjmcT"><svg data-tag="IconMore" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M21 12c0 .9-.113 1.462-.45 1.8-.338.337-.9.45-1.8.45s-1.462-.113-1.8-.45c-.337-.338-.45-.9-.45-1.8s.113-1.462.45-1.8c.338-.337.9-.45 1.8-.45s1.462.113 1.8.45c.337.338.45.9.45 1.8m-9-2.25c-.9 0-1.462.113-1.8.45-.337.338-.45.9-.45 1.8s.113 1.462.45 1.8c.338.337.9.45 1.8.45s1.462-.113 1.8-.45c.337-.338.45-.9.45-1.8s-.113-1.462-.45-1.8c-.338-.337-.9-.45-1.8-.45m-6.75 0c-.9 0-1.462.113-1.8.45-.337.338-.45.9-.45 1.8s.113 1.462.45 1.8c.338.337.9.45 1.8.45s1.462-.113 1.8-.45c.337-.338.45-.9.45-1.8s-.113-1.462-.45-1.8c-.338-.337-.9-.45-1.8-.45"></path></svg></span></div></button></div><div class="sc-1b5vbhn-8 YnMro"><h1 class="sc-cNKqjZ fJWvCc">Corey Schafer</h1><div class="sc-jWUzzU iiNNVA"></div><p class="sc-dkPtRN kyvGZN">creating Programming Tutorials</p><div class="sc-jWUzzU iiNNVA"></div><ul class="sc-1b5vbhn-5 RzWue"><li class="sc-1b5vbhn-6 bFPwFa"><span class="sc-dkPtRN fiyzGe" data-tag="patron-count">549<!-- --> <!-- -->members</span></li><li class="sc-1b5vbhn-6 bFPwFa"><span class="sc-dkPtRN fiyzGe" data-tag="creation-count">238<!-- --> posts</span></li></ul><div class="sc-jWUzzU yvUVz"></div><div class="sc-1b5vbhn-9 vxXYJ"><button aria-disabled="false" class="sc-jrQzAO jXTMNh" data-tag="join-for-free-button" type="button"><div class="sc-furwcr cmGSBk"><div class="sc-pVTFL hNVLeS">Join for free</div></div></button><div></div><div class="sc-jWUzzU dEsjgs"></div><div class="sc-1b5vbhn-4 cAVPxl"><a aria-disabled="false" class="sc-jrQzAO HeRcC sc-1b5vbhn-1 hqVCmM" data-tag="creator-public-page-social-instagram" href="https://www.instagram.com/coreymschafer" rel="noopener noreferrer" role="link" target="_blank"><div class="sc-furwcr cmGSBk"><span aria-hidden="true" class="sc-eCImPb fgpqcx"><svg data-tag="IconBrandInstagram" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 3.803c2.67 0 2.987.01 4.042.058 2.71.123 3.975 1.409 4.099 4.099.048 1.054.057 1.37.057 4.04 0 2.672-.01 2.988-.057 4.042-.124 2.687-1.387 3.975-4.1 4.099-1.054.048-1.37.058-4.041.058-2.67 0-2.987-.01-4.04-.058-2.718-.124-3.977-1.416-4.1-4.1-.048-1.054-.058-1.37-.058-4.041 0-2.67.01-2.986.058-4.04.124-2.69 1.387-3.977 4.1-4.1 1.054-.047 1.37-.057 4.04-.057M12 2c-2.716 0-3.056.012-4.122.06-3.632.167-5.65 2.182-5.817 5.817C2.01 8.944 2 9.284 2 12s.012 3.057.06 4.123c.167 3.632 2.182 5.65 5.817 5.817 1.067.048 1.407.06 4.123.06s3.057-.012 4.123-.06c3.629-.167 5.652-2.182 5.816-5.817.05-1.066.061-1.407.061-4.123s-.012-3.056-.06-4.122c-.163-3.629-2.18-5.65-5.816-5.817C15.057 2.01 14.716 2 12 2m0 4.865a5.135 5.135 0 1 0 0 10.27 5.135 5.135 0 0 0 0-10.27m0 8.468a3.333 3.333 0 1 1 0-6.666 3.333 3.333 0 0 1 0 6.666m5.338-9.87a1.2 1.2 0 1 0 0 2.4 1.2 1.2 0 0 0 0-2.4"></path></svg></span></div></a><a aria-disabled="false" class="sc-jrQzAO HeRcC sc-1b5vbhn-1 hqVCmM" data-tag="creator-public-page-social-twitter" href="https://twitter.com/CoreyMSchafer" rel="noopener noreferrer" role="link" target="_blank"><div class="sc-furwcr cmGSBk"><span aria-hidden="true" class="sc-eCImPb fgpqcx"><svg data-tag="IconBrandTwitter" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M13.712 10.622 20.413 3h-1.588l-5.818 6.618L8.36 3H3l7.027 10.007L3 21h1.588l6.144-6.989L15.64 21H21zm-2.174 2.474-.713-.997L5.16 4.17H7.6l4.571 6.4.712.996 5.943 8.319h-2.439z"></path></svg></span></div></a></div><div class="sc-jWUzzU iiNNVA"></div></div></div></div></header></div><div class="sc-163nd07-0 hsTbSd"><nav aria-labelledby="pageheader-title" class="sc-163nd07-1 kCVCfQ"><ul class="sc-163nd07-2 jbqtqc"><li class="sc-163nd07-3 wuDwR"><a aria-current="page" class="sc-163nd07-4 cinyTP" href="/coreyms?">Home</a></li><li class="sc-163nd07-3 wuDwR"><a class="sc-163nd07-4 cinyTP" href="/coreyms/collections?">Collections</a></li><li class="sc-163nd07-3 wuDwR"><a class="sc-163nd07-4 cinyTP" href="/coreyms/about?">About</a></li></ul></nav></div><div class="sc-jWUzzU elafvT"><div class="sc-l4u1zt-0 kxMuSq"><div class="sc-fyi050-0 kPBzPp"><div class="sc-fyi050-1 cRmHzU"><h2 class="sc-ieecCq eNdlaa">Choose your membership</h2></div><div class="sc-fyi050-2 gUsbAk"><div class="sc-1dmyb6b-0 dlXIVJ"><div class="sc-1dmyb6b-1 kbuAEa"><div class="sc-pr0f0g-0 sc-fh6tmm-0 sc-fh6tmm-1 gqVWhu joDnRq hbrUXj"><button aria-disabled="true" aria-label="scroll left" class="sc-jrQzAO gHHdcz" data-tag="carousel-left" type="button"><div class="sc-furwcr cmGSBk"><span aria-hidden="true" class="sc-eCImPb gtwjjn"><svg data-tag="IconChevronLeft" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M15.866 18.244c.422.423.634.742.634 1.06 0 .32-.212.639-.634 1.062-.423.423-.742.634-1.061.634-.32 0-.638-.211-1.06-.634l-3.653-3.653-3.653-3.652c-.423-.423-.634-.742-.634-1.06 0-.32.211-.639.634-1.062l3.653-3.652 3.652-3.652c.423-.423.742-.635 1.06-.635.32 0 .638.212 1.061.635.423.423.635.741.635 1.06 0 .32-.212.638-.635 1.06l-2.857 2.858-2.856 2.857c-.191.19-.287.36-.287.53 0 .17.096.34.287.53l2.856 2.857z"></path></svg></span></div></button></div><div class="sc-JkixQ sc-1dmyb6b-2 kaqlMR hLtYbF"><div class="sc-1dmyb6b-3 iwysrW" id="209682"><div class="sc-1g6snea-0 jeokUF"><div class="sc-1a2jhmw-1 bIlSfu" data-tag="tier-card-badge"><div class="sc-148r5xf-0 ieKKhT"><div class="sc-ieecCq hbWAxe"><div class="sc-jWUzzU KBKZg"><strong>Recommended</strong></div></div></div></div><div class="sc-1a2jhmw-0 gjQPbG" data-tag="tier-card" id="209682"><div class="sc-1a2jhmw-4 dggRUR"><div class="sc-1a2jhmw-5 dNpzBR"><div class="sc-1mq9x0f-0 jNaFcj"><div class="sc-ieecCq kuYbdJ">Will add your name to my website</div><div aria-label="$1 per month" class="sc-1mq9x0f-1 fQuYwT"><span class="sc-ieecCq eNdlaa"><div class="sc-e3beep-0 cHAFXQ" data-tag="">$1<!-- --> <!-- --> </div></span><span class="sc-dkPtRN kyvGZN"> / <!-- -->month</span></div></div></div><div class="sc-1a2jhmw-7 kClFZP"><div class="sc-zut8gy-0 hGJiuv"><a aria-disabled="false" aria-label="Will add your name to my website Join" class="sc-jrQzAO jXTMNh" data-tag="patron-checkout-continue-button" href="/checkout/coreyms?rid=209682" role="link"><div class="sc-furwcr cmGSBk"><div class="sc-pVTFL hNVLeS">Join</div></div></a></div><div></div></div><div class="sc-1a2jhmw-6 gPLDUn"><div class="sc-1kelcyo-0 dBqRum"><div><div><div class="sc-6emzep-0 jxqpNa"><div class="sc-dkPtRN kyvGZN"><div>I appreciate any support! Anyone who is a contributor through Patreon will have the option to be added to my Contributors page on my personal website (coreyms.com) <br/></div></div></div></div></div></div></div></div></div></div></div><div class="sc-1dmyb6b-3 iwysrW" id="5125956"><div class="sc-1g6snea-0 jeokUF"><div class="sc-1a2jhmw-1 iPNPsh" data-tag="tier-card-badge"><div class="sc-148r5xf-0 ieKKhT"><div class="sc-ieecCq hbWAxe"><div class="sc-jWUzzU KBKZg"><strong>You might like</strong></div></div></div></div><div class="sc-1a2jhmw-0 ihRjLB" data-tag="tier-card" id="5125956"><div class="sc-1a2jhmw-4 dggRUR"><div class="sc-1a2jhmw-5 dNpzBR"><div class="sc-1mq9x0f-0 jNaFcj"><div class="sc-ieecCq kuYbdJ">Early Access to YouTube Videos</div><div aria-label="$3 per month" class="sc-1mq9x0f-1 fQuYwT"><span class="sc-ieecCq eNdlaa"><div class="sc-e3beep-0 cHAFXQ" data-tag="">$3<!-- --> <!-- --> </div></span><span class="sc-dkPtRN kyvGZN"> / <!-- -->month</span></div></div></div><div class="sc-1a2jhmw-7 kClFZP"><div class="sc-zut8gy-0 hGJiuv"><a aria-disabled="false" aria-label="Early Access to YouTube Videos Join" class="sc-jrQzAO jXTMNh" data-tag="patron-checkout-continue-button" href="/checkout/coreyms?rid=5125956" role="link"><div class="sc-furwcr cmGSBk"><div class="sc-pVTFL hNVLeS">Join</div></div></a></div><div></div></div><div class="sc-1a2jhmw-6 gPLDUn"><div class="sc-1kelcyo-0 dBqRum"><div><div><div class="sc-6emzep-0 jxqpNa"><div class="sc-dkPtRN kyvGZN"><div>All of my content is available for free on YouTube, but if you support at this tier then I will give you early access to videos days before they go public. I will post links to Patreon and YouTube when an early access video is available. You will also have access to all of the rewards for my lower tiers. In total, you will receive:<ul><li>Early Access to Videos </li><li>Be added to my Contributors page on my personal website (coreyms.com)</li></ul></div></div></div></div></div></div></div></div></div></div></div><div class="sc-1dmyb6b-3 iwysrW" id="5125971"><div class="sc-1g6snea-0 jeokUF"><div class="sc-1a2jhmw-1 bIlSfu" data-tag="tier-card-badge"><div class="sc-148r5xf-0 ieKKhT"><div class="sc-ieecCq hbWAxe"><div class="sc-jWUzzU KBKZg"><strong>Recommended</strong></div></div></div></div><div class="sc-1a2jhmw-0 gjQPbG" data-tag="tier-card" id="5125971"><div class="sc-1a2jhmw-4 dggRUR"><div class="sc-1a2jhmw-5 dNpzBR"><div class="sc-1mq9x0f-0 jNaFcj"><div class="sc-ieecCq kuYbdJ">Your Name Listed at the End of My Videos</div><div aria-label="$5 per month" class="sc-1mq9x0f-1 fQuYwT"><span class="sc-ieecCq eNdlaa"><div class="sc-e3beep-0 cHAFXQ" data-tag="">$5<!-- --> <!-- --> </div></span><span class="sc-dkPtRN kyvGZN"> / <!-- -->month</span></div></div></div><div class="sc-1a2jhmw-7 kClFZP"><div class="sc-zut8gy-0 hGJiuv"><a aria-disabled="false" aria-label="Your Name Listed at the End of My Videos Join" class="sc-jrQzAO jXTMNh" data-tag="patron-checkout-continue-button" href="/checkout/coreyms?rid=5125971" role="link"><div class="sc-furwcr cmGSBk"><div class="sc-pVTFL hNVLeS">Join</div></div></a></div><div></div></div><div class="sc-1a2jhmw-6 gPLDUn"><div class="sc-1kelcyo-0 dBqRum"><div><div><div class="sc-6emzep-0 jxqpNa"><div class="sc-dkPtRN kyvGZN"><div>I will now be adding Patron credits to the end of each of my videos where I list all of my current Patrons who support me at this level or higher. The names will be listed with my biggest supporters towards the top. You will also have access to all of the rewards for my lower tiers. In total, you will receive:<br/><ul><li>Your Name Listed at the End of My Videos</li><li>Early Access to Videos </li><li>Be added to my Contributors page on my personal website (coreyms.com)</li></ul></div></div></div></div></div></div></div></div></div></div></div><div class="sc-1dmyb6b-3 cLMLuh" id="209683"><div class="sc-1g6snea-0 jeokUF"><div class="sc-1a2jhmw-1 bIlSfu" data-tag="tier-card-badge"><div class="sc-148r5xf-0 ieKKhT"><div class="sc-ieecCq hbWAxe"><div class="sc-jWUzzU KBKZg"><strong>Recommended</strong></div></div></div></div><div class="sc-1a2jhmw-0 gjQPbG" data-tag="tier-card" id="209683"><div class="sc-1a2jhmw-4 dggRUR"><div class="sc-1a2jhmw-5 dNpzBR"><div class="sc-1mq9x0f-0 jNaFcj"><div class="sc-ieecCq kuYbdJ">Be Featured as a Top Contributor</div><div aria-label="$20 per month" class="sc-1mq9x0f-1 fQuYwT"><span class="sc-ieecCq eNdlaa"><div class="sc-e3beep-0 cHAFXQ" data-tag="">$20<!-- --> <!-- --> </div></span><span class="sc-dkPtRN kyvGZN"> / <!-- -->month</span></div></div></div><div class="sc-1a2jhmw-7 kClFZP"><div class="sc-zut8gy-0 hGJiuv"><a aria-disabled="false" aria-label="Be Featured as a Top Contributor Join" class="sc-jrQzAO jXTMNh" data-tag="patron-checkout-continue-button" href="/checkout/coreyms?rid=209683" role="link"><div class="sc-furwcr cmGSBk"><div class="sc-pVTFL hNVLeS">Join</div></div></a></div><div></div></div><div class="sc-1a2jhmw-6 gPLDUn"><div class="sc-1kelcyo-0 dBqRum"><div><div><div class="sc-6emzep-0 jxqpNa"><div class="sc-dkPtRN kyvGZN"><div>Be featured on every page of my personal website (coreyms.com) as a top contributor. You will also have access to all of the rewards for my lower tiers. In total, you will receive:<br/><ul><li>Be Featured as a Top Contributor on my personal website (coreyms.com)</li><li>Your Name Listed at the End of My Videos</li><li>Early Access to Videos</li></ul></div></div></div></div></div></div></div></div></div></div></div></div><div class="sc-pr0f0g-0 sc-fh6tmm-0 sc-fh6tmm-2 gqVWhu joDnRq kOJquo"><button aria-disabled="false" aria-label="scroll right" class="sc-jrQzAO dnUAkj" data-tag="carousel-right" type="button"><div class="sc-furwcr cmGSBk"><span aria-hidden="true" class="sc-eCImPb gtwjjn"><svg data-tag="IconChevronRight" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M8.134 5.756c-.423-.423-.634-.742-.634-1.06 0-.32.212-.639.634-1.062C8.558 3.211 8.877 3 9.196 3c.32 0 .638.211 1.06.634l3.653 3.653 3.653 3.652c.423.423.634.742.634 1.06 0 .32-.211.639-.634 1.062l-3.653 3.652-3.652 3.652c-.423.423-.742.635-1.06.635-.32 0-.638-.212-1.061-.635-.423-.423-.635-.741-.635-1.06 0-.32.212-.638.635-1.06l2.857-2.858 2.856-2.857c.191-.19.287-.36.287-.53 0-.17-.096-.34-.287-.53l-2.856-2.857z"></path></svg></span></div></button></div></div><div class="sc-dt7zip-0 fapWEE" data-tag="carousel-dots"><span class="sc-dt7zip-2 iHGIhv">•</span><span class="sc-dt7zip-1 furbZZ">•</span></div><div class="sc-1dmyb6b-4 etQDMC"><button aria-disabled="false" aria-label="see all tiers" class="sc-jrQzAO dPtNPe" data-tag="show-all-tiers" type="button"><div class="sc-furwcr cmGSBk"><span aria-hidden="true" class="sc-eCImPb dIslBw"><svg data-tag="IconChevronDown" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M18.244 8.134c.423-.423.742-.634 1.06-.634.32 0 .639.212 1.062.634.423.423.634.742.634 1.061 0 .32-.211.638-.634 1.06l-3.653 3.653-3.652 3.653c-.423.423-.742.634-1.06.634-.32 0-.639-.211-1.062-.634l-3.652-3.653-3.652-3.652C3.212 9.833 3 9.514 3 9.196c0-.32.212-.638.635-1.061.423-.423.741-.635 1.06-.635.32 0 .638.212 1.06.635l2.858 2.857 2.857 2.856c.19.191.36.287.53.287.17 0 .34-.096.53-.287l2.857-2.856z"></path></svg></span><div class="sc-pVTFL gqryOG">See all <!-- -->4<!-- --> tiers</div></div></button></div></div></div></div></div><div class="sc-gGPzkF sc-l4u1zt-1 hYzMAY gSEDWh"><div class="sc-jWUzzU cVKxat"></div><div class="sc-1g6snea-0"><div class="sc-137kp8k-0 ewIhgk" data-tag="creator-public-page-recent-posts"><h2 class="sc-ieecCq eNdlaa">Recent posts by Corey Schafer</h2><div class="sc-1cdacby-0 daMCfa"><button aria-disabled="false" aria-label="creator-public-page-post-all-filters-toggle" class="sc-jrQzAO kxKkGX" type="button"><div class="sc-furwcr cmGSBk"><span aria-hidden="true" class="sc-eCImPb dIslBw"><svg data-tag="IconFilter" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M21 6c0 .6-.075.975-.3 1.2-.225.225-.6.3-1.2.3h-15c-.6 0-.975-.075-1.2-.3C3.075 6.975 3 6.6 3 6s.075-.975.3-1.2c.225-.225.6-.3 1.2-.3h15c.6 0 .975.075 1.2.3.225.225.3.6.3 1.2m-4.5 4.5h-9c-.6 0-.975.075-1.2.3-.225.225-.3.6-.3 1.2s.075.975.3 1.2c.225.225.6.3 1.2.3h9c.6 0 .975-.075 1.2-.3.225-.225.3-.6.3-1.2s-.075-.975-.3-1.2c-.225-.225-.6-.3-1.2-.3m-3 6h-3c-.6 0-.975.075-1.2.3-.225.225-.3.6-.3 1.2s.075.975.3 1.2c.225.225.6.3 1.2.3h3c.6 0 .975-.075 1.2-.3.225-.225.3-.6.3-1.2s-.075-.975-.3-1.2c-.225-.225-.6-.3-1.2-.3"></path></svg></span></div></button><button aria-disabled="false" aria-expanded="false" aria-haspopup="dialog" aria-label="Sort posts by age" class="sc-jrQzAO kxKkGX" data-tag="posts-sort-button" tabindex="0" type="button"><div class="sc-furwcr cmGSBk"><span aria-hidden="true" class="sc-eCImPb dIslBw"><svg data-tag="IconSort" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M13 6a1 1 0 0 0 0-2H3a1 1 0 0 0 0 2zm1 4a1 1 0 0 1-1 1H3a1 1 0 0 1 0-2h10a1 1 0 0 1 1 1m-4 5a1 1 0 0 1-1 1H3a1 1 0 0 1 0-2h6a1 1 0 0 1 1 1"></path><path d="m17.768 17.411 2.931-2.931a.762.762 0 0 1 1.078 1.077l-4.22 4.22a.762.762 0 0 1-1.077 0l-4.22-4.22a.762.762 0 1 1 1.077-1.078l2.915 2.915.01-12.634A.76.76 0 0 1 17.03 4a.76.76 0 0 1 .75.76z"></path></svg></span></div></button><div class="sc-bilyIR dWvbda"><div class="sc-XxNYO lfQAKW" data-tag="search-input-box"><div class="sc-ilfuhL jVmowx" data-tag="search-input-with-affixes"><div class="sc-kYHfwS crOCNQ" data-tag="search-input-prefix" id="search-posts-prefix"><div class="sc-xiLah bplCn"><button aria-disabled="false" aria-label="Search" class="sc-jrQzAO inFiZu" data-tag="search-input-icon" type="button"><div class="sc-furwcr cmGSBk"><span aria-hidden="true" class="sc-eCImPb gtwjjn"><svg data-tag="IconSearch" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m20.006 17.354-.804-.804-.804-.804c-.661-.661-.988-.967-1.079-1.33-.09-.364.054-.785.336-1.677A7.422 7.422 0 0 0 18 10.5c0-2.071-.84-3.946-2.197-5.303A7.477 7.477 0 0 0 10.5 3c-2.071 0-3.946.84-5.303 2.197A7.477 7.477 0 0 0 3 10.5c0 2.071.84 3.946 2.197 5.303a7.477 7.477 0 0 0 7.543 1.852c.89-.282 1.312-.427 1.675-.336.364.091.67.418 1.331 1.079l.804.803.804.805c.663.662.994.994 1.326.994.331 0 .663-.332 1.326-.994.663-.663.994-.995.994-1.326 0-.332-.331-.663-.994-1.326M10.5 15.75a5.233 5.233 0 0 1-3.712-1.538A5.234 5.234 0 0 1 5.25 10.5c0-1.45.588-2.762 1.538-3.712A5.234 5.234 0 0 1 10.5 5.25c1.45 0 2.762.588 3.712 1.538A5.234 5.234 0 0 1 15.75 10.5c0 1.45-.588 2.762-1.538 3.712A5.234 5.234 0 0 1 10.5 15.75"></path></svg></span></div></button></div></div><div class="sc-jHkVzv eXlOcr"><input aria-invalid="false" aria-labelledby="search-posts-label search-posts-prefix" aria-multiline="false" autocomplete="off" class="sc-uojGG cYUZBQ" data-tag="search-input" id="search-posts" name="search-posts" placeholder="Search posts" type="text" value=""/></div></div></div></div></div><div class="sc-137kp8k-1 lbjiyO" data-tag="all-posts-layout"></div><div class="sc-jWUzzU cVKxat"></div></div></div></div></div><div class="sc-17rkj4l-0 gPqcjh"><footer class="sc-fxpbb1-0 bsra-Dy"><div class="sc-JkixQ kaqlMR"><div class="sc-fxpbb1-1 hRHYUQ"><div><div class="sc-fxpbb1-2 dVJlZU"><button class="sc-hGPBjI eQUVfS sc-fxpbb1-5 iZNHuw"><span aria-hidden="true" class="sc-eCImPb hhhOWu"><svg data-tag="IconWorld" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 3a8.972 8.972 0 0 0-6.364 2.636A8.972 8.972 0 0 0 3 12a8.972 8.972 0 0 0 2.636 6.364A8.972 8.972 0 0 0 12 21a8.972 8.972 0 0 0 6.364-2.636A8.972 8.972 0 0 0 21 12a8.972 8.972 0 0 0-2.636-6.364A8.972 8.972 0 0 0 12 3m5.69 7.875h-.9c-.334 0-.505-.004-.6-.092-.096-.087-.116-.258-.146-.59a17.082 17.082 0 0 0-.128-1.064 15.2 15.2 0 0 0-.178-.965c-.168-.76-.103-1.213.134-1.33.236-.119.644.098 1.162.678a6.758 6.758 0 0 1 1.372 2.378c.137.418.178.665.075.806-.103.142-.35.179-.79.179m-7.458-.829c.1-.891.264-1.645.46-2.28a8.279 8.279 0 0 1 .653-1.56c.18-.328.418-.49.656-.49.237 0 .475.163.655.49.229.412.457.927.653 1.561a12.4 12.4 0 0 1 .46 2.28c.042.38.047.587-.055.7-.101.111-.31.128-.693.128H10.98c-.384 0-.592-.017-.693-.129-.102-.112-.097-.319-.054-.7m3.536 3.908c-.1.892-.264 1.646-.46 2.28a8.279 8.279 0 0 1-.653 1.56c-.18.328-.418.49-.656.49-.237 0-.475-.163-.655-.49a8.259 8.259 0 0 1-.653-1.561 12.36 12.36 0 0 1-.46-2.28c-.042-.38-.047-.587.055-.7.101-.111.31-.128.693-.128h2.042c.383 0 .592.017.693.129.102.112.097.319.054.7M8.256 8.171c-.07.319-.13.648-.181.986-.05.338-.092.686-.123 1.043-.03.33-.05.5-.146.585-.096.086-.268.09-.6.09H6.31c-.44 0-.688-.037-.79-.179-.104-.142-.063-.388.074-.806a6.713 6.713 0 0 1 1.368-2.373c.521-.586.929-.805 1.164-.687.235.119.298.575.13 1.341M6.31 13.125h.901c.334 0 .505.004.6.092.096.087.116.258.146.59.033.372.076.726.127 1.064.052.338.112.66.18.965.166.76.1 1.213-.136 1.33-.236.119-.644-.098-1.161-.678a6.76 6.76 0 0 1-1.373-2.378c-.137-.418-.178-.665-.075-.806.103-.142.35-.179.79-.179m9.434 2.704c.07-.319.13-.648.181-.986.05-.338.092-.686.123-1.043.03-.33.05-.5.146-.585.096-.086.268-.09.6-.09h.896c.44 0 .688.037.79.179.104.142.063.388-.074.806a6.713 6.713 0 0 1-1.368 2.373c-.521.585-.929.805-1.164.687-.235-.119-.298-.575-.13-1.341"></path></svg></span>English (United States)</button><button class="sc-hGPBjI eQUVfS sc-fxpbb1-5 iZNHuw">$<!-- --> <!-- -->USD</button></div><div class="sc-fxpbb1-3 cwtPzu"><button class="sc-hGPBjI eQUVfS sc-fxpbb1-6 jvFFYD">Report this creator</button><p class="sc-dkPtRN fiyzGe sc-fxpbb1-4 dsatFT">•</p><p class="sc-dkPtRN fiyzGe sc-fxpbb1-4 dsatFT">© <!-- -->2024<!-- --> Patreon</p></div></div><a aria-disabled="false" class="sc-jrQzAO bhcasA" href="/create" role="link"><div class="sc-furwcr cmGSBk"><span aria-hidden="true" class="sc-eCImPb XDBWy"><svg data-tag="IconBrandPatreon" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M20.25 8.416c0-.943-.366-2.297-1.498-3.415C17.62 3.883 15.722 3 12.656 3c-3.732 0-5.96 1.19-7.252 2.91C4.11 7.627 3.75 9.875 3.75 11.991c0 3.113.42 5.365 1.141 6.84C5.612 20.304 6.634 21 7.836 21c1.4 0 2.205-.903 2.824-2.024.619-1.12 1.051-2.46 1.704-3.332.467-.623 1-1.023 1.602-1.312.602-.29 1.273-.469 2.012-.651 1.27-.313 2.338-.969 3.089-1.876.75-.908 1.183-2.067 1.183-3.389"></path></svg></span><div class="sc-pVTFL gqryOG">Create on Patreon</div></div></a></div></div></footer></div><div class="sc-8tqpk9-0 jynlXy"><div class="sc-pr0f0g-0 gbWrlx"><div class="sc-ozt2d0-0 lgUuRc"><div class="sc-ozt2d0-1 caHMNA"><div class="sc-gsDKAQ fYqQWC" shape="circle"><img alt="" class="sc-bdvvtL iFMLae" src="https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/1c891c2e3fed471599817e87388721da/eyJ3IjoyMDB9/1.jpg?token-time=2145916800&amp;token-hash=JsrjCuWC3KOhaJmhRlOVDCUzHkxfvFrCx7I2KWUDY0k%3D"/></div><div class="sc-ozt2d0-2 eHOjuK"><div class="sc-ieecCq cybmOn">Corey Schafer</div><p class="sc-dkPtRN gDwjmJ">Unlock <!-- -->238<!-- --> posts</p></div></div><button aria-disabled="false" class="sc-jrQzAO gZZcCj" data-tag="sticky-cta" type="button"><div class="sc-furwcr cmGSBk"><div class="sc-pVTFL jQIboX">Join now</div></div></button></div></div><div class="sc-pr0f0g-0 cinZIi"><div class="sc-ozt2d0-0 lgUuRc"><div class="sc-ieecCq dEbHGk">Unlock <!-- -->238<!-- --> exclusive posts and join a community of <!-- -->549<!-- --> members</div><div class="sc-dkPtRN fiyzGe">Starting at <div class="sc-e3beep-0 cHAFXQ" data-tag="">$1<!-- --> <!-- --> </div>/month</div><button aria-disabled="false" class="sc-jrQzAO gZZcCj" data-tag="sticky-cta" type="button"><div class="sc-furwcr cmGSBk"><div class="sc-pVTFL jQIboX">Join now</div></div></button></div></div></div></div></div></div><div aria-live="polite" class="sc-bQtKYq iCOXHn" data-tag="toaster"></div></main><script type="text/javascript">
        var _sift = (window._sift = window._sift || []);
        _sift.push(["_setAccount", "7848bad5f1"]);
        _sift.push(["_setUserId", ""]);
        _sift.push(["_setSessionId", "6c4f49e53df407c50d984d8e7f5b1d21531437564577fa0abf8120d407adedd7"]);
        _sift.push(["_trackPageview"]);
        (function() {
            function ls() {
            var e = document.createElement("script");
            e.src = "https://cdn.siftscience.com/s.js";
            e.async = !0;
            document.body.appendChild(e);
            }
            if (window.attachEvent) {
            window.attachEvent("onload", ls);
            } else {
            window.addEventListener("load", ls, false);
            }
        })();
    </script><script type="application/ld+json">
        {
            "@context": "http://schema.org/",
            "@type": "Organization",
            "name": "Patreon",
            "description": "Patreon is a membership platform that makes it easy for artists and creators to get paid. Join over 200,000 creators earning salaries from over 6 million monthly members.",
            "url": "http://www.patreon.com",
            "logo": "https://c5.patreon.com/external/logo/downloads_logomark_color_on_white@2x.png",
            "sameAs": [
            "https://www.twitter.com/patreon",
            "https://www.facebook.com/patreon",
            "https://www.youtube.com/patreon",
            "https://www.instagram.com/patreon"
            ]
        }
    </script><div id="fb-root"></div><script type="text/javascript">(function(l,e,a,p) {
  if (window.Sprig) return;
  window.Sprig = function(){S._queue.push(arguments)}
  var S = window.Sprig;S.appId = a;S._queue = [];window.UserLeap=S;
  a=l.createElement('script');
  a.async=1;a.src=e+'?id='+S.appId;
  p=l.getElementsByTagName('script')[0];
  p.parentNode.insertBefore(a, p);
})(document, 'https://cdn.sprig.com/shim.js', 'vk-TL7x4Fg');</script></div><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{"bootstrapEnvelope":{"apiServerPath":"www.patreon.com/api","bodyId":"creator_membership","braintree_tokenization_key":"production_zjxw8t4s_3w8nr24jjcjqcgbf","campaignFeatures":{},"commonBootstrap":{"additional_banner_data":{"creator_demo":null},"apple_sign_in_sub":"com.patreon.website","badges_polling_enabled":true,"badges_polling_interval_in_seconds":60,"campaign_has_any_discounts":false,"campaign_has_any_monetized_post_or_collection":false,"campaign_has_any_product_variant":false,"campaign_has_visible_products":false,"campaign_has_visible_shop":false,"campaign_num_visible_products":0,"campaign_shop_exists":false,"campaign_shop_is_launched":false,"catalogMonetizationEnabled":false,"color_scheme_selection":null,"currency_constants":{"big_money_cents":10000,"default_custom_pledge_cents":500,"default_pledge_amount_cents":100,"max_pledge_cents":1500000,"max_product_variant_cents":500000,"min_charge_amount":50,"min_pledge_cents":100,"min_product_variant_cents":300,"payout_minimum":100,"recommended_minimum_tier_amount":300,"referral_cents":5000,"tier_minimum_round_to_cents":100,"tier_recommendation_round_to_cents":500},"currentUser":null,"current_banners":["creator_demo"],"current_user_has_purchases_tab":false,"defaultUserCurrency":null,"enableAdminSudo":false,"event_logging_platform":"Web","experienceLocationCountryCode":"IN","formattingLocale":"en-US","google_app_id":"84775188414-3b1nvt8gl8nnsq5djedm232317js24ej.apps.googleusercontent.com","is_impersonating":false,"is_user_native_video_enabled":false,"is_webview":false,"navigation":{"concierge_status":{"finished_at":null,"started_at":null},"has_suspended_posts":false,"impersonation_write_access":false,"is_active_creator":false,"is_admin":false,"is_impersonating":false,"logged_in_become_creator_cta":null,"referer_url":null,"show_moderation_hub_creator":false,"show_moderation_hub_member":false,"teammate_status":{"is_owner":false,"is_teammate":false},"utm_params":{}},"notification_platform_killswitch":false,"page_theme_color":null,"recaptcha_site_key":"6LcGC_olAAAAAIRopsADgTdKS2nm_LSlotn_-m-w","shop_promo_assets":{"landscape":"https://c7.patreon.com/https%3A%2F%2Fwww.patreon.com%2F%2Fgutenberg%2Fshop-launch-teaser-image-landscape%2F125642/selector/%23shop-launch-teaser-landscape%2C.png","portrait":"https://c7.patreon.com/https%3A%2F%2Fwww.patreon.com%2F%2Fgutenberg%2Fshop-launch-teaser-image-portrait%2F125642/selector/%23shop-launch-teaser-portrait%2C.png","square":"https://c7.patreon.com/https%3A%2F%2Fwww.patreon.com%2F%2Fgutenberg%2Fshop-launch-teaser-image-square%2F125642/selector/%23shop-launch-teaser-square%2C.png"},"shop_url":"https://www.patreon.com/coreyms/shop","supported_currencies":[{"available_for_pay_in":true,"available_for_pay_out":true,"code":"AUD","default_locale_code":"en-AU","description":"Australian Dollars","is_launched":true,"max_pledge_subunits":1500000,"num_subunits":100,"symbol":"AU$"},{"available_for_pay_in":true,"available_for_pay_out":false,"code":"BRL","default_locale_code":"pt-br","description":"Brazilian Real","is_launched":true,"max_pledge_subunits":6500000,"num_subunits":100,"symbol":"BRL"},{"available_for_pay_in":true,"available_for_pay_out":true,"code":"CAD","default_locale_code":"en-CA","description":"Canadian Dollars","is_launched":true,"max_pledge_subunits":1500000,"num_subunits":100,"symbol":"CA$"},{"available_for_pay_in":true,"available_for_pay_out":true,"code":"CZK","default_locale_code":"cs-cz","description":"Czech Koruna","is_launched":true,"max_pledge_subunits":35500000,"num_subunits":100,"symbol":"CZK"},{"available_for_pay_in":true,"available_for_pay_out":true,"code":"DKK","default_locale_code":"da-DK","description":"Danish Kroner","is_launched":true,"max_pledge_subunits":9500000,"num_subunits":100,"symbol":"DKK"},{"available_for_pay_in":true,"available_for_pay_out":true,"code":"EUR","default_locale_code":"en-IE","description":"Euros","is_launched":true,"max_pledge_subunits":1300000,"num_subunits":100,"symbol":"€"},{"available_for_pay_in":true,"available_for_pay_out":true,"code":"GBP","default_locale_code":"en-GB","description":"British Pounds Sterling","is_launched":true,"max_pledge_subunits":1200000,"num_subunits":100,"symbol":"£"},{"available_for_pay_in":true,"available_for_pay_out":true,"code":"HKD","default_locale_code":"zh-hk","description":"Hong Kong Dollar","is_launched":true,"max_pledge_subunits":11500000,"num_subunits":100,"symbol":"HKD"},{"available_for_pay_in":true,"available_for_pay_out":true,"code":"HUF","default_locale_code":"hu-hu","description":"Hungarian Forint","is_launched":true,"max_pledge_subunits":516000000,"num_subunits":100,"symbol":"HUF"},{"available_for_pay_in":true,"available_for_pay_out":false,"code":"MXN","default_locale_code":"es-mx","description":"Mexican Peso","is_launched":true,"max_pledge_subunits":35500000,"num_subunits":100,"symbol":"MXN"},{"available_for_pay_in":true,"available_for_pay_out":true,"code":"NOK","default_locale_code":"nb-NO","description":"Norwegian Kroner","is_launched":true,"max_pledge_subunits":12500000,"num_subunits":100,"symbol":"NOK"},{"available_for_pay_in":true,"available_for_pay_out":true,"code":"NZD","default_locale_code":"en-nz","description":"New Zealand Dollar","is_launched":true,"max_pledge_subunits":2200000,"num_subunits":100,"symbol":"NZD"},{"available_for_pay_in":true,"available_for_pay_out":true,"code":"PLN","default_locale_code":"pl-pl","description":"Polish Zloty","is_launched":true,"max_pledge_subunits":6500000,"num_subunits":100,"symbol":"PLN"},{"available_for_pay_in":false,"available_for_pay_out":false,"code":"RON","default_locale_code":"ro-ro","description":"Romanian Leu","is_launched":false,"max_pledge_subunits":6500000,"num_subunits":100,"symbol":"RON"},{"available_for_pay_in":true,"available_for_pay_out":true,"code":"SEK","default_locale_code":"sv-SE","description":"Swedish Kronor","is_launched":true,"max_pledge_subunits":13000000,"num_subunits":100,"symbol":"SEK"},{"available_for_pay_in":true,"available_for_pay_out":true,"code":"SGD","default_locale_code":"zh-sg","description":"Singapore Dollar","is_launched":true,"max_pledge_subunits":2000000,"num_subunits":100,"symbol":"SGD"},{"available_for_pay_in":true,"available_for_pay_out":true,"code":"USD","default_locale_code":"en-US","description":"US Dollars","is_launched":true,"max_pledge_subunits":1500000,"num_subunits":100,"symbol":"$"}],"url_rule":"/\u003cstring:campaign_identifier\u003e","verify_location":null},"csrfSignature":"Ob1rdmjhHsJuXKCEYVaHOnlfHlLdF9IWo-68ymVc6sY","executionEnv":"kubernetes","experiments":{"campaign_a_a_test_for_pilot":{"exposure_data":{"experiment_id":502,"experiment_name":"campaign_a_a_test_for_pilot","override_id":null,"unit_id":"125642","unit_type":"campaign_id","variant_id":1058,"variant_name":"variant","version_id":781},"holdout_exposure_data":null},"cpp_campaign_a_a_test":{"exposure_data":{"experiment_id":496,"experiment_name":"cpp_campaign_a_a_test","override_id":null,"unit_id":"125642","unit_type":"campaign_id","variant_id":1039,"variant_name":"control","version_id":773},"holdout_exposure_data":null},"cpp_creator_funnel_cta_pill":{"exposure_data":{"experiment_id":535,"experiment_name":"cpp_creator_funnel_cta_pill","override_id":null,"unit_id":null,"unit_type":"device_id","variant_id":1124,"variant_name":"control","version_id":1192},"holdout_exposure_data":null},"cpp_device_a_a_test":{"exposure_data":{"experiment_id":436,"experiment_name":"cpp_device_a_a_test","override_id":null,"unit_id":null,"unit_type":"device_id","variant_id":900,"variant_name":"variant_3","version_id":691},"holdout_exposure_data":null},"device_a_a_test_for_pilot":{"exposure_data":{"experiment_id":501,"experiment_name":"device_a_a_test_for_pilot","override_id":null,"unit_id":null,"unit_type":"device_id","variant_id":1055,"variant_name":"control","version_id":780},"holdout_exposure_data":null},"google_sso_use_fedcm":{"exposure_data":{"experiment_id":480,"experiment_name":"google_sso_use_fedcm","override_id":null,"unit_id":null,"unit_type":"device_id","variant_id":1001,"variant_name":"control","version_id":764},"holdout_exposure_data":null},"less_locked_post_preview":{"exposure_data":{"experiment_id":779,"experiment_name":"less_locked_post_preview","override_id":null,"unit_id":null,"unit_type":"device_id","variant_id":1618,"variant_name":"control","version_id":1288},"holdout_exposure_data":null},"logged_out_navigation_rollout":{"exposure_data":{"experiment_id":804,"experiment_name":"logged_out_navigation_rollout","override_id":null,"unit_id":null,"unit_type":"device_id","variant_id":1674,"variant_name":"variant","version_id":1302},"holdout_exposure_data":null},"login_password_step":{"exposure_data":{"experiment_id":527,"experiment_name":"login_password_step","override_id":null,"unit_id":null,"unit_type":"device_id","variant_id":1108,"variant_name":"control","version_id":997},"holdout_exposure_data":null},"login_password_step_v2":{"exposure_data":{"experiment_id":662,"experiment_name":"login_password_step_v2","override_id":-4,"unit_id":null,"unit_type":"device_id","variant_id":1394,"variant_name":"control","version_id":null},"holdout_exposure_data":null},"previews_holdback":{"exposure_data":{"experiment_id":800,"experiment_name":"previews_holdback","override_id":-4,"unit_id":null,"unit_type":"device_id","variant_id":1664,"variant_name":"control","version_id":null},"holdout_exposure_data":null},"video_preview_auto_play":{"exposure_data":{"experiment_id":793,"experiment_name":"video_preview_auto_play","override_id":-4,"unit_id":null,"unit_type":"device_id","variant_id":1649,"variant_name":"control","version_id":null},"holdout_exposure_data":null},"video_preview_redesign":{"exposure_data":{"experiment_id":767,"experiment_name":"video_preview_redesign","override_id":-4,"unit_id":null,"unit_type":"device_id","variant_id":1592,"variant_name":"control","version_id":null},"holdout_exposure_data":null}},"facebookApiVersion":"v10.0","facebookAppId":"130127590512253","featureFlags":{"allow_unlaunched_currencies":false,"client_side_routing_kill_switch":false,"cm_enable_ignore_tpv_for_idv_self_enrollment":true,"creator_world_chats_tab_overhaul":true,"digital_commerce_beta_features":false,"digital_commerce_discovery":false,"digital_commerce_enable_content_mod_notification":true,"digital_commerce_enable_discounts":false,"digital_commerce_enable_new_sale_notification":true,"digital_commerce_enable_shop_launch":true,"digital_commerce_enable_single_product_shop_ui":true,"digital_commerce_iap_coming_soon_banner":true,"digital_commerce_iap_feature":true,"digital_commerce_purchases_killswitch":false,"digital_commerce_shop_killswitch":false,"digital_commerce_shop_page_search":false,"digital_commerce_similarity_search_more_products":false,"disable_autolink_on_render":true,"drop_share_cards":true,"drops_comments_web_ux_improvements":false,"enable_autopilot_alpha_product_communications":true,"enable_bio_editing":false,"enable_community_privacy_toggle":true,"enable_creator_bulk_editing":true,"enable_drops":false,"enable_drops_pls":false,"enable_drops_with_defaulting_creation":false,"enable_edit_settings_idv_self_enrollment":true,"enable_eppo":true,"enable_explore_experience":true,"enable_google_analytics_4":true,"enable_hlsjs_on_all_browsers":true,"enable_intercom":false,"enable_moderation_hub_ga":true,"enable_notification_platform":true,"enable_podcast_creation":false,"enable_promotions_page":true,"enable_show_link_social_auth":false,"enable_show_tiktok_social_auth":true,"enable_spotify":true,"enable_spotify_for_patrons":true,"enable_stream_campaign_token":true,"enable_video_player_cast":false,"enable_web_comment_ux_improvements":false,"fb_sso_mitigation":false,"free_member_post_editor_exp":true,"gtm2_launch":true,"hide_twitch_social_connect":false,"iap_august_5_announcement":true,"include_transcend_manager":true,"june_2024_marketing_campaign":false,"load_google_maps_async":false,"log_exposures_once":true,"log_on_window_patreon_access":false,"new_change_email":false,"new_creator_edit_page_action_bar":false,"nion_disable_default_includes":true,"overlay_dialog_shim_killswitch":false,"overlay_drawer_shim_killswitch":false,"overlay_dropdown_shim_killswitch":false,"overlay_popover_shim_killswitch":false,"overlay_takeover_shim_killswitch":false,"overlay_tooltip_shim_killswitch":false,"pause_payout_processing":false,"pledgeflow_location_modal_cancel":false,"pride_month_loading_state":false,"rename_explore_on_left_nav":false,"short_links":false,"should_use_next_routing":false,"show_insights_gtm_awareness":false,"show_video_closed_captions_toggle":true,"test_flag":true,"us_ca_location_capture":true,"verify_user_location":true},"formattingLocale":"en-US","googleAnalyticsId":null,"hashedSessionId":"6c4f49e53df407c50d984d8e7f5b1d21531437564577fa0abf8120d407adedd7","isAdmin":false,"isAppleConnectEnabled":true,"isFacebookConnectedEnabled":true,"isGooglePixelEnabled":true,"isGooglePlacesEnabled":false,"isImpersonating":false,"isInternalPage":false,"isKetchEnabled":false,"isMarkerIoEnabled":false,"meta":{"desc":"creating Programming Tutorials","height":null,"imageUrl":"https://c7.patreon.com/https%3A%2F%2Fwww.patreon.com%2F%2Fcard-teaser-image%2Fcreator%2F125642%3Fc=140039004642529571/selector/%23creator-teaser%2C.png","isPrivate":false,"key":"artists, creators, patron, sponsor, music, videos","openGraph":{"desc":null,"imageUrl":null,"title":null},"title":"Corey Schafer","url":"https://www.patreon.com/coreyms","videoHeight":null,"videoUrl":null,"videoWidth":null,"viewport":"device-width, initial-scale=1.0, viewport-fit=cover"},"originalPathname":"/coreyms?","pageBootstrap":{"campaign":{"data":{"attributes":{"avatar_photo_image_urls":{"default":"https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/1c891c2e3fed471599817e87388721da/eyJ3Ijo2MjB9/1.jpg?token-time=1725494400\u0026token-hash=g4jjhugzJi4nHJK8f-WJOCCJGXDvLqOp98vGQ3HFIvA%3D","default_small":"https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/1c891c2e3fed471599817e87388721da/eyJ3IjozNjB9/1.jpg?token-time=1725494400\u0026token-hash=Wl0ci2MMxtPLXTY0q_mSsHdnQOZ4qntVepaka_kqkko%3D","original":"https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/1c891c2e3fed471599817e87388721da/eyJxIjoxMDAsIndlYnAiOjB9/1.jpg?token-time=1725494400\u0026token-hash=-KbQjwmkY6RZIdOgMO1qQbmJPn7mfgUifeUkUyH2qXs%3D","thumbnail":"https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/1c891c2e3fed471599817e87388721da/eyJoIjozNjAsInciOjM2MH0%3D/1.jpg?token-time=1725494400\u0026token-hash=IowmM8RW8rSVeg4MnnpvTsOZwHy4JL-5vIr7ze8tOh0%3D","thumbnail_large":"https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/1c891c2e3fed471599817e87388721da/eyJoIjoxMDgwLCJ3IjoxMDgwfQ%3D%3D/1.jpg?token-time=1725494400\u0026token-hash=vEqR5DenL9jV9Uxf90CIlfUiW8VhN6h3xFP_kqAwsTM%3D","thumbnail_small":"https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/1c891c2e3fed471599817e87388721da/eyJoIjoxMDAsInciOjEwMH0%3D/1.jpg?token-time=1725494400\u0026token-hash=-DK2V-X2btvEqtw4AWPTi4Hyj-kpp_TTy8xtL6HS6YY%3D"},"avatar_photo_url":"https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/1c891c2e3fed471599817e87388721da/eyJ3IjoyMDB9/1.jpg?token-time=2145916800\u0026token-hash=JsrjCuWC3KOhaJmhRlOVDCUzHkxfvFrCx7I2KWUDY0k%3D","cover_photo_url":"https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/4acd48bc73f64852815928f4cb952854/eyJ3IjoxOTIwLCJ3ZSI6MX0%3D/1.jpg?token-time=1725408000\u0026token-hash=8sMRhUNh5J6W08bwZar0Oq4wfENvvuU9bXwuLj997C4%3D","cover_photo_url_sizes":{"large":"https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/4acd48bc73f64852815928f4cb952854/eyJ3IjoxNjAwLCJ3ZSI6MX0%3D/1.jpg?token-time=1725408000\u0026token-hash=QFn2qv7-mYjOh8gX3WCcJlFvHRu4JwXLeDhZRYI7dLo%3D","medium":"https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/4acd48bc73f64852815928f4cb952854/eyJ3IjoxMjAwLCJ3ZSI6MX0%3D/1.jpg?token-time=1725408000\u0026token-hash=y39z03HQjT1pKP7UbY5PtSJgAzy7OEmsDQIH2rdXyBU%3D","small":"https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/4acd48bc73f64852815928f4cb952854/eyJ3Ijo5NjAsIndlIjoxfQ%3D%3D/1.jpg?token-time=1725408000\u0026token-hash=Flw8dS6ee05xCX-yKqwHWQW8gMi-CryYO8m9ibJzAPo%3D","xlarge":"https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/4acd48bc73f64852815928f4cb952854/eyJ3IjoxOTIwLCJ3ZSI6MX0%3D/1.jpg?token-time=1725408000\u0026token-hash=8sMRhUNh5J6W08bwZar0Oq4wfENvvuU9bXwuLj997C4%3D","xsmall":"https://c10.patreonusercontent.com/4/patreon-media/p/campaign/125642/4acd48bc73f64852815928f4cb952854/eyJ3Ijo2MjAsIndlIjoxfQ%3D%3D/1.jpg?token-time=1725408000\u0026token-hash=HsOct1Bjejdp1XUxhtiZHXZrUz2Ye3AUCpPt8BfA_Wo%3D"},"creation_count":238,"creation_name":"creating Programming Tutorials","currency":"USD","current_user_can_be_free_member":true,"current_user_is_free_member":false,"display_patron_goals":false,"has_rss":false,"has_tags":true,"has_visible_shop":false,"is_free_membership_paused":false,"is_monthly":true,"is_nsfw":false,"is_plural":false,"main_video_embed":"\u003ciframe allowfullscreen=\"\" frameborder=\"0\" height=\"480\" scrolling=\"no\" src=\"//cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2FvRapY8xJwn8%3Ffeature%3Doembed\u0026amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DvRapY8xJwn8\u0026amp;image=https%3A%2F%2Fi.ytimg.com%2Fvi%2FvRapY8xJwn8%2Fhqdefault.jpg\u0026amp;key=8ee8a2e6a8cc47aab1a5ee67f9a178e0\u0026amp;type=text%2Fhtml\u0026amp;schema=youtube\" width=\"854\"\u003e\u003c/iframe\u003e","main_video_url":"https://www.youtube.com/watch?v=vRapY8xJwn8","member_count_preference":"TOTAL","name":"Corey Schafer","num_collections":1,"offers_free_membership":true,"offers_paid_membership":true,"one_liner":"Creating tutorial videos for all skill levels of programmers, developers, and software engineers","paid_member_count":117,"patron_count":549,"pay_per_name":"month","pledge_sum_currency":"USD","pledge_url":"/checkout/coreyms","primary_theme_color":null,"published_at":"2014-11-23T23:20:47.000+00:00","should_display_chat_tab":false,"show_earnings":false,"show_free_membership_cta":true,"show_free_membership_secondary_cta":true,"show_patron_count":true,"summary":"Hi There,\u003cbr\u003eMy name is Corey Schafer. I make \u003ca href=\"https://www.youtube.com/user/schafer5\" rel=\"nofollow\"\u003eYouTube tutorials\u003c/a\u003e and \u003ca href=\"http://coreyms.com\" rel=\"nofollow\"\u003eWrite Blog Articles\u003c/a\u003e that teach beginner/intermediate programming, software engineering, development, and design.\u003cbr\u003e\u003cbr\u003eTopics Included in my videos and blog:\u003cbr\u003ePython, Software Engineering, Git, Programming Terms, JavaScript, Development Environments, Workflows, Development, Web Design, Geographic Information Systems (GIS), Mac Tips, and more.\u003cbr\u003e\u003cbr\u003eWith your support, I'll be able to produce more high quality educational videos at a faster rate. I am extremely grateful for any support.\u003cbr\u003e\u003cbr\u003eThank You!\u003cbr\u003e","url":"https://www.patreon.com/coreyms","vanity":"coreyms"},"id":"125642","relationships":{"active_offer":{"data":null},"connected_socials":{"data":[{"id":"7260207","type":"social-connection"},{"id":"7260212","type":"social-connection"}]},"creator":{"data":{"id":"399662","type":"user"},"links":{"related":"https://www.patreon.com/api/user/399662"}},"goals":{"data":null},"patron_goals":{"data":null},"post_aggregation":{"data":{"id":"post-aggregation-for-0-125642","type":"post_aggregation"},"links":{"related":"https://www.patreon.com/api/post-aggregations/post-aggregation-for-0-125642"}},"recommended_by_campaigns":{"data":[{"id":"26999","type":"campaign-recommendation"}]},"recommended_campaigns":{"data":[]},"rewards":{"data":[{"id":"-1","type":"reward"},{"id":"10319934","type":"reward"},{"id":"209682","type":"reward"},{"id":"5125956","type":"reward"},{"id":"5125971","type":"reward"},{"id":"209683","type":"reward"}]}},"type":"campaign"},"included":[{"attributes":{"current_user_block_status":"none","full_name":"Corey Schafer","url":"https://www.patreon.com/coreyms","vanity":"coreyms"},"id":"399662","relationships":{"campaign":{"data":{"id":"125642","type":"campaign"},"links":{"related":"https://www.patreon.com/api/campaigns/125642"}}},"type":"user"},{"attributes":{"next_inaccessible_posts_count":9,"upgrade_url":"/checkout/coreyms"},"id":"post-aggregation-for-0-125642","type":"post_aggregation"},{"attributes":{"amount":0,"amount_cents":0,"created_at":null,"description":"Everyone","patron_currency":"USD","remaining":0,"requires_shipping":false,"url":null,"user_limit":null},"id":"-1","type":"reward"},{"attributes":{"amount_cents":0,"currency":"USD","description":"","discord_role_ids":null,"image_url":null,"is_free_tier":true,"patron_amount_cents":0,"patron_currency":"USD","post_count":0,"published":true,"remaining":null,"sales_tax_label":"GST","show_plus_tax_label":false,"title":"Free","url":"/checkout/coreyms?rid=10319934"},"id":"10319934","relationships":{"cadence_options":{"data":[]},"free_trial_configuration":{"data":null},"items":{"data":[]},"reward_recommendations":{"data":[]}},"type":"reward"},{"attributes":{"amount_cents":100,"currency":"USD","description":"I appreciate any support! Anyone who is a contributor through Patreon will have the option to be added to my Contributors page on my personal website (coreyms.com) \u003cbr\u003e","discord_role_ids":null,"image_url":null,"is_free_tier":false,"patron_amount_cents":100,"patron_currency":"USD","post_count":0,"published":true,"remaining":null,"sales_tax_label":"GST","show_plus_tax_label":false,"title":"Will add your name to my website","url":"/checkout/coreyms?rid=209682"},"id":"209682","relationships":{"cadence_options":{"data":[{"id":"209682_1_USD_False","type":"reward-cadence-option"}]},"free_trial_configuration":{"data":null},"items":{"data":[]},"reward_recommendations":{"data":[]}},"type":"reward"},{"attributes":{"amount_cents":300,"currency":"USD","description":"All of my content is available for free on YouTube, but if you support at this tier then I will give you early access to videos days before they go public. I will post links to Patreon and YouTube when an early access video is available. You will also have access to all of the rewards for my lower tiers. In total, you will receive:\u003cul\u003e\u003cli\u003eEarly Access to Videos \u003c/li\u003e\u003cli\u003eBe added to my Contributors page on my personal website (coreyms.com)\u003c/li\u003e\u003c/ul\u003e","discord_role_ids":null,"image_url":null,"is_free_tier":false,"patron_amount_cents":300,"patron_currency":"USD","post_count":2,"published":true,"remaining":null,"sales_tax_label":"GST","show_plus_tax_label":false,"title":"Early Access to YouTube Videos","url":"/checkout/coreyms?rid=5125956"},"id":"5125956","relationships":{"cadence_options":{"data":[{"id":"5125956_1_USD_False","type":"reward-cadence-option"}]},"free_trial_configuration":{"data":null},"items":{"data":[]},"reward_recommendations":{"data":[{"id":"0","type":"reward-recommendation"}]}},"type":"reward"},{"attributes":{"amount_cents":500,"currency":"USD","description":"I will now be adding Patron credits to the end of each of my videos where I list all of my current Patrons who support me at this level or higher. The names will be listed with my biggest supporters towards the top. You will also have access to all of the rewards for my lower tiers. In total, you will receive:\u003cbr\u003e\u003cul\u003e\u003cli\u003eYour Name Listed at the End of My Videos\u003c/li\u003e\u003cli\u003eEarly Access to Videos \u003c/li\u003e\u003cli\u003eBe added to my Contributors page on my personal website (coreyms.com)\u003c/li\u003e\u003c/ul\u003e","discord_role_ids":null,"image_url":null,"is_free_tier":false,"patron_amount_cents":500,"patron_currency":"USD","post_count":2,"published":true,"remaining":null,"sales_tax_label":"GST","show_plus_tax_label":false,"title":"Your Name Listed at the End of My Videos","url":"/checkout/coreyms?rid=5125971"},"id":"5125971","relationships":{"cadence_options":{"data":[{"id":"5125971_1_USD_False","type":"reward-cadence-option"}]},"free_trial_configuration":{"data":null},"items":{"data":[]},"reward_recommendations":{"data":[]}},"type":"reward"},{"attributes":{"amount_cents":2000,"currency":"USD","description":"Be featured on every page of my personal website (coreyms.com) as a top contributor. You will also have access to all of the rewards for my lower tiers. In total, you will receive:\u003cbr\u003e\u003cul\u003e\u003cli\u003eBe Featured as a Top Contributor on my personal website (coreyms.com)\u003c/li\u003e\u003cli\u003eYour Name Listed at the End of My Videos\u003c/li\u003e\u003cli\u003eEarly Access to Videos\u003c/li\u003e\u003c/ul\u003e","discord_role_ids":null,"image_url":null,"is_free_tier":false,"patron_amount_cents":2000,"patron_currency":"USD","post_count":2,"published":true,"remaining":null,"sales_tax_label":"GST","show_plus_tax_label":false,"title":"Be Featured as a Top Contributor","url":"/checkout/coreyms?rid=209683"},"id":"209683","relationships":{"cadence_options":{"data":[{"id":"209683_1_USD_False","type":"reward-cadence-option"}]},"free_trial_configuration":{"data":null},"items":{"data":[]},"reward_recommendations":{"data":[]}},"type":"reward"},{"attributes":{"app_name":"instagram","display_name":"coreymschafer","external_profile_id":"1653049579","external_profile_url":"https://www.instagram.com/coreymschafer","is_public":true},"id":"7260207","type":"social-connection"},{"attributes":{"app_name":"twitter","display_name":"CoreyMSchafer","external_profile_id":"108132277","external_profile_url":"https://twitter.com/CoreyMSchafer","is_public":true},"id":"7260212","type":"social-connection"},{"attributes":{"recommendation_reason":"The world of Python programming "},"id":"26999","relationships":{"recommendee_campaign":{"data":{"id":"125642","type":"campaign"},"links":{"related":"https://www.patreon.com/api/campaigns/125642"}},"recommender_campaign":{"data":{"id":"10380625","type":"campaign"},"links":{"related":"https://www.patreon.com/api/campaigns/10380625"}}},"type":"campaign-recommendation"},{"attributes":{"avatar_photo_image_urls":{"default":"https://c10.patreonusercontent.com/4/patreon-media/p/campaign/10380625/89bfcaebae00477ab7dc4364a2ed89f8/eyJ3Ijo2MjB9/1.jpg?token-time=1725494400\u0026token-hash=rLnVkykf6lg4IlyIfox42U3oW89MvSAhOe2FGbFHi0Y%3D","default_small":"https://c10.patreonusercontent.com/4/patreon-media/p/campaign/10380625/89bfcaebae00477ab7dc4364a2ed89f8/eyJ3IjozNjB9/1.jpg?token-time=1725494400\u0026token-hash=nhUuJ88CfSnAV-X0rCwlllGVXgLraaBH79TzplnaO1A%3D","original":"https://c10.patreonusercontent.com/4/patreon-media/p/campaign/10380625/89bfcaebae00477ab7dc4364a2ed89f8/eyJxIjoxMDAsIndlYnAiOjB9/1.jpg?token-time=1725494400\u0026token-hash=0Xgg34pXPAzZT1I5cTQ5WGjN-zRIaPPO90K-1ziF8nI%3D","thumbnail":"https://c10.patreonusercontent.com/4/patreon-media/p/campaign/10380625/89bfcaebae00477ab7dc4364a2ed89f8/eyJoIjozNjAsInciOjM2MH0%3D/1.jpg?token-time=1725494400\u0026token-hash=4eGnS86nsUH-EIxDaj6-bIV7116s1WnrF0bidqErFRY%3D","thumbnail_large":"https://c10.patreonusercontent.com/4/patreon-media/p/campaign/10380625/89bfcaebae00477ab7dc4364a2ed89f8/eyJoIjoxMDgwLCJ3IjoxMDgwfQ%3D%3D/1.jpg?token-time=1725494400\u0026token-hash=4JM1Y6CxgcD5ce61g1p4u757BwQkuhTr-eqnw87OVws%3D","thumbnail_small":"https://c10.patreonusercontent.com/4/patreon-media/p/campaign/10380625/89bfcaebae00477ab7dc4364a2ed89f8/eyJoIjoxMDAsInciOjEwMH0%3D/1.jpg?token-time=1725494400\u0026token-hash=JcGD9VsUIu6aYkiBg-e4SekDogeROgvbQlvX2e72bbE%3D"},"avatar_photo_url":"https://c10.patreonusercontent.com/4/patreon-media/p/campaign/10380625/89bfcaebae00477ab7dc4364a2ed89f8/eyJ3IjoyMDB9/1.jpg?token-time=2145916800\u0026token-hash=GkWgb2sRObyE1lApg_Lo5U-b3UBQP_eXFCPOuiVHIoE%3D","campaign_pledge_sum":0,"cover_photo_url":"https://c10.patreonusercontent.com/4/patreon-media/p/campaign/10380625/7ff104606ad742f4ab8bb56e8e745d49/eyJ3IjoxOTIwLCJ3ZSI6MX0%3D/1.jpg?token-time=1725408000\u0026token-hash=eOVgaDsDLdCU-xl2dgLfAlpLiFRqu0NoEvD5kZ6GiHk%3D","cover_photo_url_sizes":{"large":"https://c10.patreonusercontent.com/4/patreon-media/p/campaign/10380625/7ff104606ad742f4ab8bb56e8e745d49/eyJ3IjoxNjAwLCJ3ZSI6MX0%3D/1.jpg?token-time=1725408000\u0026token-hash=iNkw6D8qPOP9RqcvCERho13ROjD4TQBI5sBbmZ4m5-g%3D","medium":"https://c10.patreonusercontent.com/4/patreon-media/p/campaign/10380625/7ff104606ad742f4ab8bb56e8e745d49/eyJ3IjoxMjAwLCJ3ZSI6MX0%3D/1.jpg?token-time=1725408000\u0026token-hash=yKNp7eJpWSOTi2YpgUcuiRbHLg7wuz6VaVRUlKjFD94%3D","small":"https://c10.patreonusercontent.com/4/patreon-media/p/campaign/10380625/7ff104606ad742f4ab8bb56e8e745d49/eyJ3Ijo5NjAsIndlIjoxfQ%3D%3D/1.jpg?token-time=1725408000\u0026token-hash=tjsVkcNFYZzCYvFuZe0bX_IF5nc1CFqCuoKLvwg3G4Y%3D","xlarge":"https://c10.patreonusercontent.com/4/patreon-media/p/campaign/10380625/7ff104606ad742f4ab8bb56e8e745d49/eyJ3IjoxOTIwLCJ3ZSI6MX0%3D/1.jpg?token-time=1725408000\u0026token-hash=eOVgaDsDLdCU-xl2dgLfAlpLiFRqu0NoEvD5kZ6GiHk%3D","xsmall":"https://c10.patreonusercontent.com/4/patreon-media/p/campaign/10380625/7ff104606ad742f4ab8bb56e8e745d49/eyJ3Ijo2MjAsIndlIjoxfQ%3D%3D/1.jpg?token-time=1725408000\u0026token-hash=iXkl-ZcqgjHODOX5mvqy9feRM88YK6nsoxFUV7nTJj8%3D"},"creation_count":1,"creation_name":"Going where no codes had gone","currency":"USD","current_user_can_be_free_member":true,"current_user_is_free_member":false,"display_patron_goals":false,"has_rss":false,"has_tags":true,"has_visible_shop":false,"is_free_membership_paused":false,"is_monthly":true,"is_nsfw":false,"is_plural":false,"main_video_embed":"","main_video_url":"","member_count_preference":"TOTAL","name":"ecodeLabs","num_collections":0,"offers_free_membership":true,"offers_paid_membership":false,"one_liner":null,"paid_member_count":0,"patron_count":1,"pay_per_name":"month","pledge_sum":0,"pledge_sum_currency":"USD","pledge_url":"/checkout/ecodeLabs","primary_theme_color":"#131313","published_at":"2023-04-16T11:38:44.000+00:00","should_display_chat_tab":false,"show_earnings":true,"show_free_membership_cta":true,"show_free_membership_secondary_cta":true,"show_patron_count":true,"summary":"\u003cp style=\"\"\u003eGoing where no codes have gone before. \u003c/p\u003e","url":"https://www.patreon.com/ecodeLabs","vanity":"ecodeLabs"},"id":"10380625","type":"campaign"},{"attributes":{"amount_cents":100,"cadence":1,"campaign_pledge_cadence_discount_id":null,"currency":"USD"},"id":"209682_1_USD_False","type":"reward-cadence-option"},{"attributes":{"amount_cents":300,"cadence":1,"campaign_pledge_cadence_discount_id":null,"currency":"USD"},"id":"5125956_1_USD_False","type":"reward-cadence-option"},{"attributes":{"recommendation_type":"you_might_like"},"id":"0","type":"reward-recommendation"},{"attributes":{"amount_cents":500,"cadence":1,"campaign_pledge_cadence_discount_id":null,"currency":"USD"},"id":"5125971_1_USD_False","type":"reward-cadence-option"},{"attributes":{"amount_cents":2000,"cadence":1,"campaign_pledge_cadence_discount_id":null,"currency":"USD"},"id":"209683_1_USD_False","type":"reward-cadence-option"}],"links":{"self":"https://www.patreon.com/api/campaigns/125642"}},"defaultVideoPreviewExpStart":"2024-08-01T14:45:36.787Z","base_url":"/coreyms","campaign_creator_teaser_url":"https://c7.patreon.com/https%3A%2F%2Fwww.patreon.com%2F%2Fcard-teaser-image%2Fcreator%2F125642%3Fc=140039004642529571/selector/%23creator-teaser%2C.png","campaign_has_any_discounts":false,"campaign_has_any_monetized_post_or_collection":false,"campaign_has_any_product_variant":false,"campaign_has_visible_products":false,"campaign_has_visible_shop":false,"campaign_launch_teaser_url":"https://c7.patreon.com/https%3A%2F%2Fwww.patreon.com%2F%2Flaunch-teaser-image%2F125642/selector/%23launch-teaser%2C.png","campaign_num_visible_products":0,"campaign_shop_exists":false,"campaign_shop_is_launched":false,"campaign_shop_teaser_url":"https://c7.patreon.com/https%3A%2F%2Fwww.patreon.com%2F%2Fcard-teaser-image%2Fshop%2F125642/selector/%23card-teaser%2C.png","can_campaign_be_age_gated":false,"can_see_nsfw":false,"currency_migration_in_progress":false,"dc_cpp_module_selection_logic":"","isIdvSupported":false,"is_anniversary_billing":true,"is_preview":false,"is_published":true,"is_target":true,"locked_post_aggregates":{"audio":0,"image":0,"link":1,"livestream":0,"podcast":0,"poll":0,"total":5,"update":1,"video":3},"num_posts":238,"post_frequency_per_month":0,"random_cover_photo_enabled":false,"shop_promo_assets":{"landscape":"https://c7.patreon.com/https%3A%2F%2Fwww.patreon.com%2F%2Fgutenberg%2Fshop-launch-teaser-image-landscape%2F125642/selector/%23shop-launch-teaser-landscape%2C.png","portrait":"https://c7.patreon.com/https%3A%2F%2Fwww.patreon.com%2F%2Fgutenberg%2Fshop-launch-teaser-image-portrait%2F125642/selector/%23shop-launch-teaser-portrait%2C.png","square":"https://c7.patreon.com/https%3A%2F%2Fwww.patreon.com%2F%2Fgutenberg%2Fshop-launch-teaser-image-square%2F125642/selector/%23shop-launch-teaser-square%2C.png"},"shop_url":"https://www.patreon.com/coreyms/shop","show_acast_button_post_pledge":false,"show_dc_cpp_module":false,"url_rule":"/\u003cstring:campaign_identifier\u003e"},"presets":{"base_url":"/coreyms","campaign_creator_teaser_url":"https://c7.patreon.com/https%3A%2F%2Fwww.patreon.com%2F%2Fcard-teaser-image%2Fcreator%2F125642%3Fc=140039004642529571/selector/%23creator-teaser%2C.png","campaign_has_any_discounts":false,"campaign_has_any_monetized_post_or_collection":false,"campaign_has_any_product_variant":false,"campaign_has_visible_products":false,"campaign_has_visible_shop":false,"campaign_launch_teaser_url":"https://c7.patreon.com/https%3A%2F%2Fwww.patreon.com%2F%2Flaunch-teaser-image%2F125642/selector/%23launch-teaser%2C.png","campaign_num_visible_products":0,"campaign_shop_exists":false,"campaign_shop_is_launched":false,"campaign_shop_teaser_url":"https://c7.patreon.com/https%3A%2F%2Fwww.patreon.com%2F%2Fcard-teaser-image%2Fshop%2F125642/selector/%23card-teaser%2C.png","can_campaign_be_age_gated":false,"can_see_nsfw":false,"currency_migration_in_progress":false,"dc_cpp_module_selection_logic":"","isIdvSupported":false,"is_anniversary_billing":true,"is_preview":false,"is_published":true,"is_target":true,"locked_post_aggregates":{"audio":0,"image":0,"link":1,"livestream":0,"podcast":0,"poll":0,"total":5,"update":1,"video":3},"num_posts":238,"post_frequency_per_month":0,"random_cover_photo_enabled":false,"shop_promo_assets":{"landscape":"https://c7.patreon.com/https%3A%2F%2Fwww.patreon.com%2F%2Fgutenberg%2Fshop-launch-teaser-image-landscape%2F125642/selector/%23shop-launch-teaser-landscape%2C.png","portrait":"https://c7.patreon.com/https%3A%2F%2Fwww.patreon.com%2F%2Fgutenberg%2Fshop-launch-teaser-image-portrait%2F125642/selector/%23shop-launch-teaser-portrait%2C.png","square":"https://c7.patreon.com/https%3A%2F%2Fwww.patreon.com%2F%2Fgutenberg%2Fshop-launch-teaser-image-square%2F125642/selector/%23shop-launch-teaser-square%2C.png"},"shop_url":"https://www.patreon.com/coreyms/shop","show_acast_button_post_pledge":false,"show_dc_cpp_module":false,"url_rule":"/\u003cstring:campaign_identifier\u003e","additional_banner_data":{"creator_demo":null},"apple_sign_in_sub":"com.patreon.website","badges_polling_enabled":true,"badges_polling_interval_in_seconds":60,"catalogMonetizationEnabled":false,"color_scheme_selection":null,"currency_constants":{"big_money_cents":10000,"default_custom_pledge_cents":500,"default_pledge_amount_cents":100,"max_pledge_cents":1500000,"max_product_variant_cents":500000,"min_charge_amount":50,"min_pledge_cents":100,"min_product_variant_cents":300,"payout_minimum":100,"recommended_minimum_tier_amount":300,"referral_cents":5000,"tier_minimum_round_to_cents":100,"tier_recommendation_round_to_cents":500},"currentUser":null,"current_banners":["creator_demo"],"current_user_has_purchases_tab":false,"defaultUserCurrency":null,"enableAdminSudo":false,"event_logging_platform":"Web","experienceLocationCountryCode":"IN","formattingLocale":"en-US","google_app_id":"84775188414-3b1nvt8gl8nnsq5djedm232317js24ej.apps.googleusercontent.com","is_impersonating":false,"is_user_native_video_enabled":false,"is_webview":false,"navigation":{"concierge_status":{"finished_at":null,"started_at":null},"has_suspended_posts":false,"impersonation_write_access":false,"is_active_creator":false,"is_admin":false,"is_impersonating":false,"logged_in_become_creator_cta":null,"referer_url":null,"show_moderation_hub_creator":false,"show_moderation_hub_member":false,"teammate_status":{"is_owner":false,"is_teammate":false},"utm_params":{}},"notification_platform_killswitch":false,"page_theme_color":null,"recaptcha_site_key":"6LcGC_olAAAAAIRopsADgTdKS2nm_LSlotn_-m-w","supported_currencies":[{"available_for_pay_in":true,"available_for_pay_out":true,"code":"AUD","default_locale_code":"en-AU","description":"Australian Dollars","is_launched":true,"max_pledge_subunits":1500000,"num_subunits":100,"symbol":"AU$"},{"available_for_pay_in":true,"available_for_pay_out":false,"code":"BRL","default_locale_code":"pt-br","description":"Brazilian Real","is_launched":true,"max_pledge_subunits":6500000,"num_subunits":100,"symbol":"BRL"},{"available_for_pay_in":true,"available_for_pay_out":true,"code":"CAD","default_locale_code":"en-CA","description":"Canadian Dollars","is_launched":true,"max_pledge_subunits":1500000,"num_subunits":100,"symbol":"CA$"},{"available_for_pay_in":true,"available_for_pay_out":true,"code":"CZK","default_locale_code":"cs-cz","description":"Czech Koruna","is_launched":true,"max_pledge_subunits":35500000,"num_subunits":100,"symbol":"CZK"},{"available_for_pay_in":true,"available_for_pay_out":true,"code":"DKK","default_locale_code":"da-DK","description":"Danish Kroner","is_launched":true,"max_pledge_subunits":9500000,"num_subunits":100,"symbol":"DKK"},{"available_for_pay_in":true,"available_for_pay_out":true,"code":"EUR","default_locale_code":"en-IE","description":"Euros","is_launched":true,"max_pledge_subunits":1300000,"num_subunits":100,"symbol":"€"},{"available_for_pay_in":true,"available_for_pay_out":true,"code":"GBP","default_locale_code":"en-GB","description":"British Pounds Sterling","is_launched":true,"max_pledge_subunits":1200000,"num_subunits":100,"symbol":"£"},{"available_for_pay_in":true,"available_for_pay_out":true,"code":"HKD","default_locale_code":"zh-hk","description":"Hong Kong Dollar","is_launched":true,"max_pledge_subunits":11500000,"num_subunits":100,"symbol":"HKD"},{"available_for_pay_in":true,"available_for_pay_out":true,"code":"HUF","default_locale_code":"hu-hu","description":"Hungarian Forint","is_launched":true,"max_pledge_subunits":516000000,"num_subunits":100,"symbol":"HUF"},{"available_for_pay_in":true,"available_for_pay_out":false,"code":"MXN","default_locale_code":"es-mx","description":"Mexican Peso","is_launched":true,"max_pledge_subunits":35500000,"num_subunits":100,"symbol":"MXN"},{"available_for_pay_in":true,"available_for_pay_out":true,"code":"NOK","default_locale_code":"nb-NO","description":"Norwegian Kroner","is_launched":true,"max_pledge_subunits":12500000,"num_subunits":100,"symbol":"NOK"},{"available_for_pay_in":true,"available_for_pay_out":true,"code":"NZD","default_locale_code":"en-nz","description":"New Zealand Dollar","is_launched":true,"max_pledge_subunits":2200000,"num_subunits":100,"symbol":"NZD"},{"available_for_pay_in":true,"available_for_pay_out":true,"code":"PLN","default_locale_code":"pl-pl","description":"Polish Zloty","is_launched":true,"max_pledge_subunits":6500000,"num_subunits":100,"symbol":"PLN"},{"available_for_pay_in":false,"available_for_pay_out":false,"code":"RON","default_locale_code":"ro-ro","description":"Romanian Leu","is_launched":false,"max_pledge_subunits":6500000,"num_subunits":100,"symbol":"RON"},{"available_for_pay_in":true,"available_for_pay_out":true,"code":"SEK","default_locale_code":"sv-SE","description":"Swedish Kronor","is_launched":true,"max_pledge_subunits":13000000,"num_subunits":100,"symbol":"SEK"},{"available_for_pay_in":true,"available_for_pay_out":true,"code":"SGD","default_locale_code":"zh-sg","description":"Singapore Dollar","is_launched":true,"max_pledge_subunits":2000000,"num_subunits":100,"symbol":"SGD"},{"available_for_pay_in":true,"available_for_pay_out":true,"code":"USD","default_locale_code":"en-US","description":"US Dollars","is_launched":true,"max_pledge_subunits":1500000,"num_subunits":100,"symbol":"$"}],"verify_location":null,"defaultVideoPreviewExpStart":"2024-08-01T14:45:36.787Z"},"requestUUID":"baccff73-b8e3-5b29-a5c5-fd27d86661a8","siftJsKey":"7848bad5f1","transcend":{"endpoint":"https://transcend-cdn.com/cm/8dec6ba2-a601-4c04-a3ba-e4d5b45000f4/airgap.js","isEnabled":true,"unknownCookiePolicy":"block","userToken":""},"userId":0,"webServerPath":"www.patreon.com"},"translations":{"OeMCCJ":" / month","gbrPzk":".mov, .mp4, .mpeg, .ogg","Zj1V3i":["\"",["name"],"\" will no longer have permission to access your Patreon data."],"xZkNw7":["(",["durationDays"]," days free)"],"6DPgVF":"(Optional) Add description","lKxeEa":"(Optional) Let your members know why you're sharing this post","VteItb":["(plus ",["salesTaxLabel"],")"],"vBX4rX":"(sold out!)","FUE6u7":[["numSelected"]," selected"],"fHECBL":[["numSelected"]," tags selected"],"t9iXSN":[["0","plural",{"one":["#"," member commented"],"other":["#"," members commented"]}]],"I2rkir":[["0","plural",{"one":"There aren't any posts in the selected filter.","other":"There aren't any posts in the selected filters."}]],"/Xu6RX":[["0","select",{"x400":"A comment on this post could not be found.","x404":"A comment on this post could not be found.","other":"There was an error"}]],"FNX2hJ":[["0","select",{"x400":"If the error persists, please reach out to support.","x401":"If the error persists, please reach out to support.","x403":"You have not been granted permission to access this page","x404":"Make sure the Spotify or Patreon account you are trying to link exists.","x409":"Your Spotify account might be connected to a different Patreon account. To connect to this account instead, please ensure it's disconnected from the other one first. Also, if you've already subscribed, you might find the post on a different tier.","x500":"Please try again later.","other":"Please try again later."}]],"zeJ6Sm":[["0","select",{"x400":"Something went wrong, please try again.","x401":"Something went wrong, please try again.","x403":"You have not been granted permission to access this page","x404":"User not found.","x409":"Your account is already connected.","x451":"This page is unavailable, for legal reasons","x500":"There was an error","other":"There was an error"}]],"f+dyHu":[["0","select",{"x400":"There was an error","x403":"You have not been granted permission to access this page","x404":"This page could not be found","x410":"This page has expired","x451":"This page is unavailable, for legal reasons","x500":"There was an error","other":"There was an error"}]],"CfdWvR":[["amount"]," interested"],"upKJ/I":[["amountPercent"],"% off"],"S0I91F":[["bankName"]," **** ",["stripeBankAccountLastFour"]],"DxKXEv":[["benefitContent","plural",{"one":"Audio release","other":"Audio releases"}]],"JHpY1x":[["benefitContent","plural",{"one":"Exclusive post","other":"Exclusive posts"}]],"EK8HSb":[["benefitContent","plural",{"one":"Image","other":"Images"}]],"beItSZ":[["benefitContent","plural",{"one":"Link","other":"Links"}]],"a3ceWo":[["benefitContent","plural",{"one":"Livestream","other":"Livestreams"}]],"y510+H":[["benefitContent","plural",{"one":"Poll","other":"Polls"}]],"KbLEpm":[["benefitContent","plural",{"one":"Video","other":"Videos"}]],"pl8AxX":[["benefitContent","plural",{"one":"Writing","other":"Writings"}]],"C0Y+6/":[["campaignName"]],"ORRUJR":[["campaignName"]," | ",["creation"]],"6B9aSL":[["campaignName"]," wasn’t as active as I expected"],"C/6p5J":[["commentCount","plural",{"one":["#"," Comment"],"other":["#"," Comments"]}]],"HwSuqp":[["commenterCount","plural",{"one":["#"," member commented"],"other":["#"," members commented"]}]],"+aYrcw":[["count","plural",{"one":["#"," post"],"other":["#"," posts"]}]],"R9n5Ss":[["count","plural",{"one":"1 reply","other":["#"," replies"]}]],"EJoAbB":[["creationCount","plural",{"one":"Post","other":"Posts"}]],"lW8C1B":[["creationName"]],"NTg70M":[["creator"],"’s shop on Patreon"],"0pi2lW":[["creatorName"]," has a Special Offer"],"g7ADQA":[["creatorName"]," removed this video."],"p+XEvM":[["currencySymbol"],"-- per member"],"VXI4W7":[["currentUserNumLockedPosts","plural",{"one":["#"," locked post"],"other":["#"," locked posts"]}]],"rlr/x0":[["date"]," at ",["time"]],"+rncSd":[["days"]," days ago"],"A7QrWP":[["days"],"d"],"MhwElC":[["daysLeft","plural",{"one":["#"," day left"],"other":["#"," days left"]}]],"7EZH+X":[["discountPercentage"],"% Autopilot discount applied"],"Mv39Dp":[["displayName"]," is currently used for the following memberships. To continue, choose a new payment method."],"PM8k6M":[["displayName"]," will be charged for selected memberships starting on the next charge date."],"WG3pDo":[["duration","plural",{"one":"1 sec","other":["#"," secs"]}]],"/YQce6":[["durationInHours","plural",{"one":"1 hr","other":["#"," hrs"]}]],"Ent3Lg":[["durationInMinutes","plural",{"one":"1 min","other":["#"," mins"]}]],"2s/MJY":[["extension"]," file"],"S0NzB9":[["fifteenPercentString"]," off all merch"],"WlwSzR":[["formattedCurrency"]," per ",["payPerName"]],"HgwPd4":[["formattedDate"]," at ",["formattedTime"]],"10pH5C":[["giftDurationMonths","plural",{"one":"month","other":"months"}]],"/OSfFb":[["hours"]," hours ago"],"AKhm2h":[["hours"],"h"],"YU2YW8":[["hoursLeft","plural",{"one":["#"," hour left"],"other":["#"," hours left"]}]],"aEG/6R":[["interestedCount","plural",{"one":["#"," member"],"other":["#"," members"]}]," tapped \"I'm interested\" before the drop."],"ndr4hN":[["itemName"]," print area dimensions:"],"z8OrXj":[["length","plural",{"one":["#"," file"],"other":["#"," files"]}]],"+7KJCC":[["length","plural",{"one":"1 image","other":["#"," images"]}]],"Rlrd8S":[["likeCount","plural",{"one":[["likeLabel"],". ","#"," like"],"other":[["likeLabel"],". ","#"," likes"]}]],"Jhatsb":[["likeCount","plural",{"one":["#"," Like"],"other":["#"," Likes"]}]],"gaWS6W":[["likeCount","plural",{"one":["#"," member liked"],"other":["#"," members liked"]}]],"NBrbqF":[["maintenanceText"],"\u003c0/\u003eDuring this time Patreon will not be accessible to use on desktop or mobile. Thanks for your patience as we make improvements. \u003c1\u003eLearn more\u003c/1\u003e."],"gKotjh":[["maxClipDuration"]," seconds"],"F6GBat":[["memberCount","plural",{"one":["#"," member"],"other":["#"," members"]}]],"YQDaC+":[["memberCount","plural",{"one":"Member","other":"Total members"}]],"o7Fg9i":[["merchName"]," Color"],"Ucv9yr":[["message"]," (",["percentProgress"],"%)"],"fD3Nra":[["minutes"]," minutes ago"],"Tm8/k0":[["minutes"],"m"],"mUdgjd":[["minutesLeft","plural",{"one":["#"," minute left"],"other":["#"," minutes left"]}]],"tO6/Yg":[["modelCount","plural",{"one":["#"," product"],"other":["#"," products"]}]],"uUV8s7":[["months"]," months ago"],"Vwxe9m":[["name"]," added you as a moderator of their chat!"],"abncto":[["name"]," has asked you to be a moderator of their Patreon!"],"1e6DJ/":[["name"]," has removed this product from their shop."],"XkNut1":[["name"]," recommended you!"],"gwUJzT":[["name"],"'s recommendations"],"FVoIkD":[["name"],"'s shop on Patreon"],"dHV2nh":[["num"]," new"],"y9KgL+":[["numItems","plural",{"one":"1 product","other":["#"," products"]}]],"vdtx6l":[["numMedia"]," images"],"t2rhQw":[["numMedia"]," post collection"],"5e4XrD":[["numOfCampaigns","plural",{"one":["#"," membership"],"other":["#"," memberships"]}]],"EqpOti":[["numOfPosts","plural",{"one":["#"," post"],"other":["#"," posts"]}]],"dkYQP0":[["numPosts","plural",{"one":["#"," post"],"other":["#"," posts"]}]],"2JXa/7":[["numPosts"]," audio posts in your membership"],"xcQjKV":[["numSelected"]," selected"],"clELyX":[["numSelected"]," tag selected"],"r4qQH9":[["paidMemberCount","plural",{"one":"Paid member","other":"Paid members"}]],"v9OOTp":[["patronCount","plural",{"one":["#"," member"],"other":["#"," members"]}]],"zfUbS/":[["patronCount","plural",{"one":["#"," member"],"other":["#"," members"]}]],"kgHgjQ":[["patronCount","plural",{"one":["#"," member"],"other":["#"," members"]}]],"2pY8a7":[["patronCount","plural",{"one":"1 member","other":["#"," members"]}]],"4NUU3J":[["patronCount","plural",{"one":"1 member","other":["#"," members"]}]],"3i8h1h":[["paymentMethodType"]],"0BRm+Z":[["planName"]," plan • \u003c0/\u003e fee + applicable fees and taxes"],"XaVf9D":[["pledgeMoney"]," or more per ",["perThingName"]],"LnfE9u":[["postCount","plural",{"one":["#"," post"],"other":["#"," posts"]}]],"Oc7aiu":[["prefix"],". Enter it below to enable two factor authentication."],"ZBzF/k":[["progressFormatted"]," processed"],"+3rkpS":[["purchaseCount","plural",{"one":["#"," person"],"other":["#"," people"]}]],"MACLf0":[["purchaseCount","plural",{"one":"has","other":"have"}]],"TYd2I1":[["RECOMMENDED_HEIGHT_PROFILE_PHOTO_PX"],"px by ",["RECOMMENDED_WIDTH_PROFILE_PHOTO_PX"],"px recommended"],"imhJXg":[["RECOMMENDED_WIDTH_COVER_PHOTO_PX"],"px by ",["RECOMMENDED_HEIGHT_COVER_PHOTO_PX"],"px recommended"],"0yJFkO":[["reply_count","plural",{"one":["#"," reply"],"other":["#"," replies"]}]],"T3v/mF":[["salesCount","plural",{"one":["#"," customer purchased"],"other":["#"," customers purchased"]}]],"hitDb1":[["secondsCurrentlyElapsed"]," seconds"],"AYJKfV":[["stat","plural",{"one":"Audio release","other":"Audio releases"}]],"DYnarf":[["stat","plural",{"one":"Image","other":"Images"}]],"/bfdJ4":[["stat","plural",{"one":"Link","other":"Links"}]],"GmV8dF":[["stat","plural",{"one":"Livestream","other":"Livestreams"}]],"RO3XY5":[["stat","plural",{"one":"Poll","other":"Polls"}]],"P1AB5l":[["stat","plural",{"one":"Video","other":"Videos"}]],"oCJO0Z":[["stat","plural",{"one":"Writing","other":"Writings"}]],"9dQ0H+":[["text"],"..."],"mYoHZs":[["title"]," | Collection from ",["campaignName"]," ",["postsText"]],"wCimBu":[["title"]," | Patreon"],"d0XGMA":[["total","plural",{"one":["#"," post"],"other":["#"," posts"]}]],"KsSPED":[["total","plural",{"one":["#"," post"],"other":["#"," posts"]}]],"dLszcj":[["total"]," joined the live drop"],"RscVII":[["totalPostCount","plural",{"one":["#"," post"],"other":["#"," posts"]}]],"aAxVTh":[["totalPostCount","plural",{"one":["#"," post"],"other":["#"," posts"]}]],"I+Ee66":[["totalVotes","plural",{"one":["#"," vote"],"other":["#"," votes"]}]," total"],"CDtwdC":[["uploadedHoursAvailable"]," hours available"],"uVkCeB":[["useCase","select",{"continue_with":"Continue with Google","signup_with":"Sign up with Google","other":"Continue with Google"}]],"DjyiJ2":[["username"]," sent a photo"],"4RWEW7":[["value"],["unit","select",{"hour":"h","day":"d","week":"w","year":"y","other":""}]," ago"],"w+GkVk":[["value"],["unit","select",{"hour":"h","day":"d","week":"w","year":"y","other":""}]," from now"],"HJ3HXs":[["value"],["unit","select",{"hour":"h","day":"d","week":"w","year":"y"}]],"7QSoRj":[["value"],"m from now"],"SwTYwy":[["value"],"min"],"6VM5X+":[["value"],"mo"],"ubGlkT":[["value"],"mo from now"],"SIGvg7":[["variant"]," thumbnail"],"O2qVNe":[["weeks"]," weeks ago"],"2JRvVS":[["weeks"],"w"],"2s/tFq":[["years"]," years ago"],"CMCla7":"* Price is approximate based on today’s currency exchange rate. Item charges will be made in your page’s currency, using the exchange rate available on day of charge.","DFdBHg":"*this rate applies to the full amount of the pledge, including any tax amounts applied","UUrzHp":["\u003c0/\u003e ",["memberCount","plural",{"one":"total member","other":"total members"}]],"Qbpyd/":["\u003c0/\u003e ",["paidMemberCount","plural",{"one":"paid member","other":"paid members"}]],"gn0MKu":"\u003c0/\u003e • All the tools to master membership","l1hRH2":"\u003c0/\u003e • All the tools to master membership","PPUCar":"\u003c0/\u003e • All the tools to master membership plus Merch for Membership","MeJcal":"\u003c0/\u003e • All the tools to master membership plus Merch for Membership\u003c1/\u003e","hOOLSu":"\u003c0/\u003e • For established creators and creative businesses","x0Axvg":"\u003c0/\u003e • Patreon's original plan for creators who joined before May 2019.","SW4Wyz":"\u003c0/\u003e • Simple tools to set up recurring support from your fans","KeJ4L5":"\u003c0/\u003e • Simple tools to set up recurring support from your fans","QzZAiJ":"\u003c0/\u003e fee + applicable fees and taxes","lGe9LB":"\u003c0/\u003e fee per transaction + applicable fees and taxes","GSXiw0":"\u003c0/\u003e minimum price","fm7goX":["\u003c0/\u003e of ",["userLimit","plural",{"one":["#"," member"],"other":["#"," members"]}]],"P56GE4":"\u003c0/\u003e off","cstokA":"\u003c0/\u003e on iOS","R0rgBR":"\u003c0/\u003e or less","dCTloQ":["\u003c0/\u003e or more per month • ",["patronCount"]," members"],"mDUzVu":["\u003c0/\u003e per ",["payPerName"]],"PEXBRf":"\u003c0/\u003e Tier Earnings","7j9yI+":"\u003c0/\u003eOnly you can see this","FqQwig":"\u003c0/\u003ePowered by Crowdcast","g8CD9f":["\u003c0\u003e by \u003c/0\u003e\u003c1\u003e",["authorName"],"\u003c/1\u003e"],"Y3UZaa":["\u003c0\u003e",["campaignName"]," is offering\u003c/0\u003e \u003c1\u003ean ",["intlMerchTitle"],"\u003c/1\u003e"],"TgaVnU":["\u003c0\u003e",["clipLoadingString"],"\u003c/0\u003e"],"rDatLH":["\u003c0\u003e",["creatorName"],"\u003c/0\u003e is creating content you must be 18+ to view. Are you 18 years of age or older?"],"nLIIY7":["\u003c0\u003e",["numberOfPeople","plural",{"one":["#"," person"],"other":["#"," people"]}],"\u003c/0\u003e ",["numberOfPeople","plural",{"one":"has","other":"have"}]," purchased this collection, and will lose access to this post if they don't already have access as a member."],"Ib86VI":["\u003c0\u003e\u003c1/\u003e\u003c/0\u003e per ",["cadenceValue","select",{"annual":"year","monthly":"month"}]],"mHAubW":["\u003c0\u003e\u003c1/\u003e\u003c/0\u003e per ",["payPer"]],"PlwRpW":["\u003c0\u003e\u003c1/\u003e\u003c/0\u003e/",["cadenceValue","select",{"annual":"yr","monthly":"mo"}]],"YAsRSw":"\u003c0\u003e\u003c1/\u003e\u003c/0\u003e/creation","azP6LI":["\u003c0\u003e\u003c1\u003e",["formattedBalance"],"\u003c/1\u003e \u003c2\u003ewill be transferred to\u003c/2\u003e \u003c3\u003e",["payToLocation"],"\u003c/3\u003e\u003c/0\u003e\u003c4\u003e\u003c5\u003eDue to the volume you’ve processed, this transfer may take up to\u003c/5\u003e \u003c6\u003e10 business days\u003c/6\u003e \u003c7\u003eafter you request the withdrawal.\u003c/7\u003e \u003c8\u003eLearn more\u003c/8\u003e\u003c/4\u003e"],"nC1qVj":"\u003c0\u003e\u003c1\u003eIncrease product prices in the iOS app\u003c/1\u003e\u003c2\u003eProduct prices in the iOS app will be increased to cover Apple's App Store fees. This keeps your earnings approximately the same per sale.\u003c/2\u003e\u003c/0\u003e","Sf47XD":"\u003c0\u003e\u003c1\u003eKeep product prices the same everywhere\u003c/1\u003e\u003c2\u003eYou will earn less per sale for products sold in the Patreon iOS app.\u003c/2\u003e\u003c/0\u003e","H8mmFX":"\u003c0\u003e\u003c1\u003eKeeping Patreon Safe\u003c/1\u003e\u003c2\u003eTo prevent fraud and make Patreon a safe platform for all users, higher value or higher risk payouts may be subject to manual review by our fraud team. This may delay receiving your funds. \u003c3\u003eClick here\u003c/3\u003e for more information.\u003c/2\u003e\u003c/0\u003e","vlsLAG":"\u003c0\u003e\u003c1\u003eKeeping Patreon Safe\u003c/1\u003e\u003c2\u003eTo prevent fraud and make Patreon a safe platform for all users, you may be subject to additional controls when you attempt to pay out your funds, including ID verification and/or a manual review of your payout. This may delay receiving your funds. \u003c3\u003eClick here\u003c/3\u003e for more information.\u003c/2\u003e\u003c/0\u003e","eNG9Hu":"\u003c0\u003e\u003c1\u003eKeeping Patreon Safe\u003c/1\u003e\u003c2\u003eTo prevent fraud and make Patreon a safe platform for all users, you won’t be able to pay out your funds for 5 days after you’ve received your first pledge. \u003c3\u003eClick here\u003c/3\u003e for more information.\u003c/2\u003e\u003c/0\u003e","AHfoIF":"\u003c0\u003e\u003c1\u003eKeeping Patreon Safe\u003c/1\u003e\u003c2\u003eTo prevent fraud and make Patreon a safe platform for all users, you won’t be able to pay out your funds for 5 days from when you first add a payout method. \u003c3\u003eClick here\u003c/3\u003e for more information.\u003c/2\u003e\u003c/0\u003e","ORrP7O":"\u003c0\u003e\u003c1\u003eThis creator's members haven't posted anything yet!\u003c/1\u003e\u003c/0\u003e\u003c2\u003e\u003c3\u003eBecome a member\u003c/3\u003e and \u003c4\u003epost\u003c/4\u003e to fill up this feed!\u003c/2\u003e","r/gpP9":"\u003c0\u003e\u003c1\u003eUnlimited digital products with no listing fees\u003c/1\u003e\u003c2\u003eMedia hosting for video, audio, images, and downloadable files\u003c/2\u003e\u003c3\u003eProduct detail pages with previews\u003c/3\u003e\u003c4\u003eA Patreon-hosted online shop\u003c/4\u003e\u003c5\u003eSales analytics and insights\u003c/5\u003e\u003c6\u003eMember-only specials\u003c/6\u003e\u003c7\u003eGlobal payment support and fraud protection\u003c/7\u003e\u003c/0\u003e","1w9+6H":"\u003c0\u003e\u003c1\u003eYou’ve submitted your withdrawal!\u003c/1\u003e\u003c/0\u003e\u003c2\u003eDue to the volume you’ve processed, this payout may take up to \u003c3\u003e10 business days\u003c/3\u003e to process before it gets to your personal account. \u003c4\u003eLearn more\u003c/4\u003e\u003c/2\u003e","9cdfVb":"\u003c0\u003e\u003c1\u003eYour page is outside of Patreon's \u003c2\u003eCommunity Guidelines\u003c/2\u003e or \u003c3\u003eTerms of Use\u003c/3\u003e.\u003c/1\u003e If left unresolved, your page may be temporarily suspended.\u003c/0\u003e","Emq9r1":"\u003c0\u003e600 Townsend Street, Suite 500\u003c1/\u003eSan Francisco, CA 94103\u003c2/\u003eUSA\u003c3/\u003ePhone: \u003c4\u003e+1 (833) 972-8766\u003c/4\u003e\u003c/0\u003e","+a+n+G":["\u003c0\u003eACTION REQUIRED\u003c/0\u003e We’ve emailed you with steps to reinstate your account. Please respond directly to that email, or contact us at \u003c1\u003e",["GUIDELINES_EMAIL"],"\u003c/1\u003e."],"nf3IZk":"\u003c0\u003eBack to shop\u003c/0\u003e","B4wSnK":"\u003c0\u003eBuy the full video (\u003c1/\u003e)\u003c/0\u003e","Qas6Y9":"\u003c0\u003eBy uploading, you verify that you own and/or have permission to use this artwork.\u003c/0\u003e","AWLkK8":"\u003c0\u003eBy uploading, you verify that you own and/or have permission to use this artwork.\u003c/0\u003e","ERugt0":"\u003c0\u003eCard Number\u003c/0\u003e","EfbKmM":"\u003c0\u003eCREATOR\u003c/0\u003e","czRnjX":["\u003c0\u003eDeleting this collection will also remove access for \u003c1\u003e",["numberPurchasedPeople","plural",{"one":["#"," person"],"other":["#"," people"]}],"\u003c/1\u003e who ",["numberPurchasedPeople","plural",{"one":"has","other":"have"}]," purchased it.\u003c/0\u003e"],"F+DcO6":"\u003c0\u003eEditing...\u003c/0\u003e","u3/K5S":"\u003c0\u003eFile needs to be in .srt or .vtt format\u003c/0\u003e","oMbh7e":"\u003c0\u003eGet the app for a better experience.\u003c/0\u003e","IPBunY":"\u003c0\u003eIs there anything else you would like to tell us to help us understand your business or your interest in Premium?\u003c/0\u003e\u003c1\u003e255 characters max\u003c/1\u003e","OwP5qW":"\u003c0\u003eIt looks like you already submitted a Premium application. Please give us 5 - 6 business days to review your application and get back to you.\u003c/0\u003e\u003c1\u003e\u003c2\u003eIf you still haven't heard from us, you may want to \u003c/2\u003e\u003c3\u003econtact support\u003c/3\u003e\u003c4\u003e for more assistance.\u003c/4\u003e\u003c/1\u003e","Jp1X4Y":"\u003c0\u003eLearn more about what you can expect when downgrading to Lite\u003c/0\u003e \u003c1\u003ehere.\u003c/1\u003e","b4U7HH":"\u003c0\u003eLimited spaces - SOLD OUT\u003c/0\u003e","xs4b7n":["\u003c0\u003eLimited\u003c/0\u003e (",["remaining"]," of ",["userLimit"]," remaining)"],"QHBhoI":["\u003c0\u003eLimited\u003c/0\u003e (",["remaining"]," remaining)"],"VFPgRY":"\u003c0\u003eLivestream\u003c/0\u003e","rkBb8l":"\u003c0\u003eMODERATOR\u003c/0\u003e","H5EudU":"\u003c0\u003eNo collections yet\u003c/0\u003e","05vkvV":"\u003c0\u003eNo posts yet\u003c/0\u003e","y4hhjB":"\u003c0\u003eNothing right now. Apple’s requirements start in November, but you’ll be able to keep using your billing method until the end of 2025. After that, you’ll need to switch to subscription billing.\u003c/0\u003e\u003c1\u003ePeople won’t be able to become paid members in the iOS app after Apple’s requirements start in November 2024 unless you’ve switched to subscription billing.\u003c/1\u003e\u003c2\u003eSomeone from our team will help you switch when you’re ready. They’ll share ways other creators have made the change and will work with you directly to avoid any impact on your earnings.\u003c/2\u003e","YFJy+w":"\u003c0\u003eOur Trust and Safety team is currently reviewing this page.\u003c/0\u003e\u003c1\u003eRead our \u003c2\u003eCommunity Guidelines\u003c/2\u003e to learn more.\u003c/1\u003e","GsSEoQ":"\u003c0\u003ePayouts are currently unavailable. Please verify your identity to to restore access.\u003c/0\u003e","kAXhx8":"\u003c0\u003eSee your results\u003c/0\u003e or \u003c1\u003emanage your benefits\u003c/1\u003e.","oVZ/SZ":"\u003c0\u003eSelect language\u003c/0\u003e","pjnuh/":"\u003c0\u003eShift + Return/Enter\u003c/0\u003e to add a new line","T7bk+S":"\u003c0\u003eShift + Return\u003c/0\u003e to add new line","8L3nMb":["\u003c0\u003eSomething went wrong:\u003c/0\u003e\u003c1\u003e",["otherErrorsToDisplay"],"\u003c/1\u003e\u003c2\u003e\u003c3\u003eYou may want to \u003c/3\u003e\u003c4\u003econtact support\u003c/4\u003e\u003c5\u003e with these details.\u003c/5\u003e\u003c/2\u003e"],"LleNrJ":"\u003c0\u003eSpecial offer:\u003c/0\u003e","Zar0IC":"\u003c0\u003eStart messaging this creator\u003c/0\u003e","MLUAcU":"\u003c0\u003eStart messaging this member\u003c/0\u003e","R1QT3Y":"\u003c0\u003eSupport\u003c/0\u003e or \u003c1\u003efollow\u003c/1\u003e creators to see posts in your feed.","hJtwPc":"\u003c0\u003eTerms of Use\u003c/0\u003e for shops need to be accepted by the account owner before teammates can create products. Please ask the account owner to accept the \u003c1\u003eTerms of Use\u003c/1\u003e on the shop page.","iyV6Mr":"\u003c0\u003eThe merch on your \u003c/0\u003e\u003c1/\u003e\u003c2\u003e tier costs \u003c/2\u003e\u003c3/\u003e\u003c4\u003e of a member's 12-month pledge to this tier.\u003c/4\u003e","5pF9mu":"\u003c0\u003eThe merch on your \u003c/0\u003e\u003c1/\u003e\u003c2\u003e tier costs \u003c/2\u003e\u003c3/\u003e\u003c4\u003e of a member's 3-month pledge to this tier.\u003c/4\u003e","bs4FLQ":"\u003c0\u003eThis only impacts new members — nothing will change for existing members.\u003c/0\u003e\u003c1\u003eApple’s requirement starts in November 2024, but we’ll continue to support other billing methods until the end of 2025.\u003c/1\u003e","3sO7+r":"\u003c0\u003eThis won’t happen until November 2024 and will only impact new memberships — nothing will change for existing members.\u003c/0\u003e\u003c1\u003eWe’ve built an optional tool that allows you to increase your prices in the iOS app to help cover Apple’s fees and make sure your earnings stay the same.\u003c/1\u003e","pfr9HM":"\u003c0\u003eTo turn on backup payments, add a payment method.\u003c/0\u003e","8NIp3e":"\u003c0\u003eTotal balance\u003c/0\u003e","IMETYp":"\u003c0\u003eWe noticed it’s been a while since your creator page’s last payment activity. For security reasons, your page has been unlaunched.\u003c/0\u003e\u003c1\u003eYou can \u003c2\u003eedit and relaunch your page\u003c/2\u003e at any time. For more information, check out this \u003c3\u003eHelp Center article\u003c/3\u003e or contact us at guidelines@patreon.com.\u003c/1\u003e","S0c1Z7":"\u003c0\u003eWe’ll switch you to subscription billing once Apple’s requirement starts in November. You can choose to delay switching, but you won’t be able to get any new paid members or earnings from the iOS app.\u003c/0\u003e\u003c1\u003eApple will add a new fee for all purchases in the iOS app. We’ve built an optional tool that makes it easy for you to increase your prices in the app to cover the fee.\u003c/1\u003e","Srh7nF":"\u003c0\u003eWe're sorry! Something went wrong with your Premium application.\u003c/0\u003e\u003c1\u003e\u003c2\u003eYou may want to \u003c/2\u003e\u003c3\u003econtact support\u003c/3\u003e\u003c4\u003e for more assistance.\u003c/4\u003e\u003c/1\u003e","WECDAp":"\u003c0\u003eWhat's included\u003c/0\u003e","DQ78Ox":"\u003c0\u003eYou are about to disconnect your Discord integration from your account. Any members pledged to your tiers will have their roles removed.\u003c/0\u003e\u003c1\u003eOnce you confirm, it may take a few minutes for the integration to be removed.\u003c/1\u003e","Oa6tV8":["\u003c0\u003eYou haven't made changes to this post, so it can't be submitted for review. Please edit it to remove content that doesn't meet our ",["communityGuideLinesLink"]," to continue.\u003c/0\u003e"],"2HHsak":["\u003c0\u003eYou won’t be able to make this post public again after you submit this change, but you will be able to decide which members can see it. To keep it public, please remove all content that does not meet our guidelines and then submit your changes.\u003c/0\u003e\u003c1/\u003e\u003c2\u003eView our ",["communityGuideLinesLink"]," to learn more.\u003c/2\u003e"],"pXRzH2":"\u003c0\u003eYou'll be eligible to earn merch benefits after your free trial period ends\u003c/0\u003e","pEs+ct":"\u003c0\u003eYour balance may be negative due to refunds or other reasons. \u003c/0\u003e\u003c1\u003eLearn more\u003c/1\u003e","imzS1F":"\u003c0\u003eYour members haven't posted anything yet!\u003c/0\u003e","1adXra":"\u003c0\u003eYour page has been temporarily suspended, and it is no longer visible to anyone until you verify your identity. Visit our \u003c1/\u003e to learn more.\u003c/0\u003e","m1PepF":"\u003c0\u003eYour page has been temporarily suspended. \u003c/0\u003eAll creators sharing sexually explicit content or content that includes nudity must verify they are at least 18 years old. Your page is no longer visible to anyone until you verify your identity. \u003c1/\u003e","HkLxCa":"\u003c0\u003eYour page has been temporarily suspended.\u003c/0\u003e We weren't able to verify your identity based on the information you submitted. Your page is no longer visible to anyone. \u003c1/\u003e","8W7Wsz":"\u003c0\u003eYour Patreon creator account is \u003c1\u003ecurrently inactive\u003c/1\u003e and has been hidden until you are ready to relaunch.\u003c/0\u003e \u003c2\u003eLearn more\u003c/2\u003e","F3xFZB":"\u003c0\u003eYour post will be updated on your page and sent for review. This typically takes 2-3 business days. In the meantime, your post is still visible to your members.\u003c/0\u003e","8mGkJj":["\u003c0\u003eYour updated post will be reviewed and made visible again if it meets our ",["communityGuideLinesLink"],". This typically takes 2-3 business days.\u003c/0\u003e"],"jpLZtg":"🪩 Live Drop ended 🪩","stUoZ6":"🪩 Live Drop started 🪩","DDt6nt":"1 audio post in your membership","trDaWY":"1 minute","O0TTjJ":"1. CHANGES NEEDED","QxKYyN":"10 seconds","haw6wB":"100% certified organic cotton","YY5hYP":"100% combed and ring-spun cotton","u+2xFG":"100% cotton exterior","2NREzh":"11oz white ceramic mug","H+ShaI":"12 hours","uY+HVI":"12 payments to \u003c0/\u003e tier:","2ZivO0":"12 payments to tier:","CRWckn":"12” strap length from top of straps to top of bag","yQKRtn":"18+ creations and mature themes","cAKBBP":"1d","2jkm/J":"1h","Uqhnq5":"1m","Meyokw":"1w","Mi2Pf5":"2. IN REVIEW","Fn0n7L":"3 payments to \u003c0/\u003e tier:","27kGKA":"3 payments to tier:","ec1zoJ":"3. RESOLVED","bcDiHV":"30 lb weight limit","IynNZK":"4” x 4” die cut sticker","8nSxA8":"65% cotton, 35% polyester","lZAWXL":"95% polyester 5% elastane stretch fabric","qfZX7u":"A category is required","s2jO6Y":"A city is required","hd3X3Z":"A clip is being created","xFCXdE":"A confirmation has been sent to","GZ/FOj":"A country is required","dbqmTG":"A few seconds ago","qRlLVl":"A government-issued photo ID (e.g. driver's license, passport)","ZX7LFo":"A member of our team will work with you directly to help adjust your tier prices","wqcqf0":"A minute ago","WE25Gb":"A month ago","5oFUz4":"A name is required","Qmf2fl":"A phone number is required for addresses outside the United States","qM/FR/":"A phone number is required for international addresses","DlP9MH":"A postal code is required","iJlNaJ":"A role you’ve selected is unavailable. Please update or choose a new role.","Qyoyp4":"A smartphone or webcam to take a photo of yourself","ReBM3e":"A state is required","h2JXIV":"A street address is required","TTL+of":"A subcategory is required","1frsVy":"A to Z","T7+72c":"A week ago","3MXUNk":"A white border will be added","DG91qF":"A year ago","rSChJg":"Aberconwy and Colwyn","LFz48R":"Aberdeen City","kquQ2t":"Aberdeen City","15b7D1":"Aberdeenshire","6ldYrv":"Aberdeenshire","DG3Hyz":"About","gThozy":["About ",["name"]],"Ym7/m8":"About post insights","rBFgwv":"Abuse, exploitation, or endangerment of real (non-animated) minors","WcSr0+":"Accept","lPiR/8":"Access","qYyTmV":"Access","YfHrcW":"Access (e.g. early or exclusive access)","uBo7ac":"Access Filter","0Le++Q":"Access powerful features","0FRYX2":"Access to Discord","KMeSsR":"Access to educational content","RH52EW":"Access to live event ticketing before everyone else","3A1I3q":"Access to work before it's available publicly","AuIkFZ":"Accessibility","vdv96t":"Account","10kzFD":"Account menu","UUIYqA":"Account was deactivated.","sJPp6h":"Active","XoTvZ/":"Active","nRoEft":"Active Now","ZrwYrT":"Active This Week","2z6YhL":"Active Today","EbLQDX":"Activities","3I5BA8":"Ad-free content","rC+rgY":"Ad-free content","viC8XR":"Ad-free episodes","b1JcQZ":"Ad-free versions of work","w56iOu":"Ad-free videos","BD1Rno":"Add","wBDXha":"Add","VjO+3j":"Add a featured tag","F50rYQ":"Add a link","PdwXOS":"Add a livestream","sgHvvY":"Add a new payment method to move these memberships.","RAU/O7":"Add a price to this post to make it available to anyone with a one-time purchase.","Bu+wJK":"Add a title","NPCeOv":"Add a title","bEL30v":"Add a video","3eQP+D":"Add address","8vV/5x":"Add an audio file","amA6/h":"Add an image","nfATT5":"Add at least \u003c0/\u003e poll options","2SnYIz":"Add auto-generated captions to your video. It can take up to an hour for them to start appearing.","4WdAiq":"Add benefit","NVoy2b":"Add captions","JAPY5S":"Add Captions","JOdsoF":"Add Card","NZ9ECJ":"Add Card and Retry Payment","x+ktch":"Add creator","ccN8m1":"Add custom captions","8RTeps":"Add details about your new collection","T0JYZm":"Add discount","EJG1aL":"Add headline","uUfpMc":"Add images","NN/du5":"Add items","oXiCcf":"Add membership","/wkMfF":"Add More","OoSIjj":"Add more details","9Mvph7":"Add more images","pbPbhb":"Add new","bege7B":"Add new address","9dB4lw":"Add New Address","alfCVq":"Add new card","+iJbmp":"Add new payment method","cSASnO":"Add new payment method","qGAHjO":"Add new payment method: Apple Pay","VXa8UU":"Add new payment method: card","oyYuc5":"Add new payment method: PayPal","Mb1fF6":"Add new payment method: Venmo","IuOaaH":"Add optional artwork","T1XEuD":"Add payment","a9d7F3":"Add payment method","CcDvSC":"Add payout method","OSzymV":"Add PayPal","AtZuwW":"Add posts","0xtOA1":"Add posts","aae1Ts":"Add posts","txn6yF":"Add product","pbBTFU":"Add product","HQXipz":"Add recommendation","t8i7W0":"Add recommendations","aGsNbz":"Add socials","LEsSSj":"Add this benefit to indicate that some or all of this tier is purely monetary support (i.e. members don’t receive anything in return) to ensure members pay the correct amount of sales tax for their pledge where applicable.","mVhYjG":"Add Tiers","kFc+SF":"Add title","uZnQVL":"Add to collection","0IySRY":"Add your socials so fans know it's you","vuCH4E":["Added by ",["firstName"]," ",["lastName"]],"wdZUIb":"Additional \u003c0/\u003e for non-US PayPal payments","1eg3IM":"Additional images (optional)","lGWl7R":"Address","A1jvIz":"Admission (e.g. live events)","uxizpx":"Admissions","ntavFw":"Adult and 18+ content","IF4LE6":"Afghan Afghani","rf5Hlq":"Afghanistan","ArhKxM":"Afghanistan Old Afghani","bpyBiR":"after \u003c0/\u003e months","Pt5t/Y":"Agree \u0026 Continue","eb6KB8":"Agree to guidelines to join","ULc3xf":"Agree to terms","HISJTK":"Agree to the terms for Patreon shops to add a product","GlgK1i":"Aichi","wcDttV":"Akita","hElSeL":"Alabama","+aaUYB":"Alabama","oqEUHb":"Aland Islands","UKXjHP":"Alaska","uH2XK2":"Alaska","/v6V2z":"Álava","rv4B89":"Albacete","RuxOzg":"Albania","ZYmqzg":"Albanian Lek","4V1WB5":"Alberta","BGd/MR":"Alberta","tjBQks":"Alcohol and smoking","1O8sjq":"Alcohol and smoking substances (e.g. wine, beer brewing kits, tobacco, cigars, vapes, e-cigarettes, rolling papers, cigarettes) may neither be sold nor offered as membership benefits on Patreon. Creators may not offer promotions, coupons, or other incentives to purchase or obtain these products.","e2kDF9":"Alcohol or smoking products and substances","+qrFie":"Algeria","OivI4i":"Algerian Dinar","GNp27a":"Alicante","F0p+Vr":"Align text to the left","DtEvNX":"Align text to the right","BL7OgZ":"All","5Fm7Zu":"All","WpNBH/":"All Customers","75x4qZ":"All members","ewwAl4":"All members","sbmZ/Q":"All membership options","gr4aCD":"All posts","rA22eg":"All products","sWWUVB":"All Regions","4r0BvD":"All the tools to build and grow a thriving membership business","EG/P6b":"All the tools to master membership","VuG07P":"All the tools to master membership plus Merch for Membership","gozHdG":"All-over","p26Uqk":"All-over print covers entire gaiter","E+e6Hb":"All-over print placement","GlOmCG":"Almeria","Pxp9KV":"Alt text","irtQlw":"Although we welcome diverse viewpoints and debates, there is no room for hate speech on Patreon. We define hate speech as serious attacks against a person or group based on the following characteristics: caste, disability, ethnicity, gender identity, immigration status, national origin, race, religion, serious medical condition, sex, or sexual orientation. Attacks may include (but are not limited to) dehumanizing language, harmful slurs or stereotypes, and calls for violence, exclusion, or segregation.","CVfwGG":"American Samoa","RZ1t9/":"American Samoa","VMDaOo":"American Samoa","rndu2D":"Amount is required","gbdA+N":["Amount must be at least ",["currencyString"]],"d0az1m":["Amount must be at least ",["MIN_DISCOUNT_PRICE_PERCENT"],"%"],"Toaix+":["Amount must be less than ",["currencyString"]],"xqDXOH":["Amount must be less than ",["MAX_DISCOUNT_PRICE_PERCENT"]],"LMsOL7":"An account with this email already exists.","ql23CE":"An example of the free member upgrade offer experience, which is part of Autopilot.","wrIZ4k":"An hour ago","NRQbhQ":"An image with a high DPI will print clearly","rzh9t3":"An image with a low DPI may appear blurry","InWRYl":"Andaman And Nicobar Islands","h89NFH":"Andhra Pradesh","OnJCSO":"Andorra","OVDp1d":"Andorran Franc","EIzW+u":"Andorran Peseta","xQItN9":"Anglesey","WCwKKP":"Angola","E3MpAS":"Angolan Kwanza","QxBF+m":"Angolan Old Kwanza","pJV7GN":"Anguilla","PgW+dJ":"Angus","7aH2go":"Angus","7Seh/W":"Animals \u0026 Nature","h/ohnP":"Animated sexual content or illustrations featuring minors","4B8ymZ":"Anniversaries","I3Mtgz":"Anniversary in the last 7 days.","N/A37e":"Annual","48Hyin":"Annual memberships","9m9zEr":"Annual payment","emGi4M":"annual plan discount percent","yIPlGD":"annually","6AMjE1":"Antarctica","k6kvMU":"Antigua and Barbuda","M1ZvOd":"Antrim","1BiZpT":"Antrim and Newtownabbey","YP1NlO":"Any date","nXueU5":"Any JPG, JPEG, PNG, or GIF up to \u003c0/\u003eMB","8niU+T":"Any photos submitted will be securely stored to protect your information. We'll never publicly share or sell this personal information. \u003c0\u003e\u003c1/\u003e\u003c/0\u003e","tCG9Jq":"Any space that isn’t covered by your design will show the fabric. For this reason, patterns and full-bleed images produce the best results.","pTiE1/":"Any tier","2PTZK+":"Anyone who joins a chat can see the full history and can view who else is in the chat. To help keep you and your community safe, members will see these guidelines before they join:\u003c0\u003e\u003c1\u003eBe kind and welcoming\u003c/1\u003e\u003c2\u003eAlways be respectful\u003c/2\u003e\u003c3\u003eDon’t spam\u003c/3\u003e\u003c4\u003eDon’t share private or personal info\u003c/4\u003e\u003c/0\u003e","zxvnNr":"Aomori","+KYsa1":"App Directory","5yE3gr":"App Directory","yGkEl/":"App store markup is off","m++hPU":"App store markup is on","kVv9Tv":"Apple is requiring that we use their in-app payment system in order to stay in the App Store. This system adds new fees and only works with our subscription billing method.","gEqAkI":"Apple is requiring that we use their in-app payment system in order to stay in the App Store. This system adds new fees and only works with our subscription billing method.","LZ7em7":"Apple is requiring that we use their in-app payment system in order to stay in the App Store. This system adds new fees for purchases in the iOS app.","bYakMC":"Applies to","UOze+J":"Applies to paid memberships and when you sell an individual post or collection as a one-time purchase.","KpgZ5/":"Applies to sales of products added directly to your shop. This doesn’t include sales of individual posts and collections.","pPQsXv":"Apply","Ar7dTz":"Apply","+TD14B":"Apply","WUrmp3":"Apply","KamK45":"Apply discount to entire shop","KxZ9qT":"Apply discount to select products","IpsBeK":"Apply filter","8PfSBm":"Apply for Premium","RCktH2":"Apply for Premium","lRpjaM":"Apps","fF/tDB":"Apt, suite, etc...","ipoQz3":"Archival, acid-free paper","v0nNmf":"Ards and North Down","WOjggY":["Are you sure you want to delete this ",["entityToDelete"],"? You cannot undo this action."],"cmpbBB":"Are you sure you want to delete this benefit?","A5sI/A":"Are you sure you want to delete this chat? You cannot undo this action.","TJfdmc":"Are you sure you want to delete this clip? You cannot undo this action.","24kyfT":["Are you sure you want to delete this post? You cannot undo this action. ",["deletionMonetizationDescription"]],"isbiyP":"Are you sure you want to leave this page? Your changes will not be saved.","QqnkbF":"Are you sure you want to navigate away? There are changes that haven't been saved.","cXNWfb":"Are you sure you want to remove all the images from your post? This will also clear all captions and image descriptions, and cannot be undone. Any inline images you've added will not be affected.","i9SgVS":"Are you sure you want to remove this post from this collection?","Izw/8f":"Are you sure you want to unpin this post?","v0bni4":"Are you sure?","J9cCo5":"Are you sure?","6foA8n":"Are you sure?","rLmMCt":"Argentina","L9RKIw":"Argentine Peso","24/ZFB":"Argyll and Bute","d92buF":"Argyll and Bute","IRsfk0":"Arizona","GthYhb":"Arizona","7tRJkG":"Arkansas","C2VI71":"Arkansas","lmtJpq":"Armagh","Qt21tE":"Armagh City, Banbridge and Craigavon","374UkS":"Armed Forces Americas","56+q/G":"Armed Forces Americas","RLm+ov":"Armed Forces Europe","serXJj":"Armed Forces Europe","hW0b0u":"Armed Forces Pacific","RgI68E":"Armed Forces Pacific","RUJ1F9":"Armenia","8MNoQq":"Armenian Dram","NyrxGA":"Art","fNaf4q":"artists, creators, member, patron, sponsor, music, videos","E7gCLp":"Artwork Best Practices","ry5ZUM":"Artwork editing disabled","i7WNa/":["Artwork should be \u003c0\u003eat least ",["minDpi"]," DPI\u003c/0\u003e, and the file format should be \u003c1\u003eJPG or PNG\u003c/1\u003e."],"LuRNiI":"Aruba","Wytsvh":"Aruban Florin","Bq+ud0":"Arunachal Pradesh","+ODJlF":"As a free member, you'll get updates on public posts.","EU+u5g":"As of","Ajnhjt":"Ask a question","PSt79h":"Ask questions and participate in Q\u0026As and ask-me-anythings","WngrDB":"Assam","Vg/xbf":"Asset saved","+Flflk":"Assign it to a tier.","12Xo6/":"Associate address to campaign","ISBuI0":"Asturias","Qe2+Ia":"at","BaJMcp":"at \u003c0/\u003e","KqWLNd":"At least one membership is required","q1l8Cl":"At least one product is required","HO/YF1":"Audience","PvmvV/":"Audio","fGgLfM":"Audio","Kak+bA":"Audio","ZIR02A":"Audio","yc91rh":"Audio","QhGR3N":["Audio ",["count"]],"CV/oQe":"Audio and attachments","KnX+YF":"audio file","yfarjO":"Audio must be longer than 30 seconds to qualify for a preview.","GsLlnw":"Audio not ready yet?","GYvk3E":"Audio Player","SuCuXi":"Audio preview","qwL5pk":"Audio previews will be available after you save","6jcJyp":"Audio timeline","B/+dO8":"Australia","hcJ5+a":"Australian Capital Territory","gvRPoQ":"Australian Dollars","Dobyq9":"Austria","EI4+pP":"Authentication code","JJ9V14":"Auto withdrawal","Zmt05p":"Auto withdrawal is off","2ynn+1":"Available for withdrawal:","wpC8/S":"Available on selected tiers.","OSbsym":"Available to all members.","VATI9O":"Available to all paid members.","pQJ9Pe":"Available to members on:","zYRkyB":"Available to withdraw","QxKRBS":"Average view duration","2SjUfz":"Ávila","wZ8/Mc":"Avoid neon, pastel, or very bright colors","AMyBQ2":"Avoid small images, text or details","RXpN18":"Avon","dgiY/H":"Ayrshire","jDiL6P":"Azerbaijan","NiE5i5":"Azerbaijan New Manat","Ii/tQu":"Azerbaijan Old Manat","aR07IM":"Back","oPJxKz":"Back","zoJ32k":"Back","f29EPo":"Back","9E+FZ+":"Back","jQ8QzK":"Back to chats list","QVRnQP":"Back to chats list","AgGTzo":"Back to Creator View","x3i81A":"Back to sign in","XVPqIH":"Backup payments have been turned on. If your primary payment method fails, we'll try a backup payment method.","Zzr6Nv":"Backup payments help prevent failed payments. Turning this off means that your payment may fail if there's a problem with your primary payment method, and you'll lose access to your membership benefits.\u003c0/\u003e\u003c1/\u003eTurning off backup payments would apply to all your memberships, and the following payment methods will no longer be used as backup payment methods:\u003c2\u003e\u003c3/\u003e\u003c/2\u003e","Xs3CuY":"Backup payments help prevent failed payments. When there's a problem with a payment, one of the other payment methods on your account can be used to complete the payment. You can turn this off at any time.\u003c0/\u003e\u003c1\u003e\u003c2\u003eTurning on backup payments applies to all your memberships, including future memberships. You'll get an email before a backup payment method is used.\u003c/2\u003e\u003c3\u003eOther membership settings, including price and when you're charged, aren't changing. Only how payments are made when a payment fails.\u003c/3\u003e\u003c/1\u003e\u003c4\u003e\u003c5/\u003e\u003c/4\u003e","7rgfQu":"Badajoz","KwTjPF":"Baden-Württemberg","goe6jn":"Bahamas","jglYST":"Bahamian Dollars","jpoFey":"Bahrain","48hF4o":"Bahraini Dinar","RiXpNy":"Balance","CmXD/a":"Balearic Islands","f/1w+z":"Bangladesh","CqGIxy":"Bangladeshi Taka","2NRib/":"Bank account","EzXkJ1":["Bank account ending in ",["paymentNumber"]],"lAGVQY":"Barbados","r3Z3tt":"Barbados Dollars","Eo3QJ2":"Barcelona","Ctr0TF":"Barking and Dagenham","24knt3":"Barnet","Pm+Dzi":"Barnsley","m8kELT":"Based on the item you select, we’ll smartly suggest a tier.","oROYmK":"Basics","XZUXs3":"Bath and NE Somerset","69JKJa":"Bath and North East Somerset","iZZE1b":"Bavaria","vdYOEb":"Because members won’t be charged per post anymore, we’ll help you make adjustments to your prices to keep your earnings consistent.","asrgwY":"Become a creator","do0Kck":"Become a creator","CKvSxQ":"Become a member","k339ek":"Become a member to comment...","HGcz0r":["Become a paid member to unlock exclusive posts, chats and more from ",["campaignName"],"."],"uu+SA+":"becoming a member","cvmW0H":"Bedford","sdijsw":"Bedfordshire","MZOH3U":"Before you can continue:","Sd53wp":"Behind-the-scenes content","GKmqmV":"Behind-the-scenes content","sKiVaV":"Belarus","E0byAG":"Belarusian Old Ruble","odP55H":"Belarusian Ruble","l1E9Ay":"Belfast","jomQso":"Belfast","62XuiD":"Belgium","tiodCL":"Belize","x2c1OG":"Belize Dollars","pXoZvW":"Bella + Canvas 3001 Unisex T-shirt","OAp1qV":"Bella + Canvas 3501 Unisex Long Sleeve Shirt","LJfGEo":"Benefit title","Qv5Omi":"Benefits","ytVJwF":"Benefits","xHT66G":"Benin","h3Euur":"Berkshire","7itK+3":"Berlin","K6Yzx0":"Bermuda","zVPIu3":"Bermudian Dollars","Wv+cCB":"Berwickshire","vlXmbk":"Bestiality","A3e7nJ":"Beta","z4xfMt":"Better experience for members","4v2CAd":"Bexley","HnK/X6":"BFPO","yKFp9u":"Bhutan","1BFgUT":"Bhutan Ngultrum","KQoRlS":"Bihar","MwyDD7":"Billing history","y89yU7":"Billing postal code","EorWtz":"Billing postcode","8JmXYv":"Billing zip code","PRVidB":"Birmingham","UkIz2Z":"Blackburn with Darwen","bLMOAH":"Blackpool","V+rNop":"Blaenau Gwent","EYkEUc":"Blaenau Gwent","wWXf9a":"Blank white matte back","//pvei":"Block","R9Vj9l":"Block","y6au/A":"Block","BdD0Cl":["Block ",["name"]],"tlR9yc":["Block ",["name"]],"lwAv9B":["Block ",["nameToShow"],"?"],"9YEg0t":"Block payouts for 5 days and save changes","Tn9SOr":"Block Person","/3C9wF":"Block this creator","8ajgvy":"Block user","kHEAKb":"BLOCKED","oLNqBd":"Blocked users","BwRC44":"Blocked users","7F3ysf":"Blog","Un17QY":"Blog","dT3R4/":"Body","LULIjU":"Bold","GQkYJM":"Bolivia","9RiNRL":"Bolivian Boliviano","+MnmDf":"Bolton","5U36go":"Bonus content","cKxzKh":"Bonus content available only to members","4FQvv0":"Boost product sales with discounts","nz0Fko":"Bosnia and Herzegovina","q9H7d2":"Bosnian Mark","mwlWL8":"Botswana","34Raxb":"Botswana Pula","3/haWO":"Bournemouth","0ET1FT":"Bouvet Island","YCTkxZ":"Bracknell Forest","xD0bZq":"Bradford","c3U9pP":"Brand","kNqm18":"Brandenburg","fg4Boo":"Brazil","RR6Okn":"Brazilian Real","Ocbg7R":"Bremen","Xq8mYQ":"Brent","RqcUnh":"Bridgend","wDJyGF":"Brighton and Hove","nLCRkD":"Bristol, City of","SBUCZE":"British Columbia","3fi7kp":"British Columbia","fZpoCv":"British Indian Ocean Territory","HGvcn5":"British Pounds","BJIg9g":"British Virgin Islands","l8gISq":"Bromley","qd7l+D":"Brunei","aCC+aV":"Brunei Dollars","GT97Pd":"Buckinghamshire","j7vEvQ":"Buckinghamshire","aMSMCM":"Build a membership","Qn7wJL":"Build a membership for your fans and get paid to create on your own terms.","OS0N22":"Build hype for your latest release, and let fans  experience it and chat live together.","yN3mpk":"Build real connection","o3Tlc7":"Building or facilitating a multi-level marketing initiative or offering MLM discounts or coupons is not permitted on Patreon.","DJm9Qu":"Bulgaria","xLYHoE":"Bulgarian Lev","ZDlYK8":"Bulgarian Old Lev","KRY8qb":"Bullet","l1ydcQ":"Bullying or harassment","wAS15I":"Bullying or harassment of a person or group","vXOEcb":"Bullying, Harassment and Threats","bXWf7+":"Burgos","gsMSfX":"Burkina Faso","P2w42v":"Burundi","gZXozv":"Burundi Franc","GSTLVr":"Bury","2ESUre":"button to open settings modal","b/VrlD":["Buy “",["productTitle"],"” on Patreon | ",["creator"]],"H3OGVo":"Buy (\u003c0/\u003e)","Ad0y7q":"Buy collection","Hm4BxI":"Buy now","ZXDoCZ":"Buy now","batAbP":"Buy now","tNsY7+":"Buy now for \u003c0/\u003e","sSbVh0":"Buy post \u003c0/\u003e","9Jz9uK":"Buy this post","62iJmZ":"Buy this post or become a member to unlock it.","mEJZB+":["By ",["conditionalCta"],", you'll instantly unlock access to ",["total","plural",{"one":["#"," exclusive post"],"other":["#"," exclusive posts"]}]],"neyes1":"By signing up, you are creating a Patreon account and agree to Patreon’s \u003c0\u003eTerms\u003c/0\u003e and \u003c1\u003ePrivacy Policy\u003c/1\u003e","rnickQ":"By supporting creators you love on Patreon, you're becoming an active participant in their creative process. As a member, you receive exclusive content, community access, behind-the-scenes updates, and the pride of fueling work that matters to you.","yt8JQ6":"Cáceres","tb+ImH":"Cádiz","jh05yN":"Caernarfonshire","1CTbcy":"Caerphilly","Vzu4Nt":"Caerphilly","G5oMec":"Caithness","EfPxYu":"Calderdale","AsIwFz":"California","SXEwUz":"California","TjDmnj":"Cambodia","5Al5dT":"Cambodian Riel","FG+OSX":"Cambridgeshire","CcuNvt":"Cambridgeshire","GMlSA+":"Camden","mde3iT":"Cameroon","AyYS8b":"Can I cancel my pledge any time?","kER43p":"Canada","0d4L4o":"Canadian Dollars","pYnCf5":"Canary Islands","xNMgbD":"Cancel","kTlUHf":"Cancel","3LnEin":"Cancel","t5an2w":"Cancel","BcVfYp":"Cancel","BCb4GC":"Cancel","MCwqqw":"Cancel","AiBbaT":"Cancel","2gDn+7":"Cancel","CHRRNh":"Cancel","KwvmT2":"Cancel","8Yk+un":"Cancel","IY1kjZ":"Cancel","v08Gif":"Cancel","qHvlK0":"Cancel","JW1WeS":"Cancel","NL+z9r":"Cancel","DHVDsS":"Cancel membership","jFmvAv":["Cancelled. Access expires on ",["nextChargeDateString"]],"2vbOl5":"Cannot recover this drop. Please create a new one.","jBLSTd":"Cantabria","0WawyA":"Cape Verde","NjExAv":"Cape Verde Escudo","Jd3kpL":"Caption","UGSpV6":"Card","VD0TFF":"Card","0AHhTX":"Card","n5W1nf":"Card details","IXPpKS":"Card expiration in MM/YY format","2dUkQ8":"Card number","Okz3FL":"Card verification value","8+D+HW":"Cardiff","E1XcBh":"Cardiff","7o5I1T":"Cardiganshire","zx80pX":"Careers","keDrXz":"Caribbean Netherlands","TePh2Q":"Carmarthenshire","jw55FJ":"Carmarthenshire","VgeYuJ":"Castellón","QuIw5s":"Category","FF0B8W":"Causeway Coast and Glens","JAhrth":"Cayman Islands","bSpM5W":"Cayman Islands Dollars","Pm6HtC":"Center text","G8r35e":"Centered","sMJpBX":"Central African Republic","mAIzz3":"Central Bedfordshire","2hRY0G":"Central Finland","QYKqvJ":"Central Ostrobothnia","UrCBy/":"Ceredigion","HmS7Jf":"Ceredigion","IVY5cv":"Ceuta","vt3DVF":"CFA Franc BCEAO","d/6L44":"CFA Franc BEAC","/n46CZ":"CFP Franc","Cs9POo":"Chad","sTYfZR":"Chandigarh","O+f1t9":"Change","x/AWmA":"Change","z5bEfC":"Change here","HTb0kp":"Change plan","sdy/+m":"Change plan","oRPHhx":"Change plan","/a9bqV":"Change Plan","lHtVw5":"Change progress","gsthBc":"Change setting","kNqsVM":"Change Tier","dBH6bN":"change your email address.","4vBFs6":"Changes saved","gXDI9G":"Changes saved","T0D3Fj":"Changes saved.","qRzQrw":["Charge per ",["payPerNameTranslated"]],"pkRT+F":"Chat and connect over the phone","xRqir3":"Chat guidelines","84uaxE":"Chat guidelines\u003c0/\u003e","GkKdFq":"Chat image","m78b/l":"Chat with creator","iih1uu":"Chats","gFP3h2":"Check back in a bit","aRhM9f":["Check out ",["creator"],"’s products on Patreon"],"KK1gMX":["Check out ",["creator"],"’s shop on Patreon"],"retSXw":["Check out my membership card from patreon.com/",["vanity"],"!"],"U82gm/":"CHECK OUT THIS MEMBER-ONLY POST","z8vIzX":"Check out your creator's Drops","O7jfpv":"Check your inbox","TMTyUs":"Check your internet connection, refresh the page or try again later.","Nc6Zi1":"Cheshire","6fS7Dn":"Cheshire East","ju4oAR":"Cheshire West and Chester","FB7RzU":"Chest (CM)","bV1dU/":"Chest (IN)","OubSS0":"Chhattisgarh","g4IqBT":"Chiba","AUYVZj":"Chile","lKeHoG":"Chilean Peso","L832uQ":"China","QQ7yjk":"Chinese Yuan Renminbi","HOUBt6":"Chinese Yuan Renminbi (offshore)","QFKoQu":"Choose a color","4sv8d6":"Choose a color...","PdPYfd":"Choose a different post","xXU2nW":"Choose a new payment method","gKFw3W":"Choose a new payment method","viaHWI":"Choose a post","nef979":"Choose an emoji to create your chat","PC26Qt":"Choose from our catalog of products and upload your design.","YxiqgS":"Choose how you earn","7rrYBT":"Choose in billing settings","cFWy1y":"Choose new payment method","ahtiIO":"Choose one of 3 colors to offer your members","Oo5eay":"Choose one of eight colors to offer your members","TH6pAd":"Choose one of ten colors to offer your members","qaP0ir":"Choose which posts to include in the collection","sLh+gP":"Choose your Currency","UrDGp6":"Choose your iOS pricing","ohWF72":"Choose your language","34Iha4":["Choose your membership for ",["campaignName"]],"X5NjQJ":"Choose your region","gV6vWE":"Christmas Island","Y+fpCk":"City","Gu7/kb":"City of Bristol","xees0r":"Ciudad Real","QDAXMF":"Clackmannanshire","HRPZC6":"Clackmannanshire","tt1vu1":["Claim ",["possessiveCampaignName"]," gift"],"PSIN/Y":"Classic crew neck with ribbed cuffs","cglZI1":"Clear","AXWhnz":"Clear all","1hcx1e":"Clear all","rGZkmk":"Clear Email","zvP2un":"Clear filters","YimJ0y":"Clear filters","6/pgTm":"clear search","I+17A1":"Clear search","QOngNE":"Click to join","LZ+VTv":"Clip","ekyx/0":"Clip","bXz9oY":"Clip by","AN2E5A":"Clip downloaded","omP4pz":"Clip title (required)","RISC23":"Close","lzzUuL":"Close","9SxxqA":"Close","WBc1xj":"Close","HEKm+4":"Close","yKzmwC":"Close chat thread","BWT+Xj":"Close the share dialog","ZDoeog":"Close window","jp3Rb2":"Closed Captions","hZjn4g":"Closed Captions","ACuhdj":"CLOSED CAPTIONS","A5wjGj":"Clwyd","cup1nC":"Cocos (Keeling) Islands","gbpz3u":"Code","dyxT4w":"Code","nn3kLd":"Code","jKsmfp":"Code is required","sduf6j":["Code must be ",["MAX_DISCOUNT_CODE_LENGTH"]," characters or less"],"fL1zKY":["Code must be at least ",["MIN_DISCOUNT_CODE_LENGTH"]," characters"],"asXO+v":"Code must only contain numbers, uppercase letters, hyphens, and underscores (no spaces)","9J7Siz":"Code not recognized. Try again or request a new code.","0w3iiJ":"Code to be sent to eligible members","b82/57":"Collapse replies","WGYJ9H":"Collection","KpcKdx":"Collection deleted","pszsnv":"Collection preview","kUjxpY":"Collection title","MhDGen":"Collections","v+aDut":"Collections","dmVCDz":"Collections is an improved way to organize your posts and it helps your members explore all your great work.","BEvcch":"Colombia","RqVixG":"Colombian Peso","HQm7vz":"Color cannot be changed after item is published.","GhFsC5":"Color Management","2hTFc0":"Color profile","t8yqET":"Color:","rpjBE5":"Colorado","E/LDaD":"Colorado","ytktbW":"Colors for the selected item","npddhH":"Colors that have less than 100% opacity may not print correctly. Use solid colors for all elements of your design.","0O2Wd1":"comment","r60rBW":"Comment deleted","O+ehbG":"Comment deleted.","BkosUV":"Comment Field","KKItnQ":"Commented","KHBEiL":"Comments are disabled for this post.","D6IugO":"Comments are disabled for this post. Only you can see them.","vsd6yj":"Comments aren't available for this drop right now. Refresh the page or try again later.","Ur1SDW":"Comments have been turned off for this drop.","LTkJqL":"Commissions (delivered by mail)","FgFYmX":"Commissions (delivered by mail)","ozVyVM":"Commissions (digital)","E5PGon":"Commissions (digital)","1pz/YF":"Communities","Wl1LdR":"Communities","i249kT":"Community","DnWA7X":"Community","3Q0GUs":"Community","docSeM":"Community Guidelines","dVL2bV":"Community Guidelines","4sM/Jp":"Community Guidelines","ozJiOo":"Community Guidelines","NBxVB8":"Community Policies","RrGd72":"Comoros","uAk4p2":"Comoros Franc","92csRo":"Company","qdwDv6":"Compare tiers","3WmJPG":"Complete post archive","myUt/0":"Complete your account","MdAcx+":"Confirm","xZRJ1c":"Confirm","4Wjx3g":"Confirm cancellation","cSJqBh":"Confirm cancellation?","wWBOWT":"Congo","5SzNKx":"Congo","PKaP8e":"Congolese Franc","xq57kO":"Congrats! You have unlocked professional tools to grow a membership business your fans will love. Now, back to what you were doing.","YbcM6f":"Connect","4CJYne":"Connect","o4dhmO":"Connect","CrX6LR":"Connect","OIxBgn":["Connect ",["appName"]],"qK3yJ0":"Connect to social accounts","WFrxTP":"Connect your account to listen to Patreon audio posts right on Spotify. To learn about the information you'd share with Spotify, checkout out the \u003c0\u003eHelp Center Article\u003c/0\u003e","+LrZe0":"Connect your social accounts so more fans can find your Patreon through their Search tab.","z30iYp":"Connect your socials","i9Oq9E":"Connected","39tkyx":"Connected","jkz2v+":["Connected @",["username"]],"Mrk6RR":["Connected to \u003c0\u003e",["discordConnectionName"],"\u003c/0\u003e"],"30hVB1":"Connecticut","Y0C9wi":"Connecticut","0lKfmK":"Connecting with other fans","pV/fR2":"Connecting with the creator","6ePc1l":"Consent confirmation","Expf2g":"Consumables and Health","Luc51W":"Contact us","P9EPUv":"Contact us","rgFzFd":"Contact Us","EfUcib":"Contact Us","vV6Tjd":"Contact Us","aGg1iM":"Content image for this notification row","voifyz":"Continue","pU9puA":"Continue","9f05S0":"Continue","OoAHWD":"Continue","Ma1g2S":"Continue","wg+txA":"Continue","UnC+Jt":"Continue","yQOAVw":"Continue","Aor/5U":"Continue","MqvSYE":"Continue with Apple","i56yTX":"Continue with Facebook","FfSupM":"Contributed the most during their time as a member.","VPjDIh":"Convert browsing fans into new customers.","pCr/fH":"Conwy","4vFG9F":"Conwy","Y0U2Xt":"Cook Islands","NeElwb":"Copied","dx9QXr":"Copy","Li9ZQG":"Copy collection link","EcZ7Vz":"Copy discount code","udjije":"Copy link","kD1Aev":"Copy link","hknjXb":"Copy link","mGs9SH":"Copy link","8Y/Ct1":"Copy link to clipboard","DpT9zc":"Copy link to this collection","pkVikq":"Copy post link","m/OH7O":"Copyright infringement","/hVjAX":"Copyright or Trademark Claim","hwonNi":"Córdoba","PxN9ZO":"Cornwall","atllly":"Cornwall/Scilly","/ye9St":"Cost to produce \u0026 ship merch in tier:","eCT4mN":"Cost to produce \u0026 ship merch:","ALiSZX":"Costa Rica","WqnmEG":"Costa Rican Colon","jiu83Z":"Côte d’Ivoire","2xFYVZ":"Could not save captions. Please try again.","OAgVL4":"Couldn't  record submission, try reloading the page in few minutes.","10dYkm":"Couldn't access your Apple ID. Try logging in again.","XKyRn5":"Couldn't access your Google account. Try logging in again.","49I1yy":"Couldn't connect to Apple. Try logging in again.","KiDFQY":"Couldn't connect to Facebook. Try logging in again.","8eTwVD":"Couldn't connect to Facebook. Try logging in with your email instead.","kYFclq":"Couldn't connect to Google. Try logging in again.","cysPVf":"Couldn't create account with Facebook. Try signing up with your email.","nq3aQG":"Couldn't delete collection. Please try again.","OR4LgW":"Couldn't sign up with Apple. Try removing Patreon app access from your Apple ID settings.","8gC8mt":"Couldn't sign up with Apple. Try signing up with your email.","6NyQf1":"Country","mnAc/Q":"County","2Jmwn6":"Coventry","lVZkQK":"Create","L7AieR":"Create","wi65Ts":"Create","NrQ5R8":"Create","WovSzw":"Create a chat at anytime — members won’t see it until you send the first message.","MJtKFI":"Create a password","gI/dX9":"Create audio post","/NemQt":"Create clip","zR8vI3":"Create clip","RjkuCr":"Create collection","1AXHDL":"Create collection","53yepi":"Create collection","hbDI0T":"Create collection with tags","0DU1qb":"Create content","z+iN5v":"Create drop","qVfXys":"Create image post","U8VvGF":"Create link post","Q5FGrD":"Create livestream post","5JDli1":"Create livestream post","IZSME6":"Create livestream post","0DgWqo":"Create livestream post","g6ce7L":"Create new \u003c0/\u003e tier","ViqKf0":"Create on Patreon","/wbD2X":"Create on Patreon","mf8EWG":"Create on Patreon","grwh8D":"Create on Patreon","/heXxw":"Create on Patreon","dbacUW":"Create podcast episode","+2I7i0":"Create poll","S4xi+W":"Create post","qjynl8":"Create text post","tXK34Z":"Create video post","Lj0Elg":"Creating an audiogram...","qSgr4M":"Creating your promo card…","yuJFoJ":"creation","4bFVpH":"creation","ApFH3m":"Creative projects funded through Patreon can't feature or deploy deceptive technical practices like spam, abusive bulk messaging or artificial traffic or view amplification.","NKywd5":"Creator","MJDmdS":"Creator","OBPYD/":"Creator","EMqnY5":"CREATOR","J1cQ1U":"CREATOR","R/PMJL":"CREATOR","29KmxC":"Creator Community","POHy+0":"Creator earns","yac2C2":"Creator Hub","rTrG2Q":"Creator Hub","m+Bu1N":"Creator Hub","R0U1yv":"Creator name","VN7uky":"Creator name","JjkU2g":"Creator name is required","MliS5u":"Creator navigation","4Ibb88":"Creator recommendations","4ecNx0":"Creator recommendations are a new way for fans to discover you and other creators","nhL4Gi":"Creator tagline","LjeR3G":"Creator updates","yMAoCg":"Creators","TkMEzS":"Creators are free to use Patreon to publish content around cooking, DIY products and discussions on health a hygiene. However, creators cannot use Patreon to offer ingredients or products that are intended to be ingested.","EV0yow":"Creators cannot offer ownership in a business or company as part of a pledge through Patreon.","6x0d2l":"Creators must also be at least 18 years old to share modeling or “posing” works that center on their appearance or body.","sEUoXY":"Creators recommending you to their fans","+Ldl/v":["Creators residing in ",["specificCountry"]," are restricted from creating adult content, in line with our \u003c0\u003eCommunity Guidelines\u003c/0\u003e and local laws. By updating your campaign settings, your campaign may be subject to review by our Trust \u0026 Safety team prior to launch. \u003c1\u003eLearn more\u003c/1\u003e."],"HNx+tW":["Creators residing in ",["specificCountry"]," are restricted from creating adult content, in line with our \u003c0\u003eCommunity Guidelines\u003c/0\u003e and local laws. By updating your campaign settings, your campaign may be subject to review by our Trust \u0026 Safety team. \u003c1\u003eLearn more\u003c/1\u003e."],"Pcvxf7":"Creators residing in countries where content with adult/mature themes is regulated are restricted from creating adult content, in line with our \u003c0\u003eCommunity Guidelines\u003c/0\u003e and local laws. By updating your campaign settings, your campaign may be subject to review by our Trust \u0026 Safety team prior to launch. \u003c1\u003eLearn more\u003c/1\u003e.","kPtBsz":"Creators residing in countries where content with adult/mature themes is regulated are restricted from creating adult content, in line with our \u003c0\u003eCommunity Guidelines\u003c/0\u003e and local laws. By updating your campaign settings, your campaign may be subject to review by our Trust \u0026 Safety team. \u003c1\u003eLearn more\u003c/1\u003e.","yc8dgV":"Creators using Premium must contact their Dedicated Partner Manager to downgrade.","pSUxwW":"Creators who post member-only content twice a month tend to retain more members. This means their members pledge longer!","yNjxLY":"Creators who recommend you will appear here. You can try recommending a creator first.","1BiUVv":"Creators with a custom fee or plan package must contact support to change plans.","tSzl9I":"Creators-of-all-kinds","Nwto0e":"Creators-of-all-kinds","bRV87l":"Credible threat of self-harm","FldZCi":"Credible threat of suicide","jaHgOb":"Credible threat of violence","232ok0":"Credit card number","Wm6Tpi":"Croatia","bykPsh":"Croatian Kuna","yxWnD3":"Croydon","2ldo9S":"Cryptocurrency, financial advice, or multi-level marketing","gDLpKy":"Cryptocurrency, Financial Advice, or Multi-level Marketing","Vn6j8k":"Cuba","LH0REd":"Cuban Convertible Peso","3mW4aQ":"Cuban Peso","Fxat9y":"Cuenca","CF8jaW":"Cumbria","ue3Roh":"Cumbria","9c8Jgi":"Curaçao","8Pfkyq":"Currency","QIxZn+":"Current plan","N7/74J":"Current plan","By4/PS":"Current plan","hhDIXM":"Current Plan","/BWUXu":"Current Pledge","X5jE5k":"Current Tier","ZHW0x8":"current timestamp","8bxZAQ":"Custom","Q/ZyNl":"Custom","V/qoaf":"Custom brand color hex code","qx3F1i":"Custom captions","wQjY1k":"Custom plan","k6wuJZ":"Custom Pledge","B97SED":"Customers may use this code for multiple purchases while it's active.","JlBOfg":"Customize codes with a $ or % amount off any product or your whole shop.","Ipr6w+":"Customize page","XpyInn":"Customize your merch.","+ttTlq":"Customize your page","jM7t9A":"Cutout area sticker","JvZybz":"CVV","1F4FGR":"CVV","OMAYYj":"Cyprus","3LI/yY":"Czech Koruna","kmZDF4":"Czech Republic","Wia6pK":"Czechoslovak Koruna","FUDan7":"Dangerous Organizations","vxhAbI":"Danish Krone","2eJxfF":"Dark","KW0NMg":"Darlington","Uza8Hc":"Date","NDmk4C":"Date Filter","5aTssw":"Date published","bCStV8":"Date published","9vWeoT":"Days","pyRO+O":"Decline","8ul7sR":"Declined","pSZth7":"Deepfake audio, video, or image works manipulated or digitally to portray a person, event, or scene in a way that is not real or did not occur for sexual gratification are not permitted on Patreon.","5LI6cl":"Deepfakes or manipulated images with sexual content","Y3/yhP":"default","9a9vqL":"Delaware","9o0ofr":"Delaware","Cejjoy":"Delete","dvMEdW":"Delete","snjKlj":"Delete","Bnu7NC":"Delete","PrlgZG":"Delete","LkDN0S":["Delete ",["entityToDelete"],"?"],"xViBS8":"Delete Address","5f6ogw":"Delete Address","thRxmx":"Delete all of your tiers. Pledges from members of deleted tiers will continue to be processed.","ZX2s37":"Delete benefit","Boi63X":"Delete benefit","XfaiW2":"Delete Chat","KvHRkw":"Delete Chat","wTNilw":"Delete chat?","i+I4S9":"Delete clip","rifQVY":"Delete clip confirmation dialog","tmoUOo":"Delete clip?","By5x8T":"Delete comment","Uni2I2":"Delete Message","LYH151":"Delete or end your Special Offer before downgrading.","/1v6VZ":"Delete payment method?","jSaBJr":"Delete post","TlLWbS":"Delete post?","wmUaNf":["Delete this ",["type"]],"rfrcPq":"Delete this item?","73spTK":"Deleted product successfully","92Nh+U":"Deleting this product will remove it from your shop. If you want to keep this product hidden from the public but still editable, consider unpublishing this product instead.","Esre84":"Deleting this product will remove it from your shop. People who already purchased it will also lose access.\u003c0/\u003e\u003c1/\u003eIf you want existing customers to still have access, unpublish this product instead.","hNk+Io":"Delhi","CVGU5z":"Delivery","WMXIOQ":"Denbighshire","OMU/po":"Denbighshire","ILZ/kd":"Denmark","hFYLQm":"Depictions, promotions, or celebrations of violent actions or actors are not permitted on Patreon.","92A1U6":"Derby","OdNDSj":"Derbyshire","euR1qV":"Derbyshire","PdzES9":"Derry City and Strabane","4X6tlw":"Derry/Londonderry","O1IgIn":"Describe the promotion","oCzyhi":"Describe your merch item","EFNKtL":"Description","/u+6tU":"DESCRIPTION","/cccUG":"Description for your product...","EiQOiq":"Description is required","0bD/Dg":"Design placement","cq7kQq":"Design template","gmmtU/":"Details","u1G1zT":"Details","MmUzHp":"Developers","BOZ2U4":"Devon","WSLPOQ":"Devon","uq9Dwb":"Digital downloads","QYWaYk":"Digital downloads","rETu+y":"Digital ebook or publication","a9/P1q":"Digital Goods","ae/xIw":"Digital goods (e.g. downloadable content)","ZS+fWv":"Digital Streaming","1aSI2Q":"Digital streaming (e.g. video or audio stream)","WVRJ6H":"Dimensions: 16” x 14 ½” x 5”","YRDkQz":"Direct Messages","S6Tenq":"Direct one-on-one connection","fL5Rij":["Direct to bank payments aren't supported for ",["length","plural",{"one":"one","other":["#"]}]," of these campaigns. Please select another payment method."],"BWNDqr":"Directly raising money for political campaigns or associated activities or groups (e.g. political action committees, political parties, and candidates), is not permitted on Patreon.","EZNJd7":"Disabled","otTbU5":"Disconnect","PElsx3":"Disconnect","mFI+Zx":"Disconnect","gTa7OH":"Disconnect","mOW2t4":"Disconnect","X2q2VA":"Disconnect","pcnEJY":"Disconnect your Spotify account?","rZkW5l":"Discord","YAVK3G":"Discord access","uWpf0U":"Discord Integration","w8Ez8R":"Discord rate limit reached","HrM3nS":"DISCOUNT","FAJnfw":"Discount amount","58Athv":"Discount amount type","CcXmDO":"Discount end date","7HoVb7":"Discount end time","t0LBtc":["Discount max: ",["MAX_DISCOUNT"],"%"],"39I5Hk":"Discount percentage","ek7LCh":"Discount start date","/bCbNv":"Discount start time","eVMIiA":"Discounts for this product","urLvzF":"Discounts will apply to the first month of membership. Every month after will be full price.","mzCsIH":"Dishwasher and microwave safe","c5qWMo":"Dismiss","NFz3v/":"Dismiss","8v/2Cq":"Display name is required","accOFQ":"Distributing someone's sexual material without their consent","ZlSiNv":"District of Columbia","D+O0qD":"District of Columbia","mCLgih":"Djibouti","saPV9k":"Djibouti Franc","7ovAkT":"Do not use a border","3SyKdN":"Do not use transparent colors","K5+mMU":"Do you want to cancel editing? Any unsaved changes to this benefit will be lost.","fsxLUx":"Do you want to permanently delete this benefit?","Q8SAYN":"Do you want to refund customers?","zPoMnq":"Dogpiling, or attacking an individual online to intimidate or humiliate them, is not permitted on Patreon.","TRhoEU":"Dominica","CYuCui":"Dominican Peso","KUTVvJ":"Dominican Republic","qXtkzQ":"Don't miss this drop","1bePiL":"Don't refund customers","oYhk9m":"Don't see your broadcast? Click 'Start broadcast' in Youtube's stream window.","kaaJ70":"Don't show again","NJ4e0b":"Don't worry - your members can still see it during this time. In the meantime, you can still edit this post if you need to make more changes.","eXnwXC":"Don't worry, if you need to close this window to find the timestamp we'll save your progress.","sYbW4A":"Doncaster","OisS7S":"Done","Mjp4sr":"Done","wfc1oF":"Done","4vPNVL":"Done","FxzRoj":"Done","DqvfjK":"Done","dZBkkd":"Dorset","6DIHap":"Dorset","SY8E5O":"double tap on left or right to skip 10 seconds","87sjIb":"Down","3WQ6mB":"Downgrade","ddwGP2":"Downgrade","ZuHHiG":"Downgrade","xrDbxG":"Downgrade","3/FOM9":"Downgrade","ti/ly+":"Downgrade","09ybnq":"Downgrade","xC+P/3":"Downgrade to Lite plan","e3RSYE":"Downgrade to Professional plan","0opwuo":"Download","ZsoBXo":"Download asset","v42QiR":"Download attachments","ASsb9w":"Download clip","raWiej":"Download failed","pAvbpW":"Download for Instagram","oV5k9b":"Download for TikTok","kdhgNF":"Download image","vf6Bbr":"Download now","J9pQIr":"Download our \u003c0\u003e\u003c1\u003edesign template\u003c/1\u003e\u003c/0\u003e to ensure your artwork prints exactly as you want it to.","Tc/fNl":"Download our template for best results","CppBHw":"Download results","TXga1+":"Download your audio and listen from anywhere.","rcATvL":"Download, view","oDozdB":"Downloadable file","4eQb5r":"Downloadable file","TzQSAl":"Downloadable files only available to members","QlM3Iu":"Doxxing, or sharing an individual's personally identifiable information online without consent, is not permitted on Patreon.","TtNHds":"Draft Posts","Ymjl8s":"Drafts","YWAlWL":"Drag and drop any JPG, JPEG, PNG, or GIF up to \u003c0/\u003e MB","oaE14r":"Drop","Va10w+":"Drop files or","KzQ2Wa":["Dropdown for ",["name"]],"eRkUJr":"Dropdown to filter storefront items","BSraeI":"Dropdown to sort storefront items","pEjl78":"Dropping soon","v4IiP3":"Dropping soon","IhsXLy":"Drops","V1Z2Jf":"Drops are featured at the top of your page 24 hours before and after they go live.","h72JHW":"Drugs","xioC1Y":"Drugs, medication and supplements","MyuUFU":"Dudley","UxR1Qw":"Due today","HFfWxv":"Dumfries and Galloway","NdaxAd":"Dumfries and Galloway","OuaqP7":"Dunbartonshire","T3ruOB":"Dundee","AAdQPm":"Dundee City","jinmKK":"Duplicate","npczMd":"Durable vinyl material","P7xaDR":"Duration","HRPeve":"Durham","eXNq8F":"Durham County","53xij9":"Dyfed","T/XAMp":"e.g. Thank You Message","pzIpRX":"Ealing","igVX9H":"Early access","cOy6Qs":"Early access","3TTxiB":"Early ticket access","9vZ91Q":"Earn more from your posts","UygGiI":"Earnings","PcVfrO":"Earnings Estimate","rp0jw8":"Earnings from products sold in the iOS app become available up to 75 days after purchase. The current amount is an estimate.  \u003c0\u003e\u003c1/\u003e\u003c/0\u003e","enCf/m":"East Ayrshire","hs/Zxx":"East Ayrshire","++Bfgu":"East Carribean Dollars","s5OZ5l":"East Dunbartonshire","dYWTDU":"East Dunbartonshire","h5chzX":"East Lothian","jMBIku":"East Lothian","r5vFo+":"East Renfrewshire","kPAdLg":"East Renfrewshire","6XaU87":"East Riding of Yorkshire","yd8bwO":"East Riding Yorkshire","Kr4qT1":"East Sussex","U91jd0":"East Sussex","NK+9MO":"Ebook or publication","NBzGhR":"Ebook or publication","ddCsr9":"Ecuador","GuivZD":"Ecuador Sucre","Dzv4Y6":"Edinburgh","vxUxxl":"Edinburgh, City of","VpTBGr":"Edit","ccKxOV":"Edit","0OCUHB":"Edit","hke5kv":"Edit","wv/uzK":"Edit","8xy5WP":["Edit ",["mediaName"]],"pe2rvr":"Edit Account","rO0DVK":"Edit audio post","BNfEJg":"Edit captions","yDe3mG":"Edit chat","rvSIzn":"Edit Chat","GQiCrq":"Edit Chat Settings","5kGFfK":"Edit clip","hSmjny":"Edit collection details","5HDP8Q":"Edit comment","QqXniC":"Edit default settings","lIPP1Q":"Edit details","e0lbAP":"Edit details","TuWEAf":"Edit image post","fMK2CB":"Edit link post","dWrUtA":"Edit livestream post","hV8SsW":"Edit livestream post","vH3x8a":"Edit livestream post","fSLKbw":"Edit livestream post","hd57yp":"Edit my page","+4QHIZ":"Edit page","zONTtj":"Edit page","DzUIFi":"Edit page","hemI7e":"Edit podcast episode","Mz+e5+":"Edit poll","TJcmcl":"Edit post","nvvntl":"Edit Post","u09mhj":"Edit Post","KHHeDo":"Edit price","OokakM":"Edit settings","Toq4rY":"Edit settings","qt8eFL":"Edit text post","TGFMAf":"Edit thumbnail","OetGR2":"Edit tiers","4oma0h":"Edit video post","UiLTyw":"Edit your comment...","wnmatP":"Edit your offer","P+lBou":"Egypt","Rkk0Bt":"Egyptian Pound","f9cfLe":"Ehime","dxMGI+":"Eilean Siar","1ogutW":"El Salvador","qIFqVE":"El Salvador Colon","xEITXP":"Eligible","1e19wC":"Eligible members get this benefit once","iWfJi8":"Email","UWChkC":"email filters.","QdIz3m":"Email notifications","dUo+oM":"Email sent","K66aEg":"Embed","xn0XjO":["Embed ",["category"]," URL"],"uC2WFf":"Embed button","JntEh4":"Embed image URL","8y42fl":"Embed image URL","ynv+Sj":"Embed Media","b4tS8p":"Embed support for flickr and more.","Ztr9Bi":"Embed support for nearly anything.","LQZ+2R":"Embed support for SoundCloud, 8tracks, and more.","vHiRPU":"Embed support for YouTube, Vimeo, and more.","doA5R5":"Enable products showcase","i8ssH3":"End date","9OnBsB":"End date is required","Ft2raX":"End date must be after the start date","Fvc4po":["ending in ",["paymentNumber"]],"PHSi5K":"ending today at \u003c0/\u003e","xzw9DA":"Enfield","cD121E":"Engagement","9UQIUR":"England","dR9K3z":"Enter a valid email address","gUQK4y":"Enter code","oYQKPq":"Enter password","NVfNkk":["Enter the code we just sent to ",["maskedPhone"],".\u003c0/\u003eYou can also use a backup recovery code instead."],"bFWs7i":"Enter your code","XEDD15":"Enter your login code","ohS4cF":"Entire shop","nnBwEu":"Entire shop","ekdxkj":"Equatorial Guinea","XBy8yR":"Eritrea","VjE17K":"Eritrean Nakfa","oVPJKV":"Error creating chat","5Y+7Xl":"Error deleting chat","ad4n94":["Error in searching for “",["resultsSearchText"],"”. Please try again later."],"b3/9/V":"Error joining channel","gcuN/S":"Error leaving chat","NH1v3V":"Error loading channels","CV3Ahn":"Error saving chat","jnQKAc":"Error submitting, please try again.","LM91iS":"Error Uploading Image","UZHsE3":"Essex","Q675DI":"Essex","Fylv2N":"Estimated Earnings:","iBwL0X":"Estonia","8OKVi0":"Estonian Kroon","4cFE8X":"Ethiopia","ZTyOfk":"Ethiopian Birr","o63AGB":"Euro","Sdusvv":"Even More Evidence","QdFjXT":"Even when turned off, you will still receive an email with the tracking code when your exclusive merch is shipped.","QNEv10":"Events","VRpjbw":"Evidence","B+kPEb":"Example of a $10 purchase in the iOS app","dP5USt":"Examples of how connecting a Youtube or Twitch account can help your Youtube or Twitch followers find you on Patreon through the Search tab.","tl1dwT":"Exclusive","XT+O5p":["Exclusive ",["merchName"]],"fH5grr":"Exclusive ad free content access","oiQ3tP":"Exclusive content","R0XhS5":"Exclusive early access","pKtdQU":"exclusive hoodie","a1Vay2":"exclusive long sleeve shirt","zTHS1M":"Exclusive look at the creative process","0EK9IS":"Exclusive merch","SgFIhp":"Exclusive Merch","aID9s0":"exclusive mini print","bk4R7V":"exclusive mug","djVbO9":"exclusive neck gaiter","cGbA6A":"exclusive organic tote bag","V1H6pH":"exclusive poster","mxFsZf":"Exclusive posts and updates","X3bJf8":"Exclusive posts and updates","AdhQNB":"Exclusive quarterly merch","A4jIrZ":"exclusive sticker","aXPeZp":"exclusive t-shirt","hrUS28":"Exclusive updates access","HKBtCk":"Exclusive voting power","ElxLUT":"Exclusive voting power","fMckD3":"Exclusive voting rights access","wAL5Eq":"Exclusive work from the creator","1YwyFO":"Existing comments will be hidden. Comments can be turned back off once they're turned on.","THcFZ1":"Existing comments will be hidden. Comments can be turned back on once they're turned off.","Asr1/q":"Exit surveys","QSzRjH":"Exit surveys","LxRNPw":"Expiration","TzilfG":"Expired","rtbz5P":"Expires \u003c0/\u003e","j90uKM":"Exploitative behaviors such as grooming or solicitation are prohibited on Patreon.","bjvpdx":"Exploiting a person's name, likeness, or persona without authorization is not permitted on Patreon. You can find more information on Patreon's \u003c0\u003eCommunity Guidelines\u003c/0\u003e.","wZhuR1":"Explore","HJA+Hs":"Explore","pzygwM":"Explore · Search","xfmuBG":"Explore · See All","RfuQEY":"Explore all membership options","D1UCik":"Explore creators","eFVm6k":"Explore Creators","tdkN7I":"Export data","1T7yzd":"Extend membership","CD71bO":"Facebook","ELhJ/M":"Facebook","bJVTIp":"Facebook","cSef0W":"Failed to delete product","X7jX8g":["Failed to mute ",["userNameToMute"]],"zcNdHU":"Failed to process bills. Please try a different payment method.","tOPsd5":"Failed to publish product","mg3gYM":"Failed to transfer memberships to new payment method","641ukU":["Failed to unmute ",["userNameToMute"]],"WUUSvG":"Failed to unpublish product","sXu0bF":"Failed to update backup payment methods.","V1r+gK":"Fair","gTw9WD":"Falkirk","f4i9lA":"Falkirk","zepNf1":"Falkland Islands","O1XFo7":"Falkland Islands Pound","Jr2eH4":"Fan pays","N0cDfd":"Fan requests","ys+/t7":"Fans can access, stream, or download purchases on any device.","po1Ubv":"Fans can choose to access your work by joining your membership or with a one-time purchase.","BEtlMB":"Faroe Islands","0/m+ge":"Feature Requests","OwTo5P":"Feature the names of members in fan shout-outs","xgkLJE":"Featured","qHN3WQ":"Featured tags","3TQ8VB":"fees and taxes","4iJ0pn":"Fermanagh","sWftAk":"Fermanagh and Omagh","jwqdWh":"Fetch and show more table rows","u5/tnU":"Fictional or dramatized works that glorify violence through depictions, promotions, or celebrations of violent actions or actors are not permitted on Patreon.","Eh/63j":"Fife","rkY8kE":"Fife","ObEa+4":"Figures are estimated for example purposes; actual earnings may vary.","DbaCp6":"Fiji","XOLi2z":"Fiji Dollars","vuIKlH":"File","4HEtd1":"File guidelines","h5zNPB":["File must be ",["maxFileSize"],"MB or less."],"cD8SpE":"File saved","cPETpI":["File type of ",["extension"]," is not allowed. Expected files: ",["allowedExtensions"],"."],"m/o5Va":"File uploaded","qQXxyY":"Files","dNZRJ+":"Fill","vCnt2r":"Fill out about info","T6ThZs":"Filter","rpEMFx":"FILTER","WhPyWd":"Filter by date","eFtu0/":"Filter by tier","R+Lwqf":"Filter by type","lelqD2":"Filter dropdown list","fJbaTs":"Filter options","ud8Xyp":"Filter Posts","lJq276":"Filter...","fR57Y0":"Filters","P/8ykL":"Finance and cryptocurrency","2GVhnn":"Find a creator","gkMrI/":"Find creators","LHg1og":"Find creators","Q1hFf1":"Find creators","Xe/akv":"Find creators you follow","xX8mvi":"Find creators you follow on social media","yw162c":"Find creators you love","pnelLQ":"Find creators you love","r+43vo":"Find your new members in Relationship Manager","btUN0o":"Finish my page","B/G9WV":"Finish page","nH0MOq":"Finland","cIROc5":"First name","KG8AoY":"First Product Modal","zL7j5Y":"Fit","u4iXQi":"Fit","zhU8AS":"Fixed amount","tBBwmL":"Flagged","KidaoH":"Flagged","6MSNk4":"Flags","U8fQz7":"Flintshire","E2TQWf":"Flintshire","J6n2l5":"Florida","LeCczx":"Florida","4pA1a8":"Flow has already been completed","CVmafl":"Food \u0026 Drink","Uf2PXt":"For an \u003c0\u003eadditional \u003c1/\u003e monthly fee\u003c/0\u003e, celebrate your loyal members and simplify your merch to-dos. Here’s how it works:","ZK1cgr":"For artwork with a transparent background, use a PNG file. For designs that do not require transparency, use a JPEG file.","z2jJ0X":"For creators","VKCZiR":"For Creators","HNdLlC":"For established creators and creative businesses","cLe+vh":"For established creators and creative businesses","D77Sti":"For sale","O+rTV6":"Form name is required","VosUIr":"Format","MD4qUr":"Founders","U9Vgik":"Founding creator variable rate","CJo6+z":"France","wkqU8l":"Free","VTayhK":["Free for ",["durationDays"]," days"],"hLG4sg":"Free members","ChzX8r":"Free members only","Sjmagy":"Free Trial","0/VlGG":"French Guiana","IL+AoO":"French Polynesia","Nyv2Cf":"French Southern Territories","FyvK1U":"from","sQ3IE1":"Front pouch pocket, matching flat drawstrings, and 3 panel hood ","h21bNI":"Fukui","OtF8Dp":"Fukuoka","O1sXNj":"Fukushima","g+xFd9":"Fulfilled by Patreon","wu6UBi":"Full Name","vW2rrB":"Full time creator, earning \u003c0/\u003e or more a month on Patreon","YcBlw7":"Fullscreen","y+Bhwb":"Funding the procurement of weapons (e.g. guns, rockets, armor) or other military-related activity for armed or military forces or other groups actively involved in conflict, are not permitted on Patreon.","jOaU6R":"Gabon","N2RCN1":"Gain access to a member-only community","83L1ya":"Gambia","AWBLCk":"Gambian Dalasi","gEYq3u":"Gambling and raffles","72DaTM":"Gambling and Raffles","Klw1Xg":"Games","AD9a57":"Gaming Creators","K5JICE":"Gaming Creators","l6zd4T":"Gateshead","yqcVPa":"Gather member feedback with polls","1pajwI":"General","AxUOTz":"General support","07m0gR":"General Support","bhbir0":"Generate code","LhCyB/":"Generated images with sexual content","p5sc/w":"Georgia","20OJPj":"Georgia","u/WgRj":"Georgia","7uwtfa":"Georgian Lari","u52Pup":"Germany","WA804s":"Gerona","Lzzyd3":"Get a code instead","ad/Ngn":"Get a new code","WxaW/N":"Get access to exclusive content and more.","Ex7Hvm":"Get all the tools you need to grow your membership business and delight your fans. The cost for Pro is \u003c0/\u003e of your Patreon earnings.","FLwmlg":"Get app","kd/lf7":"Get instant access to multimedia publishing tools, native video and previews, exclusive podcast feeds, analytics and insights, and more.","CGnW8l":"Get more","u7rskJ":["Get more from ",["campaignName"]],"GGl+vc":["Get more from ",["campaignName"]],"ITFOQ0":["Get more from ",["campaignName"]," on Patreon"],"Q+FouO":"Get more from your favorite creators on the app.","cH7XPz":"Get more from your favorite creators.","dSzfAT":"Get more out of every post with the app.","l24uNj":"Get paid by offering a paid membership or selling digital products in your shop. You only pay fees when you start earning. \u003c0\u003eLearn more\u003c/0\u003e","t6f4IO":"Get some ideas here","9m0QnH":"Get started","LCUjwt":"Get started","mMkJBW":"Get started","5sixBV":"Get started","gUUKRw":"Get started with Merch for Membership","Ae3JHp":"Get the latest information about COVID-19.","oF3XbS":"Get updates on new public and free exclusive posts.","IQab1a":"Get updates on new public posts.","/fr3Xz":"Get VIP access for live events","OjAe7f":"Ghana","5TImq7":"Ghanaian New Cedi","o8qGQb":"Ghanian Old Cedi","S6eYwk":"Gibraltar","G91WYj":"Gibraltar Pound","1/nGwq":"Giclée printing quality","anZ1RC":"Gifu","Htp+UG":"Give members a glimpse into your creative process","Rg3KKO":"Give members access to an exciting live chat experience with you","PbmQko":"Give members the ability to make direct fan requests ","cg4dSR":"Give your fans downloadable digital goods","E7uNG+":"Give your members early access to your work","w1BS2R":"Glasgow","xtS+OV":"Glasgow City","9SNbS0":"Global shipping included","bRv6oh":"Glorification of sexual violence","opHkbN":"Gloucestershire","3pmjmW":"Gloucestershire","cPhQe7":["Go to ",["fullName"],"'s page"],"dcT4fD":["Go to ",["name"],"'s page"],"aYMer4":"Go to billing settings","+plLlI":"Go to campaign page","FlX4gs":"Go to creator","eOAMUs":"Go to creator home page","nUVTBs":"Go to home","mdUIoI":"Go to home page","JER9dO":"Go to library","wG7gr3":"Go to member home page","NGggAw":"Go to moderator hub","ydsluD":"Goa","TZc6Ze":"Good","u2cDQP":"Good contrast","4OWcxW":"Good for indoor and outdoor use","0DfByg":"Got it","j2wXbi":"Got it","UsmSCE":"Got it","UQncAd":"Granada","gFRcGQ":"Grant access to a member-only community for fans to connect with you and each other","tmOnVe":"Grant access to your full library of posts","OkODYR":"Gratuity","McxiDl":"Gratuity","IdVwds":"Gratuity","MFXcYH":"Gratuity (financial support without digital or tangible reward)","DTZg9d":"Greater London","K0taKq":"Greater Manchester","sh9g2Q":"Greece","h4eTtx":"Greenland","f5gZpo":"Greenwich","+8xr2p":"Grenada","D/BS6V":"GST","smkMmu":"GST","2ipXKW":"GST/PST","WmZpDS":"Guadalajara","08wxC6":"Guadeloupe","VCsQr8":"Guam","eYXkFm":"Guam","2N6gyw":"Guam","0tqF7j":"Guatemala","tWZdIR":"Guatemalan Quetzal","NC0G7a":"Guernsey","iu9ZDW":"Guinea","YsmZcq":"Guinea Franc","E8suyP":"Guinea-Bissau","DwVyLG":"Guipúzcoa","Uq0Sgw":"Gujarat","iAdq0d":"Gunma","kW/4wQ":"Guyana","RsP9iX":"Guyanan Dollars","emGFEE":"Gwent","ACdC1b":"Gwynedd","wOmDg6":"Gwynedd","hXc8lP":"Hackney","FPze5q":"Haiti","WN310p":"Haitian Gourde","1AAyVG":"Halton","weMl0B":"Hamburg","b4GrJB":"Hammersmith and Fulham","Fj6DHA":"Hampshire","GfN/0X":"Hampshire","JVx2Xo":"Harassment","Qz4hWE":"Haringey","UfCEjd":"Harmful and illegal activities","GOGOg3":"Harmful content","Y7oXrO":"Harrow","rBuz7p":"Hartlepool","P01Evk":"Hartlepool","Zu3kHU":"Haryana","9VEKSD":"Has an engaged audience of at least 100K followers on a social platform or content hub","ETm4Y2":"Has team members that help manage your Patreon page","ao7Edk":"Hate speech","roTWlJ":"Hate speech","ECKfls":"Hateful content","UsMLwC":"Have more questions?","P2lLr+":"Havering","0tTmcC":"Hawaii","D1n5B5":"Hawaii","wUX3SG":"Header 1","7C/0Dv":"Header 2","acTrqT":"Header 3","inem7y":"Header 4","aLDxaH":"Header 5","C2AfWR":"Heading","ky7fii":"Health, hygiene and consumables","ciTDCk":"Heard Island and McDonald","0rRqA8":"Heather colors are 52% combed and ring-spun cotton / 48% polyester","ss28U+":"Hello! Please confirm your residence.","XloKHA":"Help Center","kOqWKT":"Help Center","oFqZ4h":"Help center \u0026 FAQ","pyi6gS":"Help Center \u0026 FAQ","2zXykb":"Help Center \u0026 FAQ","UqPVlg":"Help Center \u0026 FAQs","Ke064R":"Help shape creative work with member-only polls","/Nukx/":"Help your fans find you","VQ9IFp":"Here’s what will change","CoxFv/":"Hereford and Worcester","jJ2l0B":"Herefordshire","J1MT11":"Hero image","ecdgvC":"Hertfordshire","CvCIl7":"Hertfordshire","9MmT26":"Hesse","G8FciV":["Hey there! So sorry, but we’re no longer able to accept ",["serviceName"]," for ",["names"],".\u003c0/\u003eIt’s super quick to add a different payment method to keep supporting them."],"YXYdeq":"Hidden","NJ4Efq":"Hidden","WKIjx4":"Hidden","UH874r":"Hidden Posts","18CpCR":"Hide password","w/Idil":"Hide replies","2x9cIH":"High resolution image","KHfX2G":"Highland","FRQkup":"Highlands","yuK2YG":"Highlight other creators your fans might like. The creators you recommend will be notified and they’ll be able to recommend you to their fans too.","iZGVx6":"Hillingdon","5k5NOX":"Himachal Pradesh","OyOzEn":"Hiroshima","G0+Rbe":"Hmm, we’re \u003c0\u003ehaving trouble with your payment method.\u003c/0\u003e\u003c1\u003eWould you help us \u003c2\u003eresolve\u003c/2\u003e it for you by \u003c3\u003ere-entering some information?\u003c/3\u003e\u003c/1\u003e","MJjqVe":"Hokkaido","nKOdLR":"Home","e9Sgip":"Home","jo8Avi":"Home page","k7Jc7z":"Honduran Lempira","uNqrLt":"Honduras","CuynoG":"Hong Kong","3o1dx1":"Hong Kong Dollars","Mo8pD4":"Hooray! Let's go back to Account Settings","nNfV1f":"Hooray! Let's go back to Payment Settings","Nv1ozK":"Hooray! This tier comes with merch.","pzu7v4":"Horizontal","EKZc/V":"Host livestream events for members on this tier","0ueR1e":"Hounslow","rGVSIH":"hour","xEJeFh":"hours","Wdy/AY":"hours","v8pW1Y":"Hours","9BcwcL":"How is this creator being dishonest?","VZSZB6":"How it will print","j93LPm":"How often a member receives this","S+ePX3":"How to proceed","uIcURR":"How to submit changes","i0itgh":"How to switch","cOZl6O":"HST","7vdReE":"Huelva","o/wJgi":"Huesca","BiAxxR":"Hungarian Forint","95ouY1":"Hungary","7cQjJU":"Hyogo","nTlGN6":"I agree","RamzFW":"I agree","WQq/YW":"I Agree","cit0jp":"I agree to an additional \u003c0\u003e\u003c1/\u003e monthly fee\u003c/0\u003e (of total earnings) and the \u003c2\u003e\u003c3\u003eTerms of Use\u003c/3\u003e\u003c/2\u003e.","0GDHXn":"I agree to Patreon's \u003c0\u003eTerms of Use\u003c/0\u003e and \u003c1\u003ePrivacy Policy\u003c/1\u003e","pBczsc":"I agree to these requirements and consent to Jumio collecting and disclosing my biometric information pursuant to its \u003c0\u003ePrivacy Policy\u003c/0\u003e.","iFNjzl":"I consent to Jumio collecting and disclosing my biometric information pursuant to its \u003c0\u003ePrivacy Policy\u003c/0\u003e","Qh8AXP":["I didn’t like the benefits/rewards that I received from ",["campaignName"]],"xN2HZn":"I didn’t receive the benefits/rewards described on the creator's Patreon page","0VzFoo":"I don’t want to pay sales tax or VAT/GST/QST/JCT","y4G+xK":"I only became a member to receive a specific benefit and now I’ve got it","vDAm3O":["I only intended to give ",["campaignName"]," a specific amount of money and now I have"],"5thDsA":["I prefer not to receive benefits from ",["campaignName"]," through the mail"],"YomlEA":"I prefer not to receive benefits through the mail","IAanLt":"I was overcharged","qxBjVW":"I'm interested","AlZ0+z":"I’m not happy with Patreon’s features or services","XVROFR":"Ibaraki","reEdTv":"Iceland","sn6H1s":"Iceland Krona","V34QX3":"Idaho","nATC2F":"Idaho","z8kbD5":"If this sounds like you, please answer a few questions to get on the list for a call from our team to talk about Premium. If you’re not quite there, we suggest you get started with the Pro plan.","byuEoK":"If we’re able to support you on Premium, we’ll get back to you by email. But due to the volume of requests we aren’t able to respond to all inquiries. You may also connect to one or more social networks to share details about your audience size.","nlTNBe":["If you can tell us exactly where to look in this ",["mediaTypePhrase"]," we can process your report faster!"],"PcyJoC":["If you cancel, you'll no longer have access to benefits from ",["campaignDisplayName"]," after \u003c0\u003e\u003c1\u003e",["formattedBenefitsExpiresAt"],"\u003c/1\u003e\u003c/0\u003e, including:"],"++fXa5":["If you cancel, you'll no longer have access to benefits from ",["campaignDisplayName"]," immediately, including:"],"BbR13R":"If you decline, you won't be able to change your mind unless the creator asks you again.","22/2DY":"If you experience any problems, please try using a different browser or editing from a desktop device. Thanks for your patience while we work to fix these issues.","PfyL8f":"If you need help or think this was a mistake, visit the \u003c0/\u003e to learn more.","BBw/zK":"If you need help, visit the \u003c0/\u003e.","DjUfBc":["If you still don't see an email after several minutes, you can ",["resendEmailLink"]," the verification link or ",["changeEmailLink"]],"FvfJNk":"If you, someone you know, or a loved one is in danger please consider contacting law enforcement.","1oEj+S":"If you'd like to remove this address, you must first assign a different address to this membership.","VLfzQZ":["If you'd like to try again using your existing ",["translatedPaymentMethodType"],", you can retry the payment. Alternatively, you can use a different payment method to retry with."],"ve2Tk+":"If you're changing your plan to get access to video uploads, please \u003c0\u003echeck your eligibility\u003c/0\u003e first.","FaboVM":"If your payment is declined again, please try adding a new payment method.","IAACih":"If your pledge includes a physical benefit, enter your shipping address below.","w1alj2":"Illegal and Regulated Activities","X5stOl":"Illegal creations and benefits","B1aSmY":"Illinois","j7Ew+t":"Illinois","6jmmIx":"Image","Z/OOpg":"Image","AwZRIL":"Image","OztbR6":"Image","9YKFYc":["Image ",["count"]],"SpPusQ":"Image and attachments","BGiQgj":"Image downloaded","ESjmDR":"Image quality","49TTqH":"Image quality:","wjrTbe":"Image Resolution","/SPByY":"Image URL","g4K+Xk":"Image web link","UZpZ8u":"Images with low DPI (anything less than 150 DPI) should not be used. Low resolution images will appear blurry when printed.","o7ro//":"Immediate access to member-only posts","BYcJxv":"Impressions","wWAhnE":"Impressions show the number of times your post was seen across Patreon.","BnmG3U":"In collection","x63DZg":"In review","MKoMT8":"In review","1QEyWG":"In the meantime, you can still edit this post if you need to make more changes.","2bbkA2":"Inauthentic Behavior","95V/HE":"Incestuous relationships","3o0hkF":"Include alt text for people with visual impairments","t7MoTA":"Included","DvoARQ":"Included","ttiNR/":"Included","z5IUoY":"Included with membership","wSaguy":"Includes","6hrmEO":"Includes","X/qw3B":["Includes a ",["name"]," (",["price"],")"],"ij+UvJ":"Includes a loyalty program","+TAxHN":"Includes Discord benefits","DbmHCb":"Includes in-app purchase fee","1lvie0":"Includes video uploads (\u003c0\u003eearly access only\u003c/0\u003e)","8weS7Y":"Income","7E/XHk":"India","PCyc+p":"Indian Rupee","wEBbEB":"Indiana","5CYgnX":"Indiana","gp0kPW":"Indonesia","t7CZPS":"Indonesian Rupiah","x+wKe+":"Info on color section","3eTxiS":"Ingestible items (e.g. food ingredients, spices, medications, vitamins, supplements), drug paraphernalia, and educational materials claiming to help cure disease may neither be sold nor offered as membership benefits on Patreon.","Gd20Cn":"Ingestible items (e.g. food ingredients, spices, medications, vitamins, supplements), drug paraphernalia, and educational materials claiming to help cure disease may neither be sold nor offered as membership benefits on Patreon.","ZQ90FO":"Insights","Omteuk":"Insights for new posts are available within 30 minutes.","hx91kn":["Insights were last updated at ",["timeElement"]," and will be updated every 30 minutes."],"J3jwGQ":"Instagram","ZpwBq2":"Instagram","imQSeQ":"Instagram","FR0y8N":"Intellectual property","7XaFEF":"Interested","ThDcLa":"Introducing community chats","D1iUCe":"Introducing Drops","W7chPP":"Invalid card expiration","cXs8da":"Invalid color","YkjkNS":"Invalid file","o1+qTy":"Invalid input","of0LiY":"Invalid reference token.","+D++SL":"Invalid request context.","5sn8Vp":"Inverclyde","zF2LNm":"Inverclyde","VJASUO":"Inverness-Shire","Vzsv8/":"Invite creators","jXPLt7":"Invite Creators","La4Cx7":"iOS","QgjB37":"iOS app","1O+xC0":"Iowa","TswyOM":"Iowa","PWDRL8":"Iran","mbX5MI":"Iranian Rial","f+mSpE":"Iraq","lA5nKc":"Iraqi Dinar","QDg7GQ":"Ireland","w6wBSU":"Ishikawa","VNWhgO":"Isle of Anglesey","1DqazB":"Isle of Man","VcWvRh":"Isle of Wight","jBfVnQ":"Isle of Wight","8TFy4V":"Isles of Scilly","cN1KU/":"Islington","tz9fjr":"Israel","2Ukgmw":"Israeli New Shekel","XLIojt":"It contains harmful content","iICBuk":"It contains hateful content","YQ3Pwk":"It contains sexually explicit content","QgpsUa":"It contains violent or graphic content","iOioHp":"It looks like something unexpected has happened. Please try again later!","9DxCKC":"It looks like you might be promoting a raffle, which is outside of our \u003c0\u003eBenefit Guidelines\u003c/0\u003e. Check out our \u003c1\u003eblog post\u003c/1\u003e for more information, and email us at \u003c2\u003eguidelines@patreon.com\u003c/2\u003e if you have any questions.","7JkwDN":"It promotes the acquisition or use of regulated goods","KOksaG":"It shares private or personal information","9X5cd3":"It uses my copyright or my likeness without my consent","axP5FN":"It was too hard to find or access my benefits/rewards","pHBt8J":"It's easy and free to list a product. When you make a sale, pay a flat 5% plus applicable","GxOwE1":"It's not authentic","0ejSoi":"It's not respectful or courteous","rBHMeY":"It’s possible that your print may shift when being cut, and as a result borders may appear uneven. We suggest using a full bleed image, or centering your image using our vertical or horizontal placements.","nT4d8n":"It's spam","RisX79":"Italic","Sqm1iP":"Italy","swlzTV":"Iwate","8w6qBG":"Jaén","g8G/mi":"Jamaica","yc/gMH":"Jamaican Dollars","GmGV7W":"Jammu And Kashmir","sD4+wm":"Japan","e9Mc8G":"Japanese Yen","7bjd7Z":"JCT","Veccz+":"Jersey","iaMUA+":"Jharkhand","OAC5jS":"Join","1z9M2d":"Join","qQB6Ys":"Join","uZjzvr":"Join","TUEEP/":["Join ",["campaignName"]],"/SsOGO":["Join ",["campaignName"],"’s waitlist today and be first to know when their Patreon page is live."],"25dK6a":"Join \u003c0/\u003e Tier","+LMLEm":"Join all for free","ZfqUDR":"Join as a free member to chat","QsskOM":["Join for \u003c0/\u003e/",["payPerName"]],"qt6rUO":"Join for \u003c0/\u003e/month","HOUl3z":"Join for free","9Cm3ua":"Join for free","7Vxksx":"Join for free to comment","XuhQvr":"Join for free to unlock.","qEUPFU":"Join member-only live chats","tRCRZU":"Join member-only livestreams","mvoxhz":"Join now","LPOeuo":"Join now","O5oCEr":"Join now","3Utrjm":"Join Now","aSU8N0":"Join on Patreon","HwXfbv":"Join the conversation with chats.","IQrblZ":"Join the conversation...","M0AX9j":"Join to unlock","5q2JJu":"Join to unlock","X9ooBi":"Join to unlock","9jrzZA":"Joined","jsDBSD":"Joined","wabbyj":"Joined for longer than 1 year.","OO8wxw":"Joined in the last 30 days.","bUbfX3":"Joined live drop","IObzPe":"Jordan","9Kslxu":"Jordanian Dinar","s8HEnv":"Just add a title and we'll remind you to upload your file later. Files need to be uploaded at least 2 hours before your drop goes live.","z1NpuQ":"Just dropped","8SRt8e":"just now","RtYLx8":"Just now","uA5H2o":"Just now","wcFnA1":"Justify text","mKh0jW":"Kagawa","dBxbXh":"Kagoshima","SBWI1T":"Kainuu","tDLNOL":"Kanagawa","PLb2mp":"Kansas","Wu8afv":"Kansas","nEXjol":"Kanta-Häme","Zh3HrC":"Karnataka","VTi1su":"Kazakhstan","ebYkav":"Kazakhstan Tenge","vcwKfI":"Keep benefits","l97bop":"Keep off","cvZ0I7":"Keep on","kI5wFO":"Keep prices in the iOS app the same and cover Apple’s fee yourself","TsT5BO":"Kensington and Chelsea","dnjrbT":"Kent","h7oJwy":"Kent","v0fLeN":"Kentucky","R+ruh+":"Kentucky","3shQlt":"Kenya","kQYNnu":"Kenyan Shilling","plM6qV":"Kerala","0AN3GA":"Kincardinshire","gcdNU7":"Kingston upon Hull","3w9r3f":"Kingston Upon Hull","U2vAGn":"Kingston upon Thames","LiOeMF":"Kinross-Shire","P0Rj1M":"Kiribati","FoQ4lf":"Kirklees","UarBWR":"Kirklees","sTDnrp":"Knowsley","cXOrky":"Kochi","NYtLUS":"Korean Won","wyGE0v":"Kosovo","AFIA05":"Kumamoto","6FQ2d6":"Kuwait","0LVcry":"Kuwaiti Dinar","h7gXqv":"Kymenlaakso","RYRT67":"Kyoto","TEyY6u":"Kyrgyzstan","sgl/Z8":"Kyrgyzstanian Som","qPe+yx":"La Coruña","CzkU8f":"La Rioja","TRo9C6":"Ladakh","+sJrWl":"Lakshadweep","/I+Hq1":"Lambeth","9X4zGk":"Laminated feel","bKtf+5":"Lanarkshire","xnxWs/":"Lancashire","IpH3HL":"Lancashire","n+mIsU":"landscape","gL6eN/":"Language preference dropdown","ojwXjD":["Language: ",["language"]],"bbL+pp":"Lao Kip","A+psCR":"Laos","H0MYui":"Lapland","k7rCa/":"Large","keaAGS":"Las Palmas","3Agyk7":"Last name","FwYduD":"Latvia","wq/g2f":"Latvian Lats","PFTJN8":"Launch","kgExCl":"Launch your merch and share your excitement!","0jwjoY":"Learn how to tag posts.","AfHd4V":"Learn more","fiV0BR":"Learn more","THTPd5":"Learn more","PqYnlM":"Learn more","gDqCFR":"Learn more","gK+UCZ":"Learn more","tZOuq0":"Learn more","TG96iq":"Learn more","Z+zSKO":"Learn more","E2C7DW":"Learn more","pJ7QI9":"Learn more","UoeT0/":"Learn more","hqq1jO":"Learn more","/dH2s8":"Learn more about blocking","e/9WFR":"Learn more about blocking","pYwFRg":"Learn more about these features","0fFZ7J":"Learn more about this change","yYuHzl":"Learn more about this page","ZhNE3/":"Leave Chat","SAafYX":"Leave discounted Premium plan?","CAJSlJ":"Leave discounted Pro + Merch plan?","mZalQg":"Leave Founders plan?","p/tGwH":"Lebanese Pound","goToiB":"Lebanon","ls2q6h":"Leeds","nR3LcA":"Leicester","Uodphv":"Leicestershire","7wS6a6":"Leicestershire","9qkHRs":"Length (CM)","n4kpwX":"Length (IN)","fkT4KK":"León","ariGch":"Lérida","4w8La9":"Lesotho","e/YBbz":"Lesotho Loti","ODPEex":"Less details","ybxzt4":"Less than a minute left","w3ZbQ/":"Let anyone pay to access your work with a one-time purchase. Simply choose a post or collection, and set a price to get started.","CsXjrM":"Let anyone pay to get access to this collection.","3iLaZU":"Let your fans know that they can become your members.","2w0cWd":"Lewisham","g0byQp":"Liberia","z8VDrE":"Liberian Dollars","HKn+TG":"Library","VnAiFE":"Library","m0LppD":"Libya","P5gZnC":"Libyan Dinar","wdzhhp":"Liechtenstein","d5wUCb":["Lifetime ",["lifetimePledge"]],"yZmVi4":"Lifetime support","QnHseX":"Light","OEghsA":["Like ",["likedName"]],"R5gjiE":"Liked","Rin5cn":["Liked by ",["campaignName"]],"PtdJmS":"Limited (\u003c0/\u003e of \u003c1/\u003e remaining)","6OvQkA":"Limited (\u003c0/\u003e remaining)","gYrTHR":"Lincolnshire","YsqS0q":"Lincolnshire","Ytw6Nq":"Link","DdIJuB":"Link","xzKVJX":"Link","mVVdzr":"Link","2mSBeT":["Link ",["count"]],"Ez8Bhy":"Link copied","PV1qfl":"Link copied","ot2xFn":"Link copied","E4wpy1":"Link to help center article explaining how cost of merchandise is charged to creator.","X0s13i":"Link to post","j6JF1h":"Link to your collection","HxTLY5":"Link to your drop","jTCxa9":"Link to your post","Sk2CgX":"Link URL or email address","yDO09R":"Link URL or email address","yxx7jG":"Lisburn and Castlereagh","tZtdOZ":"List your posts and collections for sale","06BQvP":"Listen now","K5CtUG":"Listen on Spotify","tDWhNn":"Listen to episodes ad-free","TeKRWC":"Listen to full post","dYsfkd":["Listen to the full audio (",["readableTime"],"+ ",["unitText"],")"],"Zvg6P+":"Lite","AamH9y":"Lite","IS0nIw":"Lite","STUy1i":"Lithuania","1/pOKU":"Lithuanian Litas","cM/qIV":"Live chat","NyfDdB":"Live chat","yeVS3i":"Live drop","l86NAF":"Live drop","AR89cV":"Live event VIP","+91t7h":"Live event VIP","yCaIww":"Live Q\u0026As","Oaf+n3":"Live video or audio stream","KwRjTj":"Liverpool","B66ulc":"Livestream","dkpfON":"Livestream","9b7g3A":"Livestream","POYOBV":"Livestream","ZjUOF+":"Livestream","Og7Fic":"Livestream","qwceMa":"Livestreams","E+rrBd":"Load more collections","6RDgrE":"Load more comments","q0FTZi":"Load more comments","zLfuQD":"Load more replies","Z2eVFy":"Load replies","0zhdp3":"Loading","+GjpAm":"Loading","prz7o0":"Loading content","137Y2B":"Loading Failed","k0pQUU":"Loading...","b/vx9J":"Loading...","HYn4wf":"Loading...","OtqAFc":"Local Businesses","rHlr7F":"Local Businesses","FFKLNl":"Locked","YXWYXV":"Locked","cLWfrB":"Locked","LfdKDw":"Log in","yfcDBd":"Log in or sign up","oPuFpU":"Log in with your Apple ID.","ohzMc3":"Log in with your Facebook account.","rP2/38":"Log in with your Google account.","p/0/Kg":"Log out","1/s03K":"Log out","vG6IJa":"Login with Facebook is currently unavailable. Please use another method to create an account, or use the “Need help signing in?” link below with the email address associated with your Facebook account.","7eA2RB":"London, City of","TMsj8A":"Londonderry","kLKtkr":"Long-term","YKGWAi":"Looks like the image you're about to post might contain nudity or adult content, which is only allowed on member-only posts. As a reminder, implied nudity is still considered adult content. Please set your post to member-only before proceeding. If you still have questions, take a look at our \u003c0\u003eCommunity Guidelines\u003c/0\u003e or email our Trust \u0026 Safety team at \u003c1\u003eguidelines@patreon.com\u003c/1\u003e.","u0CuWf":"Looks like the image you’ve chosen for this public space may contain nudity or adult content. In most instances, such content must be reserved for patron-only posts. Before finalizing your selection of this image, please take a look at our \u003c0\u003eCommunity Guidelines\u003c/0\u003e or email our Trust \u0026 Safety team at \u003c1\u003eguidelines@patreon.com\u003c/1\u003e for guidance.","bWHhRU":"Looks like you're trying to submit the same profile without any changes. In order to submit again you must change images or content to be in compliance with\u003c0\u003ePatreon's Community Guidelines\u003c/0\u003e.","aM+AWi":"Louisiana","usLXM+":"Louisiana","Son2XN":"Low color contrast","ulerMK":"Low resolution image","OBrZrK":"Lower Saxony","t0AhD1":"Lugo","p2nCOr":"Luton","t+MrG6":"Luxembourg","bLhNJX":"Macau","cko2AE":"Macau Pataca","JDjRCw":"Macedonia","8Pgt8Y":"Macedonian Denar","XlQmtH":"Madagascar","MMYKzJ":"Madhya Pradesh","M6ioZq":"Madrid","2D8ezx":"Maharashtra","/p552h":"Maine","p4z3wx":"Maine","EaVeF5":"Maintain earnings and cover Apple’s fee by increasing prices in iOS app","smfYet":"Make sure everything is spelled correctly.","Z+MYq8":"Make this my default address for new pledges","O+OtV8":"Make this post member-only?","aCh839":"Make your first post","5AZt0n":"Making this change will affect all products sold in your shop on the Patreon iOS app.","ItQK8a":"Málaga","JbUjY5":"Malagasy Ariary","MfaYg3":"Malagasy Old Franc","jyNSL2":"Malawi","AhDxQA":"Malawi Kwacha","oJCWbX":"Malaysia","SxO0+t":"Malaysian Ringgit","EdGlWd":"Maldive Rufiyaa","VSqHTI":"Maldives","eiuaOd":"Mali","4iazUc":"Malta","kWxouL":"Manage","NY7l14":"Manage","Y5KfBp":["Manage ",["numPledges","plural",{"one":"membership","other":"memberships"}]],"FDE+6w":"Manage billing","7cylw2":"Manage memberships","3iJUkr":"Manage social connections","YkPh+n":"Manchester","RV7Zpe":"Manipur","S1f09O":"Manitoba","IAXpl+":"Manitoba","W/N/If":"Manually select which transactions you want to refund.","eBmIiH":"Many creators who switched to subscription billing have seen fewer cancellations since new members are billed the way they expect.","37iz3u":"Marketing","8hgoyj":"Marshall Islands","owI33W":"Martinique","891ByT":"Maryland","mGshRN":"Maryland","WrMN/w":"Massachusetts","C03sDy":"Massachusetts","uvXSa+":"Matte finish","AVg87Y":"Mauritania","+ub/tH":"Mauritania Ouguiya","LQEXHZ":"Mauritanian Old Ouguiya","rHTyn3":"Mauritius","o29j7w":"Mauritius Rupee","L3C/s6":"Max length","ETFGSC":"Max number of tags added","pG4Ier":"Mayotte","6YYEI0":"Mecklenburg-Western Pomerania","WdRMJg":"media file","C01UwB":"Media type","ZnCcKH":"Media Type","WZgSOQ":"Media Type","Cia73u":["Media type (",["filterCount"],")"],"agPptk":"Medium","HlaA70":"Medway","IrCTyk":"Meghalaya","Ir/otY":"Melilla","kssZeN":"Member","DsRsWb":"Member","eZAhmh":"Member","tqhl1p":["Member for ",["pledgeTime"]],"73aN+g":"Member must update payment information","C9T0tY":"Member navigation","E4Odw9":"Member newsletter","gSvUFn":"Member options","oHD7FW":"Member recognition","knEkg5":"Member shout-out","uExsOA":["Member Since ",["memberSinceDate"]],"04EIj4":["Member since ",["memberSinceDateLong"]],"Eb9bGp":"members","LgJA2g":"Members","0Xx3ZF":"Members","ca5Zwd":"Members","pfyZF7":"Members can send direct messages to you","VHu+pm":"Members get this item every month","SOeTbL":"Members get this item once, after they pay","do0+0k":["Members of ",["name"]," can now discover you on their Patreon. Recommend them back so your members can find them too."],"oEee5n":"Members who commented on this post will show up here.","EcuxOU":"Members who liked or commented are updated near real time.","asMj9n":"Members who liked this post will show up here.","4AXldf":"Members who purchased this post will show up here.","4jLICL":"Members who tapped \"I'm interested\" before the drop will show up here.","KD98YH":"Membership","Hh6ACD":"Membership already expired","MKNI7O":["Membership expired on ",["membershipExpirationDate"]],"IQ3t0j":["Membership expires on ",["membershipExpirationDate"]],"jO1DaB":"Membership updated","Uw7U+u":"Membership visibility","v6kKBe":"Memberships","fD7TSQ":"Memberships","Gr1gaf":"Memberships are updated","AGwCOQ":"Merch","P/hgr4":"Merch","BzQuSS":"Merch","3rPLUh":"Merch may be delayed","49fmYy":"Merch mockup placeholder","tRqf3E":"Merch or products for sale","TF6Uha":"Merch or tangible goods","+G3aeK":"Merseyside","TEIqR3":"Merthyr Tydfil","q4V0pg":"Merthyr Tydfil","X88dAX":"Merton","0uY2rx":"Message","617Cbx":"Message creator","JsDE3q":"Message creator","slNhip":"Message deleted","2EKKEL":"Message has been reported.","k07U91":"Messages","rtB+Fq":"Metric sizes (CM)","8497r4":"Mexican Old Peso","FO+7Bd":"Mexican Peso","+91SRr":"Mexico","oQalBs":"Michigan","EUkNiU":"Michigan","m3leIq":"Micronesia","R1sq1X":"Mid and East Antrim","gsCvBu":"Mid Glamorgan","LBvAe0":"Mid Lothian","yuS3oR":"Mid Ulster","3G9+OX":"Middlesbrough","h8VpTJ":"Middlesex","e8Fvvb":"Midlothian","wqqLC3":"Mie","aNL4Hw":"Military and Political Funding","fd1mr2":"Milton Keynes","DbrUOz":"Mini Print","uETaNy":"Mini print fill with full bleed","scqGEk":"Minnesota","vTiSyx":"Minnesota","Nhq/bQ":"Mins","fqOoaG":"minute","2frfOe":"minutes","H9HlDe":"minutes","7Gt9D6":"Misinformation and disinformation","rQTXd4":"Mississippi","YzRwWH":"Mississippi","vRUX0R":"Missouri","JaM3Rf":"Missouri","5ls+SP":"Misuse","eyutE2":"Miyagi","WdWI4G":"Miyazaki","mJeTa/":"Mizoram","vBFrQu":"MM","PK4riD":"mo","bMjEc8":"Mobile navigation menu button","RzfD9D":"Moderation Hub","SUzo+o":"MODERATOR","sR3ukq":"Moderators can review and remove reported messages. Others in the community will see a moderator badge next to your name.","kxHRZn":"Moldova","hzUWZw":"Moldovan Leu","Iq2810":"Monaco","pKRgFR":"Monetization","2+ddmV":"Mongolia","1c6ICu":"Mongolian Tugrik","5OMJxn":"Monmouthshire","VwOaEP":"Monmouthshire","hNqjZS":"Montana","RK8S7y":"Montana","msnoTy":"Montenegro","WloAIM":"month","cUtfZJ":"monthly","ifJXfV":"Monthly","esm7H0":"Monthly payment","y3W9Tp":"Montserrat","Un22HS":"Moray","TDqVJa":"Moray","Dsd5/5":"More","c3PJZG":"More","1U8d/A":"More \u003c0/\u003e","lFgMet":"More actions","oBCrPB":["More by ",["name"]],"T6ijNj":"More chats","mrB0t/":"More details","uvN+26":"More Evidence","yIlxjn":"More insights","+XNEz4":"More options","egxAZI":"Moroccan Dirham","IBgBA6":"Morocco","Sil81l":"Most popular","CJ2bev":"Most recent","SBMUxZ":"Mozambique","GHFvlK":"Mozambique New Metical","eDNT8+":"Mozambique Old Metical","/yVxiX":"Mug","2LrScW":"Multi-level marketing and direct selling","Y26Rg7":"Multiple stickers on a sheet","Xoirbz":"Murcia","hF+PGQ":"Music","ytSK3c":"Musicians","DnEiju":"Musicians","79Jfjs":["Mute ",["userNameToMute"]," for 24 hours?"],"bETMuU":"Mute person","/QRggi":"Muting someone means they can’t send messages or reactions for the next 24 hours, but they’ll still be able to view the chat. Only creators and moderators can mute people.","Iyrij/":"Mutliple stickers","Hm/M2X":"My financial situation changed","vvgARW":"My page","APtKMu":"My profile","CDyFRD":"My profile settings","s+/FUW":"Myanmar (Burma)","1AxfmH":"Myanmar Kyat","QR6kCU":"N/A","t5uGZs":"Nagaland","R/0i9c":"Nagano","QtG5HE":"Nagasaki","YgoO+0":"Name","6YtxFj":"Name","4+JxeG":"Name","WbwXxN":"Name","OFwBlZ":"Name","RU++wx":"Name cannot be blank","DqtGyd":"Name cannot exceed 48 characters","7wYELO":"Name contains invalid characters","qC2OAP":"Name is required","8ZvOzT":"Name on card","Mf9Gtf":"Name on card","gjebLU":"Name your discount","wCJLZA":"Name:","jtvN8g":"Namibia","5s+5Pw":"Namibia Dollars","eAGUJV":"Nara","9EU9b2":"Nauru","YLn05H":"Navarre","ibnSVU":"Neath \u0026 Port Talbot","jHPRcK":"Neath Port Talbot","Fqr9gW":"Nebraska","qyPU7T":"Nebraska","cZN1dD":"Neck Gaiter","5BtLyA":"Need help instead?","rJZg1Q":["Need help now? Visit our ",["communityGuidelines"]," or the ",["helpCenter"]," to see if your question is answered there before you contact us."],"j6eLSO":"Need help signing in?","hInmFu":"Neon or pastel colors","GVWwmf":"Nepal","Wkrvs3":"Nepalese Rupee","nFHIm+":"Netherlands","mj9EQi":"Nevada","fo6cjt":"Nevada","c9ZjC7":"New","PlV31A":"New","57v+3s":"New Brunswick","jI+Dun":"New Brunswick","OqXkPb":"New Caledonia","YaOFkq":"New chat","Xuddd+":"New chat","28gx96":"New collection","bfClWn":"New consent requirements have been implemented by Visa recently. To remain on Patreon, you need to review and agree to these requirements. If you do not agree \u003c0\u003ewithin the next 7 days\u003c/0\u003e, you will not be able to withdraw or transfer funds until you complete this process.","+QQUQi":"New Hampshire","X7YRxS":"New Hampshire","Y418Nt":"New Jersey","FJUQ09":"New Jersey","/q/jt7":"New members will get charged the day of the month they sign up","ZhGZBa":"New Messages","0qPy01":"New Mexico","WS/IS0":"New Mexico","3pgv9V":"New paid posts","PNMmh3":"New payment method needed","batDTA":"New Requirements for 18+ creators","G+VgKO":"New South Wales","IRNfZ2":"New title","qeLArT":"New ways to easily sort your collections","NPN9mu":"New York","lDNGmM":"New York","VeQ5Nj":"New Zealand","qSwZ+D":"New Zealand Dollars","rCmFIb":"New, upgrading, and existing members will all be eligible to receive the item.","ZXLlgJ":"New!","wkfHGH":"New! A simpler way to charge members","uYy0Lj":"New! Audio previews are selected based on the length of your content. You can edit the clip length or turn it off.","NuCYnT":"New! Edit multiple past posts at the same time","qTq/Lc":"Newcastle upon Tyne","RxvAY5":"Newcomers","3YIYxB":"Newest to oldest","dZsnTG":"Newest to oldest","hNI8VD":"Newest to oldest","ZSj/4y":"Newfoundland","nrOrRN":"Newfoundland and Labrador","tvGv9x":"Newham","THYbq+":"Newport","TkLaMH":"Newport","Dv19OX":"Newry, Mourne and Down","+c/uI0":"News","YxolP3":"News and updates","l2I99j":"Next","djIAxR":"Next","aJa7mI":"Next","anUxL5":"Next","/VQOZD":"Next","au0GPC":["Next auto withdrawal on ",["nextFifthEl"]],"CPszfI":["Next charge date: ",["nextChargeDateString"]],"doltgl":"Nicaragua","9ssKRj":"Nicaraguan Cordoba Oro","Kx8fqN":"Niger","52QzKe":"Nigeria","ajQJub":"Nigerian Naira","Tkuo0E":"Niigata","GDYZn0":"Niue","Ns22IU":"NL Antillian Guilder","yW5aHh":"No Address on File","l5lneH":"No changes to your Patreon fees or payout","puZVmN":"No collections yet","nnZR3D":["No creators found matching \"",["query"],"\""],"Zbq+rt":"No creators found.","2VHzUb":"No impact on your existing members","xnyk35":["No matches for “",["searchQuery"],"”"],"RHUI1K":"No members found.","IIx8Yq":"No posts","3zWjfe":"No posts matching your search term.","mG9V3e":"No products yet","njw6b2":"No published products","4ghozM":"No purchases yet","GWzUdv":"No recommendations found.","s44wvi":"No results were found","cct7Le":"No reward","ICiyyM":"No thanks","5FQ5ob":"No unpublished products","doQxAS":"None selected","Sm4NA/":"Nonprofits","s/zZQN":"Nonprofits","/rvXd8":"Norfolk","MUWaAj":"Norfolk","a+YkJ0":"Norfolk Island","RhIG0z":"Normal","i4PI9L":"Normal text","YnPzQz":"North Ayrshire","TjGWO7":"North Ayrshire","MKoGNZ":"North Carolina","JYP3ud":"North Carolina","+hVSiB":"North Dakota","F372xY":"North Dakota","tEUopl":"North East Lincolnshire","8g13l1":"North East Lincolnshire","WSKdCu":"North Karelia","P+Umu6":"North Korea","Tg5TWH":"North Korean Won","Fq73pq":"North Lanarkshire","mc7pYF":"North Lanarkshire","/ozL/X":"North Lincolnshire","M7LqHy":"North Lincolnshire","TMOf6W":"North Ostrobothnia","XSAKcP":"North Rhine-Westphalia","0CTs2f":"North Savo","FGYsCC":"North Somerset","Cqz5RV":"North Somerset","dUBq4L":"North Tyneside","7Wnsuc":"North Yorkshire","s/RTj4":"North Yorkshire","oW1ZCJ":"Northamptonshire","il/amt":"Northamptonshire","Oy9Ef9":"Northern Ireland","416CyG":"Northern Mariana Islands","vdC6hT":"Northern Mariana Islands","Aaz7Eu":"Northern Mariana Islands","Tvd/Yg":"Northern Territory","7IC+zn":"Northumberland","QA3Bsq":"Northumberland","qdk1rd":"Northwest Territories","oGN4S0":"Northwest Territories","wwZXan":"Norway","g2f8N+":"Norwegian Kroner","ogabUd":"Not eligible","PuteG7":"Not eligible yet","vlmFlo":"Not enabled","9Y16uN":"Not now","BgCKYM":"Not now","AwQktp":"Not now","P8/+fr":["Not seeing a verification email from no-reply@patreon.com? Double-check your spam folder and review your ",["emailFiltersLink"]],"4GBxgL":"Not sure what to post?","AA27W6":"Not used for any memberships","+WYeQx":"Not visible to your fans","kfvaUR":"Nothing changes for members who already have access.","LoUPGr":"Notifications","PQ750W":"Notifications","lwAcug":"Notify eligible members about this new benefit","KDiDDX":"Nottingham","qpKB9A":"Nottinghamshire","E1hn7Z":"Nottinghamshire","xtboab":"Nova Scotia","A8Oh6g":"Nova Scotia","R4jNPo":"Now you can arrange and manage your collections faster.","SdrXsE":"Now you can recommend other creators!","mXKq1N":"Number of files","ihRqBB":"Number of images","msbwVg":"Nunavut","UJ8EkY":"Nunavut","VjfsCp":"Objects","UCTHs/":"Odisha","kzMAal":"Off","F0p1jV":"Off","6Rw/Lv":"Off","AAyGHP":"Offensive and provocative language","yPEDwT":"Offensive content","cYa97y":"Offer an exciting 1-on-1 phone call with members","IKOc+k":"Offer members a code for an online store or website","Iqr2eU":"Offer members the ability to commission work directly from you, delivered by mail","lkNldP":"Offer members the ability to commission work directly from you, delivered digitally","Nk8oa6":"Offer premium or early access tickets for live events","fL27sg":"Offering coins as part of an investment scheme or for the purpose of direct financial benefit is not permitted on Patreon. Creators also may not offer discounts, coupons, or vouchers for cryptocurrency.","HG0ljs":"Offering financial advisory services in which creators take over a member's personal finances, are not permitted on Patreon. Financial advice given on Patreon must be in compliance with the laws of the country where the creator is based.","kdpR8i":"Offering works promoting inauthentic initiatives including, but not limited to tutorials for engaging in illegal activities, third-party services that artificially inflate metrics, or access to piracy software, is not permitted on Patreon.","CxFImd":"Offering works promoting inauthentic initiatives including, but not limited to tutorials for engaging in illegal activities, third-party services that artificially inflate metrics, or access to piracy software, is not permitted on Patreon.","X6FsBY":"Oh no! Looks like something went wrong","WeYpUo":"Ohio","w9ExiJ":"Ohio","3b5Eux":"Oita","cmEfB6":"Ok","GFaWkY":"Ok","hfsNUG":"Ok","PyW6lm":"Ok","R9+0XM":"Ok","zga9sT":"OK","vY7YpF":"OK","AQfCzx":"OK","UpwTSs":"OK","5DRgAo":"OK","2i4bUl":"OK","ue4gic":"Okay","aKTOKN":"Okayama","/M053A":"Okinawa","4Dfbo9":"Oklahoma","BPhbTH":"Oklahoma","VSL+gg":["Oldest posts by ",["campaignName"]],"e/EkR9":"Oldest to newest","U5zrv/":"Oldest to newest","7gihbY":"Oldest to newest","UTNdls":"Oldham","YxSjdb":"Oman","Y/CFfW":"Omani Rial","c6cdxD":"On","QGnN4w":"On","iRg7Av":"On an annual membership.","do8cm4":"Once you have launched your page, you'll be able to send private messages to your members","fHgTWh":"Once you publish your page, your audience will be able to see your products.","ipESWU":"Once you publish your shop, your audience will be able to see this item.","ULZC3Q":"Once you upload your media, it'll appear here","Vv6jfR":"Once you upload your media, it'll appear here.","qEm8Pa":"Once you're ready to start selling, you can launch your shop from the shop page.","yeeqbC":"Once your page is published, you can start sharing it with your audience.","FIjVrz":"Once your page is published, you can start sharing it with your audience. Everyone on your waitlist will be notified so they can join right away.","anWRTV":"One or more posts in this collection","Z3RVqO":"One size fits most","mcSZyL":"One-time","86iV4K":"One-time","4SvYTE":"only \u003c0/\u003e left","mA/DkT":"Only image files are allowed","JKV/af":"Only one upload is allowed","m33xHy":"Only pro plans can upgrade","yd71Vv":"Only you can see this","pwk/1B":"Only you can see this","lL7Cfc":"Only you can see this","xnrUAh":"Ontario","9FOBHh":"Ontario","MNGouF":"Open","hKZWBX":["Open ",["name"]," dropdown"],"y9Qk9D":"Open app","QdZpfr":"Open brand color picker popver.","3N+3zD":"Open chat options","+7tJjG":"Open in Patreon app?","YxLrdN":"Open navigation","IBSXG7":"Opt Out","N0EllV":"optional","ZS+/v6":"Optional","h+WmJK":"Optional","vvDe/Q":"or","F4tWm5":"or","zLPVsD":"or drag and drop","ZGdP1h":"or higher.","oPRVR1":"or pay annually","EA0UU7":"Or replay clip","qIcI55":"Or replay preview","ClZd4q":"or save \u003c0/\u003e if you pay annually","Cfwh5e":"or switch to \u003c0/\u003e a month","Xhs7r3":"Order #:","Kxas0Q":"Order summary","qX1hpM":"Oregon","+LxE+d":"Oregon","JJ6QMM":"Orense","idvaMs":"Organic Tote Bag","v/KcUG":"Orientation","9L7NF0":["Originally ",["formattedCurrency"]," now ",["discountedFormattedCurrency"]," per ",["payPerName"]],"xoLeCK":"Orkney and Shetland Isles","rzwOV5":"Orkney Islands","f2jr+Y":"Osaka","vs0Ksy":"Ostrobothnia","h45yY6":"Other","X1mjN9":"Other","yaQgF8":"Other","DnJNKw":"Other creators like you have seen success with subscription billing","l3kdT7":"Other details","lxQ3/2":"Other options:","zmedPB":"Other posts","06Hd8C":"Other tiers","YfwzlQ":"Our printers set a color profile based on the press used to print items. This process changes how some colors appear, and they may look different than they do on your screen. We recommend against using neon, pastel or very bright colors in your design; these colors look bright on a screen but appear muted when printed. If you want to use bright colors, we recommend designing your art using CMYK, and then converting it to sRGB before uploading.","GfweIP":"Our Trust and Safety team will review your report and take any action necessary.","RYsuH8":"over \u003c0/\u003e","0IGBG4":"Oxfordshire","9pUZE9":"Oxfordshire","jpekVQ":"Page","JRTUWv":"page controls","RLdzwv":"Paid for by members","yNG2fN":"Paid for by patrons","f9vmnL":"Paid Member","2usFyT":"Paid members","9MlFod":"Paid members only","LfYXL5":"Paid membership","l8LFyr":"Päijät-Häme","+m4I9/":"Pakistan","PqW0eN":"Pakistan Rupee","nrTFPP":"Palau","c23G20":"Palencia","9zAAfK":"Palestine","xzS/qe":"Panama","Wb5aIh":"Panamanian Balboa","sYG3Kj":"Papua New Guinea","cuC5jX":"Papua New Guinea Kina","xszN+E":"Paraguay","QEzmZ/":"Paraguay Guarani","85ZrNv":"Participate in the creative process with member-only polls","MiW9/n":"Partners","HkUkyW":"Password","6QtQ04":"Password","/KCuIZ":"Password doesn't match this account. Try again or reset your password.","tc2L4P":["Passwords need to have at least ",["minLength"]," characters."],"E7u1xZ":"Patreon","5+XUVo":"Patreon Android App Download","mdPswY":"Patreon creators cannot request payment for raffles or giveaways as part of a benefit. This includes lotteries, raffles or even mystery boxes if the value of the box is not guaranteed. Giveaways must be opened to all members and comply with applicable laws.","TkpvFi":"Patreon does not allow content featuring fringe sexual fetish creations, such as incest, necrophilia, or fetish creations that are hard to distinguish from non-consensual sex.","eLoB7s":"Patreon does not allow creators to offer benefits featuring items that are either sexually gratifying or intimate in nature. Benefits also must not be limited to a single member.","Hqy0EK":"Patreon does not allow deepfakes that portray a person, event, or scene in a way that is not real or did not occur.","Gm9qLQ":"Patreon does not allow pornography, defined as visual depictions of humans engaging in sexual activities. These include sexual intercourse, masturbation, or oral sex (e.g. genitals, sex toys, or related instruments inserted into anus, vagina, or mouth). This policy also applies to works featuring hyperrealistic representations of a human.","l9L+8c":"Patreon does not allow the depiction of real people engaged in sexual acts, such as masturbation or intercourse. We also do not permit content displaying human genitals for the purposes of sexual gratification.","6rxZAD":"Patreon does not allow works that engage in disinformation related to QAnon or Pizzagate conspiracy theories.","X5O7Ru":"Patreon does not permit certain benefits associated with sexual services. This includes items or services that are limited to a single member, items that may be sexually gratifying or intimate in nature, sex tourism or one-on-one engagements.","L9M7CM":"Patreon does not permit the use of technology to insert any individual or their likeness into content containing nudity or mature themes without their written consent.","p8Z8qg":"Patreon has a zero tolerance policy for the glorification of sexual violence. This includes depictions of sexualized minors, non-consensual sex, incest, and bestiality.","2iS96W":"Patreon has partnered with Keeper to offer discounted prices for their U.S. income tax filing service that is customized for freelancers and creators.","+lwZSH":"Patreon has received a notification of claimed trademark, patent or copyright infringement related to this material. Please consult our \u003c0\u003eCopyright Policy\u003c/0\u003e for more information and to understand the next steps available to you, including what to do if you believe this action was incorrect.","QQuHEW":"Patreon has updated its \u003c0\u003eterms of use\u003c/0\u003e and \u003c1\u003eprivacy policy\u003c/1\u003e. By clicking “I agree” you affirm that you have read and agreed to the changes.","HsHjfd":"Patreon has zero tolerance for behaviors that exploit minors such as depictions of sexualized minors, grooming, or solicitation. Creators must be 18 years or older to share modeling or “posing”-focused content where their appearance or body is the central visual focus.","FP7roZ":"Patreon has zero tolerance for real or animated Child Sexual Abuse Material (CSAM) or other exploitative works depicting sexualized minors, regardless of how the works were created (e.g., hand-drawn, cartoon, text-based, photorealistic, or computer-generated, among others).","jPzGAt":"Patreon has zero tolerance when it comes to works, real or animated, that glorify non-consensual sexual acts such as rape, sexual assault, or coerced consent.","TgklY/":"Patreon iOS App Download","xAddfH":"Patreon is investigating issues with site functionality. As a result, you may experience degraded service.","/ob6Ts":"Patreon is not meant to be a means to promote a direct sales business or facilitate Multi-Level Marketing, but a place for creators to launch creative endeavors.","K7dYas":"Patreon is required by Visa and Mastercard to make sure creators confirm the age and identity for anyone depicted in an Adult/18+ creation, and to collect, store, and share their consent and identity documentation.","Sh/RlO":"Patreon is required to ensure that all Adult/18+ creators verify certain details. Please review and confirm the following:\u003c0\u003e\u003c1\u003eI am the creator on this account and any identification I submit belongs to me.\u003c/1\u003e\u003c2\u003eI am over the age of 18 and I have verified that any person depicted in my work is over the age of 18.\u003c/2\u003e\u003c3\u003eI consent to and have and will continue to obtain written consent from any person depicted in any of my content to their likeness being uploaded to, published on, distributed by, and downloaded from Patreon, including by the general public.\u003c/3\u003e\u003c4\u003eIf requested, I will provide proof of age and consent documentation to Patreon. I understand i can use \u003c5\u003e\u003c6\u003ethis form\u003c/6\u003e\u003c/5\u003e for this purpose.\u003c/4\u003e\u003c7\u003eIf Patreon removes any of my content due to lack of consent, I may appeal the removal. You may submit your appeal via our \u003c8\u003e\u003c9\u003eHelp Center\u003c/9\u003e\u003c/8\u003e.\u003c/7\u003e\u003c/0\u003e\u003c10/\u003e","8xCpcx":"Patreon logo","06IyBl":"Patreon must respect the laws of many countries and states. To best protect our community, we do not allow any benefits that provide access to betting or gambling products or services.","GIFauA":"Patreon must respect the laws of many countries and states. To best protect our community, we have a zero tolerance policy for any content that contain images of child abuse or sexual depictions of minors.","a7gqir":["Patreon on ",["socialLabel"]],"JpBtZ/":"Patreon permits the discussion of alcohol and tobacco consumption. However, creators are not permitted to offer alcohol, tobacco or tobacco consumption devices. Promotions and incentives to purchase or obtain these items are also prohibited.","5vrkSP":"Patreon permits the discussion of substance abuse and recovery. However, creators are not permitted to offer drugs or drug paraphernalia as benefits, nor may they collect payments to aid in purchasing or acquiring controlled substances. These restrictions extend to offering resources around disease treatments and dieting.","j7EB6Y":"Patreon prohibits the funding of creations that advocate, threaten, or show you causing harm to yourself, other people or animals. You also cannot promote illegal activities such as property crime, distribution of illegal weapons, or drug manufacturing.","+MPNAm":"Patreon requires that content depicting nudity or mature themes not be made public.","/Rmm0R":"Patreon reserves the right to restrict content from or depicting people or projects affiliated with dangerous, hateful or violent groups. This includes espousing their related ideologies and conspiracy theories, or using their codewords and slogans. Members of those groups and people who praise or support the actions of those groups may also be restricted.","7qbHBU":"Patreon takes a strong stance against the sharing of an individual's private information or any actions intended to intimidate or harass an individual. This extends to the compiling of non-private information to coordinate harassment efforts.","oPVxta":"Patreon U","rm1Nph":"Patreon U | Creator Coaching","2yv1q5":"Patreon uses the Jumio Go real-time verification service to quickly confirm your identity. As part of this process, Jumio collects biometric data by taking a series of photos. These photos are used to confirm a live subject and are matched against the photos you submit of your government-issued identification document. Jumio retains the images you submit of yourself and your identification document as part of a verification record on Patreon’s behalf. To begin the verification process, please confirm you consent to our use of the Jumio Go product to collect and disclose this information.","cacGQq":"Patreon was not designed to help creators launch an Initial Coin Offering (ICO) or create an investment scheme. This includes offering coins to members, assisting in the purchase of cryptocurrency or benefits that promise a certain level of financial gain.","6/dHlV":["Patreon will be running scheduled maintenance on ",["startDate"]," at ",["startTime"],"."],"+DwhuZ":["Patreon will be running scheduled maintenance on ",["startDate"]," from ",["startTime"]," until ",["endTime"]," on ",["endDate"],"."],"o7IdOm":["Patreon will be running scheduled maintenance on ",["startDate"]," from ",["startTime"]," until ",["endTime"],"."],"p6TWWy":"Patreon will not help fund creations that engage in medical misinformation related to Covid-19 or disinformation related to QAnon or Pizzagate conspiracy theories","zUSFx3":"Patreon will send a discount to selected free members we think are likely to upgrade.","d9C2NE":"Patreon's plans and features","/nN0Rr":"Patreon's Trust and Safety team reviews these reports","WAds/Z":"Pause","uGA3/N":"Pause","fRrQ4Z":"Paused","LP3Eg1":"Pay annually","fNkgmj":"Pay annually (Save \u003c0/\u003e)","q8902x":"Pay day is around the corner! We recommend waiting for your payments to fully process before paying yourself out. This typically takes 24 to 48 hours.","/3LEfn":"Pay day is coming soon","1w9CIe":"Pay out balance","r5cpFc":"Payment Amount","A3F6/I":"Payment failed","cCtpSc":"Payment failed","jlH7gs":"Payment failed","+gwByE":"Payment has been successfully taken from a member or members but the funds aren’t yet available to withdraw. We may not have received those funds yet, or the payment may be subject to additional risk controls. Your account balance will update automatically once the funds are made available.","uOzvZU":"Payment method","HCX6K3":"Payment Method","kBsBLl":"Payment method added","2ZPsy0":"Payment method updated","egLPm0":"Payment methods","9mpTzN":"Payment Processing Rate*","8qIpzh":"Payment successful","45oPTD":"Payments are currently processing at a slower rate than normal. We're investigating the root cause with updates at\u003c0\u003estatus.patreon.com\u003c/0\u003e.","B5VzSz":["Payout fee is \u003c0/\u003e per payout",["possibleAsterisk"]],"b0hdR2":["Payout fee is 1% of the amount transferred, with a minimum of \u003c0/\u003e and a maximum of \u003c1/\u003e",["possibleAsterisk"]],"YAjK7G":"Payouts","m8Ol1Z":"Payouts are currently unavailable. Please \u003c0\u003e\u003c1\u003ereview the updated Adult/18+ requirements\u003c/1\u003e\u003c/0\u003e to restore access.","BKCG+J":"Payouts are currently unavailable. Please \u003c0\u003ereview the updated Adult/18+ requirements\u003c/0\u003e to restore access.","gXgYqW":"Payouts are currently unavailable. Please \u003c0\u003esubmit your tax information\u003c/0\u003e to restore access. \u003c1\u003eLearn More\u003c/1\u003e","7aXDy1":"Payouts are currently unavailable. Please \u003c0\u003everify your identity\u003c/0\u003e to restore access.","tKsv3t":"Payouts are currently unavailable. Please \u003c0\u003everify your identity\u003c/0\u003e to restore access.","HTYxkz":"Payouts are temporarily disabled. Please come back at a later date. \u003c0\u003eFollow updates on our status page.\u003c/0\u003e","EmUg0F":"Payouts aren't available while your identity is being verified. This should only take a few minutes, but if you need help in the meantime, you can reply to our most recent email or contact us via the \u003c0\u003eHelp Center\u003c/0\u003e","CURMuU":"PayPal","pO9VMq":["PayPal ",["paypalEmail"]],"xnSzcS":"PayPal is currently unavailable. Please try again later","6Jg31Q":"Pembrokeshire","Ta5afL":"Pembrokeshire","NiAUWB":"pending","El59sM":"Pending earnings","koPd8D":"Pending earnings from iOS in-app purchases","F82VJK":"Pending funds are from recent membership and shop payments and will be processed for withdrawal shortly.","oOUMCv":"Pending funds:","FX1S/9":"Pennsylvania","1JHdMO":"Pennsylvania","HwrWaD":"People can see a preview if they're not members yet","4mZLRe":"People will see higher prices on the Patreon iOS app to cover Apple's App Store fees.","qrAtic":"People will see the same price everywhere. You will earn less on shop purchases in the Patreon iOS app.","ZTkTax":["Per ",["payPerName"]],"aUNx3L":"per member","HyP69r":"Percentage","+0/5DO":"Perth and Kinross","YvtfC6":"Perth and Kinross","nlZQyY":"Peru","I8yLgJ":"Peruvian Nuevo Sol","pWKGmH":"Peterborough","w7agCX":"Philippine Peso","1Ig0IK":"Philippines","dRUauJ":"Phone call","de01YL":"Phone Number","R6Gj0X":"Phone Number","uMbT43":"Photo","EV/qpk":"Photography","DSqAO+":"Pick an emoji","Gqa1YI":"Picture-in-picture","07A/SG":"Pin","oKUn0/":["Pin ",["campaignName"]," on Pinterest"],"GOwI7a":"Pin it!","4S1a2g":"Pin post","7bBg2i":"Pin post","SaKp1f":"Pin this post","D1oq65":"Pin this product on Pinterest","C0blMp":"Pinterest","noR96O":"Pitcairn","ADAObI":"Pixels are tiny squares that are the building blocks of images. Images are composed of thousands of individual pixels, and the more pixels that make up an image, the better the quality of the image will be.","mtIl8g":"Place:","u+7nDw":"Plan change error","yybllF":"Play","Rh3yt4":"Play","60V3Vg":"Playback Speed","XInFoM":"Playback Speed","KkSudx":"PLAYBACK SPEED","f9JNmh":"Played","wf6pTu":"Playing","Tbf78J":"Please allow the bot the Kick permission. This enables the bot to exclude members who have opted out of joining the server.","R8lYtl":"Please ask the account owner to accept the Terms of Use before trying again.","3XPo4y":"Please choose a different payment method or add a new one.","AQj+1w":"Please choose a different payment method or add a new one.","7T4hPr":"Please complete your \u003c0\u003eW-9\u003c/0\u003e or \u003c1\u003eW-8 BEN\u003c/1\u003e to pay out.","1XmY9W":"Please confirm that you would like to downgrade to the Lite plan.","2jzItP":"Please confirm that you would like to downgrade to the Professional plan.","gcHnax":"Please confirm that you would like to upgrade.","T6UKmb":"Please ensure the Patreon role in your Discord server has permission to instant invite.","RaAYPp":"Please ensure the Patreon role in your Discord server has permission to manage roles.","fMEC00":"Please enter a discount code.","RtqED4":"Please enter a name.","ezvY5a":"Please enter a name.","/2uccH":"Please enter a number between 0 and 59.","cC4L8S":"Please enter a number between 0 and 8","1VJXV4":"Please enter a payment method for your payout.","VATLJm":"Please enter a timestamp.","1yN2cd":"Please enter a valid 5-digit postal code","WiX/0s":"Please enter a valid card number","cLPG9S":"Please enter a valid card security code, typically located on the back of your card","wjVFsv":"Please enter a valid credit card number","s20228":"Please enter a valid email","4kXGrj":"Please enter a valid expiration date","Qa70d3":"Please enter a valid expiration date","671KFS":"Please enter a valid name","lXONtw":"Please enter a valid name","TseFME":"Please enter a valid postal code","qa0TRP":"Please enter a valid security code","wkdrfw":"Please enter a valid url.","HuBNN8":"Please enter a valid URL.","C+yp4o":"Please enter a valid zip code","lmAYbe":"Please enter the name on your card","5elxDc":"Please enter the postal code for your card billing address","Gawwmr":"Please limit your response to 255 characters.","BwoEQu":"Please link to your primary content hub or social media account that demonstrates at least 100k followers.","dfqwPk":"Please log in to submit a report.","DJChkP":"Please make changes before submitting for review","VMk0nL":"Please make sure the payout method is valid and that your balance is sufficient.","m9H2Fq":"Please note that content that may be offensive is not prohibited in our  \u003c0\u003eCommunity Guidelines\u003c/0\u003e. If you think this violates one of our guidelines, please go back and select the option that best describes the issue you are reporting.","t1dj5R":"Please note that not all sexual content is prohibited in our  \u003c0\u003eCommunity Guidelines\u003c/0\u003e. If you think this violates one of our guidelines, please go back and select the option that best describes the issue you are reporting.","q31mSo":"Please provide a response (max 255 characters).","45mf9g":"Please provide a valid URL or email address","uhHmKw":"Please provide your postal code...","QcyqAV":"Please re-enter your card information to retry your payment","lLSYJX":"Please review our updated age verification and consent requirements:\u003c0\u003e\u003c1\u003eI have verified and will continue to verify that any person depicted in my work is over the age of 18.\u003c/1\u003e\u003c2\u003eI consent to and have and will continue to obtain written consent from any person depicted in any of my content to their likeness being uploaded to, published on, distributed by, and downloaded from Patreon, including by the general public.\u003c/2\u003e\u003c3\u003eIf requested, I will provide proof of age and consent documentation to Patreon. I understand I can use \u003c4\u003e\u003c5\u003ethis form\u003c/5\u003e\u003c/4\u003e for this purpose.\u003c/3\u003e\u003c6\u003eIf Patreon removes any of my content due to lack of consent, I may appeal the removal. You may submit your appeal via our \u003c7\u003e\u003c8\u003eHelp Center\u003c/8\u003e\u003c/7\u003e.\u003c/6\u003e\u003c/0\u003e","9H/RGc":"Please select an address or opt out.","60+VU5":"Please select at least one role.","+R5qIr":["Please submit a photo of yourself and a photo of a government-issued ID to continue using Patreon. After \u003c0\u003e",["suspensionDateMarkup"],"\u003c/0\u003e your page will be suspended until you provide this information."],"IeRzCj":"Please submit your report directly from the violating post so we can process your report faster.\u003c0\u003eYou can learn how to do that \u003c1\u003ehere\u003c/1\u003e.\u003c/0\u003e","15zphF":"Please try again","i9SYKq":"Please try again later","bwq2Sh":"Please try again, or \u003c0\u003econtact support\u003c/0\u003e if the problem persists.","Kde+Jf":"Please verify your email address","Cam+xj":"Please verify your email address to message","H+SrNP":"Please verify your identity","wkrYwM":["Please verify your identity by ",["suspensionDateMarkup"]," to avoid losing access to payouts."],"m+V3sg":["Please verify your identity by ",["suspensionDateMarkup"]," to avoid losing access to payouts. We're required to verify that all creators sharing sexually explicit content or content that includes nudity are at least 18 years old."],"fm6mRK":"Please visit the Roles tab on Discord and move the Patreon role to the top of the roles you want managed in your list.","FpGH/f":"Please wait while we process your payment","tA3z0X":"Pledge \u003c0/\u003e per month","NAbn5A":"Pledges processed","L9/BQP":["plus ",["taxLabel"]],"rFwm95":"Plymouth","Q86Lh8":"Podcast","Iy4Drm":"Podcast episode","GAQAaI":"Podcasters","SFL5Nl":"Podcasters","rRFdu9":"Point us to where we can confirm your report. If your link is a video or audio file, please include a timestamp so we can process your report faster!","b4+ild":"Poland","zbmm0s":"Policy \u0026 Terms","e59kAF":"Polish Old Zloty","rw/ZzU":"Polish Zloty","a1l/gA":"Poll","lvmlU9":"Poll","TqUgvc":"Poll","Wb7tUC":["Poll ",["count"]],"9PtFAD":"Poll ended \u003c0/\u003e","gG2UZn":"Pontevedra","AFxIHT":"Poole","zprXYG":"Poor","jfnQgC":"Popular posts","G3UY3e":"Pornographic material","YbVxVc":"Pornography","G8TiU5":"portrait","e5VY6W":"Portsmouth","Mc7GGs":"Portugal","gTTBdo":"post","3SS9dt":"Post","1uZ8mF":"Post","F0uXn1":"Post","xJS0A+":"Post","83tO5g":"Post access","m14eSH":"post feed filters toggle","Iesupa":"Post member-only videos directly on Patreon. You’ll need a Vimeo Pro account (or above) to upload videos with our integration and a Vimeo Premium account for Livestreaming.","3j0xOb":"Post Report","UbESqE":"Post type","uprzxr":"Post type","w121v5":"Post type","uCDsYb":"Post views","u9XSiw":"Post views show the number of times your post’s page was viewed. This metric was replaced by Impressions for new posts starting April 2023.","V6BfA0":"Postal Code","dJW40d":"Postal Code","d62Stt":"Poster","W7FeOI":"Poster fill with full bleed ","XfylRE":"Posts","DOvOXS":"Posts","FhHJ3T":"Posts and messages","s5QPVZ":["Posts can only have up to ",["numImages"]," images"],"AAKZee":"Posts from my creators","FqY/F7":"Posts you have access to","sOUxa4":"Powered by Crowdcast","eQCwXH":"Powered by Vimeo","SbHkcs":"Powys","uCXhXO":"Powys","8c0Mzx":"Praise or support of a criminal organization","ll96FL":"Praise or support of a hate group","QPQ5oL":"Praise or support of a violent actor or organization","I4Tit6":"Praise or support of extremist or terror groups","NSsan3":"Prefecture","vQ6Ewo":"Premium","XWR9S7":"Premium","1DbMH2":"Premium","OhWp9A":"Press","Gxk8iX":"Preview","Hm20gw":"Preview","dpx/b9":"Preview","/zSmBz":"Preview collection","XE+sAn":"Preview duration must be between 0:05 and 1:00","xID3Dw":"Preview duration must be between 0:10 and 2:00","9VvkOZ":"Preview image of Commerce Product","0/5fjq":"Preview page","eiAyQQ":"Preview Unavailable","p85weU":"Preview views","S40wEq":"Previews","OgBM3V":"Previous","Lzgvhk":"Price","o1mItB":"Price","oYCN2K":"PRICE","sCdFZv":["Price in ",["code"]],"xymnaV":"Price in other currencies","357dVa":"Price per platform","HVquEd":"Prices are set to be higher in iOS to cover Apple's App Store fees.","HIc8DI":"Prices are set to be the same everywhere, but you'll earn less on purchases in the Patreon iOS app.","n47qsS":"Pricing","tXcqgX":"Pricing","g/8DeV":"Prince Edward Island","ZaXz8z":"Prince Edward Island","uDS+ev":"Print area","qm6APn":"Print area dimensions","LvmrQC":"Print Dimensions","n+f7Ba":"Privacy","lk7irO":"Privacy Policy","mG0eWy":"Privacy Policy","7FXkZo":"Privacy Preferences","XiSkdf":"Private","fKD82Q":"Private community","kVDO2u":"Private community","nylizw":"Pro","lgerSA":"Pro","HMNEx/":"Pro","Cv+tXK":"Pro","CF5Pia":"Pro + Merch","NddQWD":"Product","VrNkuR":"Product","UQ41rZ":"Product","G2CcEQ":"PRODUCT","lWsGzW":["Product acquired on ",["date"]],"ob20xb":"Product files will appear here","ryUBRX":"Product is not available","ex18NL":"Product name","AALqLI":"Product showcase settings","demfIp":"Product temporarily unavailable","2CcVSK":"Product thumbnail","JpCITC":"Product unavailable","+pn2DN":"Product updates and community announcements","H4ajRb":"Products can't be priced higher than \u003c0/\u003e.","/Q80Z2":"Products in your shop are subject to Apple’s in-app purchase fee when bought in the iOS app. Starting in November 2024, this will also apply to membership prices in the iOS app. Existing members won’t be impacted. \u003c0\u003eLearn more\u003c/0\u003e","f/wSDb":"Products need to be priced at least","l8gIvf":"Products you buy from creators will show up here.","I4XFci":"Products you unpublish will appear here. Unpublished products can’t be seen or purchased by anyone.","Ng/sqe":"Professional Services","g+L3Wa":"Professional services (e.g. live chats, 1:1 connection)","fSBXmT":"Promo card","q2Xs1f":"Promo card for this collection","ylaa9s":"Promo card for this post","lDpLa9":"Promo code","P5sgAk":"Promo Code","o3hnYU":"Promote","OwbVlU":"Promote to your community.","+ANY4z":"Promoting or organizing targeted harassment campaigns","IKEEQq":"Promoting, encouraging, or glorifying self-harm","NHBn9Y":"Promoting, encouraging, or glorifying suicide","29YKtR":"Promotions","duRs+0":"Promotions and discounts","TTVCer":"Provide a digital copy of your book, newsletter or publication","ghkGOM":"Provide ad-free versions of your work","DgCr3P":"Provide educational content via videos and lessons","PqIvZ7":"Provide exciting merch your members will love","tT0nFg":"Provide high-quality bonus content to your members","zTxbes":"Provide members the ability to ask questions and participate in Q\u0026A","hp2IyI":"Provide members with exclusive VIP access and perks at live events","cCtJJ3":"Provide rough drafts and clips of your work-in-progress","qx2zUC":"Provided by:","1t5/Wv":"Provided to:","ozF3kb":"Providing or accessing gambling products or services (e.g. betting, lotteries, casino games, fantasy sports) is not permitted on Patreon. Works for which monetary value (e.g. cash, digital currencies like bitcoin) is exchanged as a method of entry are also not permitted.","u+HL9H":"Province","yZ1XNa":"Province / Territory","BYCeOV":"PST ID","AdsbFT":"public","41P+r2":"Public","ty60C5":"Public","1LXMiN":"Public (your waitlist)","mQ8EDp":"Publicly Visible","Z8n+Q8":"Publish","7HbFrV":"Publish","xhNkDL":"Publish","rmmwax":"Publish","JcslDJ":"Publish","enIaLc":"Publish page","rauvp0":"Publish shop","oAYyhK":"Publish this product?","3a2bT7":"Published","jblSyj":"Published","Qa6fnB":"Published","IxA7Mi":["Published ",["formattedPublishedAtDatetime"]],"+hB31L":"Published on","RDnnGY":"Published product successfully","1GYOLG":"Puducherry","uhsecq":"Puerto Rico","cAJPZJ":"Puerto Rico","dqvyqW":"Puerto Rico","b5mG2R":"Punjab","ayElWX":"Purchased","Y/M6a7":"Purchased","i8Vx5L":"Purchased","EulvXE":"Purchased on \u003c0/\u003e","M02B91":"Purchases","Dm0nQd":"Put your growth on Autopilot and earn more with \u003c0\u003eautomatic\u003c/0\u003e discounts and promotions.","vpt0/u":"Qatar","h1JtfC":"Qatari Rial","UQjSJy":"QST/GST","FEYZ00":"Quebec","CYKDAA":"Quebec","4kn5kn":"Queensland","lCUhv8":"Queueing","9XovmF":"Quote","PERJhH":"Raffles and giveaways","HBuf/Q":"raising your pledge","VJrii0":"Rajasthan","Jf+xEq":"Rate per successful payment","X28j+N":"Rather than being charged on the 1st of the month, members are charged the day of the month they signed up, similar to most subscription services.","yZotjE":"Rather than being charged on the 1st of the month, members are charged the day they sign up and then each month on the same day, similar to most subscriptions.","LnIXyB":"React","GSjcpc":"Read more","8IAQ5U":"Read More","3h+GOr":"Read more from your favorite creators.","dLrAS+":"Reading","7Mquiw":"Ready to publish your page?","FD/ee2":"Real (non-animated) child abuse or exploitation","9NIQlM":"Real or animated works (photo, video, written, audio) featuring sexual activity or role play interactions between family members who are blood relatives or part of the same immediate family are not permitted on Patreon.","RJlYgW":"Receipt","rZuvja":"RECEIPT","TVyJfU":"Receipt #:","tV9gIo":"Receipt date:","d1YmB5":"Receive a commissioned piece just for you","/Yf9XX":"Receive a personal shout-out","kNDA31":"Receive an e-publication","BfxEn3":"Receive custom merch rewards","37XL0e":"Receive discount codes","u2POtX":"Receive updates with rough drafts and snippets","KrWxbO":"Recent","GKf4cj":"Recent earnings from membership and shop payments that will be processed shortly. \u003c0\u003e\u003c1/\u003e\u003c/0\u003e","UQLoIo":"Recent Posts","IUzVrC":["Recent posts by ",["campaignName"]],"yMpGPV":"Recent products","sRS28H":"Recently Visited","wLdXUP":"Recommend","KKRamE":"Recommendation","gWPbKY":"Recommendation is inactive","IWWiZ+":"Recommendation reason text input","3DBu2G":"Recommendations for your fans","mj1Hy9":"Recommended","lN+6XP":"Recommended","rXnWK1":"Recommended","urEy1X":"Recommended","Rr6dh8":"Recommended","W+L9+N":["Recommended by ",["name"]],"j5IDBm":"Recommended by creator","vQVcte":"Recommended by this creator","TJTSOB":"Recommended size 1024x1024px. JPG, JPEG, PNG, or GIF. Max \u003c0/\u003e MB.","5nhz0a":"Recommended Tier","FS6St2":"Recommended: 10%","pPlF29":"Redbridge","rSmPtP":"Redcar and Cleveland","JlG9nO":"Redcar and Cleveland","obR3X8":"Refresh","1G5sU7":"Refund customers","QZn9vA":["Refunds will be issued to ",["refundCustomers","plural",{"one":["#"," person"],"other":["#"," people"]}]," who purchased this product in the last 90 days. \u003c0/\u003e will be deducted from your balance."],"5CyI1L":"Region choice affects your purchase experience.","jDGjQE":"Regulated goods or activities","j5wct+":"Related posts","zF8LwW":"Related Posts","MdahaP":"Relationship manager","uFjpQB":"Relationship manager","YOldBe":["Released ",["diffDays","plural",{"one":["#"," day"],"other":["#"," days"]}]," early for members."],"T6NYEM":"Reload","O5DPJT":"Reload the page","QExgqE":"Reminder set","dXAa/c":"Remove","ylNH1s":"Remove","/nAYAS":"Remove","WLeEQq":"Remove","r3nXsw":["Remove \"",["name"],"\""],"tnxwls":"Remove all","6rriMl":"Remove all?","OuyC+G":"Remove from history","WUAF2u":"Remove payment method?","1SxCqH":"Remove post","P864BA":"Remove post from collection?","n0ZGyY":"Remove post?","PHyyPe":"Remove recommendation","ERV1l5":"Remove uploaded image","bnHHcS":"Removed","XkIv78":"Removing integration. Please refresh the page and try again later.","g49V4q":"Renfrewshire","3x4uK+":"Renfrewshire","Ec3hg+":"Reorder","MMzxDf":"Repeat Offender","btwL2E":"Replace artwork","w8/3md":"Replace file","YkBqCl":"Replace Photo","QMmv/t":"Replay","ZtWao1":"Replay preview","QZoNHZ":"Replay preview","Va/lo/":"Replied","A4PXzr":"Replies","vkQfQ0":"Replies to your comments","MgcmYC":"Reply","Xz6i6c":"Reply","f48ze/":"Reply to comment","r/YQlp":"Reply...","gTX1RS":["Replying to ",["parentCommentName"]],"imv3Ho":"Report","ngKYtw":"Report Comment","iQn2ZR":"Report could not be submitted","lfjfo6":"Report message","rtYeLU":"Report Message","OQQyJb":"Report submitted","TVaoSJ":"Report this collection","tBZ44o":"Report this content","1se6mL":"Report this creator","or10R2":"Report this creator","DNiMkH":"Report this product","7XkrTH":"Request more space","+ui/9G":"Requesting payment from fans for the chance to win something (e.g. raffle, giveaway, lottery) as part of a membership or community benefit is not permitted on Patreon.","+IYQpW":"Required","RffqO6":"Required","bqggu/":"Required","IrINmU":"Required (255 characters max) •","eI35zn":"Required. You must select a subcategory for sales tax purposes.","FtYjV6":"Requirements for 18+ creators","LtAVvn":"resend","UssOkc":"Resend verification code","KqV3L0":"Resend verification code","WOmAr6":"Reserved funds:","zzoPSf":"Reshare this popular post","7JELL/":"Resharing this will change the post’s privacy setting from \u003c0\u003epaid members\u003c/0\u003e only to \u003c1\u003eall members\u003c/1\u003e.\u003c2/\u003eOnly your free members will be notified about this post.","KpwdpI":"Resolution is measured in dots per inch (DPI) and refers to the density of ink dots printed by a press. Most of our items require a DPI of at least 150 at 100% of the final print file size. Higher resolution images are more detailed and crisper when printed, so the higher the DPI, the better.","3qEmrE":"Resolve","uqbKbj":"Resolve","8RJWo1":"Resolve","cAwdjx":"Resources","iYoyDr":"Resources","e2uwrq":"Response saved.","XQenp4":"Resume","a9JvQw":"Resume playing","xQydF1":"Resume video","o1JDBG":"Retry","bbtIY0":"Retry","Pb8S49":"Retry in progress","LkNhSk":"Retry Payment","lx5QzZ":"Retry payment again","91CrSI":"Retry payment method?","IoNsbF":"Retry the payment now","VhHPfY":"Retry using this payment method","vUh/QY":"Retrying your payment","u7FHqw":"Retrying your payment method...","txxSh7":"Réunion","T4I6k6":"Reveal password","AUTuce":"Review requirements","egvnOv":"Revoke permissions","yInK7I":"Reward","wla51t":"Reward","mrCLt3":"Reward loyal members or repeat buyers by sharing codes exclusively with them.","XSKzJO":"Rhineland-Palatinate","NO3BXY":"Rhode Island","Z/M6w4":"Rhode Island","IlYDux":"Rhonda Cynon Taff","PBvAl1":"Rhondda, Cynon, Taff","FvjHv/":"Richmond upon Thames","JNZHxL":"Rochdale","x6RiGZ":"Romania","kNZ2+h":"Romanian New Leu","sLzX5N":"Romanian Old Leu","zd0VUp":"Rotherham","dpDnet":"RSVP on Patreon","dToYDv":"Russia","ZQqdPs":"Russian Rouble","GrA0+4":"Rutland","D21BsC":"Rutland","XxpR63":"Rwanda","+qML7y":"Rwandan Franc","onN1C5":"Saarland","AAbCHv":"Safe print area: 11” x 17” (make sure all graphics and text are within this area)","sDzTiH":"Safe print area: 16.6” x 15.5” (make sure all graphics and text are within this area)","k3hABZ":"Safe print area: 3.5” x 5.5” (make sure all graphics and text are within this area)","XRuNSz":"Saga","j536kj":"Saint Barthélemy","Ydq2mO":"Saint Helena","An0JIA":"Saint Kitts and Nevis","hxN1l9":"Saint Lucia","2/aOHG":"Saint Martin","ieWcH5":"Saint Pierre and Miquelon","DqtC/j":"Saint Vincent and the Grenadines","6wLCBy":"Saitama","Hj9pdt":"Salamanca","G7fpDP":"Sales","oeYm9l":"Sales","0zvN+0":"Sales","4LbfGa":"Sales Tax","XMqWee":"Salford","x4xYeG":"Samoa","+UlR86":"Samoan Tala","0jT63G":"San Marino","DI6Jwu":"Sandwell","FZsncR":"São Tomé and Príncipe","eL0YzW":"Sao Tome/Principe Dobra","5nslFW":"Sao Tome/Principe Old Dobra","AAg+nB":"Saskatchewan","VOXJxx":"Saskatchewan","f4zw82":"Satakunta","ZoMyvS":"Saudi Arabia","X/1AqA":"Saudi Riyal","bH3qUS":"Save","4Mh0tj":"Save","/sOz6K":"Save","xLoxV+":"Save","n3xkL9":"Save","C2oMbd":"Save","JZ1XHR":"Save","CzAnXR":"Save","+DmAbO":"Save","M6/aTy":"Save \u0026 Delete","vJijMZ":"Save \u0026 update","D8/Gup":"Save \u0026 update","2dQgR2":"Save and continue","iN3sLD":"Save and submit for review","01ysTh":"Save as draft","CzuPZ9":"Save benefit","R0hXfM":"Save changes","KzIQE9":"Save Changes","mql4ge":"Save draft","jLsLPk":"Save for later","nuYY9j":"Save membership card","B4J7bJ":"Save this clip and tell others about this post on social media.","AUvbM+":"Save this clip and tell your fans about this post on social media.","EJk0kR":"Save this promo card and tell others about this drop on social media.","Z6XOpb":"Save this promo card and tell others about this post on social media.","3EFvfq":"Save this promo card and tell your fans about this collection on social media.","H9f61V":"Save this promo card and tell your fans about this drop on social media.","Nqus5c":"Save this promo card and tell your fans about this post on social media.","VfxQMu":"Save your artwork with the sRGB color profile (specifically sRGB IEC61966-2.1). If your design is in CMYK, convert it to sRGB before uploading.","O4r56o":"Save your file to the \u003c0\u003eRGB\u003c/0\u003e color profile, or convert CMYK art to \u003c1\u003eRGB\u003c/1\u003e before uploading.","9Lg+iQ":"Saved","4GXKJH":["Saved payment method: ",["paymentMethodType"]," ",["accountId"]],"7YLo4D":["Saved payment method: ",["paymentMethodType"]," ending in ",["cardNumber"]],"2zyKae":"Saving...","NfuRIj":"Saxony","azydWa":"Saxony-Anhalt","YjwLTz":"Say anything...","lx6Tc6":"Scan to open the app","6nh/Ts":"Schedule","AOLnCh":"Schedule a countdown to build anticipation. We'll notify interested members when the drop is live so they can join right away.","mnTJ1C":"Schedule drop","LOFuFi":"Scheduled","4N+luH":"Scheduled","+idaRK":"Scheduled","bwUGN5":"Scheduled for","4uulln":"Scheduled Posts","Qsj/bp":"Schleswig-Holstein","lg6uPH":"Scottish Borders","pp3dn2":"Scottish Borders","bU+vYF":"Scroll to bottom","AFhArW":"Scroll to Left","6t7EMg":"Scroll to Right","KirsaE":"Seamless checkout and consumption","fjSxKo":"Search","/EAuji":"Search any emoji","SuudHa":"Search creators","UqLy7W":"Search creators or topics","SVpPs2":"Search creators or topics","nWIOKt":["Search for “",["activeQuery"],"”"],"+oDIJQ":"Search for a creator to recommend…","13I+aE":"Search for the creator's name or what they create.","2jE6C0":"Search or start new conversation","E9Hjl8":"Search posts","QQmYCu":"Search products","kALwhk":"seconds","THfVtn":"Secs","gXGxwU":"See all","8FKa1T":"See all \u003c0/\u003e levels","ibtvIE":"See all emojis","ywpG2X":"See all results","ONwss9":"See details","fq8U+5":"See full post","XeRoSt":"See how we calculate prices in the iOS app","SBWPp/":"See more","xvsh8l":"See More","ZiBQdq":"See more posts","ZYdxFP":"See more suggestions","VCe9Gi":"See options","Es6FXZ":"See recommendations","pBO54u":"See replies","2d9Z7y":"See their stories","s4q1bW":"See upgrade options","Cronrj":"Sefton","XDI3zI":"Segovia","UGLhUS":"Select","6zV0Hx":["Select a clip between 5 seconds and ",["maxDurationText"],"."],"eFUjdt":["Select a clip of the post's preview between 5 seconds and ",["maxDurationText"],"."],"WpYzHQ":"Select a color to offer your members.","6uoq1/":"Select a file","yslAFc":"Select a language","YoxYBl":"Select a page to display","kyp9V7":"Select a payment method to retry the payment","Mu+szY":"Select a subcategory","xQouch":"Select a tier","VskZHd":"Select a type","Spy+6p":"Select an audience to access the post","HEF4Pv":"Select at least 1 tier to access the post, or choose another audience","RpH59B":"Select frame","WzJOJh":"Select image","j8pf35":"Select image","HMpTrg":"Select image file","GiTk0Z":"Select one","fDmCEu":"Select one or more tiers to see an estimate of how much you will earn from each member in the tier.","USIE/7":"Select Payment Method","3GlSTS":"Select poll choice","ggRWKh":"Select products","4bM/pz":"Select tags to use for your new collection","vt/1j4":"Select this frame","q9iQnC":"Select tier","Oe6EkC":"Select tier","MV2MG3":"Select Video","ikRPO1":"Select which tiers can join this chat","hiHpZE":["Select your ",["type"],"..."],"GxMXUf":"Select your country of residence...","VygxUA":"Select your video's language","eNAcA1":"Selected Region","IP6dOD":"Sell digital media to anyone","o/7CJn":"Sell digital products","a32VMc":"Sell easily with Commerce","8P2Rsc":"Sell individual digital exclusives in your own online shop, run a paid membership, or do a combination of both.","Q3IxBP":"Sell individual digital exclusives in your own online shop. Upload your media, choose your price, and Patreon will create a shareable product page instantly, with no listing fees.","DOkvvE":"Sell member-only posts to anyone","Quzrtk":"Sell post","SLcrbX":"Sell this collection","b+d6a0":"Sell videos, audio, digital files, images, and more to anyone - not just members","cYSXnV":"Selling digital products is currently not available for 18+ creators","buChgX":"Selling drugs or drug paraphernalia is not permitted on Patreon. Creators may not share works depicting illicit drug use by real people (except in educational, medical, or journalistic contexts), encourage underage people to use drugs, or advocate for irresponsible use of drugs.","ZUCuuZ":"Selling or promoting sexual services","0zX6FI":"Send","9pcnMD":"Send a message to your creators to share your love","nJTMH1":"Send a private message to kick off an intimate relationship with your top fans.","wqPndf":"Send chat message","xIuLge":"Send login code via email","gIXvsH":"Send Message","utwYW8":"Senegal","mu7AdN":"Serbia","bYxs6d":"Serbian Dinar","CD5qAJ":"Serbian Old Dinar","PfLz4t":"Set a price","F03sBe":"Set a price to make this collection available to anyone as a one-time purchase.","Hl+X88":"Set annual membership","g0gsvt":"Set by default","TRtwyM":"Set Channel Emoji","C9i1Ml":"Set cover","okP+5z":"Set the discount","6o+TqR":"Set up shop","f3U0Cp":"Set up your shop instantly","pMU07u":"Set your iOS product pricing","ACfVnG":"Settings","I6NwSe":"Settings","N5ovbM":"Settings","fXdeOd":"Settings","1N6cNw":"Settings saved","dPkzD3":"Sevilla","OIDuNQ":"Sex tourism","jNq2+y":"Sex work and sexual services","P+N/7T":"Sexual services offered as benefits such as sexually gratifying one-on-one interactions, the sale of worn intimate items, or sexually gratifying benefits limited to a single member or fan are not permitted on Patreon.","IM45hh":"Sexually explicit content","wD4ZOv":"Sexually Gratifying Works","j4K8v0":"Seychelles","SkJ64u":"Seychelles Rupee","jiZ2pr":"Share","SFz9Zw":"Share","lOUXoT":["Share ",["campaignName"],"'s Collection"],"xK+Qjz":["Share ",["campaignName"],"'s post"],"iF2Z4M":"Share a preview of this locked post","JnpQnZ":"Share a promo card for this collection","7HEjUw":"Share a promo card for this post","UHEMuI":"Share ad-free episodes with your members","SQ9PtE":"Share drop","ujdmgt":"Share in a post","LBR5zY":"Share link","NQ04Wz":"Share locked post","qZ3ryS":"Share on Facebook","zrzuBb":"Share on Instagram","9Y26HF":"Share on TikTok","gipt/7":"Share on X (Twitter)","qToDCy":"Share preview","xXs3CL":"Share product","aZjeRb":"Share public post","yi5vkf":"Share the waitlist","HHebDz":"share this item","0bqGdb":"Share this membership card","aQTFqS":"Share this Patreon","0dZeAw":"Share this product","KlbiRe":"Share this product so people can check it out in your shop.","FkKyhN":"Share this public post","pFUT69":"Share to...","KMdXzL":["Share with ",["campaignName"]," about what you're looking forward to or any other suggestions"],"8vOJQG":"Share work directly with your fans without any costs. Patreon only takes a small percentage of your revenue once you start earning.","45kDOD":"Share your collection","KbGR6y":"Share your product","T2eG9m":"Share your shop page with friends and followers.","cdisOA":"Share your upcoming drop","fCF5PB":"Sharing someone's personal information without their consent","xrIQaf":"Sheffield","RBewbd":"Shetland","kzK7/Q":"Shetland Islands","47htCb":"Shiga","RktOjG":"Shimane","U/QR83":"Shizuoka","EMcJNZ":"Shop","FaN/Lv":"Shop on Patreon","47QQnt":"Show fewer tiers","da1MqH":"Show less","GmrNiL":"Show less","3FyH61":"Show more","1zLGZw":"Show more","eFNYG9":"Show more","0QGS3N":"Show more tiers","TYxQTi":"Show products from your shop to all visitors of your homepage.  \u003c0\u003eLearn more\u003c/0\u003e","xjv+bo":"Show products that are likely to be popular with your fans","KbP3kM":"Show recently published products","8fYSgS":["Showing ",["firstIdx"]," - ",["lastIndex"]," of ",["totalCount"]],"oANGWv":"Shropshire","LajSLj":"Shropshire","OOrjce":"Sierra Leone","O3QVfw":"Sierra Leone Leone","+rGqKl":"Sign Up","e57QPp":"Sign up or log in for exclusive access.","sWaiHU":["Signing in as ",["email"]],"PAc5KX":["Signing up as ",["email"]],"4W71FQ":"Sikkim","w8++Nk":"Simple tools to set up recurring support from your fans","gd1jrT":["Since ",["memberSinceDateShort"]],"rrCQ7j":"Singapore","7YGI6e":"Singapore Dollars","+81H4U":"Sint Maarten","67txqK":"Site Footer","jW4rCt":"Sitemap","j3823W":"Size","APK6mO":"Size","1CtbnJ":"Size","4ig9Az":"Size Chart","cp2jM/":"Size: 12” x 18”","LiyZVo":"Size: 4” x 6”","a4s4WD":"Skip","AHizYA":["skip backward ",["skipSecondsNumber"]," seconds"],"akLkfc":"Skip for now","HQKdHD":["skip forward ",["skipSecondsNumber"]," seconds"],"8eFoIE":"Slough","sivJ6M":"Slovak Koruna","0xoBNg":"Slovakia","jy3isE":"Slovenia","4Revpc":"Small","H4BmYG":"Small barcode on back necessary for order fulfillment","MpfGjD":"Small image, text or details may not print properly on the surface of the mug. We recommend using bold graphics to ensure that your artwork prints clearly and packs a punch!","4948Gi":"Smart recommendations","4XWnd0":"Smileys \u0026 People","XY2zUL":"Social links will show up on your profile so fans can verify it's you and find your other creator profiles.","lBrBWP":"Sofort Direct Debit does not support non-EUR currencies. Any memberships you want to transfer must be in Euro. Please edit each membership and change it to Euro in order to use Sofort Direct Debit.","D0/5pD":"Sold Out","C/jZJ9":"Sold Out","Tj5Fnq":"SOLD OUT","zDc3vn":"Sold out!","2JhfZW":"Solid colors are 100% cotton; heather colors are 48% cotton, 48% polyester; athletic heather is 48% cotton, 48% polyester","WZsJKL":"Solihull","2/3b5T":"Solomon Islands","m4ulHz":"Solomon Islands Dollars","BRpI22":"Somali Shilling","0BUlSu":"Somalia","weohkv":"Some Customers","IwJSw4":"Some examples of the Drops experience, including live commenting during a drop and the pre-drop countdown.","Tp4HmC":"Some of your bills are taking longer to process than expected. Please try again later.","KB/4N5":"Some other reason","mqnSfv":"Somerset","wOpYNC":"Somerset","g+kvUf":"Something else","1ueaBD":"Something else not listed here.","mcVPGQ":"Something else not listed here.","EdqZCU":"Something in their Patreon profile or rewards","7SJWkl":"Something they've done outside of Patreon","wHC17L":"Something they've posted on Patreon","kq+//9":"Something went wrong","ZtK/Is":"Something went wrong","jv+Yjb":"Something went wrong","0XtTeh":"Something went wrong while validating your identity. Please try again.","6NcrMD":"Something went wrong with your request. Please try again later.","z1vKHM":"Something went wrong, please try again later. If this issue continues, please \u003c0/\u003e to finish verifying your identity.","2BKv4w":"Something went wrong, please try again.","ndAQO4":"Something went wrong.","3ZHc6L":"Something went wrong. Please refresh the page to try again.","7fz+cW":"Something went wrong. Please try again later.","sGNhiW":"Something went wrong. Please try again later.","UksNES":"Something went wrong. Please try again.","cH2RHF":"Something went wrong. Please try again.","Zb99vN":"Soon, Apple will start charging fees for new paid memberships in the iOS app","zKJ0yV":"Soon, Apple will stop supporting per creation billing in the iOS app. Here’s what you need to know.","tT3A13":"Soon, Apple will stop supporting your billing method and start charging fees in the iOS app","KJHwZ5":"Soria","Yted9x":"Sort","+irjEW":"Sort by","J1gOKI":"Sort by","GdJaBF":"Sort Order","vvsaTW":"South Africa","kouGop":"South African Rand","UhU6/3":"South Australia","NIxMRi":"South Ayrshire","YsyTf4":"South Ayrshire","460NyQ":"South Carolina","qqzfjY":"South Carolina","yzgj7r":"South Dakota","Ktdjkv":"South Dakota","wpMcwI":"South Georgia and the South Sandwich Islands","68gyew":"South Glamorgan","vprKc1":"South Gloucestershire","P+qska":"South Gloucesteshire","kyUMm0":"South Karelia","1hi4+d":"South Korea","dyLOAO":"South Lanarkshire","+EP+Ov":"South Lanarkshire","N2WFNk":"South Ostrobothnia","fRWePL":"South Savo","g93DDP":"South Sudan","Ot5wq7":"South Tyneside","CfbPRt":"South Yorkshire","kwG2iH":"Southampton","twqluj":"Southend-on-Sea","ZhLQyo":"Southwark","j3Ksj2":"Southwest Finland","TsRcH4":"Spain","VQW8/c":"Spam","3TqnAk":"Spam","Hs+xC1":"Spamming others or distributing unsolicited advertising material is not permitted on Patreon.","7Esfdz":"Special Offer","kKb40P":"Special Offer","Z8sy3i":["Special Offer • ",["daysLeft","plural",{"one":["#"," day"],"other":["#"," days"]}]," left"],"AUXUU1":["Special Offer • ",["hoursLeft","plural",{"one":["#"," hour"],"other":["#"," hours"]}]," left"],"Auv+Qv":["Special Offer • ",["minutesLeft","plural",{"one":["#"," minute"],"other":["#"," minutes"]}]," left"],"69tAaU":"Special Offer • Less than a minute left","S44PPO":"Special offering","crtU8h":"Special offers","2fyeGW":"Special offers and promotions","GN6AJf":"Spotify","9V2P6d":"Spread the word! Let others know about this waitlist so they can get notified as soon as the Patreon page launches.","a3/OlL":"Sri Lanka","H5sSKt":"Sri Lanka Rupee","HjN/4U":"St. Helena Pound","JfOppb":"St. Helens","nGnDqm":"Staffordshire","GKCCCb":"Staffordshire","lcwDJa":["Start ",["freeTrialDurationDays"],"-day free trial"],"siIfVc":"Start date","zt8SXF":"Start date is required","n29Y2P":"Start for free","33iBpC":"Start free trial","lUFtsS":"Start free trial","IKHtil":"Start Free Trial","iBzusN":"Start playback","X6q7OP":"Start promoting your page!","KQ8ggZ":"Start real-time community group chats, send direct messages, or reach fans directly over email.","54rzuv":"Start selling digital products","TuNPtl":"Start the conversation...","Vt4lEn":"Starter kits","EBgdlf":"State","TWHxGJ":"State","eAyUjM":"State","GpEJQa":"State / Province","o4ws34":"State / Territory","WaGvbQ":"Stay connected and get updates on new public and free exclusive posts.","iVKt1S":"Stay connected and get updates on new public posts.","cCfyws":["Stay connected to ",["campaignDisplayName"]," while saving \u003c0/\u003e each ",["payPerNameTranslated"],"."],"xn6yWE":["Stay connected with ",["campaignName"]],"gz/WRI":"Stay on web","bAGpJ0":"Stay up to date with your creator's latest work, and experience it live with other fans when it's released.","5GkFZu":"Sticker","eVxtbK":"Sticker Spacing","ppviX3":"Sticker with cutout area","SAVHk/":"Stirling","qPP4Xk":"Stirling","kNUupM":"Stockport","04yyM4":"Stockton On Tees","D2OAeT":"Stockton-on-Tees","v2nlRx":"Stoke-on-Trent","AbWALw":"Stolen content","jiCNZh":"Stop selling collection","v0OiWG":"Stop selling collection?","TuHWjn":"Stream","MyKWiK":["Submenu of ",["parentMenuTitle"]],"hcGzeC":"Submit","1FfXD+":"Submit","afNiXe":"Submit","Am98Kc":"Submit","iLhR+B":"Submit","+/gMvt":"Submit for review","dRYyDw":"Submit for review?","yOHzY2":"Submitting your application...","S8HmAh":"Subscription billing is used by the majority of creators on Patreon and charges members the day they sign up and the same day each month after. It’s also the only billing method that Apple will support starting in November 2024.","1wMRbE":"Subscription billing is used by the majority of creators on Patreon. It’s also the only billing method that Apple will support starting in November 2024.","oY3WkT":"Subtotal","XLx0j3":"Sudan","O5R8v+":"Sudanese Old Dinar","2cFgJ8":"Sudanese Old Pound","1xOk1q":"Sudanese Pound","NttnPM":"Suffolk","WzyJHw":"Suffolk","5V7Zs6":"Suggested","Ettzn8":"Suggested creators","mFv+Or":"Suggested for you","uNFuud":"Suggested for you","7UCU9a":"Suggested for you","j6N9dK":"Sunderland","GuSLzz":"Supplements and consumables","GmeMTq":["Support ",["campaignName"]],"mggXnl":"Supported file formats","rB0bdw":"Supporting the creator financially","+AySCr":"Suriname","q2+TXP":"Suriname Dollars","EWkx6p":"Suriname Old Guilder","Ll2BQs":"Surrey","dgryxt":"Surrey","iD5J0X":"Suspended","1/NeJ0":"Suspended","ITfSPu":"Suspicious Activity","fbouju":"Sutton","uEuvkM":"Svalbard and Jan Mayen","PM4ovN":"Swansea","5wb6Fe":"Swansea","pk0yTe":"Swatting, or making a false report to emergency services or law enforcement, is not permitted on Patreon; encouraging others to engage in swatting or promoting swatting in general are also not permitted on Patreon.","Uw6fwi":"Swaziland","nqycnB":"Swaziland Lilangeni","DYespV":"Sweden","3tE9gi":"Swedish Krona","srL4sf":"Swindon","7iOZOV":"Swiss Franc","w96EAp":"Switch manually when you’re ready","ZWiG46":["Switch to \u003c0/\u003e/",["payPerNameTranslated"]],"pjGbbg":"Switch to this tier","WZNVnD":"Switch when Apple’s requirement starts in November","o/izuD":"Switzerland","8trKGd":"Symbols","dY7Bv9":"Syria","cZA7uX":"Syrian Pound","o+g6wT":"System","GjL6AB":"Tags","P739Yk":"Tags","HkQup1":"Tags","LQVCJT":"Tags","dHJN4G":["Tags (",["filterCount"],")"],"M8cMi0":"Taiwan","i6D5F4":"Taiwan Dollars","TXW0QR":"Tajikistan","bcMggv":"Tajikistan Somoni","otFmca":"Tameside","O8Isk8":"Tamil Nadu","wEM1Sb":"Tampere Region","V5l7rX":"Tangible goods (e.g. items delivered by mail)","ZbhgtO":"Tangible Property","9U9vkk":"Tanzania","1dX4Y0":"Tanzanian Shilling","S/OAB2":"Tap “I'm interested” to get notified when it releases so you can experience it live with others.","5nhIQK":"Tarragona","90ctja":"Tasmania","ucB4L8":"TAX","Zue35q":"Team","VNE+vW":"Teammate","/uOnD7":"Teen safety","dFc3tO":"Teen Safety","y2Z5qN":"Telangana","DGVJFo":"Telford and Wrekin","O9Z1tt":["Tell your members what you like about ",["name"]],"6U8lhP":"Tenerife","gQLP4b":"Tennessee","afP2ZX":"Tennessee","So8sxw":"Terms of Use","PLAJbV":"Terms of Use","74A3uh":"Terms of Use for shops haven’t been accepted yet","UVVqxh":"Terms of use must be accepted by account owners first","kATo7m":"Teruel","yHejqL":"Texas","j5L5fp":"Texas","2j98wQ":"Text","rstaAv":"Text","F+KHZR":"Text","UtsFXJ":["Text ",["count"]],"Kh+UJr":"Thai Baht","Fsx8Ny":"Thailand","0wlLoF":"Thank you for verifying your identity. We are reviewing your information now. \u003c0\u003eLearn more\u003c/0\u003e","kHqf31":"Thank you for your report.","gUkYm9":"Thank you for your response!","hmHmuK":"Thanks for agreeing to these requirements","qzyX7J":"Thanks for updating your post","mPqNeI":"Thanks for updating your post to meet our Community Guidelines. To keep our community safe, this post will remain member-only moving forward. If you have any questions, you can visit our \u003c0\u003eHelp Center\u003c/0\u003e.","IjGaWm":"Thanks for updating your post. Your changes are being reviewed and we'll get back to you within 2-3 business days.","tHEn9E":"Thanks for updating your post. Your changes are being reviewed and we'll get back to you within 2-3 business days.","zFiLlx":"Thanks for updating your post. Your changes are being reviewed and we'll get back to you within 2-3 business days. In the meantime, your post is still visible to your members.","JnKXNk":"Thanks for verifying your identity","wWgmJA":"Thanks for verifying your identity","xWvnpB":"Thanks for verifying your identity. Unfortunately, your page has been disabled because you need to be at least 18 years old to be an 18+ creator on Patreon. Your page is no longer visible to anyone.","jCYaEx":"Thanks for your interest in Premium!","eHbed9":"Thanks for your Premium application!","e/En8f":"Thanks for your purchase","hzBXl7":"The address is invalid. Please make sure it's correct before confirming.","ddBaaI":"The address you've selected is invalid. Please choose another address.","JjPfu0":"The allowed audio formats are mp3, mp4, m4a, wav.","cFIIaV":"The allowed file extensions are 7Zip, aac, gif, jpeg, m4a, mp3, mp4, mpeg, ogg, pdf, png, PSD, wav, wma, x-m4a, x-wav, zip.","hK0M2c":"The allowed image formats are jpg, jpeg, png, gif.","qewtTV":"The allowed video formats are mov, gif, mp4, m4a, mpeg, ogg, gif.","K6gE34":"The code expires after 15 minutes.","I8/ooy":"The code will only discount down to the minimum price.","5ArkJs":"The collection’s title, description or cover photo","8aB0v9":"The creator is misrepresenting themself or impersonating someone","SoGKNE":"The creator may also join to chat with you and others while it's live.","vm3/b0":"The creator you recommend will be notified.","AA0CUT":"The Dadra And Nagar Haveli And Daman And Diu","GoBWHH":"The date you set for early access needs to be after your scheduled date","gHl1s8":"The Digital Millennium Copyright Act (DMCA) provides a notice and takedown framework for potential copyright infringements. This framework allows copyright owners to bring a notification of claimed infringement for any potentially infringing works that may be hosted or located on Patreon. Patreon acts expeditiously to remove such works. See our \u003c0\u003eCopyright Policy\u003c/0\u003e for more information.","4KEDzs":["The discounted Premium plan is only available to creators who joined before May 2019. ",["nativeVideoBlurb"]],"gJWCop":"The discounted Pro + Merch plan is only available to creators who joined before May 2019.","dDX9az":["The discounted Pro + Merch plan is only available to creators who joined before May 2019. ",["nativeVideoBlurb"]],"pw2Bsf":"The drop will appear locked for people who aren't members.","i8kPDY":"The features and services included in Premium are Dedicated Partner Manager, Team Accounts, and Merch for Membership. Can you tell us which one(s) are most valuable to you and why?","UjxKHj":["The Founders plan is only available to creators who joined before May 2019. ",["nativeVideoBlurb"]],"mnHOO9":"The image resolution is too low and your artwork may not print correctly. Please upload a larger file, or choose a smaller placement for your design.","ZDHNzK":"The image resolution is too low and your artwork may not print correctly. We suggest using a larger file for better results. ","IMw3Wk":"The maximum file size is 5 GB.","JEm1On":"The maximum image size is 512 MB.","6t10MW":["The merch on this tier costs ",["costPercent"],"% of a member's ",["cadence"],"-month pledge to this tier."],"9zF6Mz":"The minimum tier price for these items is \u003c0/\u003e","5ImFzL":"The neck gaiter will be filled entirely with your design. If your artwork is not the same dimensions as the print area, it will be resized. Because all-over items are printed and then cut, we can’t guarantee exact placement of your design.","ebmsmx":"The Patreon Bot in the Discord server associated with your account does not have the Patreon role assigned to it. Please reconnect.","gzZzHW":"The payout amount is too low. Your payout must be greater than \u003c0/\u003e after payout fees.","83EvyZ":"The post will appear locked for people who aren't members.","LPM4CY":"The Premium plan has a very limited number of openings at this time. We’ll be rolling it out gradually as spots become available, and will prioritize creators that will benefit the most from the features and services. Here is the type of creator who will get the most out of Premium:","nBTW6Q":"The price can't be higher than \u003c0/\u003e.","xAQpa2":"The price must be at least \u003c0/\u003e or higher.","M1xTdi":["The price must be between ",["minPrice"]," and ",["maxPrice"],"."],"KPIx2F":"The price must be set.","AJxHee":"The print area (19” x 19” / 48.3 x 48.3 cm) will be filled entirely with your design. If your artwork does not match these dimensions, it will be resized to fill the print area.","4EQnMa":"The product you're editing will be \u003c0/\u003e everywhere.","bzcAOC":"The product you're editing will be \u003c0/\u003e on Android and web and \u003c1/\u003e in the iOS app.","ZGvw87":"The public-facing spaces of Adult/18+ Patreon pages must be free of sexually explicit material or nudity, real or animated, in any format. Such works should reside behind the subscription wall to be accessible only by the creator's fan community of paid member.","g8SmNH":"The template is sized to be the same as the dimensions of the all-over print neck gaiter: 19” x 19” / 48.3 x 48.3 cm.","Z2Gs75":"The template is sized to be the same as the dimensions of the mini print: 4” x 6” / 10.16 x 15.24 cm.","0/kBX0":"The template is sized to be the same as the dimensions of the poster: 12” x 18” / 30.5 x 45.7 cm.","9EVwmS":"The template matches the dimensions of the large print area: 4” x 4” / 10.2 x 10.2 cm. We will resize it based on the placement you choose.","8r5wc1":"The template matches the dimensions of the large print area: 9.5” x 9.5” / 24 x 24 cm. We will resize it based on the placement you choose.","cgXsOC":"The template matches the dimensions of the mug: 9” x 3.5” / 23 x 9 cm.","UwHfOA":"The Trust and Safety team unlaunched your page","hGr77S":"The Trust and Safety team unlaunched your page","Nnne83":["The Trust and Safety team will be contacting you shortly via the email registered to your Patreon page regarding the issues that we've found. If you don't hear from us, please contact us at \u003c0\u003e",["GUIDELINES_EMAIL"],"\u003c/0\u003e.\u003c1\u003eIn the interest of keeping Patreon a safe place for everyone, the Trust and Safety team may apply a temporary suspension to your page if we don't hear from you.\u003c/1\u003e"],"UY+uQ6":"There are different factors that influence how colors appear when printed. While we can’t guarantee 100% color accuracy, we have some tips to ensure your artwork is printed correctly.","+E/xYd":"There has been an error loading the page, please try again.","6CLqAi":["There is a max length of ",["DESC_MAX_LENGTH"]," characters."],"u0bcqB":["There is a max length of ",["TITLE_MAX_LENGTH"]," characters."],"uyNGI+":["There is a max length of ",["TITLE_MAX_LENGTH"]," characters."],"DavpPo":["There is a max length of ",["TITLE_MAX_LENGTH"]," characters."],"KbJKjl":"There isn’t a Discord server associated with your Patreon page. Please disconnect and try connecting again.","BaPt/N":"There was an error adding your address. Please try again in a few minutes.","ouxWzy":"There was an error deleting your address. Please try again in a few minutes.","xp1flI":"There was an error opting out. Please try again in a few minutes.","UJFTAt":"There was an error selecting a different address. Please try again in a few minutes.","udlBXY":"There was an error signing up.","b2x7Yb":"There was an error updating your address. Please try again in a few minutes.","YR8Qm1":"There was an error. Try again.","Nn+Ndz":"There was error verifying your Discord integration. Please try again later.","VSHF3J":"There will be a small band of white on the top and bottom edges of wrapped artwork.","mEYzw7":"There's a problem with your payment","rCX+Z1":"These will appear on the product details page in a square format (1000 x 1000 px).","jKvZLG":"They are misrepresenting themself or impersonating someone","dFhkCn":"They aren’t creating anymore","SJ9ZK5":"They won't be able to see your comments or messages, and you won't see their comments or messages anymore. If you're a creator, they also won't be able to become a member, interact with you and your community, or see your posts. If they're already a member, the membership and any payments will be cancelled.","Sca+0a":"They won’t be able to see your comments or messages, and you won’t see their comments or messages anymore. If you’re a creator, they also won’t be able to become a member, interact with you and your community, or see your posts. If they’re already a member, the membership and any payments will be cancelled.","ksxTcb":"They won’t get notified and will continue to be billed on the 1st, like they always have.","XyImtX":"They'll be able to become a member, interact with you and your community, and see your posts.","k5IuxF":"They’ll be able to become a member, interact with you and your community, and see your posts.","AQo90w":"They’re not fulfilling their rewards","MlcIdn":"This account has blocked you","YMjlk7":"This account has blocked you.","Px9YCB":"This account is fake or is posting spam.","MDP8k0":"This account is fake or is posting spam.","EG8ec5":"This address is associated with a membership. You must select an address to transfer the memberships in order to delete.","SYi3SL":"This affects the taxes your members pay","gVsXp/":"This allows you to keep getting earnings and new paid members in the iOS app.","qDjxb1":"This audio is no longer available","pdetLq":"This campaign is currently under maintenance. Try again in 15 minutes.","jW8SZS":"This change won’t happen until November 2024, which is when Apple will start adding their fees to new memberships started in the iOS app.","OG5zRP":"This chart shows total impressions per day across all posts.","3I3Sxp":"This chat is now visible. You can edit which tiers get access to the chat anytime.","6UM11b":"This chat will become visible after you send the first message. You can edit which tiers get access to the chat anytime.","LPMdb7":"This code can only be discounted down to the \u003c0/\u003e minimum.","f+Gcut":"This collection is currently flagged because it is outside the bounds of our \u003c0\u003eCommunity Guidelines\u003c/0\u003e. Please check your email for additional context.","zAPBkw":"This collection is currently hidden because it is outside the bounds of our \u003c0\u003eCommunity Guidelines\u003c/0\u003e. Please check your email for additional context.","YmjsJD":"This collection uses my image or likeness without my consent","MIGAjz":"This collection violates my copyright or trademark","xU9cci":"This comment has been removed.","IiJtOr":"This community is under review","K1uVtr":"This creator buys, sells or promotes the use of regulated goods","cPRSKL":"This creator has committed violent or criminal activity","H1iFev":"This creator hasn't posted anything yet!","ecZRTM":"This creator is glorifying sexual violence","hvh+ib":"This creator is not being honest","5bS4tA":"This creator is not currently active","CCeMTS":"This creator is violating my copyright or trademark","DoYnWZ":"This creator shares hateful content","wPbm0v":"This creator shares sexually explicit content","mSbP6+":"This creator shares violent or graphic content","8OIL0G":"This creator’s page contains harmful content","nrFRvD":"This creator’s page contains hateful content","ImFgUc":"This creator's page contains implicit or explicit sexualized portrayals of themselves as minors","x/dpnX":"This creator’s page contains sexually explicit content","YQMKeK":"This creator's page contains underage modeling content","DX4ksJ":"This creator’s page contains violent or graphic content","d6+Z4N":"This creator’s page promotes the acquisition or use of regulated goods","CqZyKZ":"This creator’s page uses my copyright or my likeness without my consent","pJDA1H":"This discount code already exists","YajxKV":["This drop is currently hidden because it contains content that doesn't meet our ",["communityGuidelinesLink"],". Please create a new drop."],"6fhm1o":["This drop is hidden because it doesn't meet our ",["communityGuidelinesLinkMd"],"."],"nqYq6D":"This gaiter can be used as a face covering, headband, bandana, wristband, balaclava, and neck warmer","ykexU6":"This gives fans the option to pay annually upfront instead of monthly. Annual memberships often come with a discount and can still help creators earn more over time.","jzPAUG":"This image is no longer available","aSVT54":"This information helps us serve creators better, including things like correctly calculating taxes on their behalf.","nBZyeD":"This is a space for you and your fans to hang out. Choose which tiers get access and make it yours.","qdUWUn":"This is spam","jhYhqI":"This is where you can get your members excited! Be descriptive about the merch you’re offering, and let them know that they’ll receive it after 3 months.","X+NckP":"This item won't be visible until you publish your shop","4yGJQI":"This makes sure members don’t get charged during periods where you’re not posting.","dWN2LN":"This message is too long","LHDNZo":"This month","h3/9ff":"This page failed to load. Please check your internet connection and reload the page.","HBE3zT":"This page has been removed.","O6jlRp":"This page is under review.","tPFubM":"This page uses my image or likeness without my consent","VKUI5b":"This page violates my copyright or trademark","x7r5A7":"This payment method will be removed from your Patreon account.","+8nlYm":"This person filed a chargeback with the intent to receive benefits for free.","/mAP0e":"This person filed a chargeback with the intent to receive benefits for free.","TkaYo2":"This person harassed me or one of my members.","weSSLD":"This person harassed me or one of my patrons.","wqSOVi":"This person is engaging in inappropriate behaviors towards underage users.","G1iRXM":"This person is engaging in inappropriate behaviours towards underage users.","jLeJ65":"This person is underage and is trying to access adult content.","0wS4Ar":"This person is underage and is trying to access adult content.","p15MR2":"This person took content but didn't follow through on their pledge.","/oJBPT":"This person took content but didn't follow through on their pledge.","3Dkkk2":["This post has been flagged because it contains content that doesn't meet our ",["communityGuidelinesLink"],". To keep your post visible, please make changes to it by \u003c0/\u003e."],"1fNi8c":["This post has been flagged because it contains content that doesn't meet our ",["communityGuidelinesLinkMd"],"."],"iuxgJ/":["This post has been flagged because it contains content that doesn't meet our ",["communityGuidelinesLinkMd"],". We're here to help you with what to do next."],"3FysCL":["This post is currently hidden because it contains content that doesn't meet our ",["communityGuidelinesLink"],". Please edit your post to make it visible again."],"/ufrS+":["This post is currently hidden because it doesn't meet our ",["communityGuidelinesLinkMd"],"."],"lru+Ve":["This post is currently hidden because it doesn't meet our ",["communityGuidelinesLinkMd"],". To make this post visible again, please edit it to remove any parts that don't follow these guidelines:"],"NMDfBW":"This post uses my image or likeness without my consent","iv7W5D":"This post violates my copyright or trademark","4G7GeD":"This product has been removed from the creator's shop and is unavailable right now.","XsdgxL":["This product has been temporarily removed from ",["name"],"'s shop. Check back again later."],"mr+feX":"This product is no longer available","H8QOFH":"This product uses my image or likeness without my consent","0mqjeb":"This product violates my copyright or trademark","btdugO":"This product will be made available for purchase.","9dUcnX":"This removes the option for fans to unlock this collection without a membership.\u003c0/\u003e\u003c1/\u003eIt'll still be available to fans who have already purchased it, and to members who have access as a part of their tier.","f9EyZS":"This user has committed violent or criminal activity","BSqyyZ":"This user is not old enough to use Patreon","OERzOu":"This user promotes hateful content","x8OSYm":"This user promotes sexually explicit content","4AiQXS":"This user promotes the acquisition or use of regulated goods","93RVT3":"This user promotes violent or graphic content","cab1Ph":"This user uses my copyright or my likeness without my consent","xSvpZ9":"This user uses my image or likeness without my consent","XxSWM/":"This video has been removed by the creator","TIBJNH":"This will also remove the recommendation from the creator's Patreon.","dcjiIv":"This will appear at the top of your Patreon as a new post. It can be helpful to let your free members know that they're getting exclusive access to a paid post.","KT699h":"This will appear at the top of your profile and replace any previously pinned post. Are you sure?","DBJ4jE":"Thuringia","hnRq97":"Thurrock","wWxv9h":"Tier","0DWxsY":"Tier","pHVqGQ":"Tier","iMvBqp":"Tier","s/A5Wn":"TIER","tvfuUN":"Tier Earnings","JUY7pi":"Tier Filter","BSVLEm":"Tiers","PWtx1+":"TikTok","C/yp5G":"TikTok","rko+sO":"Time cannot be greater than video length","v0yR4n":"Timor-Leste","0Ib+N6":"Title","MHrjPM":"Title","0tc8OS":"Title is required to create a clip.","GqhVxZ":"To","RBRA5Y":"to add images","ZIMQNF":"To be eligible to downgrade, please make the following changes:","c984wM":"To continue, \u003c0\u003eplease enter your legal name.\u003c/0\u003e","KQ4mdx":"To continue, enter the verification code generated by your authenticator app, or your backup recovery code.","3+iaKc":["To continue, please create a new password. Look for the email we sent to \u003c0\u003e",["email"],"\u003c/0\u003e and follow the link to reset your password."],"HmsDJo":"To delete this address, please provide a new address or opt out from receiving physical benefits on the \u003c0\u003eMemberships page\u003c/0\u003e.","WyXphu":["To delete this payment method, please transfer your ",["numPledgesCopy2","plural",{"one":"membership","other":"memberships"}]," to another payment method or delete your ",["numPledgesCopy3","plural",{"one":"membership","other":"memberships"}],"."],"lfjOG8":"To downgrade your plan, please contact \u003c0\u003emerch@patreon.com\u003c/0\u003e","AOIZTO":"To ensure that your image covers the entire area of the neck gaiter, use full-bleed image that spans across the entire dimension of the template, or create artwork that is exactly 19” x 19” / 48.3 x 48.3 cm. If your design only partially covers the print area, use a transparent background and submit the image in PNG format.","8jPWtH":"To fix this issue, please contact the creator directly. If that doesn't work and you want to change or delete your pledge, you can learn how to do that \u003c0\u003ehere\u003c/0\u003e.","4DdTR3":"To get started, make sure you have the following ready","IfdUsw":"To keep your post visible and to see what changes are needed, please edit this post by \u003c0\u003e\u003c1/\u003e\u003c/0\u003e.","rBBiSy":"To learn about the information you shared with Spotify, check out the \u003c0\u003eHelp Center article.\u003c/0\u003e","jyPRZn":"To protect you and your money, we will place a temporary hold from paying out your account balance \u003c0\u003euntil \u003c1/\u003e\u003c/0\u003e.","Ro/twu":"To report copyright infringement, learn how you can submit a DMCA request \u003c0\u003ehere\u003c/0\u003e.","bPh6T4":"To report suspicious activity please submit a request \u003c0\u003ehere\u003c/0\u003e. Our trust and safety team will review your report and take any action necessary.","6qxctQ":"To see what changes are needed to make it visible again, please edit this post.","pDUQfg":"To upload more videos, delete some videos or request more space.","mPNQNo":"Tochigi","I4d3YZ":"Toggle","I+WvCq":"toggle preview/crop mode","dc6UAv":"Togo","tQOvEZ":"Tokelau","NTvI9e":"Tokushima","OOGUvD":"Tokyo","VIH1w2":"Toledo","tK7usx":"Tonga","lwg7Wq":"Tongan Pa'anga","atUIOy":"Too many characters","5sd2E1":"Too many characters","zLj6jc":"Tooltip content","0m7ayL":"Top spenders","LMmVso":"Torbay","UCLlf8":"Torfaen","DeXoNh":"Torfaen","xjzBa2":"total","QME749":"Total","AUVA37":"TOTAL","KSB7jY":"Total due","pKzpy9":"Total value of merch on a tier must be less than a member's 3-month pledge","NwKkzz":"Total withheld funds:","fb0zlS":"Tottori","TO4nJm":"Tower Hamlets","CI8Z6j":"Toyama","+Si9wA":"Trafford","HZk/TB":"Transfer","wE3d1R":"Transfer","iwzAYH":["Transfer ",["numPledges","plural",{"one":"membership","other":"memberships"}]],"WzO/+1":"Transfer fees may occur depending on the payment processor. Funds usually arrive within 3-5 business days.","4PVyHF":"Transfer memberships","bSkTXG":"Transfer memberships","dNtDST":"Transfer went through","gQH93V":["Transfer your ",["pledgesToTransferCount","plural",{"one":"membership","other":"memberships"}]," for ",["nsfwCampaignsList"]," to an existing payment method"],"TdrmdG":["Transfer your ",["pledgesToTransferCount","plural",{"one":"membership","other":"memberships"}]," to an existing payment method"],"ayjURl":"Travel \u0026 Places","bAODHv":["Trial ends ",["nextChargeDateString"]],"SD4b5a":"Tried to change locations too many times. Please try again later.","9l59HO":"Trinidad and Tobago","3P3Svp":"Trinidad/Tobago Dollars","oV5t2m":"Tripura","STzREI":"Try again","+M0fjr":"Try Again","nPuTuc":"Try again later","J76HsR":"Try another payment method","kEo+5R":"Try it now","O+JFJz":"Try it out","ibCNAF":"Try more general keywords.","T6anvl":"Try searching for something else, or:","0X3wxs":"Try searching for something else.","m6IngP":"Tumblr","Tfxp3G":"Tunisia","plAQ//":"Tunisian Dinar","+h7ZyN":"Turkey","B8CnoM":"Turkish Lira","uKc8Rf":"Turkish Old Lira","6d8Hwt":"Turkmenistan","ukKVEH":"Turkmenistan New Manat","kpwE+Q":"Turkmenistan Old Manat","LiHCFt":"Turks and Caicos Islands","h2TOJK":"Turn off","Yw59Lv":"Turn off auto withdrawal","tJd3rR":"Turn off backup payments","0/QrA9":"Turn off comments","98jY0H":"Turn off comments for this Drop?","g5H3xF":"Turn off this notification type","QCdDe4":"Turn on","GGi5nL":"Turn on auto withdrawal","tndy0h":"Turn on backup payments","vux9Kc":"Turn on captions","XTqgv3":"Turn on comments","rvkdS+":"Turn on comments for this Drop?","zrS9SC":"Tutorials and Education","bXRDSs":"Tutorials and Education","Econaq":"Tuvalu","MXwkvF":"Twitch","U8Xq9h":"Twitter","Ul+PKE":"Twitter","BIJeVr":"Twitter","lbygy0":"Two-factor code not recognized. Try again or request a new code.","tpkJhA":"Tyne and Wear","p+0mpr":"Type is required","XfX2YA":["Type or paste ",["category"]," url"],"DjL5+C":["Type or paste ",["category"]," URL"],"TlH6s7":"Tyrone","KPz22D":"U.S. Virgin Islands","QtNTAg":"U.S. Virgin Islands","98cOWz":"U.S. Virgin Islands","KQmnzA":"Uganda","vfTM+6":"Uganda Shilling","AzJ78+":"Uganga Old Shilling","Nc//Od":"Uh-oh. Something is wrong with this token.","nwrboH":"Ukraine","cjdg4o":"Ukraine Hryvnia","DHU7Pn":"Unable to add posts to your collection. Please try again.","JUv4Ig":"Unable to copy link","3ncUL4":"Unable to create collection. Please try again.","pVWXTD":"Unable to embed the media for this post.","NMJ4WB":"Unable to update the order, Please try again!","gG2WdH":"Unable to upload captions. Please try again.","pDBA8x":"Unable to withdraw","bA5W//":"Unauthorized use of image","09ROG9":"Unavailable","aCbgFc":"Unavailable","e+5ceS":"Unavailable purchase","HF1mju":"Unblock","jr03kj":"Unblock","d/OyxF":"Unblock","lrK6yZ":"Unblock","qfWDWx":["Unblock ",["name"]],"0Fl3TK":["Unblock ",["name"]],"NfHhmU":["Unblock ",["nameToShow"],"?"],"umtkRB":"Unblock Person","nygjre":"Unblock this creator","2Q1C8i":"Unblock user","i3GZ9Y":"Under Review","BZtUGN":"Underage modeling content","1crAYh":"Underline","3RI5ln":"Unfortunately, based on the information you submitted, we weren't able to verify your identity. Your page has been disabled and it's no longer visible to anyone.","H3xS0V":"Unfortunately, we weren't able to verify your identity. Please try again. Make sure you're using a valid ID and that all the details are clearly visible.","2Uem+o":"Unfortunately, you cannot reinstate this drop. Please create a new drop.","U1GMsS":"Unisex Premium Hoodie","9D0oYE":"United Arab Emirates","jahMyX":"United Kingdom","i7lSCa":"United States","e6SToR":"United States Minor Outlying Islands","q8M2DA":["Unlike ",["likedName"]],"vOzlFn":"Unlock","0ViDZa":"Unlock a new source of revenue with ease. Simply choose a post or collection, and set a price to get started.","UQAXie":["Unlock the full ",["readableTime"]," video by becoming a member"],"sNB240":["Unlock the full audio (",["readableTime"],"+ ",["readableTimeParsed","plural",{"one":"hour","other":"hours"}],")"],"rIcSgk":["Unlock the full audio (",["readableTime"],"+ ",["readableTimeParsed","plural",{"one":"min","other":"mins"}],")"],"HKTWDf":["Unlock the full audio (",["readableTime"],"+ ",["unitText"],")"],"ykrNmE":"Unlock the full post by becoming a member","xmAXBg":["Unlock the full video (",["readableTime"],"+ ",["readableTimeParsed","plural",{"one":"hour","other":"hours"}],")"],"mcK7Ek":["Unlock the full video (",["readableTime"],"+ ",["readableTimeParsed","plural",{"one":"min","other":"mins"}],")"],"4p2XcV":"Unlock this post","yEaN8S":["Unlock this post from ",["campaignName"]],"shCmcL":"Unlock with a free trial","oogXdr":"Unlock with membership","tSsY94":"Unlocked","dPjqdu":"Unmute person","jwYQAE":"Unpin","O5dcpW":"Unpin post","Nhvhir":"Unpin this post","dbun8s":"Unpublish","CSpDWm":"Unpublish this product?","ejZKhw":"Unpublished","HYWr6Q":"Unpublished","fJXbUs":"Unpublished","+VsOAi":"Unpublished","61z1D5":"Unpublished","KytWk0":"Unpublished product successfully","kEenZ9":"Unpublished products will no longer be available in your shop. Customers who have already purchased this product will still have access to it.","QNSyzH":"Unread","WfVBi0":"until \u003c0/\u003e","i0gqxp":"Upcoming drop","yw6pDc":"Upcoming drops have a release countdown and you can tap \"I'm interested\" to show your interest and get notified right before it goes live.","6HHIyB":"Update","UXK7vv":"Update","hMdFS7":"Update Address","vD5csN":"Update and Retry","DmStl4":"Update Card","I5WVBW":"Update Card and Retry Payment","3rUeav":"Update on your account","W+7iB8":"Update payment method","C3tJ55":"Update Payoneer Account","APZnkQ":"Update post to submit for review","mG2tr4":"Update your password","S6Y+EQ":"Update your payment method","QYeWVG":"Update your payment method","nw3DYG":["Updated on ",["displayDate"]],"VZ7RpV":"Updated Requirements for 18+ creators","1ZGOrr":"Updates and reminders about my eligibility for Merch by Patreon","xAjH6u":"Updates on top posts from this creator.","vo1fJF":"Upgrade","9zCNRJ":"Upgrade","TCyDJy":"Upgrade","KdKu5s":"Upgrade","ivlDXQ":"Upgrade","G2JUut":"Upgrade membership","XT0hwM":"Upgrade Now","VhnAVk":"Upgrade options","9akhMg":["Upgrade to ",["planName"]," Plan"],"/k0iIi":"Upgrade to access exclusive benefits.","CBxm/2":"Upgrade to add a comment.","MOMaNf":"Upgrade to comment","ioGy65":"Upgrade to paid","5KyQHr":"Upgrade to Pro","bI9VyR":"Upgrade to unlock","/gh9RX":"Upgrade to unlock","+DAwqj":"Upgrade to unlock","gyRSvf":"Upgrade your membership and get access to exclusive benefits.","BXbDHT":"Upgrade your membership or buy this post to unlock it.","wnJRJP":"Upload","GKXwrB":"Upload","q7Q2iB":"Upload a file","equLqk":["Upload a JPEG or PNG file with at least ",["minDpi"]," DPI"],"O3C/0N":"Upload artwork","eKZ6/0":"Upload Artwork","/4q0rZ":"Upload failed. Try again.","iLDVHD":"Upload file","jP/b3i":"Upload file","qsmmuy":"Upload image","KhjHGR":"Upload message image","zT59AD":"Upload new cover photo.","14M35q":"Upload new profile photo.","/HKKl+":"Upload video and generate custom previews, set up exclusive podcast feeds, gather in-depth analytics and insights, and more.","loHkb1":"Uploaded art","yrCVjy":"Uploading videos to Patreon is currently only available to creators with early access. \u003c0\u003eLearn more\u003c/0\u003e","IagCbF":"URL","LEObcs":"Uruguay","+yHyt6":"Uruguayan Old Peso","q0ScdT":"Uruguayan Peso","SgOAer":"US Dollars","MelLxR":"US sizes (IN)","UrBE9N":"Use","n1GtGL":"Use a full-bleed image or all-over pattern","G5k6Ts":"Use another payment method for your memberships?","nKC8jl":"Use contrasting art colors and product color","S2H2vt":"Use our template for a wrapped image","ec9UDY":"Use the sRGB color profile","V669Bc":"Use this address for:","aU5KWJ":"Use this payment method for other memberships?","388UCC":"User posted image","SMZ5cs":"Using dark colors on dark products or bright colors on brightly colored products may not print well, even if it looks ok in the preview. For best results, use art colors that contrast with the color of the product you’re designing. To verify color accuracy, we suggest ordering a sample to see exactly how your design will print.","dYbfqZ":"Using emergency services to target an individual or group (ex: SWATting)","l7jIsv":"Using Patreon to fund political campaigns","aWpHkE":"Using Patreon to fund weapons or military activity","P+7uEw":"Utah","1tAC6B":"Utah","B/n/ls":"Utd. Arab Emir. Dirham","9enZ25":"Uttar Pradesh","U8m+gD":"Uttarakhand","/5Rb6S":"Uusimaa","RSaZ3Q":"Uzbekistan","SBSJLP":"Uzbekistan Som","9ZGmHa":"Vale of Glamorgan","jjO+7G":"Vale Of Glamorgan","KOwQU7":"Valencia","ECr2h0":"Valladolid","ogJhv0":"Vanuatu","BAUNex":"Vanuatu Vatu","aZFFeE":"VAT","xewrrG":"VAT/GST ID","V8X06r":"Vatican City","kSim8P":"Venezuela","Umfc+D":"Venezuelan Bolivar","ZrOIKu":"Venezuelan Bolivar Fuerte","2CV3BE":"Venezuelan Bolivar Soberano","PbluFM":"Venmo does not support non-USD currencies. Please select another payment method or edit your USD pledge individually to use Venmo","2WR/bI":"Verification Code","w0/dyl":"Verify","XddVdJ":"Verify email","oMEQNe":"Verify email","nS+i1p":"Verify email address","rC7w3d":"Verify payment method","TG5Hnj":"Verify phone number","fOVfY4":"Verify your account","45V9sF":"Verify your email","blPK1f":"Verify your email to chat about this drop.","VCLrC9":"Verify your identity","nWoqwJ":"Verify your identity","Y7B6pA":"Verify Your Identity","Qb4WQK":"Verify your phone number to enable charge up front","szBEpz":"Verify your phone number to enable two-factor authentication","UatGPE":"Vermont","hYkLiY":"Vermont","mX/isJ":"Vertical","poIDsC":"Vertical fit","vTZl4B":"Victoria","yWAT8D":"video","Uf+O5V":"Video","BUF5yY":"Video","3L++j4":"Video","e+sSg6":"Video","KxFMJI":"Video","65SGLK":"Video","rnZjQw":"Video","hrQmp5":["Video ",["count"]],"Dy13Eh":"Video and attachments","TmTTHO":"Video captions","ovUqCE":"Video Creators","SpzU7X":"Video Creators","y8IiRA":"Video not ready yet?","GZN6BW":"Video preview","4l5kWA":"Video previews will be available after you save","awAWQr":"Video Status","UyrvYc":"Video Storage","kwMZY8":"Video tutorials \u0026 lessons","42zmgl":"Video upload guidelines","LXi6L8":"Video URL","G07THT":"Video web link","cCG/Ob":"Vietnam","kaYOtl":"Vietnamese Dong","GDWcKB":"View","Wty6wg":"View all","vR0aHI":"View All","nljLVz":"View all products","xogwT/":"View Chat Details","MASMAh":"View comments","rMYVSK":"View details","JFjxbb":"View Details","by+6zx":["View drafts ",["draftCountText"]],"gmo89N":"View fees","m+KYLg":"View full size","Of5w9Z":"View help center","k2g9Sk":"View now","NYrAOh":"View on audience manager","kpN85P":"View page","PPfOaM":"View post","65r5i1":"View post","DuQcmC":"View profile","BOrdzx":"View published products","u0ChS5":"View shop","e0cZEj":"View Shop","OO0RKw":"View Status Updates","2eh65a":"View this and \u003c0/\u003e other exclusive posts","+Ix8FI":["View this and other exclusive posts from ",["campaignName"]],"BcJ7DU":"View unpublished products","aer8Mz":"VIEWING AS","y3EAwj":"Viewing as:","l4xI/J":"Viewing as: Member","Apn4PM":"Viewing as: Public","ChABkb":"Viewing as: Public (your waitlist)","vyC0G/":"Viewing as: Purchased","3zKqHn":"Vimeo","RDXsF1":"Violence against animals or animal suffering","hu9SYj":"Violence against humans or human suffering","fG0Wk2":"Violent and Graphic Works","cleRgb":"Violent or criminal activity","KSm7Cb":"Violent or graphic content","RpYejG":"Violent, criminal and hateful organizations","VTS47C":"Virginia","U69H0M":"Virginia","r0nzCY":"Visit our \u003c0/\u003e to learn more about identity verification, what documents we accept, and how we protect your personal information.","x/A8bp":"Visit Patreon's Help Center","HeQ4MJ":"Visual Artists","jkzAue":"Visual Artists","cbMBSN":"Vizcaya","hSt8bV":"Wait","ALshO0":"Wakayama","y7Fim5":"Wakefield","jCR4G/":"Wales","VgOgqc":"Wallis and Futuna","f0aZIk":"Walsall","ZaqNA3":"Waltham Forest","+LPnVB":"Wandsworth","gpXtez":"Want to upload later?","tYpAgL":"Warrington","N2g+XG":"Warwickshire","CAv/rW":"Warwickshire","8MnQtR":"Washington","cdw4am":"Washington","m84Ox6":"Watch again","PYcKoW":"Watch livestream","2LpN+L":"Watch now","tKAOiP":"Watch the livestream","30+Y0Y":"Watch the videos you love from anywhere.","6ghQsd":"Watch videos ad-free","MBOKCi":"Ways to grow","kbW9h3":"We are building tools for creators to understand potential tax obligations and part of that effort requires that we know your location to determine what taxes might apply.","Q86sGB":"We are currently processing pledges","ubckny":"We are currently processing pledges on Patreon.","3/MFJa":"We are unable to edit or cancel the membership because you do not have an active membership with this creator.","u+EptC":"We can't find the page you're looking for. Check your internet connection, refresh the page or try again later.","Lv/0Uf":"We couldn't find any pages linked to your Facebook account.","ow8kT3":"We couldn't load the audio player! Please try a different browser.","FMJuXi":"We couldn't verify your address. Please make sure it's correct before confirming.","ur6u25":"We don't allow Patreon to be used to fund political campaigns.","qTvK8i":"We don't allow Patreon to be used to fund weapons or military activity.","kipO/W":"We encountered a problem when uploading your file. Please remove it and retry the upload.","r804K+":"We had some trouble deleting this payment method.","oCS4FN":"We had some trouble transfering your memberships.","nCZ089":"We had some trouble updating your card. Please check you entered the correct information","j61jHx":"We had some trouble updating your card. Please check you entered the correct information","IyqJGs":"We have automatically set prices in other currencies based on Patreon's forecasted exchange rates table. This is what your members from these locations will see.","jp43jk":"We have detected language in this post that may be outside of our \u003c0\u003ecommunity guidelines\u003c/0\u003e (pornographic content). If you believe that this is not the case, you can continue to post it. The post may be reviewed by our Trust \u0026 Safety team. \u003c1\u003eWhy am I seeing this?\u003c/1\u003e","HCTYih":"We have detected language in this post that may be outside of our \u003c0\u003ecommunity guidelines\u003c/0\u003e. Patreon doesn't allow the featuring of seemingly underage characters in the context of adult content. If you believe that this is not the case, you can continue to post it. The post may be reviewed by our Trust \u0026 Safety team. \u003c1\u003eWhy am I seeing this?\u003c/1\u003e","za0hKl":["We just sent a code to ",["email"]],"+2ElXp":"We just sent an text message authentication code to the phone number you provided","A9vEuR":["We just sent an text message authentication code to your phone number ending in ",["phoneNumberLastThree"]],"RaGdep":["We know how important it is to get answers as soon as possible. We'll send a reply to \u003c0\u003e",["creatorEmail"],"\u003c/0\u003e within 2 business days."],"fuS5aP":"We know this is a big change, so you can choose when you want to switch. We’ll switch you automatically if you haven’t made a choice by November.","B8so42":"We may need to pause your payouts and transfers until we confirm that you're over 18.","QTO95A":"We recommend a \u003c0\u003etier price of \u003c/0\u003e\u003c1\u003e\u003c2/\u003e\u003c/1\u003e. The minimum tier price is \u003c3/\u003e. \u003c4\u003eLearn more\u003c/4\u003e.","nkYVAT":"We recommend you create your artwork in PSD, TIFF, AI, or other high resolution format, and then save as a JPEG or PNG.","hljRJB":["We sent a verification email to ",["email"],"."],"QhKEfV":["We suggest using our \u003c0\u003e\u003c1\u003etemplate\u003c/1\u003e\u003c/0\u003e to ensure your artwork prints exactly as you want it to. ",["templateInfo"]],"WD7atG":["We use this for purposes like tax and payout, and it's never shown publicly. ",["legalNameLearnMore"]],"y3OhfW":"We were not able to process your card.","dDMKc3":"We will deduct the cost of merch from your account at the time that items are shipped to your members. \u003c0\u003eLearn more\u003c/0\u003e","yb85It":"We’d love to transfer your account balance to your bank, but the pay out method you’d provided has failed. We recommend navigating to your \u003c0\u003epayout preferences\u003c/0\u003e to ensure you’ve entered a valid checking or Paypal account.","eXeQmF":"We’ll add a white border around the edge of your image(s) to ensure that nothing is cut off.","w+Hbsv":"We’ll help you make sure members pay approximately the same","N1ZL4v":"We'll let you know when we've finished reviewing your photos — it should only take a few more minutes. If you need help or have any issues in the meantime, you can reply to our most recent email or contact us via the \u003c0/\u003e.","82xsi9":"We'll never post on your behalf.","MGGlfm":"We’ll send a verification code to this number. Standard messaging fees may apply.","Pl9Yd9":"We’ll work with you to help make sure people pay approximately the same per month after you switch.","Ci58rI":"We’re almost done processing your payments and recommend waiting for them to fully process before transferring to your account. This typically takes 12-24 hours.","lXK6Rk":"We’re hard at work processing your payments, which means you might notice these numbers fluctuate over the next 48 hours. We know you’re excited (we are too!), but please sit tight as we process your payments fully before relying on these numbers as your monthly earnings. These numbers may change throughout the month, but don’t worry, that’s just us working in the background retrying any declined payments.","jxOJlv":["We're having trouble processing the ",["translatedPaymentMethodType"]," you use to pay for this membership. To make changes to this pledge, we need to fix this issue."],"MeJkXP":"We’re here to help! Email \u003c0\u003emerch@patreon.com\u003c/0\u003e and we can answer any of your merch design questions.","dTDynx":"We're required to verify that all creators sharing sexually explicit content or content that includes nudity are at least 18 years old. To help us do this, please submit a photo of yourself and a photo of a government-issued ID (e.g. a passport or driver's license).","s0q6f+":"We’re sorry, but we are unable to add cards at this time.","HY6W6n":"We’re sorry, but we were unable to add your card at this time. Please try again.","bdVc/0":"We’re sorry, but we were unable to add your card at this time. Please try again.","0F9ob7":"We've detected that you’re using a mobile browser that may have issues editing text.","5HBCAJ":"We’ve helped many creators successfully make the switch without any impact on their earnings.","1REyRS":"We’ve initiated a payout advance this month, providing earnings from unprocessed pledges before payment processing completed. Due to the payout advance, you may see a negative balance. As we continue to process your member pledges and run our retry process, you will see your balance return to normal.","ziApyf":"We've temporarily restricted your account and you won't be able to withdraw or transfer payouts until you verify your identity.","xHyV8B":"Weapons","y+bHk0":"Web/Android","HWdwIP":"Web/Android","kBJWCr":"Welcome back","ABJziL":["Welcome to ",["campaignName"]],"5t5gJi":"Welcome to community chats, a place where creators and members can chat and connect. Anyone who joins a chat can see the full history and whenever you join any chat, others with access will be able to see that you’ve joined.\u003c0/\u003e\u003c1/\u003ePatreon’s \u003c2\u003eCommunity Guidelines\u003c/2\u003e apply to all community spaces. To keep chats safe and friendly, please:\u003c3\u003e\u003c4\u003eBe kind and welcoming\u003c/4\u003e\u003c5\u003eAlways be respectful\u003c/5\u003e\u003c6\u003eDon’t spam\u003c/6\u003e\u003c7\u003eDon’t share private or personal info\u003c/7\u003e\u003c/3\u003e","i5iaYJ":"Welcome to my chat 🎉","gZt0y4":"Welcome your members","QyzJYU":"Welcome! As a free member, you'll get updates on public and free exclusive posts.","2HrgaK":"Welcome! As a free member, you'll get updates on public posts.","6RIXFJ":"West Bengal","iDM/h9":"West Berkshire","3+SnuQ":"West Berkshire","tTLCQs":"West Dunbartonshire","AOEfub":"West Dunbartonshire","Plb20C":"West Glamorgan","CsEkD9":"West Lothian","1vdthO":"West Lothian","ZclSkF":"West Midlands","fVckhv":"West Sussex","yzgQrt":"West Sussex","jCoagX":"West Virginia","JV077N":"West Virginia","Uc6gzV":"West Yorkshire","AZGgAK":"Western Australia","kvbvNZ":"Western Isles","57d/Uq":"Western Sahara","bq3Lqx":"Westminster","s2XSCF":"What are pixels?","r3+N3z":"What are you looking forward to the most?","dy6ftU":"What are you reporting this creator for?","Xi6zQS":"What do you want to report?","oc8l3x":"What happens when you switch","Kvpl2l":"What is DPI?","Xj05L3":"What is inauthentic about this product?","sNPNjA":"What is Patreon?","F+QrMA":"What issue do you want to report?","ppmKsk":"What members see","PKdhVn":"What should we call you?","1tyfRf":"What to expect with subscription billing","9pZAUM":"What type of harmful content do you want to report?","PlGT53":"What type of hateful content do you want to report?","lQyb+R":"What type of regulated content does this creator offer or promote?","ZGtqvM":"What type of sexually explicit content do you want to report?","GQjGov":"What type of violent or graphic content do you want to report?","QUOnKe":"What you need to know","zaM+u7":["When ",["creatorName"]," sends you a message"],"qf4HFv":["When a new merch benefit is added by ",["creatorName"]],"zsr+Sm":"When they do, you'll see it here first.","fRjiSe":"When this creator recommends other creators","9owwqF":"When you add a post, it'll show up here","7kRbTi":"When you add or change your payout method, we place a temporary hold on your ability to pay out your earnings. You will be able to pay out your account balance \u003c0\u003eon \u003c1/\u003e\u003c/0\u003e.","Uka3de":"When you create a collection, it'll show up here","6Rzex2":"When you have access to chats, you can create them here.","glY794":"When you have access to chats, you'll see them here.","RLLhrK":"When you have new chats from creators, you'll see them here.","KfaeMt":"When you launch we review your content. Reviews usually take minutes, although some content takes up to 3 days to review. You can continue editing your page after you launch.","ClvvvH":"When you recommend a creator, they'll get notified and can recommend you back. Start by picking your favorite creators in the Recommendations tab.","KHbP59":"When you save your changes, your post will be updated and sent for review. We'll let you know within 2-3 business days if it's approved. If you think this was a mistake or if you need help, contact us to talk to someone on our team.","dKzsLT":"Where members go to use the code","SkQoYt":"Where should we look?","YjBXBm":"Who can access this chat?","bpU+QV":"Why are you reporting this collection?","BDBWHo":"Why are you reporting this comment?","qjOWw3":"Why are you reporting this content?","LOGC1x":"Why are you reporting this creator?","6gRAnU":"Why are you reporting this message?","N82oX6":"Why are you reporting this product?","WWldll":"Why are you reporting this user?","A+thhk":"Wigan","+qG4D4":"Wiltshire","zKov+3":"Wiltshire","Q0YKXW":"Windsor and Maidenhead","MdHvhV":"Wirral","rXJmge":"Wirral","IAKQDj":"Wisconsin","gr+/JF":"Wisconsin","e167u0":"With auto withdrawal, your funds will be automatically transferred on the 5th of the month. Transfer fees may occur depending on the payment processor. Funds usually arrive within 3-5 business days.","YgiRq8":"With free trials, new members can still join without paying upfront","OS8BXt":"With recommendations, fans can discover more creators. Start by choosing creators on the Recommendations tab. They'll be notified and can recommend you to their fans too.","MS7bYM":"Withdraw","HIcqM6":"Withdraw Account Balance","yYfJ7c":"Withdrawal amount","qdiUM+":"Withdrawal failed","Sk7C90":"Withdrawal in progress","X6Blmz":"Withdrawal successful","uBa3D/":"Wokingham","0G+R/j":"Wolverhampton","R4xvKt":"Woohoo! You got paid! Funds usually arrive within 3-5 business days.","GavfW8":"Worcestershire","1yR6Hc":"Worcestershire","dIzRaR":"Work-in-progress updates (delivered by mail)","phHStP":"Work-in-progress updates (digital)","/XGRto":"Works glorifying the infliction or aftermath of physical, emotional, psychological or sexual harm on an animal or animals leading to suffering, pain, or death are not permitted on Patreon.","z6W633":"Works glorifying the infliction or aftermath of physical, emotional, psychological, or sexual harm on a person or group leading to suffering, pain, or death are not permitted on Patreon.","cyUzOe":"Works related to sex tourism, or the practice of individuals traveling to a foreign destination with the primary purpose of engaging in sexual activities, is not permitted on Patreon. This includes advice on how to locate sex workers in a particular location or funding forums for sex tourism enthusiasts to share their experiences.","J88BWj":"Works that feature bestiality, which refers to sexual activities or relationships involving humans and animals, are not permitted on Patreon. Depicting or glorifying animal genitals are also not permitted.","g0Dhz8":"Works that praise, support, or represent armed militias or other groups that are actively involved in conflict, military training, the procurement of military equipment, or individual perpetuators of mass violence, are not permitted on Patreon.","912R0B":"Works that praise, support, or represent current or historical groups organized to promote ideologies including, but not limited to anti-LGBTQ, anti-Muslim, antisemitism, fascism, male supremacy, white nationalism, or white supremacy, are not permitted on Patreon.","qibgPf":"Works that praise, support, or represent groups or associates engaged in criminal activity or enterprises including, but not limited to violent crimes, kidnapping, trafficking, or financial crimes, are not permitted on Patreon.","bqhZBZ":"Works that praise, support, or represent non-state actors that commit, advocate for, or support acts of violence against civilians for political, religious, or ideological aims, are not permitted on Patreon.","P+Mxf/":"Wrapped","8R+z0O":"Wrapped print area expanded","FrM/A7":"Wrexham","iHz7AY":"Wrexham","0OQePQ":"Write a message...","/uBPLJ":"Write a reply...","z2GOal":"Writers \u0026 Journalists","Dverrh":"Writers \u0026 Journalists","GsMnrx":"Writing","6mniwF":"Wyoming","mP2dbA":"Wyoming","y0PiLB":"Yamagata","LT9cdV":"Yamaguchi","D10G5E":"Yamanashi","iw9uBW":"Yemen","Kh1NML":"Yemen Rial","LmcQrU":"Yes, I am 18 or older","53NVJO":"Yes, you can easily cancel or upgrade your pledge at any time!","m7x0bE":"Yesterday","4R5V5n":"York","aV1sVT":"York","4O70io":"You already have a collection with this name. Please try another name.","i1XAMP":"You are in the middle of migrating your currency. Please finish the process before adding a payout method.","jtif19":"You are now on Pro","/+WsYa":["You are sending a private message to ",["numRecipients","plural",{"one":"1 member","other":["#"," members"]}]," separately. Every conversation is private."],"V3RfyB":["You blocked ",["blockedUserName"]],"LWQ6y1":"You can also \u003c0\u003e\u003c1\u003edelete\u003c/1\u003e\u003c/0\u003e this post instead to resolve this issue.","FM9VF/":"You can also make this post member-only to resolve the issue.","o2hZ3A":"You can choose to fill the mini print entirely with your design, or fit it vertically. Your artwork will be fit to the maximum length or width depending on the dimensions of your original file, and which placement you select.","c0aMBr":"You can choose to fill the poster entirely with your design, or fit it vertically or horizontally. Your artwork will be fit to the maximum length or width depending on the dimensions of your original file, and which placement you select.","r/41KX":"You can choose to wrap our design around the mug, or centered on one side. The design will be printed so that it is displayed outward when held in your right hand.","0hfuaw":"You can choose when you’d like to switch to subscription billing","EW3Rj8":"You can continue using Patreon to pay out or withdraw funds. Please note that Mastercard and Visa's participant consent requirements apply only to Adult/18+ creators whose content is visual in nature (e.g. photography and videos) and feature real people.","3L6bex":"You can create a sheet with multiple stickers by leaving at least 0.25” / 0.63 cm between each object. This will ensure that there is enough room to add the white border and cut out each image separately. You can also create cutouts within shapes by ensuring that the cutout area is transparent and has at least 0.25” / 0.63 cm around the edge for the border.","ubhsTS":"You can disconnect your social links at any time. We'll never post on your behalf.","sGWwlC":"You can leave it to us to decide the tiers and discount amount or you can set your own.","/mK0Gm":"You can now charge new members monthly on the same date they joined, instead of the 1st of the month.","bp2hIS":"You can now charge new members when they join, and then monthly on that same date.","ZAeuL/":"You can now easily bulk edit past posts in the new Library tab. Try editing tier access, updating tags, or simply deleting past posts.","3o3pPD":"You can now make edits to your membership","B6zizP":"You can now review and remove reported messages. Others in the chat will now see a moderator badge next to your name. You can choose to stop being a moderator anytime.","T7fhcw":"You can now upload videos directly to Patreon and easily create video previews.","OElxCY":["You can only add up to ",["limit"]," recommendations while this feature is in beta."],"tixO0g":"You can pause subscriptions on months when you don’t post","hBciXE":"You can pledge when this page launches","QNH8BL":"You can update your choice at any time in \u003c0\u003ebilling settings\u003c/0\u003e","GTECRq":"You can update your choice at any time in settings.","ZvNpey":"You can upload custom captions that will appear alongside the auto-generated ones.","u+PniJ":["You can withdraw your balance anytime after ",["withdrawTimeString"],". \u003c0\u003eLearn more\u003c/0\u003e"],"fuk6L+":"You can't make changes to your pledge because you have a pending retry. Pending payments typically take about 7 business days to settle. You’ll be able to change your pledge once this payment is settled.","WI/zPd":"You can’t publish a product before the account owner accepts terms of use. Please ask the account owner to accept the Terms of Use before trying again.","7NKJ3d":["You can't upload more than ",["maxFileCount"]," images."],"35R1OO":"You can't upload more than 1 video.","87P6IJ":"You can't upload more than 2 audio files.","tFTBx9":"You can't upload more than 25 files.","uOtNRd":["You currently have \u003c0\u003e",["length","plural",{"one":["#"," campaign"],"other":["#"," campaigns"]}],"\u003c/0\u003e associated with this address."],"Qad3sv":["You currently have \u003c0\u003e",["numPledges"]," active ",["numPledgesCopy1","plural",{"one":"membership","other":"memberships"}],"\u003c/0\u003e on this payment method."],"NXLubl":"You currently have a pending payment for this membership. Please refresh the page and try again later.","W7B8p/":"You do not have permission to edit this resource.","x1mtdp":"You don’t have any post tags to feature yet.","kCzjzd":"You don’t have any valid payment methods to transfer to.","HLQt62":"You don't need to delete this post, but to keep it visible to your members, please edit it to remove any parts that don't follow these guidelines by \u003c0\u003e\u003c1/\u003e\u003c/0\u003e.","bp1mGU":"You have blocked this account","bMy/hU":"You have early access to Autopilot!","DbS3uG":"You have early access to sell new and existing posts or collections for anyone to purchase.","UZXM3x":["You have up to ",["outstandingMerchDeliverablesCount","plural",{"one":"one merch item","other":["#"," merch items"]}]," that are waiting to be delivered. Because the merch you offer is funded from your balance, withdrawing your balance can delay merch shipments. Merch orders are processed starting on the 2nd of every month. If you withdraw your entire balance on the 1st, there is a risk that you could delay a merch shipment until more funds arrive. Are you sure you want to continue to withdraw?"],"+zSMs6":"You haven’t added any featured tags yet.","hhCUjz":"You haven’t featured any tags.\u003c0\u003eLearn how to add feature tags.\u003c/0\u003e","64wNK6":"You haven't posted anything yet!","sbRQc1":"You may not add a loyalty program to a tier that already has merch","yaDaFs":"You may not add merch to a tier that already has a loyalty program","8XUY7y":["You may not downgrade until you delete all merch benefits. You currently have ",["count"],"."],"r73tt7":"You may not downgrade until you disconnect the following apps, if installed: Discord, Crowdcast","tUe6Rf":["You may not downgrade until you remove all but ",["newValue"]," other teammates. You currently have ",["currentTeammates"],"."],"zX2TXl":"You may not downgrade until you remove all other teammates","GqC79j":"You may not turn on annual plans for a non-charge upfront campaign","zH7ire":"You may not turn on annual plans for a non-monthly campaign","SsPfKE":"You may not turn on merch for a blocked campaign","Z+TRe9":"You may not turn on merch for a campaign not in good standing","RrajTz":"You may not turn on merch for a frozen campaign","PYPTZ8":"You may not turn on merch for a member-only account","d2LHOZ":"You may not turn on merch for a non-monthly campaign.","Bydrqp":"You may not turn on merch for a non-USD campaign.","pR7vmG":"You might like","kuB4kc":"You must add a new address before saving.","+pF94K":"You must be 18+ to view this content","qSJKOV":"You must delete your custom color","P3R1nt":"You must make a change before updating your address","KMKS7P":"You must make your campaign earnings public","mekq6F":"You must make your campaign member count public","fVOI+d":"You need to accept the terms of service.","p4/0ED":"You need to accept the terms of service.","DxNe2X":"You need to add a description for your product.","L38plW":"You need to add a name for your product.","SAqj/Y":"You need to add at least 1 image.","K1Qhhu":"You need to set a price for your product.","yolKWx":"You need to upload a product file before you can publish.","sBDz/V":"You need to verify your email before you can launch your page.","x7S4h6":"You need to verify your email to add a comment.","1gA6lN":"You recently migrated your currency. Please update your settings with Payoneer.","KdGeYC":"You removed this product from your shop.","Ewbuq+":"You will be able to message again in \u003c0/\u003e","LB+3Lj":"You will earn approximately the same on transactions across all platforms.","Doj1L6":"You will earn less on transactions made in the iOS app.","Du1vmt":"You will no longer have access to Benefits, and some dashboards (Membership, Posts, Engagement, and Exit Surveys), Tiers and Special Offers","rloe+I":"You will no longer have access to Benefits, Tiers, Special Offers and some dashboards (Membership, Posts, Engagement, and Exit Surveys),","vVnRdC":"You will no longer have access to Merch for Membership and no Merch items will be fulfilled","JRxHtH":"You will receive this offer as an existing member.","ePBPGR":"You won’t be able to comment or send messages until you resolve this issue.","KxBOmY":"You'll be notified when it's ready. It can take several minutes to create your clip. You can close this dialog.","AtbFUk":"You'll be notified when it's ready. This may take several minutes.","cvpyhI":"You’ll can offer free trials so fans can continue to join with a free period at the start of their membership.","pmguTn":"You’ll continue to get your earnings the same way you do now and your Patreon fees will also stay the same.","vEhqZL":"You'll get email updates and access to posts only available to free members.","UjNVIe":"You’ll have until the end of 2025 to switch, but people won’t be able to become paid members in the iOS app starting November 2024.","oDM7tw":"You'll need at least one address on file as default for your pledges that require a shippable address.","X77YaB":"You’ll need to add a role to your Discord server and refresh this page in order to provide this benefit to your members.","QtaZAU":"You’ll see the following changes upon downgrading:","b+yIYn":"You'll see when other members join the drop and they'll see you, so you can experience it together.","90l+eV":"You’ll still be able to get payouts in one lump sum and there will be no changes to your Patreon fees.","N0hGXv":"You’ll still get your payouts the same way you do now","o7/o8i":"You're all caught up!","6nRY4b":"You're all set to use Patreon again! Your account has been restored, and the photos you submitted are securely stored to protect your information. Patreon will never publicly share or sell this personal information.","m4apn4":"You're all set to use Patreon again! Your account has been restored. The photos you submitted are securely stored to protect your information. Patreon will never publicly share or sell this personal information.","E6mNhl":"You're all set! The photos you submitted are securely stored to protect your information. Patreon will never publicly share or sell this personal information.","M/REf/":"You're almost there! Complete your page and take it live.","pxZVhO":["You’re already using these roles for another Patreon page: ",["roleList"],". Please select another role to continue, or unlink these roles from your other page."],"oN4DM5":["You're close to the current storage limit of ",["uploadHoursAllowed"]," hours for videos. You can request more space at no additional cost or delete some videos."],"LC8Eq9":"You're currently not eligible to upload videos directly to Patreon. Upgrade to the \u003c0\u003ePro\u003c/0\u003e or \u003c1\u003ePremium\u003c/1\u003e plan to get access. \u003c2\u003eLearn more\u003c/2\u003e","NBnWz5":"You're eligible to upload videos directly to Patreon! Learn more about \u003c0\u003evideos on Patreon\u003c/0\u003e","wxxk0t":"You're now a free member!","OEdwNA":"You're now using backup payments","JOQTZR":"You're using backup payments on your account. New payment methods will also be added as backup methods.","ERBxzi":"You've added all your posts to this collection already.","Ixupl4":"You've already applied","pqf9qS":"You've already created a clip of this post. Do you want to change it to the","LgDJvA":"You’ve blocked this account.","iZQCQi":"You've blocked this user.","ohXarA":"You've meen muted","lKKWeE":["You've muted ",["userNameToMute"]," for 24 hours"],"C0P+pc":"You've reached the message limit.","DUJ1w7":"You've reached your comment limit. Try again later.","R7Hs2C":"You’ve successfully paid out!","HLSw/V":["You've unmuted ",["userNameToMute"]],"LIo9pZ":["You've used ",["uploadedInHours"]," hours of storage space, out of ",["uploadHoursAllowed"]," total hours available. You can request more space at no additional cost when you have less than ",["requestThresholdHours"]," hours of space left."],"WfEhrE":["Your ",["length","plural",{"one":"payment","other":"payments"}]," to \u003c0/\u003e didn't go through."],"xTcW2Z":"Your access has been disabled and you can no longer upload videos directly to Patreon. \u003c0\u003eLearn more\u003c/0\u003e","C1huje":"Your account has been suspended","tG+8b2":"Your artwork should be at least 150 DPI, and in JPG or PNG format.","1hyqn6":"Your artwork should be at least 150 DPI, in JPG or PNG format.","KJLrFO":"Your artwork should be at least 300 DPI, and in JPG or PNG format.","uE/onq":"Your artwork should be at least 300 DPI, in PNG format.","rmc/Cu":"Your artwork will be printed within the max height and width of the design placement area. Your artwork will be fit to the maximum length or width depending on the dimensions of your original file, and which size you select.","+RVaAM":"Your audio file needs to finish uploading before you can publish","O6bxLa":"Your card can't be added right now. Please try again later.","8Rkeok":"Your card can't be updated right now. Please try again later.","m8mh6R":"Your card can't be verified right now. Please try again later.","2iYfro":"Your card could not be verified. Please contact your bank to learn more.","UIfNRT":"Your chat is now open!","Y4ZRPw":"Your clip is being created","VBKeBt":"Your collection is listed for sale!","vHSbsv":"Your creator balance is on hold while our Trust \u0026 Safety team review your account. \u003c0\u003eLearn more\u003c/0\u003e","auGZ6R":["Your creator balance is on hold. We place a temporary hold on paying out funds from the date of receiving your first payment or from the date of adding a new payout method to ensure we are providing a safe platform for all users. You will be able to pay out your account balance on ",["withdrawTimeString"],". \u003c0\u003eLearn more\u003c/0\u003e"],"vZNLXA":"Your Currency","oVViae":"Your current reward","R1t8Gt":"Your dedicated support keeps this work going","OEjc4H":["Your description is too long. Please shorten it to ",["MAX_DESCRIPTION_LENGTH"]," characters or less."],"uABEUr":"Your drop will go live on \u003c0/\u003e","XWqvIA":"Your fans can chat in real-time during a drop. You can join the conversation as well if you'd like.","W59tFI":"Your fee will decrease from \u003c0/\u003e to \u003c1/\u003e","e0IFQY":"Your first product is ready!","OAAwDy":"Your free members","hs7Q3D":["Your gifted membership will expire on \u003c0/\u003e. Extend your membership to keep your access to ",["creatorName"],"'s Patreon."],"sEp0hL":"Your image couldn't be uploaded. Please try again.","+4nWlg":"Your image needs to finish uploading before you can publish","s2ZW2B":"Your iOS app pricing options","b9TfWd":"Your iOS pricing has been set","pk/Qz8":"Your member since \u003c0/\u003e","gkAWhv":"Your membership","kGtiyT":"Your membership is currently pending","o3wQJP":"Your name and responses will be shared with the creator.","4ar6VG":"Your page","f8itZW":"Your page","BYCvvV":"Your page has been suspended because because you have not followed our \u003c0\u003eCommunity Guidelines\u003c/0\u003e.","gzG7ml":"Your page has been suspended because it isn't following our \u003c0\u003eCommunity Guidelines\u003c/0\u003e or \u003c1\u003eTerms of Use\u003c/1\u003e.","JubP1N":"Your page has been temporarily suspended","qolMnN":"Your page has been temporarily suspended, and it's no longer visible to anyone until you verify your identity. Visit our \u003c0/\u003e to learn more.","Hm3ryS":"Your page is no longer visible to others and your members won't be charged until you resolve this issue and your page is restored.","5rYTCu":"Your page is not yet published","BCSsw7":"Your page is not yet published","ZeQZ8k":"Your page is ready!","OKtMeM":"Your page is suspended","+ivC7Q":"Your page isn't live yet, but your waitlist is ready to share.","kCwcej":"Your page isn't live yet, but your waitlist page is ready to share.","dLgIGP":"Your page requires changes","n6Dd1r":"Your page will be suspended soon","5hNpw7":"Your Patreon creator account is \u003c0\u003ecurrently under review\u003c/0\u003e to make sure it meets our guidelines.","2kcw7K":"Your pay day is one click away. Celebrate!","DJUtC6":"Your payment schedule must be set to Monthly with Charge up Front enabled.","Fymt3C":"Your photos are being reviewed","ykaKXc":"Your plan","24GlTQ":"Your plan","oGGWKd":"Your pledge requires a shipping address.","YDK3Iv":"Your post is listed for sale!","crcIZi":"Your post is live and ready to share!","m3J4WP":"Your post is live!","dP7wcE":"Your post is published!","bL2DD0":"Your product is live","q52W9n":"Your product was deleted. Check on refund statuses in the Audience tab.","WeMocV":"Your response was sent to the creator.","MPgbab":"Your retry was successful","YfAY24":"Your retry was unsuccessful","4g57ux":"Your shop is not visible.","Agu0La":"Your shop is published","nbKnsW":"Your shop tab won’t be visible until you add a product.","liv1ex":["Your Special Offer, \"",["title"],"\", has ended."],"6jvvZT":["Your Special Offer, \"",["title"],"\", is scheduled to end on \u003c0/\u003e at \u003c1/\u003e."],"xTKFTs":["Your Special Offer, \"",["title"],"\", is scheduled to start on \u003c0/\u003e at \u003c1/\u003e."],"E5a8ux":["Your Special Offer, \"",["title"],"\", will start when you launch your Patreon page and run for ",["daysToRun","plural",{"one":["#"," day"],"other":["#"," days"]}],"."],"F1qRMz":"Your Spotify account will be disconnected from your Patreon account. You will lose access to the exclusive content on Spotify from the Patreon podcasts you have memberships with. You will be able to reconnect another Spotify account at any time.","LLn1mf":"Your storage is full","g/D2GV":"Your tiers","AJqLB9":"Your video needs to finish uploading before you can publish","tWuXSL":"Your video storage is full. To upload more videos, delete some videos or request more space in \u003c0\u003eSettings\u003c/0\u003e.","ljG6wS":"Your waitlist","CaqYvT":"YouTube","7kYF+t":"Yugoslavian Old Dinar","1X8gaR":"Yukon","t49RuR":"Yukon","iD4Vsw":"YY","guERGg":"Z to A","Zu0Xlc":"Zambia","4yhJVg":"Zambian Kwacha","MRPI4H":"Zamora","a4/fRW":"Zaragoza","ir0RFl":"Zimbabwe","AAPt3q":"Zimbabwe Dollars","JbSk+n":"Zimbabwe Old Dollars","Z1Xyf0":"Zoom in","7SZEGw":"Zoom out","BsJukz":[["length","plural",{"one":"Featured product","other":"Featured products"}]],"lZfUQy":["\u003c0/\u003e ",["creationCount","plural",{"one":"post","other":"posts"}]],"B6/R5K":"About","LJhRcU":"Become a member","oOcLkE":"Block this creator","L1jKcR":"Chats","eSgTHQ":"Choose your membership","Oew7p2":"Collections","nb++FD":"Home","wIYxAB":"Make custom pledge","mkRkvU":"members","7UPKUz":"Membership","jnO9h1":"Or choose your own price","hjr4r9":"paid members","vO+oar":"See all","QGGtNO":"Shop","OK4R46":["Starting at ",["currency"],"/",["payPerName"]],"+r5Rkg":"Unblock this creator","/WilZg":"Unlock \u003c0/\u003e exclusive posts and join a community of \u003c1/\u003e members","fgCYur":"Unlock \u003c0/\u003e exclusive posts and join a community of \u003c1/\u003e paid members","A6yeY/":"Unlock \u003c0/\u003e exclusive posts and join a growing community","2eym5V":"Unlock \u003c0/\u003e posts","R8JchY":"Unlock \u003c0/\u003e posts and join a community of \u003c1/\u003e members","kU/x+9":"Unlock \u003c0/\u003e posts and join a growing community","wR1vUV":"Unlock exclusive posts","rcqd9s":"Unlock exclusive posts and join a community of \u003c0/\u003e members","GLDvk3":"Unlock exclusive posts and join a community of \u003c0/\u003e paid members","PBrFsT":"Unlock exclusive posts and join a growing community","F1UNj1":"Unlock posts","nAD2nT":"Unlock posts and join a community of \u003c0/\u003e members","Uv9da9":"Unlock posts and join a growing community"},"_sentryTraceData":"9732655a410546be917d41cc9de5dc2d-aa919a846c35ecd4-0","_sentryBaggage":"sentry-trace_id=9732655a410546be917d41cc9de5dc2d,sentry-environment=production,sentry-release=c855cfa80f61d94de63bb4ad1107c957139fb2ff,sentry-public_key=9784cc8aed574851b2540c4903b37506,sentry-transaction=route_vanity"},"__N_SSP":true},"page":"/creatorPublicPage/[vanity]/[[...tab]]","query":{"vanity":"coreyms"},"buildId":"Mr4Fa2XN6Xfe0FnPAXhJb","assetPrefix":"https://c13.patreon.com/ce5c8c1ac3d2eb29e386bd0c124f078ff27f2730","isFallback":false,"gssp":true,"customServer":true,"scriptLoader":[]}</script></body></html>

heading

In [59]:
heading = soup.find('div', class_="sc-bBHxTw jIEOUn")
heading
In [ ]:
heading.text

Date

In [60]:
date = soup.find('span', id_="track-click")
date
In [ ]:
date.text

content

In [63]:
content = soup.find('div', class_="sc-1cq1psq-0 kWkNqn sc-pn81yk-0 dBfLIG")
content
In [ ]:
content.text

Likes

In [64]:
like = soup.find('span', class_="sc-dkPtRN eEJGed")
like
In [ ]:
like.text
In [65]:
heading = []

for i in soup.find_all('div', class_="sc-bBHxTw jIEOUn"):
        heading.append(i.text)
        
heading
Out[65]:
[]
In [66]:
date = []

for i in soup.find_all('span', id_="track-click"):
        date.append(i.text)
        
date
Out[66]:
[]
In [67]:
content = []

for i in soup.find_all('div', class_="sc-1cq1psq-0 kWkNqn sc-pn81yk-0 dBfLIG"):
        content.append(i.text)
        
content
Out[67]:
[]
In [68]:
like = []

for i in soup.find_all('span', class_="sc-dkPtRN eEJGed"):
        like.append(i.text)
        
like
Out[68]:
[]

3) Write a python program to scrape house details from mentioned URL. It should include house title, location, area, EMI and price from https://www.nobroker.in/ .Enter three localities which are Indira Nagar, Jayanagar, Rajaji Nagar

In [69]:
page = requests.get('https://www.nobroker.in/')
In [70]:
page
Out[70]:
<Response [200]>
In [71]:
soup = BeautifulSoup(page.content)
soup
Out[71]:
<!DOCTYPE html>
<html lang="en"><head>
<meta content="794951570520699" property="fb:pages"/>
<link href="https://www.nobroker.in" rel="canonical"/>
<link href="//www.googletagmanager.com" rel="dns-prefetch preconnect"/>
<link href="//www.google-analytics.com" rel="dns-prefetch preconnect"/>
<link href="//assets.nobroker.in" rel="dns-prefetch"/>
<link href="//images.nobroker.in" rel="dns-prefetch"/>
<link href="https://assets.adobedtm.com" rel="dns-prefetch preconnect"/>
<link href="//assets.nobroker.in/static/img/favicon.png" id="favicon" rel="shortcut icon"/>
<link href="https://images.nobroker.in/static/img/fav64.png" rel="apple-touch-icon"/>
<link href="https://hs.nobroker.in" rel="dns-prefetch preconnect"/>
<!--<meta charset="utf-8"/>-->
<meta charset="utf-8"/>
<meta content="app-id=com.nobroker.app&amp;referrer=utm_source%3Dnobroker%26utm_medium%3DmobileWeb" name="google-play-app"/>
<meta content="app-id=1200507100, app-argument=nobrokerapp://" name="apple-itunes-app"/>
<meta content="#fd3752" name="theme-color"/>
<meta content="flats for rent, Apartments for rent, flats for sale, apartments for sale, Properties for rent, without broker, no brokerage, broker free rental properties, flat, apartment, rent, rental, nobroker.in, Nobroker" name="keywords"/>
<meta content="Flats, Houses, Apartments for Rent, Buy, Sale Without Brokerage in India" property="og:title"/>
<meta content="Lookup for Residential properties for rent,buy,sell in India Without Brokerage.0% Brokerage,100% Genuine Owners. India's #1 Real Estate Property Website Without Brokers. Get Rent Agreement,Packers and Movers,Property Management &amp; Registration Service in India. Owners &amp; NRI can List/Post Property Ad for FREE." property="og:description"/>
<meta content="https://www.nobroker.in" property="og:url"/>
<meta content="//assets.nobroker.in/static/img/fbShare_bangalore.png" property="og:image"/>
<meta content="@nobrokercom" name="twitter:site"/>
<meta content="Flats, Houses, Apartments for Rent, Buy, Sale Without Brokerage in India" name="twitter:title"/>
<meta content="Lookup for Residential properties for rent,buy,sell in India Without Brokerage.0% Brokerage,100% Genuine Owners. India's #1 Real Estate Property Website Without Brokers. Get Rent Agreement,Packers and Movers,Property Management &amp; Registration Service in India. Owners &amp; NRI can List/Post Property Ad for FREE." name="twitter:description"/>
<meta content="//assets.nobroker.in/static/img/fbShare_bangalore.png" name="twitter:image"/>
<meta content="360" property="og:image:height"/>
<meta content="540" property="og:image:width"/>
<meta content="289265624583131" property="fb:app_id"/>
<meta content="NoBroker" property="og:site_name"/>
<meta content="product" property="og:type"/>
<meta content="notranslate" name="google"/>
<meta content="hLy7ta67b2CS6LQFWI3SrB22XIuKUHlAHGEi-0W0ngI" name="google-site-verification"/>
<meta content="81EEED055BF8993A564A4B24AF189813" name="msvalidate.01"/>
<meta content="e5c74d79345e920627558faecd28fae5" name="p:domain_verify"/>
<meta content="084409cababb09e2de24f00eb4048416" name="p:domain_verify"/>
<meta content="239876242888-mbq11kse03n78gs2o5549clvlcv3ls24.apps.googleusercontent.com" name="google-signin-client_id"/>
<title>Flats, Houses, Apartments for Rent, Buy, Sale Without Brokerage in India</title>
<meta content="Lookup for Residential properties for rent,buy,sell in India Without Brokerage.0% Brokerage,100% Genuine Owners. India's #1 Real Estate Property Website Without Brokers. Get Rent Agreement,Packers and Movers,Property Management &amp; Registration Service in India. Owners &amp; NRI can List/Post Property Ad for FREE." name="description"/>
<meta content="width=device-width,initial-scale=1,shrink-to-fit=no,maximum-scale=1.0" name="viewport"/>
<meta content="IE=edge,chrome=1" name="X-UA-Compatible"/>
<link href="https://assets.nobroker.in/static/img/favicon.png" rel="icon"/>
<link href="/manifest.json" rel="manifest"/>
<link href="android-app://com.nobroker.app" rel="alternate"/>
<link href="https://maps.googleapis.com" rel="dns-prefetch"/>
<link href="http://dynamic.criteo.com" rel="dns-prefetch"/>
<link defer="" href="https://fonts.googleapis.com" rel="preconnect"/>
<link crossorigin="" defer="" href="https://fonts.gstatic.com" rel="preconnect"/>
<style>
            @font-face {
              font-family: 'Source Sans Pro';
              font-style: normal;
              font-weight: 300;
              font-display: swap;
              src: local('Source Sans Pro Light'), local('SourceSansPro-Light'), url(https://fonts.gstatic.com/s/sourcesanspro/v13/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdu.woff2) format('woff2');
              unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
            }
            @font-face {
              font-family: 'Source Sans Pro';
              font-style: normal;
              font-weight: 400;
              font-display: swap;
              src: local('Source Sans Pro Regular'), local('SourceSansPro-Regular'), url(https://fonts.gstatic.com/s/sourcesanspro/v13/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7l.woff2) format('woff2');
              unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
            }
            @font-face {
              font-family: 'Source Sans Pro';
              font-style: normal;
              font-weight: 600;
              font-display: swap;
              src: local('Source Sans Pro SemiBold'), local('SourceSansPro-SemiBold'), url(https://fonts.gstatic.com/s/sourcesanspro/v13/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlxdu.woff2) format('woff2');
              unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
            }
          </style>
<script>
              window.dataLayer = [];
            </script>
<script>
                      var interval = setInterval(function() {
                        if (document && document.readyState === 'complete') {
                          clearInterval(interval);
                          (function(w, d, s, l, i) {
                            w[l] = w[l] || [];
                            w[l].push({ 'gtm.start': new Date().getTime(), event: 'gtm.js' });
                            var f = d.getElementsByTagName(s)[0],
                              j = d.createElement(s),
                              dl = l != 'dataLayer' ? '&l=' + l : '';
                            j.async = true;
                            j.src = 'https://www.googletagmanager.com/gtm.js?id=' + i + dl;
                            f.parentNode.insertBefore(j, f);
                          })(window, document, 'script', 'dataLayer', 'GTM-NDNFVM5');
                        }
                      }, 100);
                  </script>
<script>
            window.googleMapLoadCallBack = function() {
            };
            window.mobile = {
              dispatchEvent: function(eventName, data){
                console.log('triggered SSR Dispatch', eventName)
              }
            }
          </script>
<link data-chunk="main" href="https://assets.nobroker.in/nb-new/css/main.f52e3535c9b9beba5c0a.css" rel="stylesheet"/>
<link data-chunk="home" href="https://assets.nobroker.in/nb-new/home/home.dd7903f421b14687d1ba.css" rel="stylesheet"/>
<link data-chunk="NbButton" href="https://assets.nobroker.in/nb-new/NbButton/NbButton.cb7fa1376d823d32954a.css" rel="stylesheet"/>
<link data-chunk="RABanner" href="https://assets.nobroker.in/nb-new/RABanner/RABanner.5fdb43a134648222dcfb.css" rel="stylesheet"/>
<link data-chunk="HomeDesktopFilter" href="https://assets.nobroker.in/nb-new/HomeDesktopFilter/HomeDesktopFilter.b7d2e00397d9d42f1076.css" rel="stylesheet"/>
<link data-chunk="PostPropertyCardDesktop" href="https://assets.nobroker.in/nb-new/PostPropertyCardDesktop/PostPropertyCardDesktop.fce76371301ec9e6eaae.css" rel="stylesheet"/>
<link data-chunk="HomeTileCard" href="https://assets.nobroker.in/nb-new/HomeTileCard/HomeTileCard.f097d0ab986752213e72.css" rel="stylesheet"/>
<link data-chunk="HomeCard" href="https://assets.nobroker.in/nb-new/HomeCard/HomeCard.c5cc88e8c5cb9b90314a.css" rel="stylesheet"/>
<script async="" src="https://assets.nobroker.in/nb-new/public/js/instantgratification.js"></script>
<script>
            window.nb = window.nb || {};
            nb.pageName = "home";
            nb.appState = {"route":{"location":null},"global":{"requestData":null},"signupReducer":{"phoneExistLoading":false,"phoneStatus":null,"otpVerification":null,"emailOtpVerification":null,"passwordVerification":null,"newAccountData":null,"newUser":false,"oldUser":false,"userInfo":null,"newAccountDataError":"","userPhoneData":{},"adobeSignupEventCalled":false,"newAccountCreationData":null,"newOtpVerifyFlow":false,"newMobileUpdateSucess":false,"newMobileUpdateError":false},"commonReducer":{"status":"","userInfo":null,"activePlanStatus":null,"fetchedUserInfo":false,"walletBalance":null,"signupModal":{},"showAlertMsg":false,"notFound":false,"crowdLeadAdded":null,"openAlertsModal":false,"planDetailInfos":null,"tenantPlanInfo":null,"pagename":null,"userNotificationCount":null,"photoRequestData":null,"propertyId":null,"fromChat":null,"feedBackData":null,"feedBackUpdatedData":null,"openSchedularModal":false,"openScheduleVisitModal":false,"slotsData":null,"bookedSlotData":null,"userEmailSave":null,"walletEnabled":false,"propertyTrendsData":null,"instantLeadData":null,"instantBookData":null,"tenantLeadData":null,"scheduleVisitTimeData":null,"contactedInfoData":null,"hub":null,"contactedIdsForListPage":[],"contactedNotVerifiedIdsForListPage":[],"visitSlotsData":null,"hoodExploreRefreshToken":null,"scratchCardList":{"loading":true,"fetching":false,"data":[],"error":false},"isBasicPlanSuccess":false,"selectedSearchFilterData":{},"preselectedLocalitiesData":[],"listingData":null,"shortlistedProperty":null,"isPayFirstAbFlow":null,"advertiseData":null,"hsCity":{"displayName":"Bangalore","value":"bangalore","image":"https:\u002F\u002Fassets.nobroker.in\u002Fnb-new\u002Fpublic\u002FCommon\u002Fbangalore.png"},"hsCatalogData":{},"hsLineItems":{},"address":{},"userAddressList":[],"hsLocalLineItems":[],"hsLeadIds":{},"hsCityWiseServices":{},"leadCreationSuccess":false,"fetchFeedbackSuccess":false,"exitIntentData":null,"isExitIntentLoading":false,"isExitPopup":false,"continueDetailsData":[],"popularServices":[],"servicingDate":null,"hsPaymentSuccess":false,"orderDetails":{},"userLocation":{},"orderDetailsError":null,"nearbyGeneratorId":null,"nearbyPlacesPlaceId":[],"nearbyTotalData":[],"isDynamicAdsCalled":false,"isSubscriptionLead":false,"updateCartLoading":false,"contactOwnerPlanPageStatus":"","userHistory":[],"loader":{"loading":true,"type":"default"},"metroCityLines":null,"stationDataForMetroLine":null,"searchFor":"Location","preSelectedMetroStation":[],"jacketInfo":null,"jacketHeight":0,"similarScheduledProperties":[],"showNotesModal":{},"propertyNotes":{},"dynamicSeoContent":null,"showNudgeModal":true,"notesActivePillsStatus":{},"leadsData":[],"servicesSupportData":[],"articleData":[],"sendMessageData":{"success":false}},"alertsReducer":{"postAlersSuccess":""},"listAlertsReducer":{"postAlersSuccess":"","alertRequirementId":null,"recommendedProperties":null,"loading":false,"searchRequirementLoading":false},"resultScreenReducer":{"loading":true,"loader":{"loading":true,"type":"fetching_properties"},"sessionId":"","userFilters":{},"totalRejectedProps":0,"propertySearchData":[],"propertyList":null,"rejectedProperties":[],"showRejectedProps":false,"rejectedCount":0,"ownerContacted":false,"remainingProps":0,"productFeedbackSumitted":false,"productFeedBackSkip":false,"isFetchingDetails":false,"isFetchingSessionDetails":false,"isFetchingAdditionalPropertyData":false,"propertySource":"","sent_status":null,"commuteDetails":null,"smart_contact_owner_status":null,"canShowShortlistContactCard":false,"latestShortlistData":[],"contactedBulkResponse":[],"broadcastMessage":{}},"smartSearchBotReducer":{"loading":false,"filtersPosted":false,"session_id":"","userInfo":{},"conversationList":[],"memberList":[],"isLastIntent":false,"finalFilters":{"user_id":"","place_id":"","looking_for":"","city":"","locality":""},"estimatedRent":null,"propertyCount":null,"estimatorLoading":false},"builderProject":{"builderInfo":null,"loading":null,"builderOtherData":null,"builderNearbyInfo":null,"isBuilderSponsored":null,"scrapData":null,"sponsoredBuildingUrl":null,"graphisSaleTrend":true,"bucketRent":[],"bucketSale":[],"reqRegTransRent":{},"reqRegTransSale":{},"regTransRent":[],"regTransSale":[],"userUnlockDetails":{},"itemDetails":{},"limitReached":false,"detailsPosted":null,"reviewsData":null,"cmsCategory":null},"cityLevelServicePageReducer":{"loading":false,"currentState":"BUY","lastSearchData":null,"localityType":null,"isFilterFocused":false,"nbStories":null,"flagForStoryApi":false,"topBuilderCityWise":null,"recentPropertyTab23BHK":null,"recentPropertyIH":null,"recentPropertyHighFloor":null,"recentPropertyTopSoc":null,"hotSellingProjects":null,"topRentalSociety":null,"flatmateAccomodation":null,"pgAccomodation":null,"nobrokerTimes":null,"priceTrendsData":null},"home":{"loading":false,"currentState":"RENT","lastSearchData":null,"localityType":null,"isFilterFocused":false,"nbStories":null,"flagForStoryApi":false}}
          </script>
<script type="application/ld+json">
        {
         "@context": "https://schema.org",
         "@type": "WebSite",
         "url": "https://www.nobroker.in",
         "potentialAction": {
            "@type": "SearchAction",
            "target": "https://www.nobroker.in/search-context?query={search_term}",
            "query-input": "required name=search_term",
            "inLanguage":"en-US"
         }
        }
        </script>
</head>
<body>
<div id="appPortal"></div>
<div id="modal-root"></div>
<div id="app"><div class="app-wrapper"><div class="mt-5p po:mb-5.5p" style="display:block"><header class="home-service-lead-parent fixed top-0 left-0 w-full" id="navheaderContainer" style="z-index:14"><div class="p-0.5p h-6.1p bg-white fixed top-0 left-0 w-full z-30 flex justify-between items-center flex-nowrap flex-row tp:h-5p tp:justify-center" id="navHeader" style="box-shadow:0 2px 10px rgb(0 0 0 / 11%)"><div class="hidden tp:flex absolute left-1.5p"><div class="cursor-pointer inline-block w-auto m-auto transition-all duration-500 ease-linear"><div class="block h-0.2p w-2.4p bg-black transition-all duration-500 ease-in-out my-0.5p mx-auto"></div><div class="block h-0.2p bg-black transition-all duration-500 ease-in-out my-0 mx-auto"></div><div class="block h-0.2p w-2.4p bg-black transition-all duration-500 ease-in-out my-0.5p mx-auto"></div></div></div><div class="cursor-pointer flex items-center tp:flex-row"><div class="desktop-logo pl-0.5p po:flex po:absolute po:left-5p po:items-center po:justify-center"><img alt="logo" class="" src="https://assets.nobroker.in/static/img/logos/nb_logo_new_trans.svg" style="width:170px;height:45px"/> </div><span class="po:hidden tp:hidden align-middle ml-2p inline-block sd-0.5p"></span></div><div class="hidden relative tp:flex tp:absolute tp:right-1.2p tp:items-center justify-center w-auto min-h-0 min-w-0"></div><div class="hidden tp:flex"></div><div class="flex items-center tp:hidden"><div class="flex items-center gap-0.2p"><div class="select-none cursor-pointer mx-0.6 my-auto"><div class="flex border-1 border-solid border-gray-common-color rounded-sm h-3p pt-0.3p pl-0.8p pb-0.3p pr-0.8p" id="rentPayment"><div class="mr-0.5p border-r-1 border-r-gray-common-color pr-0.5p"><img alt="rent" src="https://assets.nobroker.in/nb-new/public/payrent.png"/></div><div class="text-header-text-color">Pay Rent</div></div></div><a class="block tp:hidden select-none cursor-pointer mx-0.6 my-auto" href="/list-your-property-for-rent-sale?nbFr=home_page" rel="noopener noreferrer" target="_blank"><div><button class="btn btn-default btn-sm" id="headerHouseOwner" style="height:30px;font-weight:400;padding:3px 10px" type="button">For Property owners</button></div></a></div><div class="flex items-center"><div class="m-auto py-0.8p"><div class="flex mx-1.5p">Sign up</div></div><div class="m-auto py-0.8p"><div class="px-1p border-l-1 border-l-solid border-l-header-grey cursor-pointer">Log in</div></div><div class="focus:outline-0 m-auto py-0.8p px-0 relative focus:outline-0" id="main-menu" tabindex="0"><div class="flex py-0 px-1.5p border-l-1 border-l-solid border-l-header-grey items-center cursor-pointer"><img alt="hamburger" class="w-1.7p h-1.7p mr-0.6" src="https://assets.nobroker.in/nb-new/public/hamburger-menu.svg"/>Menu</div><div class="hidden" style="box-shadow:0 10px 10px 0 rgba(0, 0, 0, 0.1);max-height:calc(100vh - 52px)"><a class="py-0.8p px-0 font-normal block text-header-menu-color align-left no-underline cursor-pointer hover:text-secondary-color my-0.6p mx-2.5p border-b-1 border-b-solid border-b-card-overview-border-color">Post Your Property</a><a class="py-0.8p px-0 font-normal block text-header-menu-color align-left no-underline cursor-pointer hover:text-secondary-color border-b-1 border-b-solid border-b-card-overview-border-color my-0.3p mx-2.5p">Rental Agreement</a><a class="py-0.8p px-0 font-normal block text-header-menu-color align-left no-underline cursor-pointer hover:text-secondary-color border-b-1 border-b-solid border-b-card-overview-border-color my-0.3p mx-2.5p">Painting &amp; Cleaning</a><a class="py-0.8p px-0 font-normal block text-header-menu-color align-left no-underline cursor-pointer hover:text-secondary-color border-b-1 border-b-solid border-b-card-overview-border-color my-0.3p mx-2.5p">Packers and Movers</a><a class="py-0.8p px-0 font-normal block text-header-menu-color align-left no-underline cursor-pointer hover:text-secondary-color border-b-1 border-b-solid border-b-card-overview-border-color my-0.3p mx-2.5p">Refer &amp; Earn</a><a class="py-0.8p px-0 font-normal block text-header-menu-color align-left no-underline cursor-pointer hover:text-secondary-color border-b-1 border-b-solid border-b-card-overview-border-color my-0.3p mx-2.5p">Rent Receipts</a><a class="py-0.8p px-0 font-normal block text-header-menu-color align-left no-underline cursor-pointer hover:text-secondary-color border-b-1 border-b-solid border-b-card-overview-border-color my-0.3p mx-2.5p">Tenant Plans</a><a class="py-0.8p px-0 font-normal block text-header-menu-color align-left no-underline cursor-pointer hover:text-secondary-color border-b-1 border-b-solid border-b-card-overview-border-color my-0.3p mx-2.5p">Owner Plans</a><a class="py-0.8p px-0 font-normal block text-header-menu-color align-left no-underline cursor-pointer hover:text-secondary-color border-b-1 border-b-solid border-b-card-overview-border-color my-0.3p mx-2.5p">Buyer Plans</a><a class="py-0.8p px-0 font-normal block text-header-menu-color align-left no-underline cursor-pointer hover:text-secondary-color border-b-1 border-b-solid border-b-card-overview-border-color my-0.3p mx-2.5p">Seller Plans</a><div><div class="border-b-1 border-b-solid border-b-card-overview-border-color py-0.8p px-0 my-0 mx-2.5p font-normal block text-header-menu-color text-left decoration-0 cursor-pointer"><span>Commercial Plans</span><span class="float-right"><svg class="transform -rotate-90" color="#999" height="13" style="width:13px;height:13px;margin:2px" viewbox="0 0 24 24" width="13"><path class="" d="M16.62,2.99 C16.13,2.5 15.34,2.5 14.85,2.99 L6.54,11.3 C6.15,11.69 6.15,12.32 6.54,12.71 L14.85,21.02 C15.34,21.51 16.13,21.51 16.62,21.02 C17.11,20.53 17.11,19.74 16.62,19.25 L9.38,12 L16.63,4.75 C17.11,4.27 17.11,3.47 16.62,2.99 Z" fill="#999"></path></svg></span></div></div><a class="py-0.8p px-0 font-normal block text-header-menu-color align-left no-underline cursor-pointer hover:text-secondary-color border-b-1 border-b-solid border-b-card-overview-border-color my-0.3p mx-2.5p">Careers</a><a class="py-0.8p px-0 font-normal block text-header-menu-color align-left no-underline cursor-pointer hover:text-secondary-color border-b-1 border-b-solid border-b-card-overview-border-color my-0.3p mx-2.5p">Corporate Enquiry</a><a class="py-0.8p px-0 font-normal block text-header-menu-color align-left no-underline cursor-pointer hover:text-secondary-color border-b-1 border-b-solid border-b-card-overview-border-color my-0.3p mx-2.5p">Blog</a><a class="py-0.8p px-0 font-normal block text-header-menu-color align-left no-underline cursor-pointer hover:text-secondary-color border-b-1 border-b-solid border-b-card-overview-border-color my-0.3p mx-2.5p">NoBroker Support</a><div><div class="border-none py-1p px-0 my-0p mx-2.5p no-underline pb-0 mb-1p border-b-0"><span class="cursor-pointer">Contact Us</span><span class="float-right"><svg class="transform rotate-90" color="#999" height="13" style="width:13px;height:13px;margin:2px" viewbox="0 0 24 24" width="13"><path class="" d="M16.62,2.99 C16.13,2.5 15.34,2.5 14.85,2.99 L6.54,11.3 C6.15,11.69 6.15,12.32 6.54,12.71 L14.85,21.02 C15.34,21.51 16.13,21.51 16.62,21.02 C17.11,20.53 17.11,19.74 16.62,19.25 L9.38,12 L16.63,4.75 C17.11,4.27 17.11,3.47 16.62,2.99 Z" fill="#999"></path></svg></span><div class="mt-0.7p cursor-default"><div><div class="text-12 leading-3 text-default-color pt-0.6 pb-01.p">Email</div><a class="leading-4 text-header-item-color pt-0.4p pb-0.6p cursor-pointer" href="mailto:hello@nobroker.in?Subject=Hello%">hello@nobroker.in</a></div><div class="my-1p mx-0 flex justify-between"><a class="cursor-pointer inline p-0.5p rounded-100pe border-1 border-solid border-header-item-color" href="https://www.facebook.com/nobroker.com" rel="noopener noreferrer" target="_blank"><svg class="" color="#555" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24"><path class="" d="M17,2V2H17V6H15C14.31,6 14,6.81 14,7.5V10H14L17,10V14H14V22H10V14H7V10H10V6A4,4 0 0,1 14,2H17Z" fill="#555"></path></svg></a><a class="cursor-pointer inline p-0.5p rounded-100pe border-1 border-solid border-header-item-color" href="https://www.twitter.com/nobrokercom" rel="noopener noreferrer" target="_blank"><svg class="" color="#555" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24"><path class="" d="M22.46,6C21.69,6.35 20.86,6.58 20,6.69C20.88,6.16 21.56,5.32 21.88,4.31C21.05,4.81 20.13,5.16 19.16,5.36C18.37,4.5 17.26,4 16,4C13.65,4 11.73,5.92 11.73,8.29C11.73,8.63 11.77,8.96 11.84,9.27C8.28,9.09 5.11,7.38 3,4.79C2.63,5.42 2.42,6.16 2.42,6.94C2.42,8.43 3.17,9.75 4.33,10.5C3.62,10.5 2.96,10.3 2.38,10C2.38,10 2.38,10 2.38,10.03C2.38,12.11 3.86,13.85 5.82,14.24C5.46,14.34 5.08,14.39 4.69,14.39C4.42,14.39 4.15,14.36 3.89,14.31C4.43,16 6,17.26 7.89,17.29C6.43,18.45 4.58,19.13 2.56,19.13C2.22,19.13 1.88,19.11 1.54,19.07C3.44,20.29 5.7,21 8.12,21C16,21 20.33,14.46 20.33,8.79C20.33,8.6 20.33,8.42 20.32,8.23C21.16,7.63 21.88,6.87 22.46,6Z" fill="#555"></path></svg></a><a class="cursor-pointer inline p-0.5p rounded-100pe border-1 border-solid border-header-item-color" href="https://plus.google.com/+NobrokerIn" rel="noopener noreferrer" target="_blank"><svg class="" color="#555" style="width:24px;height:24px;margin:2px" viewbox="0 0 24 24"><path class="" d="M23,11H21V9H19V11H17V13H19V15H21V13H23M8,11V13.4H12C11.8,14.4 10.8,16.4 8,16.4C5.6,16.4 3.7,14.4 3.7,12C3.7,9.6 5.6,7.6 8,7.6C9.4,7.6 10.3,8.2 10.8,8.7L12.7,6.9C11.5,5.7 9.9,5 8,5C4.1,5 1,8.1 1,12C1,15.9 4.1,19 8,19C12,19 14.7,16.2 14.7,12.2C14.7,11.7 14.7,11.4 14.6,11H8Z" fill="#555"></path></svg></a></div></div></div></div></div></div></div></div></div><div class="w-full bg-white z-20 fixed left-0 top-6.1p tp:top-5p hidden" style="box-shadow:0 2px 10px #0000001b"><a class="block text-header-item-color no-underline py-1p px-2p text-14 cursor-pointer select-none" href="/"><div class="flex py-0 border-l-o border-solid border-header-grey first-border-0">NoBroker Home</div></a><div class="h-px w-[calc(100% - 4p)] m-auto" style="background:#dedede"></div><div class="py-1p px-2p text-14 cursor-pointer select-none"><div class="flex py-0 border-l-o border-solid border-header-grey first:border-0">Sign up</div></div><div class="py-1p px-2p text-14 cursor-pointer select-none"><div class="flex py-0 border-l-o border-solid border-header-grey first:border-0">Log in</div></div></div></header><div class="rounded-[50%] cursor-pointer fixed bottom-10 right-10 po:right-4 po:bottom-16 h-14 w-14 bg-primary-color flex justify-center items-center" style="z-index:8"><button class="w-full h-full" type="button"><img alt="chat" class="h-8 w-8" src="https://assets.nobroker.in/nb-new/public/Common/chatLightBg.svg"/></button></div><div class="py-3p px-2p tpu:h-content" style="height:385px"><div class="nb__wN4jP">World's Largest NoBrokerage Property Site</div><div class="nb__2NryY"><div class="nb__1YnwY"><img alt="announcement" class="h-2.8p w-2.8p mr-0.4p" src="https://assets.nobroker.in/nb-new/public/Home/RAIcon.svg"/><div class="nb__1IQvp"><span class="nb__sk2nG">Rental Agreement<span class="mx-0.5p text-20 text-banner-line">|</span><img alt="delivery" class="w-2.8p relative bottom-0.2p h-2.8p mr-0.4p ml-0.3p" src="https://assets.nobroker.in/nb-new/public/Home/deliveryIcon.svg"/> <!-- -->Next Day Delivery</span></div></div></div><div class="flex items-center justify-around font-normal text-center relative tpu:mt-3p tpu:mx-auto tpu:mb-0 tpu:border-1 tpu:border-solid tpu:border-background-gray tpu:border-b-0 tpu:rounded-t-4p" style="font-size:17px;color:#afaaaa;text-decoration:none;transition:transform .5s;width:376px;border-radius:4px 4px 0 0"><div class="cursor-pointer" style="width:32%;line-height:40px;border-right:1px solid #efefef;border-top-left-radius:4px">Buy</div><div class="cursor-pointer text-primary-color border-0 border-b-4 border-solid border-primary-color font-bold" style="width:32%;line-height:40px;border-right:1px solid #efefef;border-top-left-radius:4px">Rent</div><div class="cursor-pointer" style="width:32%;line-height:40px;border-right:none;border-top-left-radius:4px">Commercial</div><div></div></div><div class="nb__1Qq92"><div class="prop-search-city-selector nb-select form-group nb-select__lg"><div class="nb-select-loader lg"><span class="nb-select-loader__value">mumbai</span></div></div><div class="search-input-wrapper"><span class="listpage-serach-selected-localities" id="selectedLocalities"></span><div class="nb-google-autocomplete nb-google-autocomplete-lg"><div bssize="lg" class="form-group form-group-lg no-label" controlid="listPageSearchLocality"><input autocomplete="off" class="form-control" id="listPageSearchLocality" placeholder="Search upto 3 localities or landmarks" style="padding-left:15px" type="text" value=""/></div></div></div><button class="prop-search-button flex items-center justify-center btn btn-primary btn-lg" id="" type="button"><img alt="searchIcon" class="w-2p h-2p mr-0.3p" src="https://assets.nobroker.in/nb-new/public/Home/searchIcon.svg"/>Search</button></div></div><div class="nb__269lo"><div class="text-center"><span class="heading-6 nb__2hf8o">Are you a Property Owner?</span></div><div class="nb__1WvUz" id="pypAd"><button class="btn btn-default" id="" type="button">Post Free Property Ad</button></div></div><div class="nb__1Ghq5"><img alt="Check Eligibility" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAbCAYAAABiFp9rAAAABGdBTUEAALGPC/xhBQAAAwtJREFUSA2dlm1ojlEYx92zPWazyLxnU971UEiGfBhmIfENX0haSk+RvKy8JCXxxQc+IG9LUZuSjKUkHxSSTLHGHjNbXpKXsKlp1uP3f7Zzd9rut8dVv65zrvt/Xee+zzn3uW9nQAaWSqUc5HnQ7ThOZwap0aQMUATV8BXa4Q98hIswPEqVrDARhbagqYfHEOdJCmAQ7YXwHr6hWYr/f6PABvgFM/2qcK0UZKV+msA4ieOgC2ZLiM+CsRZjTAFiq6AFhphYZE9SFVSaBBWB4/AQasC9Jg3903DY6Pv6oDUqQ1xjJWjHxaABNJUjwLZqOsvtQGibO3NAO2ugEasNcTgACRM3nlgxtJh+ZE9SJww2CbRzoB7WmJjtiU+H13bMbgdNXRNCd7expbvor4MEBXPsIr3tOP6NRzwdChqoDkWFnchgSfoXYJsdZ2Ctn7S1djxSm+RcaIL1YQloDsID0ICZG4nzQLbXK5u4Ns1+CbChXhoTyzYNL89UPaXAeK7V4kvwV6EZtM2nwWZIwQS0P/G+5vmoFB1GxhRIUuAHfd2Q1qUMiqAb3sIdqEKjwaKZisMOaIQOeAKfoDysAhq9Y8WBOgRa9EugO78CmqK00Z4DH+AI9NuhxGKwHaSRPQJ9PmQlUAj5ptgkOnug75Firkt8C1Rkas8tpM+2TfTb4AboZR0JX2AR7AaZbl7m5pl8X494K3yGe3ANWuFsL+kXmHb6qfGj4BBoSq/DOc/NYI+GaAaL3agYbX3Gl8Es0M7TAPugA00B3jW0hXROwlpQO9hISMJtKAf77Mujrw+j1uSyXYX+RtDTn4CeNbIFXm2EMagAvfm/4QU0w3fQDbjHEe2JcBeewVyvepFiJOdDHLSB3JOAdjZUgv4fdoH7eTGF3TXi4gKCi0FzrVP4JTwPexnJm4/uPLRBAn0rvp/Z78Zoruo/4C+sBM273o8zsAJy6btGX/8UpwjchKMMsNpvEDfJr0GhybAT7kM71IG2awPoH+8Y6LgKNXfqwpQU1O5ZAjr33sErnqATH8n+AUpctG5RzxqlAAAAAElFTkSuQmCC"/><div><span class="font-light">Do you know how much</span> <span class="font-semi-bold">loan</span> <span class="font-light">you can get? Get maximum with</span> <span class="font-semi-bold">NoBroker</span></div><div class="nb__odJfz">Check Eligibility</div></div><div class="nb__2FbPM"><div class="nb__3KVk4" id="pnmHomeTile"><div class="nb__bIPYE"><span>Lowest Price</span></div><img alt="star" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAACsJJREFUaAXtWXtQlNcVv/f7FgQRxApGWEzRWmMMRhuVTADjUkeSjI8OIGoePjqmYjVDo1F56ti6y8tXasOkME41zUQTBUxiUqtxqolAbWvU2PgCZOywiw9Q3q9lv+/2dxe/zee6C4uA8kc+Z7mvc849557fPffcKyUP8WVkZATLshzFGNMIgnAyJSXl0kOI6VMW2hNpUJzq09O3gynhHp/A+/B9phHFpUlJSfU9kdeXtGJPhLm5uWVA6TdhyHJ/P7/XB7m7b21ra6smlK6SZHnS3DlzjuJr7YnMvqJ12SP67dtHsdbWK2CYkZaWdkatgF6vX8UIyeF9MLQUNCtTU1NPqGn6u063pKcv11B6Njk5+RwUmgpFQqDEXmXiXbt2+bS2tmrNFsurlLFgGLFEGVPKAwcOiKWlpdngvQiDFgBu4VQQMlCvBfY43OoxViOKoik0NPRmZGSkReHtq1JDZXmmJIptEHiOGyETEon6Xq5cRUXFhIaGhnFoB2CpNUSj2e1o4gULFkjof4eP5ebmflhdU3OQQC54GmAUN4KXt8ySVFV0+nTltm3bzq9bt67GkSylz2AwPAeelZDxJH5XEVXysAcvKuP2pcvQsmfszzZHCbyfiznq8DsPg57BYgwjjMUBEYcdzT3gDElPTx8nM/Y9lP0cAWVJfHx8C+A9CMjIgWfeAFy/JILw/sbk5ONqgx6rIVhpARAKwN4ZgXPJF6s+VGJsIZSa7abRaBMTExsVZTnUy8rKliLY+wK2bxNRTE5NStoPHuwGBBmF8FGWWVlZgZIkhUH556HYGMBoBFZ6KJTxwar7AELfAkKznOkE45/AIhjAexe8xTiUi5zR/tj/4wr0cgW63COZmZmTLLL8EuZw7+U8ztlluQEb9iAO4RvOibofcWqIOu3oXkzvKGDILYHSX/Ymi9Y4UmHPnj0eRpNpOyYoGObru8zf37/fEsGr168HM7P5NGIozwyWO9LHlT6HhphMpuFg9oC7/r569eomVwT1guaa3mA4h5A7vhcyiOCIWaPRWNN7GS5xND4Q+xwaggPGzJWFFdZyICpur5NDaAUHB1eXlpXxu98te4b+bJ84ceIBfXQ6nQRg4ODv+nMKHeC2BoNRCItnuxbR+1HMdQx7ZCa0dYQQCwypgC77APkd6vxLPbMjRus4cpnbYLytJnZU58mcur+7tprWVofv4X0jQnCa/Q+5VwZ0KUVGvKnDYinJzs4eaeNTVR5wpW2M0tuenp7VtraDCpK/p6+Wlpbs2LHjZ2vXrr2LA3QiIPk1ytH8IQIXKD+0y5Gah+KMKHUgQt1lgvcN6g51XZ+Z+SKzWL40d3TkoX+eeozXnRqCrLI8ISGh3Z5B3R49ejRuuKVLuBG8f8yYMZfKy8uXKK8p/BaIg3VxckpKOQxRszqtI7N9BRD7rY2AsSYgIwsyv8HYJnhmB4yKSEtKKrLRoOIUWhjjl5suP37FVd/YeBsKf6Fm4uPAuPXOoO53VgeMforfXPyCQaMFtKIAqU/QFoCQP0NWNZGkDfb8Tg1hoviAIbW6Zb6VEbFJleHzY+wF9XUbe2VWWmrqFJQrIfspeCManm+FYe+hPQdwnaCe06khgizbLvps82bBGBG7ormjvgy3swzCpILKsOiTxojoSWph/VHH604h5JYhGCRy+VCYPzu1AGLp2KPevI9/Tg1RstGqiLgI07ELZ5gs5zJGLgoa4Tk89cTDxROITM8aw6Pfr9K96tcpru/+Yp9s3mIwbMPLJn9mqkV4nrZ169YRgO4djL0LqP0KG784JydnSJeGGHUxQVj1fZJsOYUjfjilwsJRJYd02m8KzgUVFeR5ufmMQ/8uCHlT7mi/Xjk9NpvpNjsNHq6ayAShA7RNUPQNKB/Pf6iPxzmyf/369dbjYGNqahoVxUWgm1hbX7+Ky37gQGS6ZR4mc+M7hLJkeEDAv+ygADGLHjx4XwYM4dQ0PWY+yizC6Oh7wi4LRHw7sCT/GG+7+iGyfQXoeEHBMFd5OB0O0v/C0BoElMj7oFUVERNt7Gi4xIisJ4wcET3I06OKCjfbG1EVEf2yKTwWcCMHCBOaRVGIpoI4F+uikYh01Bge8/ltXdzYnij1ULR4pACfdRFthlSFxfxHklkhLGwighgZVFIYF/iPwv+pJ4AHwivDYr6WZHKEUeKLLbY4KOrZSYGnCj4NKsr/QqsVQwQqIDQyXXuHdMkYFv2umr/P65S2I4p5cLlWTFfNXTFYulM9tXMi6ikQFsChgw/7ihBjWNxkQiS9LLHZYLxBmbBK+8zw3TQvr4OUFHSy4W9dtddgPPP+BN4UKWE8dYmyDfagwudGeOW8oTiA6tw1muPIsS47EKEB7RMICIutewQwGNJutjQiZu+G5tMwOAk3kfNYcawoewVeWsAIrYX7sgK14p/socbi4jyNNywJMCARSdNQ7K99TGY/pwJtDSo+FOlAgfu61Htk586dvs0tLfnQYSaI+GM3X2wLIuXv01JS9GpGni0Xl5Rchn7/tEGLEwAuV7RFBb/AfeQ1GOTNmLwXvfOB/Q+8BotjtCWF2WojeJQyhseuNFZJ14hMMuG/YtzJJkP5xfAcfxh3+cOKWhe1ubmZR8IILOrSoT4+Qzw9PPwx8CHC/xYYjH34w8df9aFnLebys0LrhyFI64TTfrZiRf6Ni3fekgjjmF/W0ioNv6mLThl58tD33PVVL8YsNJovbMHYWKhwShBpnPZUYbFaVnd1/l8WUNwPLzXeUJbxM+Fube3r4MvCqf7Xe/ztyKh/g+TzBbQ3bMnIsD2j4tAOwsE4Bf3ZDxhyj5lY8U/ITuyfXKn2TgK8k2gx0+8qw6OPYdNrEbEmAn7fIULPHlVc8DeFz1GJldRigUKw6yYiM+BlCBQfX9/Q4GWjp/R0XV3dWLQFJKz/svWjwnM4yPgWqx+HPOuEMsYTOMi9gP/2y3RqiEIceDivBfXMuojXcptZeyLwuAEC6zn8Ak/lf6wEBIXeUYk4b0I//x1VjysegYf98Q5M3QcNKmtrb5dh6POg+0yh5XcceGQKjP83DsyNSj8vh/n4nOEPJBgjRNns2JzrgooKt/M+Zx9Skmp44RN44S1nNLyf52LwGHNls6vlIC35AIu1CHsk3tvbe39TU5MP4JMNY5dB2XnqbFvN161H1MSPoj5k8ODfIWoFQPk9DY2Nu2EAD+M8aqUiah12psOAM2TNmjV1UDYKafsslKH4cRgfR7J4xZkRvH/AGaIoi+z7K9T5z6XvvnPEJY4BSmQ1xOI9rPMqKpOY6vBFgb3V9cb0uBnY6M8iOD7ZW1mu8lsN4SFWEOhRhNWpbcxcbgqL5eF2mKtCFDqek1WGxxyxSJaTMAJnKf2LMtbfpQ1a2qLClzXu7k8hxOUzwtY3stYKpOPJPKHsTgmeshvDYvYjuJzFYTaNh3Gtm8+ooJICQ3e8fTVuPUfshSEVCbF0UANC3zwcnTeRCP5BG9KZ7arPEQ7DdmLehOxiOTzQjqRxp+dQz63Dj3zUYC+zv9sODVEmBVReYMSSgfYM5FPXREr5u9IfkWp9KhB6RyYsAWMixnLdvJh+5LFD1quowv8oyy4NURThN0KZETxdkslgsCBLluAlN4x/JLq7bwo4+fF1hfZxlS4ZwpUDzKwZL5NpDgyqcHNnv+aZ8ONS3H7e/wOEtrxD5BF+WwAAAABJRU5ErkJggg=="/><span>Packers &amp; Movers</span></div><div class="nb__3KVk4" id="payRentHomeTile"><div class="nb__bIPYE"><span>New Offers</span></div><img alt="star" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAAXNSR0IArs4c6QAABmVJREFUaAXlWm9MHEUU39k97gADCIVWaJu0NQeJWhKC1QZTG6yBVtMURTD6pV9sMEVJgxAO7oiJ3PEvKYkxRq0mxg9qOCzWxPaDkhhorYk19U9riFilpq212lIFy5+73Vl/c3CwLLd7u3e7kugky8y892bm/WbevDczB8f9RxKxCkdPT8+GcDj8NkfITlmWUyzo9weekOe9Xu+nRvqyDIg/EDiGAR+SOe4Iz3FTeoNTjnuGyPIfMiEU+QxkrxFCfkV+g7XDRPDopwa0ApfTub65ufkWo+slhx7TDA+D349ZCbb7fE3x2nUEAnsgc7Pd62V5JHV2dhY6nc6Jpqam64zg9/u/QZ+DoVCoCNWzESGdP5g8y5IDMzibRG/FM+FwcbS9LAhspWCpxJCZWgkkqsNifnVHTd7lssfPXnnwibJFokZBkuViIkmLQDTENMm2AhEELkvm5BIouFlTgyXGVkz/1qWquZJleyTWsHKI7VkkQubzWEILNOyvAhTTdER0WbauyLrT/T85Ush9+Y7ioK4WYAIpFk+OC1irH1tXhA2aPzx4huMGtca3jG4rkGu7nloXnpk7KQjCgfyTA8OWaR2jI1tNi0hiBuzFLVNxQ4yxLSXZCoRSTmLayvx8bqnmqs5sBXLHyMC44HDeVTAy2K8a1/KqrUCYtgUj/aOIzgl7I6OIbQdiVJFk5SwBEgwGBSiCmLZ6KSn3y47bge7uJ8fGxioBIab54BR7L47rL+C4fiEzM9Pf0NAwZwfchIH09va6cQcZgP2vxVcKUI+qFQwEApVUlo8hYk/imFIzOTXFzlJVajkr6gmZVkdXV8VcKPQlFFgPJatwi7uqVgb3i0ewRB+BPpqWmno3gLwEsPu6urpK1bJW1E0D8Xd27ieUnsDgvzgEYZvP52OAliWY016J0g9BPAeZXeyyBNN6gwmJlG5fJmxRxRQQmMo9WAGm0FCqy/VAa2vrRbUeAPEYZv8ovq8B4mHI3GQyWDV2nZ0DIHbKtTyZAgLTeBnmciM9Le3pWPdo8O8EPwiwZ7IyMio8Hs9fUY39hw9vBN+F+qUozcrcMBDY/BrM8k7M6muNjY0TaiXge50AUQGZL7KzsyvhnSaVMvLs7AFWxwFySEm3qmwYCGZzOz6Bo3SFIv7u7jKASAWYU6lO5576+vq/lQrCOewGrw3fOzC1C0qeVpmnFOLGkxn3m8G6TUlJidh8dIi+vr6c6ZmZIN6g3iwrKztUXl4uRnksZ/uKSlI/gH63Ni/vIKNBw7hKUh63Syly5mRN4iYzQGJ2BhAdAPFsW1vbx2oBPNoV4NHuBMxxCvtmb11d3fSCzC2YYNy3KnV/evWkgGC2810u14vRtyjlQACRERbF41D4dnivHdj4VxT8UQBbsc8UfNPFpIDECoRRDUKi+BbsZyO+aoD4NkpnOY4s5wnP6wJhewQvkoZTUkD0RoE5/S5Tinc24Uf2LqyUDVP6G4Lqn1G6KIo5lFIR4FyMBqfCS5K0j7VBe+VKKrtZVrYNCLzbJxjpOVGSxmNuWkK4UDi8pAzqOJcx2mKcwWQcaWlpubwkpF2yDYjD4fgZewRbhLwOU/pKrQK8GOMdQp6D/TKEiI8qmaCEnOOxJFjKMZ/Hc0rdTqtuG5Awz8+/AwvC++0ez0gsBXB6rsYemvZ5vftj8c3QDAdEM50yWRIKZUPJS4Vbtnyu2VaW8crCRR6rNWUMMmwDgvE3w1Reqa2t1Y5qhBQB7LhBXXXFbAMCELe53e4+rdERg8qxE/IA5AMtGTN024Dk5ua+q7caAOEB2KOIRcfNKKwla9tmx3FE4VuXD49frOpBKcSdZttyTuI1w0AweyLcJBdieRIJF69qrMbu9PT00ljXgUS7NgwEEfZ7BKxbhZs2XUx0MNYO0aKkyO2u0jO7ZPqP2xazSOD3V5xw4zZUCWCT16pIllThNOKnjo6OaGTOhPSym1/81isk2HV3Divsx9Gf/aRtSTJmWni3wh5B7LImsdXFIZFt9H8ZCNNflofx9FOeLBRmWpgRy1/nja2IQns8sJXAbWXhvnAdMeC8grWqRdMBEQ9sr+JY/hk8WNeqaq4a3PSKAPlBXICyYOeR/xtR9bdqVeNA4P8RkU9Hrp8LvyKjnojia1gjTIRlzoP1ZwgIfHQ3i+qGfDXrVScx7Vk/vCC8pyP2/2X9A2JuOcJQxpp4AAAAAElFTkSuQmCC"/><span>Pay rent</span></div><div class="nb__3KVk4" id="raHomeTile"><div class="nb__bIPYE"><span>Flat 30% off</span></div><img alt="star" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAABtJJREFUaAXtWmtsFFUUntduHwJ1bVdTQKMJVAwJIcijCkQ0ioYfRiXUBP1htaRKtTEIlt3tRrTbXZughBohJEYwiMFWgcQf+ACLwkKLDxJDlG6RNJbWSmst3e1jZnfm+t1xp9mZ3W63Q7dtkEln7+vcc8537zn3caYMc+OZWiPAGtWprq5eTxjmedSvIoTwxvZJKP8GJQ9bLJa3KyoqgiPJHwbS0NAg+P3+jwHiaZZlz6ODACBzkEoo70N910hM0lXPEsIyLHsv+K+GLq0Cz69xOBwXE8kTtMrTp09XqCA47jWXw7EDypMqn+8xRpaPgtlZt9P5kUY70anH41kKmV/IirIfgJZDN8WoA0crtm/fngcQbjrylU7nuxQErXc7HF8ifwGdn6LlyXoqKyvPwnQ2Qo9Cn8+3JpEeKhBJkpaCKIPnuF1GIiA6zxAy11g/0eWCgoIjGNSgoigPJpKtAsE8zaONHMddMBKhcyfe2cb6iS4XFRXJkNmG9/ZEslUgjKK00EZZlhfGESmKFFc3BStUZ7fZbA09vb1/wJl2wwYfx8pwKZmue/fuzWxvb6+F2a3CbKVjiR4C73q3y7UtmR6xbSqQsrKykNfrfRYmdjgiy81VHg9du9U1G75zJ1YtnbIdHR1lELQBNPXwn6FYhuOUvw183sCedsblcn2VCs/h5dfpdJ5Ex/kY4RIAWoTO06MMwkZGAHc36P6sdLmKjG3jUcag5sI6uqFHAfiNDQhVAOj/QlJN89qDNfwd5DdoZS3FjOAvPU9mZibpHxgYE/P/nH1MXaYm8XUDZNhHxjTOHCfiHHQTbNnO8/y4O/vg4OAdVB+MspiqXqaAEJY9jL1no0zIFThlqrLGShfCBv11qp1MAcEZ7FvsN4uxga7EccAUj6QKKsoQycg46tiypTUpXUyjaSWwaZ4DH/pOied/7uzROairq+NbWlroJqptnqZnR+E4HBQYhpXlXmzOv4LnmJzPlGnR+8ugKL7cHAiUQXYejimmAQx3jC4alJOnurrT4/XuFDhu99atW68O0yTJmAKyefPmbvDcVltb6wuFQgvlcZgRTlFYOit0Rux2+7nS0tK4o1ESHIwpIBrD8vJyus43aeXJTE0B2bNnT/aVnp6lGMXlCq6fOB1fs4+ogQaMBPaoXvjHGaxC/vz8/B+Ki4tT2nBNAenv7yc8jsAK7vbwUAIfuWYnAQB1Qik/gCIYHCUYDKbM1xSQTZs2DULqd9FXVWCyf66bfeS6AWLKtDQzIsvWz5UYcRkrCBet/k8btXotbVuxdhn85xWUH0KkTHdd1mgSpXC8EMMyn2UI/I5bT9R3JqIx1pkGIhWueynMSO/B1XkSiTBS4dp91sbPi2MFzM7nzl3uIIfgv70MR0affRoihZfjpfGCQ6mCoDJNASEr1tvCEXEH1pbhUUb+uXBh0QFLY90xDQxbX09DSQCivlp1WtLRRymB2LAiz4HiGcYmrJrzjXUTVY4DglvfA6MJt+QIzQiT9xvpYBM/GesmqqwDUlNTMx07tXs04ezRA33YqUqod1BaACDsNGmXpan+1Gh909Wu8xGYhg2CVtHjeTTWOqJc68EfjwSbQyG+fUaWnDuQwdrFDub4iORpb9DNSEQQ6OmAx+kTg5z86evoWUemiTeH5/39CWMfDCsMKUHfUfsl52q+VTcjGpuurq5UzjhLsFBe5gV258GzzzwK58/pO+VuRECvT+Mz7ikht4DnYsj4JpY3YtdP6oEMJThoctxVoihZNHAdexLNWd5XHmq0ffBh05utfcFgPmbjIraAMBwmK1bIOOd/j/JTZcB8ZmLE78L3HUEPJIFUEPtBLCBwfR+aG2JJphX+80uVr381dm8WV6JShFx17bG06cjjFvk6wlI12dnZks5HrFarGhALtLXN1ATn5eWdoQFrXKBr6AdTrZ6muJdYWDBCe2tWVlbcESWWNi15RVkAvj24TQ7ogCB4rEaOiSTdowmmRPDgFzDqS/DV9zgi9gtgRhzSRV3d3d8jvxDtL0aP9lq3tKa4Ys+o8no3wFLWwZz3U2G6VYYuu4GWli4ofQwfIHWfDKB4ETruguK56BwBjTY7qGbktGoeZY6Zh3gSRGpDSg9lJwRBeIIGKHRAKD3srhJKvoX3foDRmQuNngyFw4/A+TeCpX0ilNfJwGKCUTsOIJ0wpZMIG/m19jggdHcPRyI/gyAXjQ/DgWl+yj9xQKjGWKdnwXxOIDsLM/M+fKcmGgKizVPy0Tm7piFMqt1qsawECPovHa8OieIl+IgbdpmQXus3mWnCGYlViC65gUDAKoqiHI1jxTbfyN8YgRFG4F+iarTDkvYTCAAAAABJRU5ErkJggg=="/><span>Rental Agreement</span></div><div class="nb__3KVk4" id="click&amp;Earn"><div class="nb__bIPYE nb__2SMHn"><span></span></div><img alt="star" src="https://assets.nobroker.in/nb-new/public/Home/ClicknEarn.svg"/><span>Click &amp; Earn</span></div><div class="nb__3KVk4" id="hsHomeTile"><div class="nb__bIPYE"><span>New</span></div><img alt="star" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAAAMqADAAQAAAABAAAAMgAAAAB1y6+rAAAKw0lEQVRoBd1aDVBVxxXevffxHiBiJQEV0KpVsZPUTDN1WhEjGMWEaOv/ONFEM1rJOP60IiLwaBn5FVE62h9tOmO02jEStNPYTq0/j1GhGW2SYqNVTKJVRI0aCwbhwbt3+x3i4n2X+xAeaJzuzJ3dPXv27Pn2nLN/7zH2hCQRvzDwStz0NH/VUfzt6E+/vLy8fr761XjuJjPBs2+OmzHAF09H9McGJDc/f5UuRHVubu4PzAqRNZgQafgC3RpyP9JjAUIghK5vhH52wdhBM5ivrCFgCX5KcJ7sj1VsfoD36gIlnZhJpxcRlfCnnw5LTk6+1waC870Bqpra4vEc5pwvBMv7Ij7bVttyegFAZgHEUZtNXezRPNVNGt9TO3ZmSmRF2T/Mcn3Vu20RIYQNnwNgSlo/xiqpXl9fz40g4mJj561du/ayqihjp/2zZcXVsTMW1bScroa7/Q5W+tRmFyv7Hyu9yJiynDPxjCb0UzWxMw4A0Pd8KW+kdxuIFOZ0OtPpY5z/hWjNzc3LWt0JliAQCQkJHqKnp6ffCq09XUwAAHwIrHMokPed2L98/8fUHl1RtlUoyiuMszuCiVcA6EjNC9MnUFtHqceAyEFUzl1MUS5D0UKAagOxfv36GMTGrpKSksCBFftWqFwZzRn/M6w3yS3uXKyNnZVIMq6MnbGF66KSM2bjCssL7W0bEn1s/1Ep/9q42eGybMx7HIgmxHim64PMIBAbLrjQvHuNje9t2rQpiPw/unLfFAIkGL+jMX3jlbiZ34eVlsEaO3uH2AZHn9jv7HOw9Aujwpru2Xr1hVmxRhqVexSIOSbIncgSBILG4oqSCQskSDCkAAFSOMNiIZ5luiiDJW7bA9TlZgDEe2XczFFMsOlC07OpbkzdBgIf1/GJh4EIsNkSnBkZ+QrnC9qBmTSqFFY4CzBRiI/iiPLSL41KyjLX9Z/Dqpzc0WyV7gMR4jgG+swc2EZLEIi0tLR/k0KZmZm7uKq+bgTDs7N1hfF1ZA2HTfkl+vaWylN+PfG1Xq3HF1gDgDeA74bu0bbWxs2Ok3ygdS91xhIShHGk3IKCeULTdsKaruCgoKk/ra931xz6eNrOpO82YtZ/j1iZsvjY+X9pDfeWYvVKBfBwxN1fewWpcxsaxYuM6b8CT38AOKIotuxuWcRfEATImZ6+2+hmJaGhjoEV7+6z2WxVUPoLgDn4WW/HUp2JNwkEAF+GV20JO1xaFxrCy+HNf/hqYniCLrRlflvECCJm+PBX58yZo/lyJ6MlzGUcJOdjqd4hLbNq1apGyIlsbmkpB28/h1tPmueqigFPJiwwlHE1iQstBW0TaGVUFXXdgOOlZ/0C0lMgJKiHgYGSkzOrqj6sqdXOccEC4GrRnCkp0ZVlm6SMLrtWT4MgRWgBMLoZ7TOIq1p7QEA8mm+Qm+U999zzUDaPQMAS16OilN9QX5m6ZJGcgoJEpmkH4QZnRwwfPspfd5KDm3MryxQVFQ13NzdjaWb1gxoaRkw4dv4UzmJboiv2lxj7dwkIgo7n5ef/FvlizEqO3WbbLTc74xIrB9i7d6966dKlobJuzJtVtcmZknLFSKOyEUygwzG3qakJewwfB0Xnw3J7rsbO+lFkFP8bLy1tNPbtEhDq6AWGsS9hnQYrEMS7YcOGiCa3+waVLdJHWU7n8xb0NjBouwf5QRKEFa+kdTlGIFhkZmQsgfADKAf4AiEHoBx8byMG5skP9Q+N7eZy66bJGN1FHJ0BQf39ulgRGJxkT6P/ZKvNjgQbE259J3E8ub/uM5ablzcX7dFGnnZlzmMwzi5M2p52bRaELlvEQsYjIcGFsVixu50V/sQC6SwAyfd/A8SvGJGz8DjzwsLCPi1CjFZ03aEoyhlcmS8Zx3+kQFpaWsjPu5UKCgr6arpe5NG0N7D2qzqk6ZpGC4YLO/+ra9asuU4DPFLXCgkJqcfKo+Hzuq7eH/fhYwthBwAX4v51zMgv8AITj+UYd322EjKG4IHjHQJByW+LYEnFSUFwOqlioHBN0yD/QdLt9roVK1ZcxMydsauq976BYzq6Bz/gti5B+QS0DMH+k4S95Yjkys/Pj4SVBuORY52k+Q0EwkNwtPbguH1VCvPK3W6Wk5f3d4A8BfNfMLYBxAdwkc+NNIvyTUxUDMZZZQSxbdu2gJu3bhWA/3zMsGE7ZT+vWZTEjvLt27cHXr12bQOutsvAdxECNiP4Lum67hUPsBiO2gwviOwb2NozbIpySMr1eDyj0KcfvoPo93lGRsZN2UY5ZnwEJumPKNZiQ5wE4G2ycRZLRVsR3Gwq+h2Q/boEBIdAe3V1tQuKjYHkIjy8OeXDmxRozKHQU3geooe4aUa6uQxFP8HMp2El2g9Fl0N+IhTbExQUVEYXLcmfW1z8TeZ2n0H9sDMz00umT9ciJdDhKaCuloIuXLiwGQCGwjcTs9LTD0u6rxx9b6NtOmSNQe71cwEsgdchBQ8jen+0LYLPl2KJXamq6p8AaLOlTLf7LdB1Fhi43NxuaRECAfMdhn/3hwkToNC5nPz8NzDqHIfDsSA1NfVh/m0ep8M6Tsm9cEquhWXexUwvsmLG+Ml4+NuKSVyalZHhdaki/nZADCBGQPBdgBFgWgKfH4SD36+N/mo1oD80DKFgdbuGcQ7h/Xi+WQZ0GgmLfYCxjyNmXrbSwcu1jCDgs1PwolF7/+L0Ft50460EmAftqI4VJ7iuri4Kwc4hWyBXdUWJwPWZXCUCX5m5P2JmALzjPYzdgA1woS8d2iwiQUBQDF77piAGWh+OQR+BgHUhYBXpZubBfNXh8894dH0y+iYitr6DPNKKF8o1IsALYfG2fYH4AKIfQLjQHo2+E2Gtk1b9idYKxAgChKnGdZuYugOG+pN34u49AGelYahEgURRTkuqBxb5b0RY2An6UYh4ZaKNFt5Am+BApqovOdeuPSHbrPJWIPBPCuwXsYwsxKzskIy4POVgFdmBVeQTegTA5ucCn9pVy0h5nc1xvhqMmDiEsSIwVhIWm4qH9VWIwaaqKTDfbczWz3I3bhxINDqswdzJEFhOgml3ho8mgE8DzQUrjSS+nk5wp2fhjqR4H+g1sTMgSIdWIPhJrAqdElDvzZqaygkMrHCnlSbEfyQfgcEMUdA/EjB4bnoJMVGBCW0QAQFjoMMpUrIzqdW1JCMFJ/zyKIh0xRyP4LI8R8FCwzBrtADYfLmZy+WyVVZWhmPTcwC47gnAA2FHye1eAHnZYDoZ5HD8cPXq1bc6Yje3eQGhRgTZtxELRzF4PVxpvDzvmzvmFBV9i9H7LMA47PaXcaSOgyvGw6+HoS89LISh3E6+WY6xDubdwcHBPzYeS4ztHZUtBwKYmGZYBkrW4ZEs3tdOTmB4czP9pOYA6HiAPldcXBwOUASk3/3PjhwHkgcHP7NCChAjnYUHvG9u62zdEgh1lqsUinewOcbfPze1k0sWhDtWAcxNvDyOxPNQp18+2gnrBqE12K36U2Aj4MZDwVAE4Dv0/GnFh+tsFmZThaDMrwsE6eUTCDVmrVnzKf6tMA7Fvji+FxLNmLDPvAmgUxHws7GJvm1se9zlDoGQMvRvhajIyLEI5DD6uUwqiJULPyuzJQAxGm63T9K/rtxnjFgphMPda/hJ9SOsStdwj/gJjvSFWAgarHifeBqdgWinf9IU/R/GDsSi0fBmXQAAAABJRU5ErkJggg=="/><span>Painting &amp; Cleaning</span></div><div class="nb__3KVk4" id="nriHomeTile"><div class="nb__bIPYE nb__2SMHn"><span></span></div><img alt="star" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEMAAABECAMAAADtEXj5AAAA+VBMVEUAAACEhYWEhYWEhYXkOlHkOlGEhYWEhYWEhYXkOlHkOlGEhYWEhYXkOlHkOlHkOlGEhYXkOlHkOlHkOlGEhYXkOlGEhYXkOlHkOlHkOlHkOlHkOlHkOlGEhYWEhYWEhYWEhYXkOlHkOlGEhYWEhYWEhYWEhYXkOlHkOlHkOlHkOlHkOlHkOlHkOlGEhYWEhYWEhYXkOlHkOlHkOlGEhYXkOlGEhYXkOlHkOlHkOlHkOlHkOlHkOlGEhYXkOlGEhYWEhYXkOlGTeH3kOlGEhYWEhYWEhYXkOlHkOlGEhYXkOlHkOlHkOlHkOlGVd3ygbnaEhYWEhYXkOlF4CvcBAAAAUXRSTlMA0ODxoPAwcLDQwGAggBCu/OiF+wZFWR3z7Ms9IxMN7ObXxoVK1Cvfo09KKhfSwI839uLb2tOomWFdWhkLn4toGhTo1Mu2nHt6Pzc2MzD8+pjaA0a4AAACd0lEQVRYw+XVaXOiQBAG4AZygIkwCOKJ4JnLI0Zj7sRks9n7mP7/P2YZYmU2y+IAVlmpyltlM198lJ4Llsf+TejyENUVGG3qSXF5+MmqT1WB0SVziMvGJqu2TwSGrIDAAIm+a6Mj9VY2duhWSkOSMxnCVddZ1XAoVY5XMxziU2WBcKNxo1BhvJG9ILrb1PGeEW7MqCILo9A2BLkjXTfoae8Z4QbxGyDMnEzDfnbdcF56vvPKoBIkiCIDSyOcF/bMZPB58XoA2Y2wqR2FIdmNsCPHniMy9Fqx+FWPMaARfpYa9UITw3wo1KMGT7xxtY9oYmvvtIUVtM7uMxiHFdz/jIat5WwD8waaxdTGOZ7USuXmNWg5uB6US0XTukxpHOCgDwZ+A2bAd8uAUtMqRgxH6cUapfJJXa/hhq7rp62gbGBNPzIrfW7wMyjOMPC/2U9h/MBqPl+wJvkg5h6rTauQz1fxKLlxhnWAIp4DsH6weoGHAEd4m9ww2fcKWOJGHwtBre4lNur4ifWkAtwA0wjZq6TGIR6wH63+bbS0oFxiLalxgRNN08ZlTeOPshWUCcOTGloulxtXcizlzfBRGQdFY8Ya3iV1Txu79mJ0X0o/t9GkX2PRZFvr0TQUL+WeixIqHaXa+7PhTlCHw87LWCa066Y6gz5Kd6wBUudlrFD6BNnOQh53Rp2MZzKP7Q+z3g08qiy+o8SG4K5MbojDDUfuLUa3g/RGdN++UWN3Kybz5MYNjckoudHZjsmX9fbD3Y2J+z77sR6D31HZDZ43axDfFhMumcYaj1NQqS8J44VLTX2dh1+sPtI2uCqhwpAn9mflf+KzMm3bfwCNPMMBhsZ+KAAAAABJRU5ErkJggg=="/><span>NoBroker For NRIs</span></div></div><div class="text-center nb__BUAqD"><div class="heading-1 nb__3tfMC"><div class="nb__36DNl nb__27k4w"></div>Why Use NoBroker<div class="nb__36DNl nb__2Y00v"></div></div><div class="nb__3S9sH"><div><a class="nb__BXOsd" href="/about/tenants" rel="noreferrer" target="_self"><img alt="Avoid Brokers" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFEAAABKCAYAAADDnrhuAAAABmJLR0QA/wD/AP+gvaeTAAALPUlEQVR42u2cC3BU1RnHV7SWomC1lKqDQ6dqdYTSIkLc3VCRURqQsLsJIaDlpUiK+KClSBkLZpLdTcKzhIQQwksdQakUkE6lQCsWLS2glbdSiqBESAKEvPa99/T/3f1u3Gx2N7vZB8NNzsw3u8nePfd8v/ud8z3OSTSaztbZOltn62yd7VpsFovlB2ardb7ZbN5utlg+h1RD3BDRDmmEnEN/hyFv5VssMxYuXHiTqgHmW63PQummdgKLVGpwn5FqtcBxUNALkSBbYYmm3KKi3gUFBbeWl5d/qz195ubm3kzfz8/Pvw+WOAn97mWQDvxumKoAEiQo9iUpiCn3UkKt3WKxMshDQojr1GSFY2XFzOZPE60YrPMG3Ou/8gMrKEhTDURMtWWkFGDOSdJDe5WtvlA9DsVi+VBWKj//sSQ5sJE8pf+uHku0WM7wdO6TFIj5+XczxFNqgniJlMJ6dVsy7me1Wr/PEKvVBNHJEG9Mxv1wn64M0d4JMbZ7evieXdQCkVI7QdMsife0McSuaoF4ihRCdnFPEu9ZxxB7qAXiAfbODyfxnjUMsada4sSNMkSrdUISIdaryhIBMZczCHMy7ldYWHgLe+d6NeXOT3La98ckxYkPMMQTqoGYV1AwMJlKUXrJ99utGohcCqMqtIQ1qlcSLH8aO7L1GjU1KLWTFctKwhr8mrwGW63TVQUR1jGPPfTyZMWleXl5P1EbxEd5nTqS4Ly5F29B1G3atOl6VUEsLi7+NhS7zBbSN2FWaDZn8sPaoVFjg4KrEh0vou83OZyapUqIiN8eUYqlidhrod0/9N1A0xl5+g9VCZHKUrCUs1zR0cbdCq3WHH5IH2nU3AAxj730png/IHJaHEY9pWqI7D2p1ueBNd4fx/U2m9fCr5JZ/L16DuabLdRtcXowXZv3mnFURdMRGm8k1bHSI+OwRJh5iThMm/eajtIw/X7D69f5WAqnHMS75T0Vs3mwpiM12RFYrbvYm35AwXg7LPoBZf+GjutpOmKTzypaLKcZ5FaA7RYFQK2yBcDf7aLpqE0+FsfWBKj7If3asOBuXMxwKQDbY8VqBEnHPo4zFA+m5gY4nFG5CxbczuB6Yr1L5WNzF/g6CT8visaR2FIyejt0hufsOsNGu8501K4zOiGCxQM5ZdOZttn0ptlOfXrfaw5kUVFRdzrFRacWIjgNewDW+HikfTc9nPGgTWt8l0GJyMWwz6E3jrj2HE5R0Z2A+WtY4/sAVamUtSDHKL6k/DvSvhw6492A8RZEkqE8Ola45hYKz/ZdQvrfWSHsDtHcXG4hfVkpPH/7ULjMxcKR9ks/mKYPbKmGlA63RADgcAC44oOXLbkrNgjR2CQibm6P8GzZIRyjJisw3ehzekcCOJ2UJuVdrywQ0sXLot3NZhfukvXCrjfJMG06wzKRlXW92gG+IFtOqkl43t4u4tW8/zwo7I+Nl3h6r02KMqWlpXeVlZWZVqxYYcXrzpUrV9bifVki71kzYkK6Xc/rn/EZIdXWiXg276ET8rpK/Tu0phnxzj5uAKjBgDQb8i7eX4CIIFIXaVCMgX7m5ynrMOhRYcOXnxvusg3JbLSRgulTfIpmPyekmktxBenZvVeZ2m673jAkJnAAMgDWNRfQ3sP7hiDAzjPQebguDa/n6Pd4f2+EEJtahhumijam8Tt0nXO2WUh1DcL5zG8TBtJd9rpvTFrjMTFwWuR/g0M7Z4AwFPIHyBdBoB2HrACkbJrKQaBv4+vGhbuP0GiuEwOzbmkVs2mNq0PGgdrRA+RrhmUL6UK1rKjU0CicTycIpNMlHGNylLFNbhMerGkgpBjK1wRAqwSwcoZ2ewSW+ypb4oK2IDbpR98ZDUR8/gZdQ17UvyUSpGfHHmVsR8LBmwGljwSAOwQI+YA2KNqNJnwvnfvYHR5ibhdHSua9kUIUKSN6yFMf3liqqmmlbMJAer1Ye30xJB76Q8GsRu8HrhqypKSkJKZcsqKiojf3dzncA6A1Bvnti0i3NiuClG0z1kSLTWvKChSkZmZ5LZzxSkh9W4GsvhgXjq4lFUrsWOxIzfxRoBUWs8JrsBbGbb9C8dp4ID8OCbFv1o0Atj9ILrsOzuNgoOD3VfJUXvt2WIVbgpweF5Devf/29acz1tNYAsOVaoY4IJ6hEPrbwP0+H84SMXX/1RpiRp8Q6+Fu+ty77+M2lY43SMqEeHyXAhUdxoqejHcwjD6fZueyJSREpFS2IJbYpMsYFALiSfpcOnsuMsXrG+IHUpKag2/Rf/hN/lN5MSuaH2+IfuvilVB1QNmxaI2fBEJ06DKeCBreDDFdlCFerI1cdwI5ZVZcQCqBfdOQjDv8reUAK5qQP7rGwznK/etDhTgOX8E0sLY3Jdj1dY+MafRBjK7IEC+QioduHJTlC/NQZu8B5dwQJ063dksERPRtYUtfGybuOxUIER5wTpAw7NaqXzzplSF+8VX0szFWkDSdh2b5pvPA9G6KlaSxlSTsLAs8cx/074HY8KB6hoBY2Xo6GxcFser5p8ZMlT/3fnSwfctaDCApLuXxVfkPai5BpHUxkdUWJQXEfeaEyIOvBAlxXve/Zs2aNd3Rx6WDU2eKSEKcRID07NmnJALv+0Ncy8pNS3CZbDhb/JnAf6JBjgWD8gaBuCPgQbxMfex8eZ68fjpzfhdbuHKlTjgmzowKpGtBmW9setN8/4H9I5FOpRkUMhYuWNADm9riM/3o7rDEw7w3Ug5ZAUdT6F+/w5LwPcp86PtvWItG45p6Kk9JlRdiA1kbBUjsyThGTJSvdaaM7u8P8TwNLFgVJgFeOluxxsCsCGnezDaKIkpGtcu3hhpWyVsB1pKYs5BWIKuCg/Rs26ms1S0ylS4YlBciJeM0Ad/vEMNosQHk0BpywgC8D9e7yDnhfX8fxIw+UMhhT80Q0umz8QE54SUfpLFBQGLfxYHKuS9qMI3zX6duZoUakrUfAghPKAVc/5AKU3NSmO+8x8tAi60GFCqWylPr+XkwE09CQboWlytW+HGLTSuqCSoKJQsir437+b7vYIoXkvwpr3Cr8t5fcE2p8qAB/Q7/vuqHpveEYhfkaQ0l49FagMycJqSvq5qnMZ2eaJWKAuI9PEAnZCOe9Ez8Trdu3bquCV4b00Lsx4QUig+D7rNoDTp5WlPIs3FbfEAiE3KMn+EDaUJMOiSDPbJhaqsBULYCcKeDDJrWnwMYeAleJ9CaFO+T/+h3MsWMimzOtVT4/+wvuPbFcAeYfDVG346f7Gjc8ZnadsqRee/5xLicT8NOL0yT+zHYSTx1DjLEQLCXeW0ys5ft195/mhYUhD4jpr/QRz3yWeWwknNmrpDOV8cUiLsKSpvjVeTqpVFv3tMGFVW1AWsiYC1jsN4QU+1rCjvoOrqe9meWLFnynWghOLWGmP8mj7YzsQddo5zBof2XaCo9oskm3G9uaY4F5WUijMNrz/TrBRkFSL8HrE14f4Lz4WBgmyCHIeQsltJ05P2WfqGKHLSHHOlYVq9efRs9LPSXCZkFWY7+/4zXY68tXur4bFzON1kPQiDnC/NkON7/HPUF0wiahVcS0qVa4T32uXz+xjnH2lxYUE6HuVJNP024pyUHBCgP0voGWUSnHpTgvQ2hLYNPoPhfufK9vLysrCiEd14FYJvxuocfTF0E/VduzbXsO2OcchznDl1RHK3zIP38CzKlNCrPXdWzMVSpgaTQfjMVOGiblQGf5EhAxCKA2sg1yu30AMga8fMYyENkpf5jqR1q/C6yofGUSkL2ckjkZkdEU/8AwK0nz0sHQq+Jw0eUtXC1ezCHOk/RdA/lmXHNr/CaRbk9wq+fhSqlXa32f1cAn7Dgf1WAAAAAAElFTkSuQmCC"/><div class="heading-5">Avoid Brokers</div><div class="nb__3zTPN">We directly connect you to verified owners to save brokerage</div></a></div><div><a class="nb__BXOsd" href="/list-your-property-for-rent-sale" rel="noreferrer" target="_self"><img alt="Free Listing" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAC8AAABICAYAAAER0ZzYAAAAAXNSR0IArs4c6QAAB6RJREFUaAXtWl9sFEUYv7te22saUQuKxBiqJIqEqEQhplcMBKEJvvSPoIlAxEBpw4t/XjQxoU/GmEA0wbRQApI0xlShTxIBY30AjQRJNAhITFFETIQeFVNu77p36+/bu287O7N7e3t7R9uETfZm5vv7m2+/mZ2ZvXAIV19f35PhcPhGfX392IYNG24SLdTb23vOrOR/RtpfO0XVCCTDIuPqvDmzkk2tRtTAJTKaP/5goalBPzBnY1oMWDtCDdslO2dmhCpsikquK3BZIzw8PBwdGRlZUF1dfSMWi42tX78+zUxbSX0ggunDxkFDi7ftlmlmu7+//3EbKlHK0RQJmIzu7m5bIIkRpR+6rI7lmotyhfRLzunpvSTRbU1+cEyM4DHt4IZbScHggETlJy4rPXJ4/zLG27uxZTITmOjUU6ZRH6xeM1H2ILctBfLASuxNFGaepcAEEhLrohLVrUeH8H7pZFlWCCGs4X379i1WGA4EMmg+e/T+aShqdEej0SSVmUxG6+zs1BD2rE0XUK7aCEIDFnu0eGtu7ObpkaqqqlWCjFLFeL1La2pdwwyr00xwKjFIjjK9oEIkErnIglYuMcGp3LZt26dGX98uBGEu8ZFL56wH56RAtK6urgeYhyCcsyBRjOlmpltpKbgJyHQLUqH8EZUsDwSH8klkOtVtHrgPXIoKjMBSICYTuRQVuG5BYoJXafNAUMh6UZBICKlsdroQJMtDISEbTCf3NoF8g0Ylcir32oLST6A/gftHwCKv9OaiSY7q1VQnGrUFuslbc+zUaZrswHe8ojB+BorIya7vHSUKEKHbA/ZaGiqwMRQ7OdQui9Nji2FUj8kMv230rI0cGevW1Ym6vvNCVHaqa39N3ErG26x5S1k+OCm50ZAZPUdXL12aiUT+s8kYxjzqTfq5jiXKMsQmWESD0q/bQY5eVLquHyp7iGRflGq2i/KcB4Vctwm6NFiX2YoDUcCtzsrFlBUPkeKAwsLIxDrT/JZKiDAij7Bh1D2ncC+HigNMGS94KfnhKw7oxYNhv5aMUG+COlQckHHOHg6VH8SyrPKQ2TgJinVZsdg2zUUXMKQLrpGKNSbKkU2ybS7xBgcH6xKJxDWEp14UKrUOw+MNDQ33YSOTtPYPe/bsWYD3wiysHXWsu3Qq4XACa0qd7nQ6rdfU1OjY4unj4+N6Y2OjvnLlSr0QCHq9PwiBK7hHcV+GZ/GVWA2a2LbqcEzJEX114Nj7dSeH3kFduUjgCvZks7ds2ZJQuB4EM7sM4+3Uio6Dtd8euiCLm5lTimHRUDadOY+eWCFmnpKWzPBbpuLtSvzLZtwIGREs7c+IoMpmnIxiul2iNbdtZwdlNW46yBq7jeXt86heduNkVMtkzWVJIOMYbG98s+qZf8mgfGlNbbeUWVIWKtTGhuhDTNuJTza2HHSQq5NPCRxkSiPRAAsUFi+3FTWuxFx8GwV9cSjGqatkVHSyd+/e45iCn/cKA6bsr7HVX81yjsZFwyQoKrBiMaViPGgoRKcVfaAVNa6ERYx30BA5Ig9qlOOuIGeGWPpIxePILOssyNG4GBpycicVxVAHrisxF+MdNGsU4wSXjIpOfGSL98Qlx6PUbHEcRCJq2ZGfthKWoHEWnTsiFwWC1CtrHIv9YcT4dBCEsi7ZI7vmmhoLm51YX78pC5XahuFd2NO+ZS3YsfGqGR0dfReM7XDUUKphv3pP/fL7Z8/OqXsl3NNjP78vwpCZjQjTVwDeAvmzAL8WvfqhCN1AIvDZAwM75l69tiB1JqGnmts7ak8cHvJjlI4/v4BCC0C/DtAf+VEulyz2JWEjmz2MxfeF2vC9y8In99vPCl0c0Wgyv7JhTXbMRea2kbF7W6gZiZupeKvj7lkGUtGpQHZWbDtrhN5LNrVdT654ubGQzrQEnwNszA6ltUs4v3bafpki0xh8PuaGsQljIT2xvD0uP4VAh/GyMT9tTBApks9Eo1VeehgL1XomewJP4YTR2UmnTuY1ZZEH+H4gSH7XtHhJNhJx3PrnMU4WhhHXzv6TTje3bSJiGG8/Ol1aiMO5RVu3bj0/KVn5Gp1q4cBwEOWLMS0Vmn/52s37r4+NVWWzni8srbbmb2XJVHnIkx4QfTrpX0cUdCBCH/d+w/cfYHdNJcg9BPE+3MnA34fIcTkudISi/XP+djWZ/+5k8qcs513R+WB4po34hUK0i0gF/loh2iul7gkeOWZ+WhG3D1gPgZyjl+K0XDqe4P04KnaLWKxNrLdsBw+ynid4Sg+KMkVbVAZd+UxX6hZUtOun7gk+6Fc4P2D8ys7o2WZGg/dMGznXxUcrzkAi/XbVPcEzEBGoW4cqMNvYDq4YC5dFg3cDzIaonHazjRhxEeh0qM/oAXsH/FSlkOeALTRQp3o8eILnqIpA3TpUgaky2MKMwbsBZj6Vd6ZKMRoe9Zk922Bdbh7+YMc+y6Oj04LNOAk3RX4noQLx84GBgWndAZzx3E0481HcaX4ZwXnJ/ImJiaMgPpZn/ImeXaKNar49ZQVwhAHjYQCg8xq6fsV/xFrwV64/rM86OXoodODAgRj+aPco/mdxD/6Fo/BZ7naViLSBvewYTvQubt68WRP9/g/5QDqF55nvmwAAAABJRU5ErkJggg=="/><div class="heading-5">Free Listing</div><div class="nb__3zTPN">Easy listing process. Also using WhatsApp</div></a></div><div><a class="nb__BXOsd" href="/about/tenants" rel="noreferrer" target="_self"><img alt="Shortlist without Visit" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAE8AAABJCAYAAAELaksNAAAAAXNSR0IArs4c6QAADJxJREFUeAHtmwmQFNUZx6dnr+GSgo03SDSmIEmlTCWxqHDJchVCUBaF0mCRrJxGE02BiYZSFiQkmEosKwdXOGvxAGSpEvFAxBKWVCIxHqkoECNQheFwgXDt7DWd3zfMa9403T093b2yVZmu6nnvfe+73v997+jXPbGYw7Vo0aI6B3I2CSZTKKQHM2m6nMW1ePHid3UCzMeVoEWHaZJV0DIwnrOKy5cv76IKDf3GmupWNJS0qHxWKoxZhEtbMJR5BcN9992Xpqmy1Cua4r0UqWmalq9mdXXcyYf4smXLvmUYhgVw8rV3WwMBTuvniQVHM46mnYhONN8ai0XaqRcUraioaLiTBUeaEiLd58jgl0hgn3TihX5Y0ZUxVXZMYVruWGEjoviUjRSzImHt2rXdzpw502P69Okf6ExOnd5h1yZLTnhR3DRjxozStByFyboCp7wa407KdX50pfRy4DwQpaNQFKTDwUsTVh/X62maJazTVT6nwlwKlCKV+o5sJRBJumTJkqv9KsrpIcoqevbseRws/+ZXqSsfSh7VKynv1Mt55QmFLU4C0Lc60T1pCO33YsDTTV71WXUwN2YRXArwPeNSdYGMZ9bkfYHqnkPpUtdaN2X6OJZ8ckDl/boSlP5GL6fDRpT5XQcROK0rYCTNROlci+bmmWJo6D9uge6lottT4nVmFs1LsTlw3NXJ/pXvZQlkCih6TKfnnByE2dix8T8kN+mCbvmcQ89N0I3u6aHAwD5gjhJm8zDX3nn6hkL4PBUKgz4fYuBCb0oll77xkHLkTW7/CnUMX/aKRcFHLjtPKpVeOZ84XwumKhM2Xbp06ddaW1v/gZ73ucuIhj5hdYq83uJA+kBgIoI1U6dOjRNBVoOZL/4C/Qqi7np4ppJ3nensoR3IEbuQTK3cTXa6vYxzb3IfstNVmbq8pnQl55qi8B3ug64MLhXIbKFBx+zVkTmI8hPcr9oN5FtGx3pua5sd2kGUpbiztof5OuXEj2Or0HvGqU6nWUGtE7ds2VJ24MCBJDE/jCDfptfZ88kBdwwzU63WTqeoKNa3NWVsjpnm5cKLgVOJXZu62uVUGSd/z3w/hYGSUDQ9zXKQVn2Ryk+4eyDgGti6glyPBMJLQ7cn6mqH6HL2PLZ/CW0Wdkv0urSDLNKjmSA39+nTp6SiosL5fEGX0vLJgeNGm62pzRopK4tzrTjnezrDl5/jyxM4WiSKDB69hzCHvZGlNUChsV/l7amYae0/mRFPJuo2dQugKi1C1/+Irn/EUT7MyHI7hHA0lCHKNgub85x4Il/djerq9GLqZCwIzXdsOCmnG4ZCH+RUl6HtZhZ40aM+XWXften8oRxE8esEc9ZMoCvPhIprveJlIKHKecWLvIuV0ajSgoNhkWz3CIZtYJY8o3rXmjVrrsgihihEhh6OfYofRWfPnj3CpOv7hMjL90icw7FTTA9vM9f1LSkpKWcN/ZSls4eXYT91OeelXEqY35qZu5bg2AOKF+S64qBsRK9nbtzvtVwiOxPZ3ypZPQ3lnBiNx+OzOOLNOpURA/IWpqmp6RT1N1L/sW5U5ZGvljwNSKeS169A3UoXxjOOTXByTAxMnjz5dKdOnTqD4L9wtLdu1G8+b+fWrVvXgRhrBZGBOLbey9CkSZPOlpeXdwTBj+T52IvXqS4v51asWHF5fX39udLS0j44ttNJoZ02YcKEhl69eiXkwZ1G+TpoUjp8O4fiLzc2Nh6lq66ky/YoBX7SUaNGNYJgGeHwrrx78iMjPL6co0v6oXgvXdmJrjrqV7nOB4JN8rjQ0tKym9HcV69zy+ccrTh2B12ygZYXY6DVTZFfOjFbRGi0ZGLWV2g46qaFD3nNUY5CPohqtKO/wgf7xSw49TRxltcTm67FHD8+/ZSl0/Q8DhrScGwM1+l63rFbEdiI8HAmxy46s1O+oX/lUfXAzQNfvREzv8c+1zruKDaKB5XUbdjhJCsOYitFF3+X0f+SneeiAUFr/ozQd/w4xqH2Ty44JqrNct0xobSYLW9J6nTJlh07BhP1Zrp4rJ0nyzkckxeoXRHwtaswY2alXWGQcsbBWhwcr8tbzgGvHG0dgvGrOoNXnpY/71WfT13GwXUAJAea6SvtHAT5bmIrDIPPk/39JnbW/oGgdX6UyqiQmPOnzfqKoQagqkRGRozMXU/i2KN+ldj53A5+4kZ8dlndxgV2/lxlfJIGz5Cz4JFhHBND8sab85OzulEII4I4Jjqki0kW6/qsfMZzq+w3k+w/9iNB0Rx89xf8ygifmz1rQOSjzI2Xk6c+iWtLio03n/3MjScfeqTOiWFj/frQ669qQOTOKcVRpO3auVAnT8xHc70Q4qlqjld9rrpQyLEGP44BibGLbuoeXr16dXkuB7zqQyEnikFnnpMBUH3QiZ4PLRRy+RgKwltwLghqIlNAroBcUASCyrXrmHOdhN32WDoKbCgdv0zL8Gw5d+7cZ+jRRdzyji+SZcfZ7i5Os27g0EheSN+Qce7DRCIxpKqqyvoKtj043a7A49zoZs6NXgaYcqJme/fu3W9raGgo436dvcQ3oO0jreAxw9dL97YGuF2Axz5mDA1dBzAJAKrp3bt3lf3lv3wFffr06dfg+Ta8/+aUpYJTloMKIM4MulI3mfsyRfOTYu8U93J0/dcPv87jOqfoTG2VB7Qfolu++ZBOXEBEzXazNXHixBPU3VxTU3MZIL7KKdAB5A/yef1gPmj4xE0uB30wtm/JAF6dg/ei6ksSeTT61zg8C2/knI5On/6nizzLQeAotzNHubIgDCRyZBhXsEOXEzPfF4tFNczyzCMfbUo+r+tzizyGVQmA1XBPwMNzNPhWGvtKXt5qzJylywo4CL0dicIXye8FjMPFxcXyac2HGmubZdscPJmLpHHcA2nFMV6CfnPKlCl/j6pFRK2cNg5duXJlIplMbuLNxz8B8RgRPZS6D6Ky46SnzcCTN8Q05HVA602U7eXuRWOsCd7JmTA0tjFJ5EdmvtHbgN33AbGezhoeZWfpPkYOHvOZvDF8FeCuJN3F/qwbDbM+q9SNt0VeXg6id0xmmni+ubn5HXw6SSSOmDZt2ttR2owMPJwdwXwmL4U6EWXyjm+ivESM0tl8dBHlzfCP2759e/GePXtq2D/+lUg8xep8KyDuEl34uQN/D0uaj27FG3q1pVerULYMJ4ro3adwbCbOyEF+u7rkRevx48dX4ec9OHYGH0ezYL0VxsnA4NGL1RiekwHqQRz5XRhHPi9ZwIvT4cuwdy++y2JzG75vC2I/L/Ayr8mXY+j73I1E2l0MD+tL2SAOiIw5ePxVTU0tv+BN5RAG03VsmY/g2HNlicRCY9uzR9I88t+hlPkrYvp2yl0yPC+VlRnzjTc2HhCefC5ANJhq/kg6AxBlsanMd+vkCzy+TuvER2AC0jDuE4B2K6DJXytCXbyR75A81CxPB7K4OF407AyvL0sBttSRQYiGcSwR6/Ylo27FaVcejwpG0dNU/xhbMkffCYgverBbVZ7gsXe6itMNeZ78Oor3cw8DtI8t6ZAZXti/gO5xIdWcFzdiz3So2zQxjC6G85P48zDtbCZA7mb+fsFLnyN47NG+wuq0FUXXomg3t0RaJK8NdWeS/SrXE1F36rTAecNY3aGu9geB5TVBhvN89omzabd8fXYPID6nVVvZLPBAfhCAScjKycRm9mjjM5tPSyDKjNn/3i5J88R+Zr3u4fQahxKlXW803lwlc1dkFyA+BojzUJgCyCqG8xpdeRo8ztHugmkNwJXAtJgou5800o/9daP2fMOAyvmxlDnbTvdTjsfiPyvbtfFJP7xBeZgTf4rsQjCRf4FOA5/0QYZ88CEnEtdAfARkFwY1EIUcnz08EDONpxnKcS99fL/RQiumd9hZu8KLL+o6IvEhguypDIgzsoatlzGGdPrzLgAe7cUXRV3TgMqbWmX6MGM9dX1GzNgXM4rHJOrW79HpUeQJosHoWQswk2ij574PLIbzpNLq+/GMIT0qCif96CjdWfsefNfJ/8IbU+YrRGJTImGMNLbV1vuRD8LDwjCQqLqGdt6CvCd4gLtVbPgGL4hDYWXy+Q98WFtB5D3nliAK/59kCuCF6O0CeCHAu2RzHqubPId2Duo7q2Jzx44du8l/S4Lq0OVYKHzvPJTcJQMPB9LAZb6TVf74Stkq1NPY7tzyF/VIwJO9G5cv+4qpMGwVEgHSAngBQFMiBfAUEgHSAngBQFMiBfAUEgHSAngBQFMiBfAUEgHSAngBQFMieW+SeTLIbyepLLVBmsc3xTmtcxyVk8fO8D+FmkuJ2IyX0QAAAABJRU5ErkJggg=="/><div class="heading-5">Shortlist without Visit</div><div class="nb__3zTPN">Extensive Information makes it easy</div></a></div><div><a class="nb__BXOsd" href="/rental-agreement" rel="noreferrer" target="_self"><img alt="Rental Agreement" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAC8AAABICAYAAAER0ZzYAAAAAXNSR0IArs4c6QAACElJREFUaAXtWn1sU1UU7+vH1jqBOUCCxjAlKgJRUQO6TsOYcYYYsxYBjYOIbuDCP378o9GE/WWMCUQTzAYbIMk0OqUlxj8ElRlhUwmSaPiSmKGAkAjrysjoa9f2+Ttv73b3fa+lLWj6ktd377nn65577rn3nlvBgaejo+M+QRCGKioqok1NTcMEc7S3tx+TC8rPQPDFg1R0AlPgG87NnDY5VtMouSU8fEPth+/NkSl4IF928hW+PPEGEkyUOgpf/25ZS6G3t9c9MDAw2+PxDHm93uiKFSsSvKxM2ZQVYYj+wOYMJl/o7Oy8RyecIVxlQ8zf+BPTirFUfUk4jd5KFVRTYQPHwE4M0wZWMfuSWCbazUZ8y5Ytzel0upMROZ3OlnXr1nXdEdq+EO4iD0T7qgaJJMgVEJ5hyPQlYkJkyK2trYLb7Z5raieemC9nTeBm1GvXrt2DssqDqY1s7ZCEba0KoqWEWE2gxSE5Fjkc0lYFH0VJErq6uuZnABYFMoCsAkbwQRCK9MISMfqmUikRaoqwXlrFAyN9TgXgKuDYJvobx+auAne6XK56DkdXxChNEmsan2ANlp1mSBhZsqD8WBLAPU4yxIwvMQBzAVYnV4AvfSJ1dGyCEWYQHL50zCH7OMOy+YLpscxIayXwtDDMk4onODIEpAKPZFbOEPyHJVgOHOwvIOBd5g1gSQDkNIhuZKNMhJYEsLMcIHgJGbPyQFb29u/WM7SyPyOkL81K6pM8uiD6FbB78f6CGUZSaeWiIEdlD5UJRnUOLrc9sffgIQp2aDd83GB+GIQv4/nREMMCCNo2NC8lI4JH2NsXDmrRyQZeOG9U25BtHT0LkCBp+XIfT0vdVD2wXf3o6Oi3KiBXwbL6eHNz83ccSFUU/x69EvMHzvv6wrdQg4Agdhw9CLa0tBxXYU6wQoO+6uNvLrvS6UlaEpfb9YBuG6JFsqtTGGCrAI9LgSiZTO7S+yGPlYdySYCtEUsmsjWRbibbUigICA0U/TNbj7FYLfR6+8OqzUTOAuK1QdU2BSsByViiVTDnQUbknCQ4hH08Q6/LKccfHkYx/gSmNHUr61ikNQfPmHgSb3nB6enp8UUikQuwawWPlGsZjEeqqqqm4yATkwUQI2zNZyOqTsbeMYl9V5K+EDiKPWWS3kQikSwrK0viiJccGRlJVldXJ+vq6pJWSggItbcC4SzeQbynIZlfEj2A8fVMGYLJOdwvdO99F3H/TZR1DyGcxeIxFYtHRNdqA6A1APvtN+KLl+0s/37XCS267Dm5MOYZpROp4zQXeBiVc3ZLLaO4P6izf96Ywz5ObO0P80LzxpyYYtYuEGsD65kAXTjAQk/HGS9D4L/wJBF7JNXWg2+nspSWNkuPBkPC/tB5HXM7Yi0zo7qYStNxSrgqs2Cyvbqv/qFLhgJqAld0msu+a4StwPhTCA5E78OMkY9WNew0IPFRkka3jzZAzBpEfK/KLHYSC8pcZ3NExzhyD2V2WmnbMbgJjEE5D9cx1yLwyNmWC2qWgjLXmaVkcxr8ks0Np0BBzXL9Mqe8ISVWKNlotLXQTSJD4xkAxZoATuBSHRJ6tF9ZpCRkKFefWR9yNgu2EkvG9ujjkrHyqxIcOTMfZzlewt593ngtj5MItoHZHa/lhbn+RCH0+vrDmew4Ccl5QGnTA3rd5jMvmvNMzMrkOr3YBhwyQ8gFTvyIr9wtbGw2YjRUg5ELU0YDxpuwLXw9YzMcvMoGBwffRsN6CKpiiIX+3n/0z08fnuZ7XmhryxyiJypTdhiY6Wso3gCiI1B+KXr180QZ5IoHmW2g3TDj3IXZ8cORJA7py8oPhMLZ8KP05xcgaIDSr0DpD7IhzhcuRSopnQ4hJJ4oF25aKPRtVyWyzeRQBJtLjThG7zVDKhYcIXeOKEWG4/5Gw9OzVo+8hl8t81zracnxDla8i7HFz1Zb8bgulR9TWJrqSIinkL/eadYB2wiPtPESnD2+wmt53DUSgHkUgzs+hVy5KpllhGsKk6TVmAvPuVxCnWd/qI/Hk292aUU0exTBN5i15wpHx+IkN+V2u+x4YC54kinpAEahzztvep2wdeso0Vwzt4HytMjH+mvmL0g7nYZHf12nJMkvHvknkagNrKY2+RoEFphD199GVyGUNYxGoyuBM1nHzAYABYcrKys/owyhESp4Cjie9eD7jFeMO2advjB888VoFFcqtguWWF6mz8ZohQwNDVWA1504P0/RttnVkbm8RPTAM1QenSN/XU580AEnXe79IUkzIc/UlYB3G9A78MZs74dwnr8IxLfwFvRBR8javymvqSzl3kluv2Y+b6pdFg22oRJD+RiG/0sMV94jjpmeGIUrCLFPI1v8gxkOwW2VJwaYtFOBm3WeyUqwTVsCkzxlg2OvPDFQGBlOOjsBhWwv+Xy+rVvyeWbRks8zS+TxaxsqS3E+e2uX4nz2Nisixf97kSqEIXG1OzOekropu2zEn/7AUe4SmpRMqBGKDCu65eUkvnx1LNWZaoVcPF0vy38UNkcq/hkW/4HcRPpo8/m8jqyN4fJtfLnoloerHOUVsCrb4RZdee+B8CPsT0lIUetyLgxGOIRr1TnbFdaKOJc25dBdj5MZ/hsWbEaK9SV2S0OWBnibty/UJePBb6weSjrJyR+c2LNObVgxtmtTOkG5G3rVj4XSTE/Sm9xmI1EC+Hl3d3dRO6DW2L6GHM8U0lPB3CiPCzZfs/CH3j0A3q00nEHPTmFodT5pLyK/GNBDgBq3gyvla+j5Hf8Ra8DZ+i+dU+3YscOLP9rdhYxBJRJNuvYx+uL9wtISMglRZPROrlmzRuQl/wsgeJmEZ/V6rAAAAABJRU5ErkJggg=="/><div class="heading-5">Rental Agreement</div><div class="nb__3zTPN">Assistance in creating Rental agreement &amp; Paper work</div></a></div></div></div><div class="nb__1pcMs"><div class="heading-1 text-center nb__39xZ1"><div class="nb__36DNl nb__27k4w"></div>NoBroker Business Assist Plan For Builders<div class="nb__36DNl nb__2Y00v"></div></div><div class="nb__2MWpe"><div><img alt="builder assist" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAATIAAADcCAYAAADz/y2DAAAAAXNSR0IArs4c6QAAQABJREFUeAHtnQecVNX1x997M7OFXap0RLFFVOwNFKNoYklMbIAliVFRibRlF0w0mr8kJiYqvSlYICQmChpLiiUasYOKooC9ghTpyy5bprz3/563O7MzszOzM7Ozu/Nm7/18Zt4t595z7nnv/d4t596ra8opDURpYPqsWReZpjlK17TDNF3fZGnaSrem3T1x4sRvo0hVUGkgKzTAs6pce9TA0qVLXZs2bTrV1LQT+fXRdb1cs6yP0MWPLcv6qa0TXa/hAcknrANoO1yGcVnphAnPt0d9qTpntwYUkGX3/cm4dLNnz873m+YY07JuovCesRgAal/phnFVUX7+67W1tYXQj6ZV9gdod3sM44gJEyZsi5VPxSkNtJUG6DEo1140AIjt6wsEngSUjgOsqmiBPQRg/ZffBs3v7xLQ9YF82QYVeDxlY8eO3VKvFx/Xu6fNmOEm3x0+yyohfGt70ZmqpzM0oIDMGfep2VLOnDmzFyD2OmDUn27iP/JcrvG4TckW7HG57vcGAncAficlm0fRKQ20lgaM1mKk+LSdBmSMK2BZywTEaInNnFRSMjwVEBPJi4qKariYAFnM7mjb1U5xVhrQNNUiawdPAbOQIwGx0wCxF8pKSiZxJZiaK6+s/B45DFpzHzSVE+A05s+f39Prduv9unbdOnLkyEBTeVS60kBzNKCArDnac07eiSKq7nKVAmJMUqbmGFs73GeaC+xcun5frNwPPPBAx9179lwH0F0ybeZM6X66Na9X21BdHSD8lqXrj+fp+r1MFOyJlT8b46bNmvV7zTT3Tiot/WM2yqdkatCAmrVs0EVO+mRsjObQZppg70yeOPGEVCsprSte6O10KbsyKTCdbumk6DJo8V0B3XR+vSQNsPyQy9fwtHTL2o/rEXa8pm3neiPAsFjC2ehkVtdrWSci9yTqc6HISH0e0QxjZv/evd+hdenNRrnbu0wKyHL8CZgxY8YZANmLDIbOKisttVtmqVZ56syZ63hQDgPMvuGtljGyWsBpB3HreNl3Ef4ZPy/h2fkez9xx48Z9Hc5DZksx4RgLbQn5CuMBYnie1vAvWLCgQ2V19Xjk+h712h+eHalDD8Iu4Q+AvUud80JArOsBwltpXVYCdF+S/pzbMObSyqxtDXkVj/gaUF3L+Lpp8RRApovp8WRs8Fzv2XND2ciR1eGCm7reg5dP42VsjlX+17zch/OSF1H2F5RVUP/Cny+88G/UXK4fTpow4b1w3kE/L/o3+G+eNWvWQ5hvPGWZZtn0mTO3lE2ceHeQprWv0vKqrKp6ibrYrVTqUIUMFejqAwBqLf4n+/ft+/jevXuNHRUVl2iBwI9JOwJ06w5tP/Idgk7OZib4ghdffPHMYcOG+Vu7DopfgwYUkDXootV9gMyVls83K1OMMdU/nbJejihP16VbSB8PQEvT5RnG9R07dtx+9dVXy8xlyE2bO/c7ms83lFbYC9GtsBBRmKekpGTtnDlzzvL6/W8CBH+cPnfuf8rGjVsXRtJqXmlFTZ89e7IeCFykd+hwZ+no0ZsTMH+INPmFnLQyAbGbAPC/KhALqaXNPHxclGsrDTC2dC5f9asyxd9yuaZMHj9elhmFHMBxQK3f/wWtjGcmTZx4XiihDT0ypsZazoeQ6QlkuqgNRVGsc0QDCshy5EYmqgZW+R/TAjqwMC+vf5jFfqIsLZoGeOt0LT8SmTrk5/ccM2aMjLMppzSQtgaUQWzaqnNORlo+9yOtu8bnuyUbpEYei7Gmx0UmWotnZYNMSgZna0ABmbPvX1LSM7O2AOD4kpbQOLp12dKVkwF1jYH//ZOqhCJSGkigAQVkCZSTK0lihMoYwgSpD2NTS+nWjcmCutmGsVjndsoCWZQIDtdAzs5aMiP1IzMQeKLR/TGMGyaXlCwMxjN+9KmM1QTDTrkCTOswLD0qkbyYBbjfff/9a9my50paY0Pqad2E52Ftfx5b8txQbxqRqJgWSUN+MZTVsMf6ukUYqELblQZyFsi4i3voTtndl/A76tL1neFhaD4hLDZEjnKAwGeJBJ46a9bxq95770FML2ywAzjehP59zDC24C8G2PrKsiMAf1bZhAnPJSqrJdJoiR1ml6vrd7By4IQCt/t32TAR0RJ1VWW2vAZ4ppXLNQ0AYkNp6TwNWBVTt6Wu/PybS8eM+SKb6slY3dXI90N+30OuzvwqDMMYz6L2P2eTnEoWZ2hAAZkz7lNKUtLCuYNB9F9xc0dl87pGqRRbbudt2Lx5Ai3H2wgWcR2LzPcEKwzQMcmZ+m4dwfzq2j40oIAsR++zWN1PGjdOus2OcCxuP5E1Ps/yQHayDOPnzErI8qcTCb+J0ewVjqiEErLNNKCArM1UrxhHa2DqjBmy24TYlwVdBQ/oPbTQfhWMyLbrjNmzhzMTfBHd4se5SvPRg8we/C6WL33k0bR3ZTmUrO1kz/BjWbM5ENoAY5w+aMFueyb5IvxP0q1emm31c4o8CsiccqfaiZzMIj9LVQewQ8ZNvNjhoJZ1Gli0aFHBjvLyZ+kOfzeecADUt0wo3UMX+RfQ9Y5Lp2mvdOvS5ezo9azx6NOJl90+AoFAfvfu3ffIZpfz5s0rFuC94YYbdnOVSWTHulyetXTsTWnPgut5eWOL3O5No0ePzvqZZAEdxvi+v3HjxrOYhT1O7hvdYp9umn6uASZcjiTqp4xXTuHqBZwfBC3eJ91Fupurhyac5bKsd/v16/dCS+91VlFdPQ0w/cWGLVvEFGdFtdf7JNcz77nnnm5cd/FzrFNA5thbl5uCc3xTQrOSbKt1Pfg8jVzya+TYumim37L+itnPlRNLSt5vRKAiMqIB1bXMiBpVIUoD8TXQljOvjM114vSr8vjSNaQABndl83hkg6SNfapF1lgnKkZpIKMayJLxp70AVbzWbke6vI5b3RJ+kxSQhWtD+ZUGclUDur4KM5bTY1WP1R1nW4GATLI41qlF4469dUpwpQGlgaAGHNsiY9HzdYw9LAxWJNHV5fEcXzpu3DuJaLI1bcmSJUVbd+yoTEo+XZ/GSUmTk6JVREoDOaQBxwJZ6B7o+jdMc+8IhSM9/en7y9RyLri4YxxM4RczrX5QLlRS1UFpIB0NOB7I6Bv/kWPO5seqPGsOH2CpyzWx0pwWx0DtamaUhsaSe8acOWcG/P4XYqXlUtz0OXOONAKBrrlUp5auC72WDjYPy+rMMrCYhrvQDBIaJiX2jUeTSE7yry8tLf0qEU1LpzkeyIIKYjeFy2h9BW/UXzlI9vVgWi5dmU4/iCPV7ENyqe/H7K02K5fql6guDEjfjU3WOYloVFqUBjhBq94dje5eCgYirvU07FN3BYa9Ka9rNdiKifLadBv1nAEyATEsqG+QG4RiV3HJSSDjFOw+tDLtelLH//FrN0BGXW1H6/R+mg9Zb/kflDeHrwNojf04G+qXM0BmmOZdpsu1RJRKpT7PBuW2hAxdi4vf2713r73bK92spAwdW0KOtiyzQ0HBLawP3NqWMijemsYB0+dxir0Cskw+DPV99K8yWWY2ljVq1KgK5FqRjbIpmZQG2koDOdMiaysFKr6tr4GampqhTOQ4epFz62st8xxpjR3NMEfmC06jRAVkaShNZWlbDfACPZYtL1DbakJxD2pAAVlQE+qa9RrAXu4fmAisE0EZ8C9m88LrGfT/nLgns174HBGQwf2JVGUnOrfHo6VaTLS91tbV43loW8euoJcjxJlpSHEoCjzNQIlcP4yVH2WfxpTyocxiPs4NiGc0Gytr1sQhuztgWVfxwm7B8PdfsQRjn6s+vNQ/hOZ9aOS0pFSdHC03M9VMbUk/bd68/pbXu557/BRrCC9oS1naE2/eVx/P2UesIJG91rLGtXmLDBAbAhBdm65G6KGfSl75NXKAlx0HmF3UKNEhEYBYnaTsLhpPT5idBGmOgsY+/i2V6nEPnoPeUUCWSv0Ube5roM2BLKRiw7iOvcxXh8LK0+Ia4ADjrixtEhBTTmnA0RrIHiDTtI/Kxo9/29HadJjwrBLowaZ7DpNaias00FgDDDEppzSgNKA04GwNKCBz9v1T0isNKA2ggWzqWqobojTQYhqYO3fuPrU+3yctxiAHCsa85QFmI3/pxKooIHPiXVMyp6wBzFMMZnS7YTpQwyytWqcZqcF8Zvh7EVUUGe2ckAIy59wrJWkzNODNz7e0qioxpH0Fu7Ozm1FUzmVludcpzF63uVFrcxSrxsiaoz2VV2lAaSArNOCoFtnUmTPfQ2s9M6U53e0+fdK4cXHHTXKdX6b0qMpRGmhrDTgKyFBWT5rAPRnnaO4YRxfKKfCYZlP1z3V+bf38tRr/vNpa3SvcLGsgB9fMaTXGDmDEypDeDhAzoYhNvcgJM7dJIiDGzEqf5vDmQX6Igd8rkioj1/klpYTcIeK+9wfMxuVOjVRNRAPOAzJ135QG0tDAkUceuWvV+++flkbWdpMlT9c3O7WyCsiceueU3ClpYNiwYX4yvJpSJkXsGA2oWUvH3ColqNKA0kA8DTi+RYYNzLB4lQvFu1wbE81OhuiS8OQ6vyRUoEiUBrJOA44HMmZc5Ei0hA4jyHsgGJOQKMnEXOeXpBoUmdJAVmnA8UCGKcaMJjWaSavlXOfXpDIVgdJA9mnA8UCGKUZZa6o11/m1pi7T4TVj/vwDLZ/vNM3n64Yphbj+nDL/8zqv+m9pDbAmU0fvXYI637dPn7+PHDnSNtFrad6Jync8kCWqnErLPQ0E/P4hnKC0OFgzXqxj+YXCwXh1bVEN7Mv28bbOt2/f/hScFJC1qLpV4TmrATl0BMPWF3O2gtlfsbG0zA7OFjFViyxb7oSSIyUNMIHzcpnDTn5KqYJZTszqmB/zIVFAlqn7lOvmEK1dv0zdl5Yuh3OjLmFRf9a8SC1d32wrn9bYodkkk+NbZLluDtHa9cumhzOhLJY1hHT5Kac0kANrLXPdHKK165ftL0V+/rN6be0QzG56Wn7/kxxO/Ap+R27PnO2qjiUfH9ZXiP8avf9U0rt3774nFl1rxzm+RZbr5hCtXb/WfgBT5Td59Ojt5NkuJ43beS1r16SSkhWplqPo09MAJ41rfDiqJ02YkFU6V2st07ufKpfSgNJAFmlAAVkW3QwlitKA0kB6GlBAlp7eVC6lAaWBLNIA5jit6+qXmIROscEqeyS/YQweTtVZ/oA08Xd/tayTbGl1/c3mSM3U/aHw6oFR5SrKqY5bVu7zK0AXFzPm8YGh67L981dlJSXPxNVHFiXIGJnl9a4Xw1hORbogi0TLaVEYI/PxvHzE2O2R2VTRVh/sdwcCNV7Lmg94RYAosyGTsU1JzmXAEE94IcN+STHMfX6Hs+TkHj4m09GHI4AsqfumiNqNBlodyMaPH79p2owZr6Lh0/ia3sn1y5C2df1gAC1+iyxEqDyZ1IDLMAYGTPN4vizSQlVOacBxGmh1IBMNAWBLaQ2dxotTWTZx4gLHaS3HBGa5yZNU6XjDshSQ5di9bS/VaZPB/nyP51EUTG/GGtleFJ3V9bSs45GvoqSk5JOsllMJpzQQRwNtAmRjx47dQmvsFcapjpw6Z87AOLKp6FbQwMyZM3txH/pxP96hpSxDh8opDThOA23StRQt1XcvT9dN88b6ro3jlJcLAgd0/WhmPTTNMNp1t3LRokUFLtyVV165tzXu69KlS/O2bduWN2bMmL2t8QGBn6uioqJDx44dq9gIMdAadWxNHm0GZDQFH2Pqfw6D+9dQYfkp1xYaEBDD5fJAP0MYxuzZsw/i7R0EaB9JjQfxO5Bqd6HenUjvvGP37jzRAx/VAGl7iC+Hthz/NwDNWpLWAvZrPJr20YQJE2qFNp6jPJ2W7v6mrtv8+GoLv0OglxPuOxPutH7jxgLJDz+Tn6xX3CP8uG6Gz1r42/yK8vI+GD16dJXQJnJTFyzo7qqqGhQwjCPZeHIQMh8O/T7w7Sx1hF+x5N+1Z4/wrAzVUdN2IO8HwtNlmmsCHTqsrV8Glohd1qW1GZBNnDjx2+kzZ44HzHqhleu4iX1Q/osoWBalKtfCGuDhHsADfCUv1Ruw+q/HMJa3MMs2K55tmcXcZ3S0ADxvlQIeXD8nTYArwK8T4c7QdyVOzHOOxv9DO28goPk0bR3+QXY4zt+MWbNu4bm+nbLqKIIfC10XQBKw+srS9XJsGWVn1U78OtuAo+v94CVAdLad0zS1ykBgN3HdkKm+MKij3PTZs08yq6pW2s0s8ogjj1y85JN6yVDOHnhWEldEuHN9HQ8ifBi/ofDU7PxVVRrlnVw2YUKzbDUps1VdmwGZ1JIZy/ly5QtxPmrvg4JfnFxaervEKdeyGpgxZ86ZbBt9JVxex7jxtpbl1ral89I+y7PVmxd5jbR0dLd7bZHH8wktHXApvgMM7JaV5XIdaQUCg6Rlxa/JCRHd5XpRDwT+Q8lr+K1lNngtvdYPm2rJiSTT77mnn+b11rUaaVkRVZEIxCTPvr17r6bF9T/q9iG2gGuBMmldrS0tLd0t6YncjBkzutCKG0QPaRC9I2k5HiblJcqTjWltCmTZqBAlU+5pgNUKjwNKT8yZM+d8u3ameWBtbe2BdDcTVhZ6DQCqo3G51hYXF99/zTXXbEuYicTS8eNf4/LDWbNmHQII0Ru13UFN8bOpfGCrrq/Hv97fseODZddeu7Mue/z/+sM/zoLffvCzu5AI3hd+fePnakihhsLjZbqVT5aOHr25IcU5PgVkzrlXStJmaGDhwoWdvIGAHJSRtttdWflLMt+dbAF+y3qOVs6AZOkb0e3dO4E4WTqWlIPfAvidmxRxLKLqaukhjY2VlO1xCsiy/Q4p+TKqgcJanzZg866Uyvy2W0dtZ6fClPIEiWkh+ejWLg2Gk7rq+kG0IAcnRRuLSNf/wfhb/DXEjfP0oEsZWv/cODn7YxSQZf89UhJmUANdKmu0c1c0OcwVwfGVYw4AyPpFxKUQ2DuptNTeTTXZPCzhk1n8tIGMl3rMxNLSb5PlxzjZEAb6HQ1kjPEppzSgNKA04GwNKCBz9v1T0isNKA2gAQVk6jFQGlAacLwGcmaMzPrR9R20HeVHRNyRsw9bpU+ZUmchGJHQ/IA1ZYqhPfehLLZucPt0Xqf/c2FVQ0RmfdbQS4/WTM22QLdLLsz/Qn9hyY7MclGlKQ04TwOOATIx4GRquX88FT/3xeZu39u6Y3p4+r1Fna7FqtsfHhfux1DxA1YYvBUeF/RPnzPnBKydI4ExmMh1bkAzxgT8D4ZFaS8esM8k+MUFFmaGvuHEnxfC8wT9YnPEgOspwXCsq/n3l6doljYgmPZxj26/h99nwXD0lXWsFRhF/iM6XoWVBnJNA44BskAg8AOmsSfFuwHfdO8cYciHlbNV7dbvl6UX8RyW3r8gLSaQYcl9LFPgC+PlrYUBU+sBaOotJjVtQ/dOk0zTjG+EWHdGZUwgo5w+7Gu0OB4/ifcbxhfuQEN9vu7Z5YfwOzZeHuQT63IFZPEUpOJzRgOOATJ2MV0BmMni5lcsw3gs+g4UeQMCKNNC8bpew0LYm0PhMA82NqMBjsNIXxEWHeFlmckKDoAVtPqY3z0RiQ2B3+Ots6TG06HGO31H5w6NWoC0jC6iNXY6++LH5VdYWPh2RVWVH14V/H7bwKLBZ5ja1Q0hDkfdU/0kdfhzeJz4qd+p1G8E5cTlF51HhZUGnKwB5wCZpq2g60XPSvNNLimZFa10a8iIbrRVGoBM02pi0Uk+7HSkZbe3f+/esqtBTFc6btw61oBWAArFHG7RiJ9kKjt5+K1cQkA28pW1S/RXlm2LLpADG+ylMXku18rotGBYdjiA3xoA6Og8w1jEurxGJziXDb5kBPUPuRM+3PjCiYtnvhqKqPdQP9lpgQaspYCsXidut9t0mZZWXO31VRQVxO2O15NHX/oXeP3F3g7uiuiEeGF0r9Pt9/AxyZ82a9Zv4tHFiT9WehJ8+BrGQ+MQxormS3rF1FmzkpaV9+bARD2XWDyyLc4xQMaL/Q0v6EZe5BNZnX9atCIX7a3N//kTEe9tbSw6xtlkZ4P+tOxeSrQvE90yEwB6C35nUs6P4NdoAa710EsR27k8dPaJx04fcVoji2p4nkQ5W8aNG/d1tNwRYWlBWdaxPsv6GTzfj0gj4H/41YCLVmnQvTmo38DpP5lNVSId3c3TibSKCwsdtYNBZC0yGzIMwxcwdO3Tfffx8JMdH1J2LstKGgAXL16cz3PWj/spfH6XMrO6DAPSymdZ0+v5JpXdljApyuwlcgyQ2SrU9be4QReagcDL0SrdmR8aqrKTvPRFY9GF8iXR7WIngZWA0JmUE3ONXsBlrHeFjVltLXI/C22IRbgHYFweHo7lB3xW8lDdAM+5sR6uqgLPOx33NpT/Qf8e98XjR/myu4NsGaNcmAa4D1+g5/CWe1hqbC/34kJA6fuxUxPHtvaSKJGGOt5EHZNukVG3A6jj5MQ1ye5URwGZW9efoLVyITfqcwBNBrIbnK7T7dQP5KNrI1pNnnsvN3NTA0G9T9d/iq8YoscapUVFcHMfg9cv4SWA8FBUsuZ3ubq4TauHxPvduofJgw/gGeF4SM7nyTqArWOaHHS33O7/sYXLdnjuA8+5EQUR8Od5DL2qdqvEMzEgrDbyF72j6anIfRxjZzHBV/K2Z4duvmWoQBZHJ+2mzpw5AOK0gKwNlkTJC7BY9vtLtoL1S5QUkCWrsObSsaXKcl/dLOQa1q9NiC5PBr4i3It/iwhKgO7pOTJuEc/sIjwDY2yrGLeSAfitPPxN83t1WXh220/3dACeAwC5/zVKjIqYNHbsBl4aAd99kqrfysZYTP3uJv9xjK88G1W8CioN5KwGlGV/zt5aVTGlgfajAQVk7edeq5oqDeSsBhw1Rpazd0FVTGkgRzQgh6Do1dU/YDjmO0xa9WC8dxfDKl8wRvy0DJ20VDUVkLWUZlW5SgPtSAMz5s8/0PR6/6RVV1/MBJeLySq79vjFoFGzvF6N8eLnmYS6ScaeM60aBWSZ1qgqL+s0ILNyO8vL97UF0/WuvFAXpiIkM8MHy2vJ7xTyFu/Xr99/6vfJj1kM62YHcbzcQAxwvUXVXvfegry4htexCmAN8L4Y4Hbz5ut9RdYCj+cVbBB3xKKVOOo3AKOcYwCMnhLGjvBc8iVtegP9oQCMAM4Bwo9Zz9Ws0f1KyorjemDkO5YJpW+xJFhV6/cPBsQWAVr56OoTWmMPY/30JitatmKc242wnJ06kt/3EO5NjHVvBszuilN2WtEKyNJSm8rkJA1wvuT/8ZKda8tsmgO5Pp6K/HarggzY7P1W8u3YsUOOMLTNYCQc7TARuoa4UjHA/WzffeR3VDRNUmHLuhi6i72meQbXl+Ll4RSkswGIBXVtIOTU9cXxaGPFs+QvGH0envPI/wuuC4KRMa49xdZRLBobrBq1KrqRv+Cgl/u4NiwIrsssM+h3sdLhIvIt5HcnR0F25hS1W2KUnVaUM4FM14/FLGJRWjW2LHkIU3W90+XHS3BMqsyEPm1+mnYCX750WOZsHl6sv9BSeCNTFWSVQGWiskh/BmBptBIkUZ5EaSxZ+ypROmZJb/Oc3ZaIJpU0xrNibqQQKsOy1tOC+z3PmayQORneAzEeHylnYWKmFCKL9shpVpxMtboWg3bsIH9NS3JVpnZncSSQgej7o6SrohWVbBjlVyVLK3TcqC5crhJ/azl4XtVavHKdDy9QY4PCFqw0L/RzFC+/VnGsC34HRvJrHcfGBnQN70+H2fjx479ki6yL2F1mhayN5si6fydz3mdTvBwJZPTN/0dzuKypysVKR4FPEm9b48dKjxXHF/1LvkAXxUprKo7uyCyA8/Sm6KLT2X0jrZYc9SulrJ9Hl6fCSgPZooGy8ePfpsexmI/1KK+mDUeuRqtmUpXVkUBmcfz7pAkT3ku1skKP5XvEQu8ky6hNlx+Dp3uS5BFBli4/6rcN/SinNJDdGjCM+7VAYBQTAhcgaLOBLDTKl921VtIpDSgN5JIGaJWtpKdTxbjN0ZmolwKyTGhRlaE0oDSQkgYAMYzLrC30HvqklDEOsQKyOIpR0UoDSgMtroEujB9nZHZXAVmL3yvFQGlAaSBaA5hedKE11o1494xZs362aNGigmiaVMIKyFLRlqJVGlAayIgGTMM4nIIqpGsZMM0lrLz4UFYVpFu4o2YtObJILI9Z8aD3xUp4ZDqVZsq3mJ+LraTPrrf3iVsMe4OdQ6JBX75j2vxMs4/MInKQici+MC4zElj2cQo2cp2poJYuP3u5ifBju+sFCxa8LmcBJOKp0pQG2kIDHIv4Ou9hF5ZzncjqgKuR4Vp+j7N8aSI2arNSlclRQOYPBOZKBXlZT+LySKqVDafH3moq4YRLRzh4ZBog5IGuH8DQLH4IPYdyEgIZN1b2htyfK9hpNYsfltO3+nw+MVr8ml+7crL2EGPLjC1/aVfKC1ZW1yux0hebxBZzNEhkKdNK+dGweJB37D+8JzP5iG9mvelHfl0/l/DhfNjzeRc/1VyuxzFLejeWQI4CMipwC4ODGekOo8S4a+WCisLodiZ2LikZzwbzRl8pK2xZWnRqXZjDLR7izr4dOzX1WAB/V+q5nJ/Dcrl68qGSL7xy6WtAFqm3KJCFiybLm2bMnXu26fev4Ll9kK1/OgBivO44+bBz4V28lV7LvT26dr3xyiuvjNji3VFAxhfiTrtirfSX7jKMdMXL1LqzdPnnSr7uXbqs215efmKu1Kct6qH75VDX1nWy1AqD7hlwlXMy1oFiU2mFvesyzTyGlU4AzEoAtxu27dhxFkubTgw/MtFRQNa6alXcnKqB+q91xlq2TtWDE+XO93juqgkEdtBCm1rf9QxW463pS5cutjZtms+wy1XsMCKANyqYmJFuWrAwdVUaUBpQGmiOBmTfNdmrLArE7CLLRo6s7t+372jGzNYynnYN42qnBXmpFllQE+oaUwN8/YyZCxf20ny+PjTr+zCJUMVY3qaOHTtuGjVqVNJnJ8YsXEUqDaSoAdnQksmAP/Ac/p1x0EvJ/ooUoYAsRUW2B3L2jDrA6/dfQF0vZJeCU6OfExk82bVnj2xdvJV9qP7F1/MJrXfv5+WL2R70o+rYthrQPZ43tVr2ftB12STTdgrIgppQV23mzJli03MnWxcPC6lD1z/GL6dzb+LB2UILrQP+vgy89mFA9mhp4uO/Rtu4sYJdP6d279ZtWvSMUqgs5VEayIAGSseM+YKPbT+eRV+wOAVkQU204ytGifv5LesuQGwkDwfmuNqbqOMRIz//CXlo4qkGg1vP3traYUyXXwCo/YTm/m+37dw5hlbcb5hhvi9ePhWvNNBcDbBBoxxkHXIKyEKqaJ8eWlP9/Ka5imt3Wlwf0E28GRB6KhltsGpAvoiyE+pzc+fO/b8av/8WgHAs4YVMo5/erUuXa6+++uqaZMpqaRqm6/M5pf7r5vBxAfScUP9ysmUA6DKGWJgsfTQdrd0lk8vKromOjxeGn+yEe2a89Kbi+YAtYh/9m5uiy8Z0NWuZjXelFWXi4R0BiHXj+uv9+vY9KlkQixbRnm2aOLEsz+U6nLLWUOZPdu7e/dK8efN6R9O2RZjJCYzD7fMauiGbnGqQ/K9uWVsvjJrzUpQ9H3qjsLrWlcrP4/Mzn8KRai5XxxT5dZU68mOPnOTrB6VH8mGM3SlFfllDrlpkWXMr2kgQy+IQHg6OKCl5MhMSYKT4OeB1So3X+1depgu4PrNkyZJTs2XcDJnenjxx4imp1JU1t3fxst+YSp4gbb4voI1+Qnrqybu1B/TS/nvyIclniKLkiLajaDl+GxUdN4gN6hCGFV6PS+CABNUic8BNakkRGRFblCkQC8o5duzYSrooF9FVfRjgOHrrzp1LpJUQTFdXpYFMa0ABWaY16rDyQJeER5ulWx3G2iyjb99rKP9tWjMXM6N5U7plqXxKA01pIGe6ltaPru+g7Sg/IqLCZx+2Sp8yRVbYZ9xZU6YY2nMfHh9R8D6d1+n/XNhi2+ZYQy89WjO1hnGawvwv9BeWxD2BOkK2NgiIXdn0e+650KqtXUOL7JYZCxYsLh09enMbiKJY5rgGHANkrHq/gy/7ufHux9+2l++97L87hoanzynutJqZHHo3sR2thoV0q+6Nlcq+SNczOiwnLsd0s4DH8QH/seGJS4/s98q0s2YWh8dF+Z9jMD1my0T2PqP18sco+oigb+lr3V0Bs38w8tVD+j877UczewbD0Vcq/jHjQZdHx8cLM7PXiVOtF3h0/VclJSXr49GlEl92ww0baY39AXVNDVRVTSHv6FTyK1qlgWQ04BggozI7+apHAEd4BWvy8yK+9ICC5XfpxwB+4WQRfoAsIk94ImdnbsY+Ki4/PwzIz6J8ZpfqXU1B3kGE+wbDja6G8XCjuPoITnf+0vL54vITMmryRXj+qjxPz0Q6wer+3XD6pvxey7oafV3GgtwiaH/cFH2y6W7DmOsNBMajr1Ez5s+/M5FtWrJlKjqlgXANOAbIeIlX2IIzOM3ukqFV76HKDL28D1/9jaGwrtfQ+pEXspFjrdbLAMBQNm+rK7MRhb12a4WXeF6+12m1RbT0guTWI6/JmZWhFthVz783WHvp798E04NX+N0Hv1HuBPwmjRv3CbZXO8ljMlAes5VlPfzaW+GwfO6bn//y3Fl3vBDkE7yyB/pkjFNlpi1u/YK04VfZmZOWaH4eOg6Pb65fTpKm3GnYRc02vd4RlNeq2zE1V36VP/s14JjBfqNPn1WoUxpCgwEXJtsif5oZqIlSd000jYSXL1/u4gU/Hv9Xiaaoefm2wesLgOO4hQsXMqMdyU/CNJEieVqBmDwp42ToA4WFhQm3lqFSK6HtTqvloJj8dCuKnxWXn+iC08pTAjLJIzsPSN3Fn0kHOD4u5VG/izJZripLaUA04JgWmQwcM470HjIfx2LlZdG3b67fdI15tMEUxjT0QCy6Ve+9J620QkBqZXQZjcK6vgLQu6KiuvpJyorYkVJozYdf9VFOyM0//+SFUy8+pfGGdJZ1OCD1flP75/NVWUGr8jy6mIvgtyVUcL2n+vGV+QW1oeVl2qNnHDZl6mUzdkXT0fr7HkBYyUZ16zgINTq5TcKA4ze0OAXIT2LQv09bDfpzv/JlUXwqSvD5/Z25L2k5MTrZU1SQUt7qfNldvVluP+rYIdkS2EOxT7K02UrnGCATBfKiPygtJLzDoxVa6wqHFGm62fuBN6IDmKS7uFkzjCa7Nwx+LQCVRpLnvGh+EjZdxnoG30NJtR4j3ikw5YyB/SZEGMdjud0PszPnjdLtjUXic7veCQeyysL8s2LRoYlafmXUs0G4WIStH/c/6naCVVNzNKzjjk+2pFjwP45F8V+0JI9g2eh/Y63LGPDAj04IRqV6fTnVDELPutk322CD13REzVgeRwFZntv97xqfbx4PyH/ZymNMtBaIn0GcXSfDNDcZeXl/jKYxfT5ZG9gr3iEG4fSyro5ZT4yeta/hd254mvgNS7sRnvuJ395dPD9/fHRfndbVvbw8Z4Ge0ppM6GScjFbnV5R5BPy+E01cWOv/GWlbg/H7bd1z+64eXUJhibe83l8B9tdirf9JkC5brsi+AV0gpNWvzWQyjB3wfykl/ro+iL3YGt2PpMrQdRlq/VdStA1E+yNjpGlPQ1rTPsP4N/lrmyYMUXSD/oxQyIEeRwFZmH73lo0d+1lY2PaWadqPIuLeeDQiKAG6Nz5ApVF8ExG+OPxGR+SLwY8uYqp2ZXYrKg6/2yL4xRgBo34ZObk5gk+GAkxAfCNF0c3eN0NFpl6MZX2CScolqWS0lyhpWspLlAS0edKqmHRKiR/3ULZGeiAVGcNpmVQalWj8N5xW/LmwRMmpQBZ9L1S4hTXAXmW9aJo+ykfgFWaNf50OO2ZMNtPtkRaZ48dk0qm/ytNyGlBA1nK6zamS3W53gd/nG4qRcNorCUyXq0rjcB5aKkkPROeUElVlWkwD0UM6LcZIFZz9GsDW6ya6Ub/NhKSsEjg8uhyO9Qqaj+RHp6mw0kBzNKCArDnay7W8ljWc5tKtbMMTMvJNp4qA4ffZxPAdrtPD8/vdbhvIGPRPzR4hvBDlVxqIoQEFZDGU0o6jXqbuBnuINTZbSUEp7Ar4Kd3HLdHd0A6GUTeTZlkKyFLQpyJtWgOOHCNjJsj9wAMPdGy6eo0pyisqZPfM1BxHojWDn4vZutT4QZ0uvz2VlZ6AmZ75WJ5h3E9LaiLS/hGj1WfTNVrlxPSv6FoehRGsLOEKOZ/Pp7qWIW0oTyY14EggAxjO5ziyiJckFaXQtUnJJIIX+zvN4ZeKbEHa1uYnfAGeD+gO3kP3coxZVbVs0aJF30t3z/1oEJPye/fuXbN+o70ctlDCreU4obrQu2tXcN1tyh+l3RUVHvkU8SuUD8w111xTyTMkUTGdnA9QVFSUt7uyUkeXKX+UdpWXF4iJEB/sfOGHq+I8R7FnjOnkEBiZjEFOewODvLy8olQ+hJWVlR3k4wc/j+TDmLam/jyGmPyyMdKRQMZN3o4yP0hHodyslM2ssXuqIp8sr0nZ8bQfQRdrn5Qz6rp081J3lnUAmfqnnrEuR8fCwhsrq6uPoms4dGd5+YczZs++sXTChMYGeWkw2LBtWy/GMmppLw7A0HhCeBEAQwW7dXxNt/Q1QDAVY87wYmL6rU2b/lER3ALKsk5O9yNhBgJPkVe79957e8EowhA5nDFbIf3Ru2dPaTAuZX71do4ssr+bvHeX7917BmW9FCwv+lpRU3M1BrsLgvFVtbWf8wsGk75yz6+D33Xci1+QKVRe0gW0IaEjgQxQeRUjw7QWH2Ns+DFAmJJBJi/fevidns59wiD2KfJFGuomURBGm2nxo353A56Tk2ARk0TWg/JV/gFfd9mx49JAILCMVtrnLOtZFzNDEpFytD0v5R2sOhiKbOJk+6FZdd66f8IsjzBZIaFXAnL368XFt5dde63sBtJsR8lruOcZM/moqakRa/24DiD4HJ7pfYhilEpZCY2c7S2n0v3wxeDHB2VTjOisjnIkkGW1RnNAuFGjRlVQjcsAoAcBoDJepNMBmoPSqRqbKt5KGb8jv31epm3VX7dn23Usowp1l0jvyO8IumIXw2+iVlFxybTZs3/EUrIml3Y1JRcfhV82RZPJdAyG51Ge/FrFlU2Y8E8Yya/dOgVk7fbWN11xXpDnoHpOxnwAmaFMBDzfdK4GCkCslPHM22mh7OZXQqt2Ca2tpwGqvq4OHf4dazJh+v3336xVVs6B3xVaIPAchwefmKndahskU75c0wC9JuWUBhJrQMasXC5Xo7WtiXJNnzfvYADrTrp0NR7DOFVATOgBKHuvM726ukes/NKdhPYnDB9MJb0nu9XeG4tOxSkNhGtAtcjCtaH8GdMAu37cBGh5GL+5WWZDQwXL7h2Mh5mG0Zu490PxUR6Py3Urg+Y/gPa8GXPnHsfeau9EkTQ7+OKLL7rf/fzzTp7q6s7M1HXmgE8XO4HtYdavHFOR8kxPOjRbYFVAXA0oIIurGpWQrgYAMJ1u5QXSpSwqLJwdXg5xX5IuTbMDw+Oj/QIidEPvhPLPAb9fJnZSBjIBqtWrVx/CCeFHMk43iNbhIMo7lFnkrvg7r1q92p4ACM3vMdkg21b6aurM3eAvSXvIs5s8XzK+t4brWvaWW1uUl/dBUxtlRtdJhVtOA44Cslqfb6mogm7HaTxkr6WlFssS04Q8ZhOXTC4tvTJRGfD4Cw+xh/73funy46UdKDxooYjsQxLxqz9tyB5UT5cfALG/8ODgFDasmHlWKtu5JJItlTTME3qgt+689M9F2yNx72RGTwNYmpw8oEv6GoeWyP0+LMifMbND2EHjTMvv72rHUV90Fb6dkoznXUbavgCVmEnkyWxoPa1cvPCXWcCNlFsOoJXjF5vEcnTnF4Dj2hnQ6kxcJ2g7Q9eP6yHEn23LzsL3Cr/fhO9Wwpuh+yc0jpvpQ+50nNjGdQ3qvH/fvouwcUs4i5sOk1TzOArIeMiOR4kaA8hil3VKqpUN0VMGD94xoXA8T92pTQavgXy50+cn5bMzaTw2wXj4DISuSF4WXLP48TIf4fZ4WnQpEAazBTvKy+/okJd3+5gxY+wtt60RI1y1f39pREWB53+YjG4qO3XEofpryz6uqxL/bvdnmpfnXtcPDsXF8eTn52/3VmG7bFndgySA2MnU7V55DsTxfzT+2ONouv4xaWswJ1jLdS281/Tv2fPzRMalQT7RVyY89oX3IMo5Ep5yHQTNsVyli3xs/T2Lzpar4X7U29b5xo0bH6GS3NC2dY4CMr1v347Fu3aBQc13jIPUf6bjl9WtS5cTvF5vRiZE9nbt2uSzvl/fvpfv2rUrY/fk+uuvrx43blz8CjYzZefu3aUUUVrt9e7HdbiAmLXe/K9HM4d1qz9bgJbNpdbgkT/WVyy1ZzyL3O6vK32+AC9Cky0yrNXte0QZje45UY/xiz2Lalk38LE7CuPai1gu9WEzq2lnp6v7DR75PSMRgKnO6VjlCGYAlGnb7UlZTnS0qEt5oNPbNbcFKpyxl6YFZGtUpBxA0iiyBSPSXZ6Trkj1TfSMfd3o1iUtiixzie4GNpX5uGOOufud1av7sGGizDBq2gZTdjYdFp6PF57lSOZC4uwxMeGBge16CQsY4JoE+IjyDDYYr+tuvpHgcOVOIM1RGNcOJW8jIBO+Dz74YPHevXvt7iNGv50ZR+uMLC6E2cM26eWAqD3g369fv4pYLTi67QOhlfW+/8RuLHaLMFzwHPPTtZSzLBSQ5dh9dXR1WA1wQ2VV1WRMJs6JtcV2vMoNGzbMT1poqRHNp1Ni0XJu3gHWGSN668uXbbHTLUtmMQ/gpB8Bt89j5YkXp5umjXyA0WW8TNK9a+wsq2c9Og7DqPZtzi8dxEnKR0I4iHG7QeSTMwMiW9rBcTQSpBnIJpL8s6SDtaHoZzteWdmwVrqp/NaYfv/Jko7ry3jrYtvXDv4AexmbDKDf0LhlNlTbUS2ybFBYTspgGP3pKhzIhMRLjAV9P8JcIqUK69/ao1ZReVj+7NMKe9tjaHaSrr/L1/yHmPUfSzglIAsWzYt0AmXEXTcrLT3c5bTeLodPg9N1GdhfS2rdQL9cDWOPhAEwP9fOwQF/rtKyk3A/yjqdfKejJ3spVUOB2vH45dcuHHrIynoqIMvK29K6Qske/MyY1jCu9Ftst1ZNmzXrDo+uy0G9IcuEZCQyNNefLT1QwsMeMcnA2Y6LjafnhMpi7OpdARdAQYDs0WTKDtIU5uX9u9rvP8ZlGD0xy3ia+OUA0aRgevBqBQJv1Q+sLQWI1rAcai2zoGsZM/w6SJPKdeqCBd31mpq6gf46U47LALlOTKiczs4R5amU5WRa7tnbyP8VrdLhUo9+vXtXZEN9FJBlw13IAhnKJk78HV2o9byc0wCi33l1/eeA22L6X8sw4WiYdUwgq77ikQ+tISMvpOexgA/3/gzR+5kfXmT06DYxPBvjT+8CQtKFEyBLydXPju6aNm9ef+R0AVIdMK+QmcNot5eI6kmlpT+NTogVtoZecaAW8Bn6G8s+i5U+efRo6V6+WP/TGOcTs5rv0ortxkgf44Dtxsn3oSYTa2AzqTEFZJnUpsPL4qVfTMvjX7Q87uTLexVAc7v8eGm3VPt8FfUtnIS11N9Y+iwEA6xTL+ureQp2GssX10RnGD9+/JeMU+2mk5IykEWXBfAOIc6eSQxPsycRLCupyaHA4OF3mr5ae2E5/tmuFY+WhJeVyE/L8nFkSESSU2l2lz0La6SALAtvSluKVN/yGMWs3K+Z9buIVs9wXtMjeID7p/LC6q893JSBqIyTDZt+zz39ym64wd5tMa166/qntBofi85LN3l8MsBrnTaih+k1bRCzy7CsCdYZP7lbX/7QN9FlxgrTxZ2OjjI20xyLRzbF8SzcmE3yBGVRQBbUhLpGaKB+RYCYFchPmzt37v6c8v6V+DPidH2FAJnu80mLKqVxsnD+gNWHdItvDo8TPzOJ10THxQy7inxsgcakJt1UHOVZWrVZN2UZM0NkZKfi4in12x5FJuRoCL1OpjufdbWLnILOOvGUQE7SADOenWRjRzlWrim5aeG9ITS0nATI2szpyxfvZs3NjTKeh0wBXTN+ra/8O7OvyjlJA1nVImPQ9AoQ/0QnKdCpsrJt8z627JZ1ITq3DRvZqeJNWje/b0ad8ul6TMaEQcas/pSoHDM//w2tbvlRTNuzRHkznaaveGyGdfbPFmreGh1bt8pMl6/Ka3kNZAuQ/Ynm6v/R1RhElWU2SLkW1gBdqSAHWSpkLxfiQ/JWMDKdK4eL7NywaRP2rw1rI+OVI2NxTCLIsXHH0ZLLT9XUI1656cbrz/1FZjmVc6gGsgLI2EhvGQ/zs+iwk0P16Gix2WFiBhUYTtfq5eZUhL3sbfsxADHCBjVemYy0vAGcHsISIVlQb3c149E2N95e4L5799bmlMMg2o9Zu7k82TIA6jWA+v7J0kfTcT9u5N1YEB0fLwy/x+D3/XjpTcVjG3YfNoWNbPKaypcN6VkBZKIIvshicS0/5VpZA4xrHQOgeLt27LiyOax37tw5iBYW75++NplyALKV8L2SDQ1Pgr5Fgaxeno7IVsvLntIsKTJKN7yz5nKl9L5Qv2LyFnH9qp5/chddl/MLeqDJvOQy1FHBpwP8ZP3n1/iT+phITvgUoJO+8LQ/RHWlOes/pRvjrKopaZPRAAfx9glUVR3MC/5qcxfJY64h29rIi7EmnDcvCMNvOiZpkY6ZprckkjG1uEuNInM0P8SL/g770KU0LkdL5y7qlZbZAfXeQ6vK7ronKz0fFplxfSBZ+mg6FvGfnMo+dDNmzBgC6r0eXY6TwlkBZCyJOYsHZbSTFJcrsnIQb0+pC1/wZnUrpQwA6+dy9WjaC3IVx0tyDPf3f/zm0225tS627p9lQ++zFtJPxuYbxoYXrPztTgNZAWQ8yLKly4h2p/0sqjAto2YBGUfHncRM6GAmbZZz6pHdteSe6ljw38397QpQNjKQlQF+0mVJ0HdkW+r63TSySCtKFKdoIDuArF5bDDZOQaC/OUV5TpYT4BrMYucldH0eoCtyZ0FBwVfp1kcAi00G75D89CFny5VDfjsStwTv9wCxd449+uiFEh/DfUj+ge9+8MEA0mKuc4yRR0UpDURoILuAjKPCSiZO/DRCQhVoEQ3MmDOnv+xlz5jRblpQzdI5e37dSKvrLEBxHS0yP62sGbv37LmEsvsT9yqzfcODra1GLS9d30Jejd0qulNRBWQtcrdzv1Aj96uoatiSGmAg/PsM1v+eVhcNK+sIupdPcZ0IiPUBxOYWFxaeGRx4FhMIdpT9N3l+G5QJ2h223zQFyJRTGkhLAxlrkbEs5Xoe5RuQojcP9jd0E6exFfHDaUmlMjXSgHny8NcZkd+/LsF6w1jx2PBGRK0cQcvrOoBoPqBFQ0xfCJhV4w9w/z8wOnR4Ovok8crKyj6QHkn6wWytPZ1tr8vx76jPX7fSoJXroNi1jgZaGh8yAmQ80D9m25cFPMxiu7Kdp/p4HvC/0X3ZUDp+/Guto6qc59IJnfaVWqLnorasLSDUeW9V1W9ZJ1mCLHv4aI0omzDhuaZkku172FVjWMDjqRIQs+tiGLt4dmSTxa5N5VfpztRAa+BDRoCMltjZ9kOp6+fTCntmxqxZP5OBZM5W/B7xGQUyXoRDQcvHnXhLe3TrduKVV16Z0lKYqXPmDDQCgfP2PvWmt8PeWrvaW7p3Mng4RjNI/zTjW+tbWReHVVZXr6cV1QkQ+4rDas8vGzduXbIyRG/SyKSDvZqDsvzJluEkOlqpBmdxytK7pJ3fNPslTRyDkPduIDx7xEiKGQX9gTETMhXZCvhgA5l18ojvc6TDj5A7rSVCG5avG1JRmKcV1/jmXvKjUTX+5WuLq/I9Wpe9tRdPHDz8gKb0se2Z1Yds69JB615e9bOSwcPFyjvovjVc1hL9tcdCLwpW4AUMDB8GAfaX7AXfOs5td3/Y0z1Ndnm0ptixxpf0mOT0OXNO4BDaP/A7W4xGN/TsvPbQL+tW2Hzat1tXyrvXZ1km401L8wzjVkwZPk9TtpSyoYfv8OGSnSLm6sXFt5Vde+3OlAqIIuZF7yO6pT6VUUmOD6IjOSi5Ey3XCAPhlq4YL8Zy+GaMTTg+rH9x7eeegOkvHTx8cbIMmosPCfiE8MFtDbnkGir9gExfpev6b9kVzBptwXwUCfJL6HrsqtDkhxtc/wvRWwGtxBp86Slso/yORLpMk+OgbfcXLKavqvO27D+7Q/joz30EvyPT4QTYvES+7yabV7bB4ZSe26F386K/zVFlS/puq2AL6Tr3nY07P3/78H0f45aNAgEu85nm+VNnz/7F5AkTHgrStNSVl/Mj9r6XA0q+yQgPy5JxM1kNsDkj5WVfIewari9NRSxAXd6jIankiaJ9FJ41UXGJgt3heW4sgmh82O/b3UGyY4Kepq7NxYdE5QfxwW2Z2gQqzT5M+sWa2/g6UaZ4aasH9DigorigUVO2e2XtpsO+2pr+A+8PnMvX7E8cZHg9vH8Rj38uxdNl/BPjRb8CwKoZe/o5XXXbrq5s8PBhwW9Nz53l3wKqd/Lw3U03fpLoiGPS/gIAFk4uKbm/RfVhWR9nDMTqBLWBLN/l+qRF5W6Dwrk/Mp5Zxb36WSrsZYkS9zptIGPIYVxwpjgZvvVLlGIDmUPwga6l3ovW2DZ95bKnkql0TJpXtfdixjcz0jrlit1aoPZPvNS9m1mUI7JjQHoFreNf8fRvAcQuYAD9zaDgesGgkXrhDkyycMVb7EYpL4n0H+4m3yfkewg93ctDuY4dGlpjAbYtSvBv+tKlheamTbLbw0esZTw/GJ/ounTpUteGjRtPRO6dcroRkwGJyFVam2jAGfiQ9JhNm+iwHTGdP3++jHvNA5zoSUaCmKhBXz7Fr3Okmv1btkxmh0OOVtuTBMQUwhXQ9UUCEKHE1vLs2VMIiB2E/AXJsty4ceNptDy68ft3PSgnm1XRKQ1EaMAe7I+ISSIQOPkSWdoSMgHQDf1BLa/oNbO68hbGN5kBkb1cjJXaOUdM055ZeyMPqj2Az/Ubw6XP119b9nESbNoVSY3XOxYg6oJeF4e3xJJVAq2gv9MtHUMZQ9ncUGzMHkk2b0boqqqC44dfJFseg9IX8KhI90uAWLkc0QA2j89SlY7B6uiGNkNzF7xq+mru5pj4A9nuxAQLVhr9jZvNDdbviLPHjzn/dINh6DP115el3KNIC8h48M7nhekaEtS0XjJrKn5I+AaeS9sxoXaJ8ezabwkPYQHKBUFaBueusb474ij95WVfBuPUlSlYTfspevUVeDw3p6sPmmGT6XOuIP9P+bUqkDGTHOxOvpqM/Dw/OjtiXECda6mzPPjK5YoGdO3ECHywtIdNX/UdDGH9xIaHOow4Vdtgfqpb+kDwYYhddcGKgHahdcqlx+uvP7I2FXWk3bXkAdxo5BsHyk/rWrAYVB0ojA2XcayhG1eLnxlgO86O14zTNEP7ExUs1motedGUq9eAHIlGy+RQfq+PHTt2S7qKYYB3Jc2bTeQ/Az2nfW9T5c8JS/vwbF7HM7EbUPpHeH67buER9f4Zs2ePoL4HEPwPdc460wuMfj100fNiiK6iktAAz8J6hkg6yE/rb8wDH/aXbEZeYV96ZfYMvGnp+wWLMtzGQEPTJwNqeaYVGBmMT/bajIcdWyJaVfbv6YcadnY1PF+zlKbxy+jybDBM498iGDZr9h5YyQqZ63Sm1ysvtJjsN9veiIHzNfKxSMUgsjn6hZde6/ffRxmdAaZZ4aBkb+1TU7MufG2l8ESmX4YAABJWSURBVBKQYKb1Drym7nLdJnHZ5iqqq1ev37jRtgnKNtmcIQ8PxhvLqu1f+JiuZdZga1PbqA6Wp4atU9624y2tS6P0JiLS6lrSRMzDXKPIOnm43fIitNLy0jmK4Ri7xkaFBNN7G/uEsuMCqKxpzdptwWaj6yMZEzo3BsuWiJLB807MDqb8pRBhqL7Y6cSVC33sU6+9XunyCBVumrLdscaXcB8u34biW8AjgET3cAEAdhEgvIoF4n8IZ2OYZjmyVJEusoTc3urq0cQdRMSfy8aPbzZ4hwpWnqzQAOtn87nvna3Bw2+zBWIFiixDi+VouckW2yxR8z7Am2KbcBlWclulh5eXHpBploFY3SnoQSnM8Fkl4YWG+7FTY3APHLOsq3l4AV1tvVZg2PnC6VL2S+VByZTzpZvBsvZD4S0y7oQNmD3LSPkj5JeuiOH5ML23ywyPy5QfGQ26hmdXVlXdRZlHAmIfFHo857N+MmKlhSxHYivt48MXj0tX06qpuY08NR45OUu5nNMA0zfydnbhOZkilTM0K2QxH11ZAG5fwQdoz5I0vJ9o+2mLtZXRlInD6QEZDyEM5VeHuG7Xy5rPb/d7G7HTta+J6wMtay7146hgLxYW9SPu40a0qUUsndyalv2GsR3xZqUmYj21ZcnOIAc0mVfX/8sL/r8m6RIQ8AgJGB6XgCSpJAGcshtu2BiD+CRaYRuoj72AHXkfLnC7x9Gl3BGDVosAMWzNrI0bn+Dr051W6G/aYJ1oLBFVXKY1oGteemxVWC5cbxftcr+v+Wpj40Nd76wPG3I+DDZ8n9bJwcxdDiKfvZInWdHSAzK7dGsPB5vOCTIyT76kXPyW37ucf9s0g9ZXOT1lujdgtCv/J1rAdw4tswWYcf4Y0ruF3jHOsrYDnH9KR17GiM4jX5NARjP7Ffa1T4tHUC6WUx2Ov1lAZq/zrK39LxbmcyaVlka2mnS9NyDGQ6o/gtHuPZiKvBTk3dQVg1lpiZ9A3sdKS0r+wGHATWVR6Y7VAM/IG0ufCIofGHzJVhljAR9YE2zZuGMY2lbL1GmtkWDk3aRbvn+alhh2m/K+tAqQVcNIfiGnu9x3aKb/GFoDR9H6otenr9Q8+oOWzzqODmCV5qaTrBvv636zCjDrE8qYvmcoL+2S9LOnlJMGRPtx3Lw9gFU1ra1YkzLPs+TmHO4vT19yjmdCny5Lr1gXSpmr2QXk56nkT45LhqnYUw1ZKzJcavsoztI+oo+4N7yyhpX/G0v39iLuQH5iPPi0lq/fb9VYB2KC8YHmMrya3/yQltwH4fmS9afVIjNWPCpdwwiH3cdbRBwgD60khD2ol4YRbsBvt9bC4tL1HkRG+bW4k7ok/da2uDQtz2DSuHGfyNjWxOuv3wJoRTKsa40lrQ4mBDowgbGEDJfwUGxiXOyCVLcyihSgdUIYGKc9VinnFXBYcVG11+tCWn3evHkpLbHDOLqT1JLuVkfJ63a7d0SPP4ZrQZaH5W/b1hl+trkIz2sP8tnvYThdPL/X6+1Wn1Yo/Gp79CgvGzkyoqESL2+seGPlo6dEx+sr//YpccOi4wlPCIuTjQOOCAsn7U0LyBKVHgZgicianUa35kl+v2l2QUkUwE4U7/AShijZ1mQo/fkFoYgYHt2l34aF8qMxkhwRJWNb/JolKyYg+2HG8CStu2PQ3yojP/+Cktjjbs3ik22Zd1VU/JY6lwblAmDkBU3ZsW34H6r5sR/dGWR+KV4B5ubNP6tmY9NgOruhrPF5vcFg8lcm5JD1an3Tpl+QKVRe8gW0HWVcILMGXzKBJSQyM6kZbD9Ba/BDrVOHf+vP/WWvdcZVBWZt5a9jiW249Tmm37JX/xqa52/6G3//SOiss39WpO2pHstn5gushzabunlOzPyW8ay+YikTA4kdsx27GU9qlal7urCRwhicIG1aMhYV1+lmw8qHuERZkEBL6VI2q1xmG9NmSB5phQFgE/2W9Ste6E6A2MNG377XNOcrnyHRWqUYPnkfUudnMsZM13cmKoutrTbwrmaMn2FZ6xPxC0+zThkxnJ21zqGzWMRkZZWhGf/VVyx7RGis66/3aGt2jSb9RIIefjsxlv+7vN+YZpzBENPl0P+FDSteFXpx0khgv+AxdaGGf8bT1uhvPPrHhphIX3wg07Rx2EwcIuRmfR59T9Xn1slXnKf5vdtJi90aMjFRMDU7zdJ8R5G1brbCW9MRwe9koP8ZGjf/i5vfsGRcokkgqxdJXZqpATrN+7LQ/A0G9v/GQOBUds5YnW6RckLSqvffvwoQkxZJX0Cygu7RZAb1p6VbphPz0R2/D7nl1yqOe/Y0jOTXqg7QuckMmA3gwg03NXOUNWTEoRjC/s56b8dSoure/3rJLCswBhD7IaB3IOB3PVcZkgoBmeZiUixgXR5dEUaspFHVwCuKIC6QCR2AU6trrhEM3AH65rmMf43WNO8DupZ3QV26vkbXjFsiy5R9D+ugj+7XBWzMdqz+xmPvRtDoxj94wOtaapb557qyjJ/bNNgkRdCqQMtqQNf/wcMm4xI/odn9E2ZYVzE8sMhlWc9jHvFJU0MFS5YsKdq2c6c8GxdwQtIPKacbeXxc53hcrtvZu2xby1ZAld5WGrB0a5xM5HG/ue+ubzVXoDtv/z/oLV0LmD0AZlwIhqxlP5ermOir0vTAibTO5H0fQ6s1cQtS1+8yNNfiUN3cZsTkQSi+3pMQyEDMgL5y6T/raZ8wBw8/hi/tUE3z1a1sxyQhLN0ms4Ze+h0BMgTdzQuCUZw+hQQb+OrL0ZgY+By//DRWytfKleZmkI8ElWs9DXzZsbDwsora2pEsjr2W+3Y6D+LxfI007MV2sHpiJd6NXr9fwEmmow+l9XYf91aOe+u7defOw3gmCiQNt5NxywcZ0L+jtbbermOr/ttIA9140bfqKx5dHsa/h/hprR1vX3mzjZXLVtn+ESM+0dYDZJbWRwAikWPd5bfsCv1hIprwtMRAFk5p+y36uWCwL0CTy5akI8h7Uogsv+h9zR+c7NCfB40P5Uv94/pKbQzRKU9WaaB+RuwhhHpo+rx5B2s+3yXct1PpdrJzifYDEZZrneNUcPwDJQCNyVPwBU33fzGu8mS/fv1eGTlyJA075dqFBizrZZ6Fc7AhfYMP2EOaO/8x/ZW/bs5Q3Y+3hgy/sq4svYKu6uOJyk0AZPZ+Y3msp5wrBSDwAB7c47BEeJ69hfZiqStxJ/D1li+27Yya6sM1t0wMQI9Vm2EZv6VR9yhN0CnYh1xXR6X+s1kDZWPHfoZ8dwZlZGeL/f1+f08Wbx7mDwT+TPxKA0t+vmibevXq9a0CrqCm2t8V8BrFWPffGUI6DRwYrHurZ9PD+o+ueUY1nNNjHR8YPPx20Y5MSSSrJQxjrwBgrhB6XbO+4JImkFks9ubwC35jQ8wtba9ueH4ZCmvWJtj8KxQuMHdpfsO2gbHjVjzyD33IiPcBwPNZ735CiE55HKMB2YIaYb8G0LYCZNIO38JC77pdChxTCyVoS2iAVpL0sr5rnTriUJovw3nPLwfUGMj3LcbI9Vabp6UdS7OGX2qO2cwnMJd4yc5lavaqoUQlxG+R6dYuhOkO6j4jY/cI2I+WFZb7vlt0Ld9uXdHK+thY+RgTAA2OMbIQkMlAMTMUtMq0x1g8PqWBSvmUBnJDA3sqK6ewaiENoy1n1N+37PUijz/xQHv9js9/sKZM+aP29JpPAYuzqJ0NZODHswwxzbFra5oGW8M+lVTNde0VzC1mJkULUXwg01imwna1oO75UhhCGtrTa9fgu0CrrhlvH1QmCU05+rb64OHvAYT24F9T5CpdacBJGuAg6jInyZuqrD6Xy4wHZObgS2QQvzOj5hdrWt632n/XdGe8tCtxlTLuJI5W2gbjjUf/bftHjHBp62kVRTi9k3Xy5b3sqGKPX6sOjrFbHUPxkujRvfqrf9sVkTUskADIwqjw6lOm0Asevo61Oofr7oK+miaTjfpQ4rZGUFr+YeFhu1U2ZOQUywwk7OOG51F+pQGnaIB933iJI9cdO0X2ZOTM9/kfikcHVj0NYN3C9T3MsuqHxQTB9KkMQSTlGAvDxtDLj1yVvtWsiJkufmxOpxDPr87pfnaG0bSzg+Hoa3wgs/QvwdOq8AyA2EYE/IQNyLx0Oxkfi+H8soWH9gm0DemvP/IkrbIXQetDqeaOiFy6ZZthRMSpgNKAQzTQubj4+VGjRlU4RNyUxZx48vC43WZaWr/Rhgz/mhXg59L0wrKfrXs0AOfcIxZoz38yQPd5H2WgXlptde6IIyx9/Vom/7TPdcu1XtcCzwaT5FoXb20CPyLi7TQr8W4YcYGMhZ/nhDMRv2vlo6Vc5CeuX90l5v+h4bHSKiN8Znhc0G+seGxo0K+uSgNKA87RQP17fR8Sy6/BrVgmfplpHNEQWderi4r7Z3h6mP+FMH9S3rhAllRuRaQ0kCUaYCzG4IyA3wXFIVyE38So9/cSt2vPHtmJgrdJ7x+Ms8NJ/FGW/bGlu3MVec+ws1jWAPk6s0D8N8R5aZFsYGnSgiSKUyQtoAGAjEUFnFHJzQJg7ZZTC7BJs0hOR7Nz6rLsSTmlgfgaWLZsGaclmreEUwjQADB2nO2XMFsr44+gk+hkHOX/pBGdZd3IuyMAKfaUOQhkzsAHaZG9zY24UBs84nkM1zY0ulFJRFQUFfSq9ri6RJN2qPXvKK6u3R4dn2zYCtRt2cxarUZ2S8CuS/ZhSras5tCxs6lk14P8qu55Kq+gKji7Ertkn9vtCdKzzQrblodepdgZVGxGNMD4ymeGyzUxI4UlUUggEMA2OLGxZhLFZDOJI/DBresexrz8BwFmZwanTFPVasfK6oZjhVPNnIBeXn1aif/SCooa2ZNgofZTc+PGnybInumkI+BnT348feKB2kUvrUtY/ovHDJgH/byERCqxJTSwu3TCBHu6vyUKjy5z9uzZ+V4MhXPVOQUf3PqKh78CxI7WTx85gEVFIWPWVG7MY6cO/L+9BZ6LO1f77nf7A5u9buPgisK8yztVex+48PWP5zRV1tMnHnzxtk6F/9djT/Ud57312dIQvdv8Vl++bEsoHObhy7sVlPssLKolvUMoXECMaWZNK/AHpPV5uPjjOWg+A4TrTFMs6whAuXM8WhWvNJCtGgjHh8/69Djk9YF9n833m8svfWld0q3e5uJDXN2E4YM92F8/NvZl3AxNJEy7ZMZOaT1t62bcO7mkZBVbG5/LFh6Xb+/Wcav+6iP2y5+oiGnDZ54k4ww7uhZv/MGMPzRJL2XB7+lWPUVJ17+E36k27yEjzsWs7+lEdfru6i/vOv3eqfcJDVvjvETX8ruJ6FWa0kC2aiCID9PmzfNb7DxLeE8y73WwPs3Fh2A5ia42kCUiUGlKA7mmAdlDbfuuXRckUy/GXl5mS6JvkqFVNG2nAQVkbad7xbmNNFBeXt6THkNci/VwsbAGvYiwArJwpWShXwFZFt4UJVLLaiAvL2+nLxAI28UlAT+PZ22CVJWUJRpQQJbOjeiS97qxp+bEhFk9eV8lTFeJbaYBNpIsh/ndbSaAYpxxDSggS0Ol+tMPyc4gjWzb0ihKZVEaUBrIgAY4OEc5pQGlAaUBZ2sAc6ymHeceHhqwrPPiUVLISMwRhnB9m7nZCkwp9oH2KH7PEyfGiZ2J7xedXzfNNyzD2IZpwtmYU4yH9jXoPoimiwp3o/xLiJMTfl6KSmuRIPxGIddu5HssHQbU7XzqKId1LCa/L0YZA+DxfcrfSFrz9jzXdSmrO9vLPMo17v5N8OlH+g9YIfE4X7MHY8gUEYXsPRggf5DrChL+EJHYcoFCZFyK7teim5sj2BhGdysQWETaStJ+T5qsnphGWFan2FvBRNC3UICzCtw8+3ejx6+Ro5HhdguxbZti63aNDtd5UA55t48PBhpdTfM09DOQe8Omi1Y1145cD4BuNc/TW43o6yMEHzjqbjE0Yt2V0KH7ph0H1F4O1d+aplQUSgNKA0oDmdPA8ccc4xk2bFiTa62TGiNj24A3OMn45wnE6wPCdo2Rvh30FQv8/izWbTQ4Dkp/wVKjSvJ147dvjPztJUoWx8fSX9r15xO2ja9Ukw8Ah4ps4940rxWYtpQqY05owLKkx7V/3LroejH4ULcBRCSRrJaRX0wn+HDGGWfQ4FVOaUBpQGmgHWggomvJUpq0dr9oB3pSVVQaUBrIIg0AXE+w/9v4oEgRXUu6ebGaf0FadVUaUBpQGsgODbAtR7gg/w+6E+4AqoenygAAAABJRU5ErkJggg=="/></div><div class="nb__1zo5U"><div class="heading-5 font-semi-bold nb__2W6nS">Get in touch with us to Sell or Rent Your Projects</div><a class="nb__2Im-D" href="https://www.nobroker.in/builder-list?action=builderCitySelect&amp;isHybrid=false&amp;nbFr=builder_banner" rel="noreferrer" target="_blank">Enquire Now</a><hr class="nb__11Mh0"/><div>For Builder Enquiries: +91 91080 50400</div></div></div></div><div class="nb__39Lm5"><div class="heading-1 text-center nb__1hF0S"><div class="nb__36DNl nb__27k4w"></div>We Make A Difference<div class="nb__36DNl nb__2Y00v"></div></div><div class="nb__33lbW"><div class="nb__2EQjN"><center><div class="nb__27n0h">₹130 cr+</div></center><div class="heading-4">Brokerage saved monthly</div></div><div class="nb__2EQjN"><center><div class="nb__27n0h">30 Lakh+</div></center><div class="heading-4">Customers Connected Monthly</div></div><div class="nb__2EQjN"><center><div class="nb__27n0h">2 Lakh+</div></center><div class="heading-4">New Listings Monthly</div></div></div></div><div class="nb__tk_Wj"><div class="heading-1 text-center">Our Customers Loves us</div><div class="nb__1AaSb"><iframe allow="encrypted-media" allowfullscreen="" frameborder="0" src="https://www.youtube.com/embed/0ChlgxhXVws" title="nobroekr-testimonial-video"></iframe></div><div class="nb__11Qib"><div class="lazyload-placeholder" style="height:auto"></div></div><div class="text-center nb__1dnYK"><a href="/testimonials/" rel="noreferrer" target="_blank">More Testimonials</a></div></div><div class="load-lazy" data-ele="homefooter"></div><div class=""><div class=""><div class="sitemap-footer-container"><div class="sitemap-footer-tab-container" style="background-color:#ededed66"><div class="flex overflow-y-hidden w-full"><div class="heading-6 px-1p py-1.5p text-center cursor-pointer font-semibold active:bg-loader-bg-color active:border-b-2 active:text-defaultcolor" style="width:16.66%"><a href="#content-1">Properties &amp; Flats for Sale</a></div><div class="heading-6 px-1p py-1.5p text-center cursor-pointer font-semibold active:bg-loader-bg-color active:border-b-2 active:text-defaultcolor" style="width:16.66%"><a href="#content-2">Flats for Rent</a></div><div class="heading-6 px-1p py-1.5p text-center cursor-pointer font-semibold active:bg-loader-bg-color active:border-b-2 active:text-defaultcolor" style="width:16.66%"><a href="#content-3">PG / Hostels</a></div><div class="heading-6 px-1p py-1.5p text-center cursor-pointer font-semibold active:bg-loader-bg-color active:border-b-2 active:text-defaultcolor"><a href="#content-4">Flatmates</a></div><div class="heading-6 px-1p py-1.5p text-center cursor-pointer font-semibold active:bg-loader-bg-color active:border-b-2 active:text-defaultcolor" style="width:16.66%"><a href="#content-5">Miscellaneous</a></div><div class="heading-6 px-1p py-1.5p text-center cursor-pointer font-semibold active:bg-loader-bg-color active:border-b-2 active:text-defaultcolor" style="width:16.66%"><a href="#content-6">Commercial</a></div><div class="heading-6 px-1p py-1.5p text-center cursor-pointer font-semibold active:bg-loader-bg-color active:border-b-2 active:text-defaultcolor" style="width:16.66%"><a href="#content-7">New Projects &amp; Plots</a></div><div class="heading-6 px-1p py-1.5p text-center cursor-pointer font-semibold active:bg-loader-bg-color active:border-b-2 active:text-defaultcolor" style="width:16.66%"><a href="#content-8">City Real Estate</a></div></div></div><div class="flex overflow-y-hidden" style="max-height:160vh"><div class="bg-white h-auto py-1p px-3 flex w-fit" id="content-1"><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/flats-for-sale-in-bangalore_bangalore" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Bangalore">Flats for Sale in Bangalore</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-koramangala_bangalore" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Koramangala">Flats for Sale in Koramangala</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-marathahalli_bangalore" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Marathahalli">Flats for Sale in Marathahalli</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-hsr_layout_bangalore" rel="noopener noreferrer" target="_blank" title="Flats for Sale in HSR Layout">Flats for Sale in HSR Layout</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-whitefield_bangalore" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Whitefield">Flats for Sale in Whitefield</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-indira_nagar_bangalore" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Indira Nagar">Flats for Sale in Indira Nagar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-bellandur_bangalore" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Bellandur">Flats for Sale in Bellandur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-chandra_layout_bangalore" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Chandra Layout">Flats for Sale in Chandra Layout</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-j_p_nagar_bangalore" rel="noopener noreferrer" target="_blank" title="Flats for Sale in J. P. Nagar">Flats for Sale in J. P. Nagar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-btm_layout_bangalore" rel="noopener noreferrer" target="_blank" title="Flats for Sale in BTM Layout">Flats for Sale in BTM Layout</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-jayanagar_bangalore" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Jayanagar">Flats for Sale in Jayanagar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-between-40-lakhs-to-45-lakhs-in-bangalore_bangalore" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Bangalore Below 45 Lakhs">Flats for Sale in Bangalore Below 45 Lakhs</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-between-45-lakhs-to-50-lakhs-in-bangalore_bangalore" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Bangalore Below 50 Lakhs">Flats for Sale in Bangalore Below 50 Lakhs</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-below-60-lakhs-in-bangalore_bangalore" rel="noopener noreferrer" target="_blank" title="Flats For Sale Below 60 Lakhs in Bangalore">Flats For Sale Below 60 Lakhs in Bangalore</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-below-70-lakhs-in-bangalore_bangalore" rel="noopener noreferrer" target="_blank" title="Flats For Sale Below 70 Lakhs in Bangalore">Flats For Sale Below 70 Lakhs in Bangalore</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-below-80-lakhs-in-bangalore_bangalore" rel="noopener noreferrer" target="_blank" title="Flats For Sale Below 80 Lakhs in Bangalore">Flats For Sale Below 80 Lakhs in Bangalore</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-below-90-lakhs-in-bangalore_bangalore" rel="noopener noreferrer" target="_blank" title="Flats For Sale Below 90 Lakhs in Bangalore">Flats For Sale Below 90 Lakhs in Bangalore</a></div></div><div><a class="font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/properties-for-sale-in-bangalore-bangalore" rel="noopener noreferrer" target="_blank" title="Properties for Sale in Bangalore">Properties for Sale in Bangalore</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-in-koramangala-bangalore" rel="noopener noreferrer" target="_blank" title="Properties For Sale In Koramangala">Properties For Sale In Koramangala</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-in-yelahanka-bangalore" rel="noopener noreferrer" target="_blank" title="Properties For Sale In Yelahanka">Properties For Sale In Yelahanka</a></div></div><div><a class="font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/independentfloor-for-sale-in-bangalore_bangalore" rel="noopener noreferrer" target="_blank" title="Independent Floor for Sale in Bangalore">Independent Floor for Sale in Bangalore</a></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/flats-for-sale-in-mumbai_mumbai" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Mumbai">Flats for Sale in Mumbai</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-andheri_west_mumbai" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Andheri West">Flats for Sale in Andheri West</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-andheri_east_mumbai" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Andheri East">Flats for Sale in Andheri East</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-malad_west_mumbai" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Malad West">Flats for Sale in Malad West</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-navi_mumbai_mumbai" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Navi Mumbai">Flats for Sale in Navi Mumbai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-powai_mumbai" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Powai">Flats for Sale in Powai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-thane_west_mumbai" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Thane West">Flats for Sale in Thane West</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-mira_road_east_mumbai" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Mira Road East">Flats for Sale in Mira Road East</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-kharghar_mumbai" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Kharghar">Flats for Sale in Kharghar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-kandivali_east_mumbai" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Kandivali East">Flats for Sale in Kandivali East</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-bandra_mumbai" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Bandra West">Flats for Sale in Bandra West</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-below-60-lakhs-in-mumbai_mumbai" rel="noopener noreferrer" target="_blank" title="Flats For Sale Below 60 Lakhs In Mumbai">Flats For Sale Below 60 Lakhs In Mumbai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-below-70-lakhs-in-mumbai_mumbai" rel="noopener noreferrer" target="_blank" title="Flats For Sale Below 70 Lakhs In Mumbai">Flats For Sale Below 70 Lakhs In Mumbai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-below-80-lakhs-in-mumbai_mumbai" rel="noopener noreferrer" target="_blank" title="Flats For Sale Below 80 Lakhs In Mumbai">Flats For Sale Below 80 Lakhs In Mumbai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-below-90-lakhs-in-mumbai_mumbai" rel="noopener noreferrer" target="_blank" title="Flats For Sale Below 90 Lakhs In Mumbai">Flats For Sale Below 90 Lakhs In Mumbai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-below-1-crores-in-mumbai_mumbai" rel="noopener noreferrer" target="_blank" title="Flats For Sale Below 1 Cr In Mumbai">Flats For Sale Below 1 Cr In Mumbai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-below-2-crores-in-mumbai_mumbai" rel="noopener noreferrer" target="_blank" title="Flats For Sale Below 2 Cr In Mumbai">Flats For Sale Below 2 Cr In Mumbai</a></div></div><div><a class="font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/properties-for-sale-in-mumbai-mumbai" rel="noopener noreferrer" target="_blank" title="Properties for Sale in Mumbai">Properties for Sale in Mumbai</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-in-kharghar-mumbai" rel="noopener noreferrer" target="_blank" title="Properties For Sale In Kharghar">Properties For Sale In Kharghar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-in-bandra-mumbai" rel="noopener noreferrer" target="_blank" title="Properties For Sale In Bandra">Properties For Sale In Bandra</a></div></div><div><a class="font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/independentfloor-for-sale-in-mumbai_mumbai" rel="noopener noreferrer" target="_blank" title="Independent Floor for Sale  in Mumbai">Independent Floor for Sale  in Mumbai</a></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/flats-for-sale-in-chennai_chennai" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Chennai">Flats for Sale in Chennai</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-velachery_chennai" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Velachery">Flats for Sale in Velachery</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-thiruvanmiyur_chennai" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Thiruvanmiyur">Flats for Sale in Thiruvanmiyur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-madipakkam_chennai" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Madipakkam">Flats for Sale in Madipakkam</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-thoraipakkam_chennai" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Thoraipakkam">Flats for Sale in Thoraipakkam</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-sholinganallur_chennai" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Sholinganallur">Flats for Sale in Sholinganallur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-medavakkam_chennai" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Medavakkam">Flats for Sale in Medavakkam</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-mylapore_chennai" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Mylapore">Flats for Sale in Mylapore</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-adyar_chennai" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Adyar">Flats for Sale in Adyar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-t_nagar_chennai" rel="noopener noreferrer" target="_blank" title="Flats for Sale in T Nagar">Flats for Sale in T Nagar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-perungudi_chennai" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Perungudi">Flats for Sale in Perungudi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-between-40-lakhs-to-45-lakhs-in-chennai_chennai" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Chennai Below 45 Lakhs">Flats for Sale in Chennai Below 45 Lakhs</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-between-45-lakhs-to-50-lakhs-in-chennai_chennai" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Chennai Below 50 Lakhs">Flats for Sale in Chennai Below 50 Lakhs</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-below-60-lakhs-in-chennai_chennai" rel="noopener noreferrer" target="_blank" title="Flats For Sale Below 60 Lakhs In Chennai">Flats For Sale Below 60 Lakhs In Chennai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-below-70-lakhs-in-chennai_chennai" rel="noopener noreferrer" target="_blank" title="Flats For Sale Below 70 Lakhs In Chennai">Flats For Sale Below 70 Lakhs In Chennai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-below-80-lakhs-in-chennai_chennai" rel="noopener noreferrer" target="_blank" title="Flats For Sale Below 80 Lakhs In Chennai">Flats For Sale Below 80 Lakhs In Chennai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-below-90-lakhs-in-chennai_chennai" rel="noopener noreferrer" target="_blank" title="Flats For Sale Below 90 Lakhs In Chennai">Flats For Sale Below 90 Lakhs In Chennai</a></div></div><div><a class="font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/properties-for-sale-in-chennai-chennai" rel="noopener noreferrer" target="_blank" title="Properties for Sale in Chennai">Properties for Sale in Chennai</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-in-shalimar-bagh-delhi" rel="noopener noreferrer" target="_blank" title="Properties For Sale In Shalimar Bagh">Properties For Sale In Shalimar Bagh</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-in-velachery-chennai" rel="noopener noreferrer" target="_blank" title="Properties For Sale In Velachery">Properties For Sale In Velachery</a></div></div><div><a class="font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/independentfloor-for-sale-in-chennai_chennai" rel="noopener noreferrer" target="_blank" title="Independent Floor for Sale in Chennai">Independent Floor for Sale in Chennai</a></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/flats-for-sale-in-pune_pune" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Pune">Flats for Sale in Pune</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-wakad_pune" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Wakad">Flats for Sale in Wakad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-kharadi_pune" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Kharadi">Flats for Sale in Kharadi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-baner_pune" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Baner">Flats for Sale in Baner</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-hadapsar_pune" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Hadapsar">Flats for Sale in Hadapsar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-aundh_pune" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Aundh">Flats for Sale in Aundh</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-kothrud_pune" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Kothrud">Flats for Sale in Kothrud</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-pimple_saudagar_pune" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Pimple Saudagar">Flats for Sale in Pimple Saudagar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-viman_nagar_pune" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Viman Nagar">Flats for Sale in Viman Nagar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-pimpri_pune" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Pimpri">Flats for Sale in Pimpri</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-hinjewadi_pune" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Hinjewadi">Flats for Sale in Hinjewadi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-between-40-lakhs-to-45-lakhs-in-pune_pune" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Pune Below 45 Lakhs">Flats for Sale in Pune Below 45 Lakhs</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-between-45-lakhs-to-50-lakhs-in-pune_pune" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Pune Below 50 Lakhs">Flats for Sale in Pune Below 50 Lakhs</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-below-60-lakhs-in-pune_pune" rel="noopener noreferrer" target="_blank" title="Flats For Sale Below 60 Lakhs In Pune">Flats For Sale Below 60 Lakhs In Pune</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-below-70-lakhs-in-pune_pune" rel="noopener noreferrer" target="_blank" title="Flats For Sale Below 70 Lakhs In Pune">Flats For Sale Below 70 Lakhs In Pune</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-below-80-lakhs-in-pune_pune" rel="noopener noreferrer" target="_blank" title="Flats For Sale Below 80 Lakhs In Pune">Flats For Sale Below 80 Lakhs In Pune</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-below-90-lakhs-in-pune_pune" rel="noopener noreferrer" target="_blank" title="Flats For Sale Below 90 Lakhs In Pune">Flats For Sale Below 90 Lakhs In Pune</a></div></div><div><a class="font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/properties-for-sale-in-pune-pune" rel="noopener noreferrer" target="_blank" title="Properties for Sale in Pune">Properties for Sale in Pune</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-in-hadapsar-pune" rel="noopener noreferrer" target="_blank" title="Properties For Sale In Hadapsar">Properties For Sale In Hadapsar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-in-kondhwa-pune" rel="noopener noreferrer" target="_blank" title="Properties For Sale In Kondhwa">Properties For Sale In Kondhwa</a></div></div><div><a class="font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/independentfloor-for-sale-in-pune_pune" rel="noopener noreferrer" target="_blank" title="Independent Floor for Sale in Pune">Independent Floor for Sale in Pune</a></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/flats-for-sale-in-gurgaon-gurgaon" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Gurgaon">Flats for Sale in Gurgaon</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/1bhk-flats-for-sale-in-gurgaon-gurgaon" rel="noopener noreferrer" target="_blank" title="1 BHK Flats in Gurgaon">1 BHK Flats in Gurgaon</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/2bhk-flats-for-sale-in-gurgaon-gurgaon" rel="noopener noreferrer" target="_blank" title="2 BHK Flats in Gurgaon">2 BHK Flats in Gurgaon</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/3bhk-flats-for-sale-in-gurgaon-gurgaon" rel="noopener noreferrer" target="_blank" title="3 BHK Flats in Gurgaon">3 BHK Flats in Gurgaon</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/4bhk-flats-for-sale-in-gurgaon-gurgaon" rel="noopener noreferrer" target="_blank" title="4 BHK Flats in Gurgaon">4 BHK Flats in Gurgaon</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/4+bhk-flats-for-sale-in-gurgaon-gurgaon" rel="noopener noreferrer" target="_blank" title="4+ BHK in Gurgaon">4+ BHK in Gurgaon</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/fully-furnished-flats-for-sale-in-gurgaon-gurgaon" rel="noopener noreferrer" target="_blank" title="Fully Furnished Flats in Gurgaon">Fully Furnished Flats in Gurgaon</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/semi-furnished-flats-for-sale-in-gurgaon-gurgaon" rel="noopener noreferrer" target="_blank" title="Semi Furnished Flats in Gurgaon">Semi Furnished Flats in Gurgaon</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/unfurnished-flats-for-sale-in-gurgaon-gurgaon" rel="noopener noreferrer" target="_blank" title="Unfurnished Flats in Gurgaon">Unfurnished Flats in Gurgaon</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independentfloor-for-sale-in-gurgaon-gurgaon" rel="noopener noreferrer" target="_blank" title="Independent Floor for Sale in Gurgaon">Independent Floor for Sale in Gurgaon</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-gurgaon-gurgaon" rel="noopener noreferrer" target="_blank" title="Independent Houses For Sale in Gurgaon">Independent Houses For Sale in Gurgaon</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-below-60-lakhs-in-gurgaon-gurgaon" rel="noopener noreferrer" target="_blank" title="Flats For Sale Below 60 Lakhs In Gurgaon">Flats For Sale Below 60 Lakhs In Gurgaon</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-below-70-lakhs-in-gurgaon-gurgaon" rel="noopener noreferrer" target="_blank" title="Flats For Sale Below 70 Lakhs In Gurgaon">Flats For Sale Below 70 Lakhs In Gurgaon</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-below-80-lakhs-in-gurgaon-gurgaon" rel="noopener noreferrer" target="_blank" title="Flats For Sale Below 80 Lakhs In Gurgaon">Flats For Sale Below 80 Lakhs In Gurgaon</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-below-90-lakhs-in-gurgaon-gurgaon" rel="noopener noreferrer" target="_blank" title="Flats For Sale Below 90 Lakhs In Gurgaon">Flats For Sale Below 90 Lakhs In Gurgaon</a></div></div><div><a class="font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/properties-for-sale-in-gurgaon-gurgaon" rel="noopener noreferrer" target="_blank" title="Properties for Sale in Gurgaon">Properties for Sale in Gurgaon</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-in-sector-31-gurgaon" rel="noopener noreferrer" target="_blank" title="Properties For Sale In Sector 31">Properties For Sale In Sector 31</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-in-sector-4-gurgaon" rel="noopener noreferrer" target="_blank" title="Properties For Sale In Sector 4">Properties For Sale In Sector 4</a></div></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/flats-for-sale-in-hyderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Hyderabad">Flats for Sale in Hyderabad</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-banjara_hills_hyderabad" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Banjara Hills">Flats for Sale in Banjara Hills</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-jubilee_hills_hyderabad" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Jubilee Hills">Flats for Sale in Jubilee Hills</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-madhapur_hyderabad" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Madhapur">Flats for Sale in Madhapur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-kukatpally_housing_board_colony_kukatpally_hyderabad" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Kukatpally Housing Board Colony">Flats for Sale in Kukatpally Housing Board Colony</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-hitech_city_hyderabad" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Hitech City">Flats for Sale in Hitech City</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-gachibowli_hyderabad" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Gachibowli">Flats for Sale in Gachibowli</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-kukatpally_hyderabad" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Kukatpally">Flats for Sale in Kukatpally</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-whitefields_kondapur_hyderabad" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Whitefields">Flats for Sale in Whitefields</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-himayath_nagar_hyderabad" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Himayath Nagar">Flats for Sale in Himayath Nagar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-sanath_nagar_hyderabad" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Sanath Nagar">Flats for Sale in Sanath Nagar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-between-40-lakhs-to-45-lakhs-in-hyderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Hyderabad Below 45 Lakhs">Flats for Sale in Hyderabad Below 45 Lakhs</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-between-45-lakhs-to-50-lakhs-in-hyderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Hyderabad Below 50 Lakhs">Flats for Sale in Hyderabad Below 50 Lakhs</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-below-60-lakhs-in-hyderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="Flats For Sale Below 60 Lakhs In Hyderabad">Flats For Sale Below 60 Lakhs In Hyderabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-below-70-lakhs-in-hyderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="Flats For Sale Below 70 Lakhs In Hyderabad">Flats For Sale Below 70 Lakhs In Hyderabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-below-80-lakhs-in-hyderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="Flats For Sale Below 80 Lakhs In Hyderabad">Flats For Sale Below 80 Lakhs In Hyderabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-below-90-lakhs-in-hyderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="Flats For Sale Below 90 Lakhs In Hyderabad">Flats For Sale Below 90 Lakhs In Hyderabad</a></div></div><div><a class="font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/properties-for-sale-in-hyderabad-hyderabad" rel="noopener noreferrer" target="_blank" title="Properties for Sale in Hyderabad">Properties for Sale in Hyderabad</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-in-gachibowli-hyderabad" rel="noopener noreferrer" target="_blank" title="Properties For Sale In Gachibowli">Properties For Sale In Gachibowli</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-in-kondapur-hyderabad" rel="noopener noreferrer" target="_blank" title="Properties For Sale In Kondapur">Properties For Sale In Kondapur</a></div></div><div><a class="font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/independentfloor-for-sale-in-hyderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="Independent Floor for Sale in Hyderabad">Independent Floor for Sale in Hyderabad</a></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/flats-for-sale-in-delhi-delhi" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Delhi">Flats for Sale in Delhi</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-vasant-vihar-delhi" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Vasant Vihar">Flats for Sale in Vasant Vihar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-safdarjung-enclave-delhi" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Safdarjung Enclave">Flats for Sale in Safdarjung Enclave</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-hauz-khas-delhi" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Hauz Khas">Flats for Sale in Hauz Khas</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-greater-kailash-delhi" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Greater Kailash">Flats for Sale in Greater Kailash</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-connaught-place-delhi" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Connaught Place">Flats for Sale in Connaught Place</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-gulmohar-park-delhi" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Gulmohar Park">Flats for Sale in Gulmohar Park</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-green-park-extension-new-delhi-delhi	" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Green Park Extension">Flats for Sale in Green Park Extension</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-east-of-kailash-delhi" rel="noopener noreferrer" target="_blank" title="Flats for Sale in East of Kailash">Flats for Sale in East of Kailash</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-panchsheel-park-delhi" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Panchsheel Park">Flats for Sale in Panchsheel Park</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-lajpat-nagar-i-delhi" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Lajpat Nagar I">Flats for Sale in Lajpat Nagar I</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-between-40-lakhs-to-45-lakhs-in-delhi-delhi" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Delhi Below 45 Lakhs">Flats for Sale in Delhi Below 45 Lakhs</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-between-45-lakhs-to-50-lakhs-in-delhi-delhi" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Delhi Below 50 Lakhs">Flats for Sale in Delhi Below 50 Lakhs</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-below-60-lakhs-in-delhi-delhi" rel="noopener noreferrer" target="_blank" title="Flats For Sale Below 60 Lakhs In Delhi">Flats For Sale Below 60 Lakhs In Delhi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-below-70-lakhs-in-delhi-delhi" rel="noopener noreferrer" target="_blank" title="Flats For Sale Below 70 Lakhs In Delhi">Flats For Sale Below 70 Lakhs In Delhi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-below-80-lakhs-in-delhi-delhi" rel="noopener noreferrer" target="_blank" title="Flats For Sale Below 80 Lakhs In Delhi">Flats For Sale Below 80 Lakhs In Delhi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-below-90-lakhs-in-delhi-delhi" rel="noopener noreferrer" target="_blank" title="Flats For Sale Below 90 Lakhs In Delhi">Flats For Sale Below 90 Lakhs In Delhi</a></div></div><div><a class="font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/properties-for-sale-in-delhi-delhi" rel="noopener noreferrer" target="_blank" title="Properties for Sale in Delhi">Properties for Sale in Delhi</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-in-hauz-khas-delhi" rel="noopener noreferrer" target="_blank" title="Properties For Sale In Hauz Khas">Properties For Sale In Hauz Khas</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-in-janakpuri-delhi" rel="noopener noreferrer" target="_blank" title="Properties For Sale In Janakpuri">Properties For Sale In Janakpuri</a></div></div><div><a class="font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/independentfloor-for-sale-in-delhi-delhi" rel="noopener noreferrer" target="_blank" title="Builder Floor for Sale in Delhi">Builder Floor for Sale in Delhi</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independentfloor-for-sale-in-faridabad-faridabad" rel="noopener noreferrer" target="_blank" title="Builder Floor for Sale in Faridabad">Builder Floor for Sale in Faridabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independentfloor-for-sale-in-ghaziabad-ghaziabad" rel="noopener noreferrer" target="_blank" title="Builder Floor for Sale in Ghaziabad">Builder Floor for Sale in Ghaziabad</a></div></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/flats-for-sale-in-noida-noida" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Noida">Flats for Sale in Noida</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-sector-62-noida" rel="noopener noreferrer" target="_blank" title="Flats For Sale In Noida Sector 62">Flats For Sale In Noida Sector 62</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-sector-50-noida" rel="noopener noreferrer" target="_blank" title="Flats For Sale In Noida Sector 50">Flats For Sale In Noida Sector 50</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-sector-137-noida" rel="noopener noreferrer" target="_blank" title="Flats For Sale In Sector 137 Noida">Flats For Sale In Sector 137 Noida</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-sector-75-noida" rel="noopener noreferrer" target="_blank" title="Flats For Sale In Sector 75 Noida">Flats For Sale In Sector 75 Noida</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-sector-76-noida" rel="noopener noreferrer" target="_blank" title="Flats For Sale In Sector 76 Noida">Flats For Sale In Sector 76 Noida</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-kendriya-vihar-sector-51-noida" rel="noopener noreferrer" target="_blank" title="Flats For Sale In Kendriya Vihar Sector 51 Noida">Flats For Sale In Kendriya Vihar Sector 51 Noida</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-sector-18-noida" rel="noopener noreferrer" target="_blank" title="Flats For Sale In Noida Sector 18">Flats For Sale In Noida Sector 18</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-sector-107-noida" rel="noopener noreferrer" target="_blank" title="Flats For Sale In Sector 107 Noida">Flats For Sale In Sector 107 Noida</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-sector-128-noida" rel="noopener noreferrer" target="_blank" title="Flats For Sale In Sector 128 Noida">Flats For Sale In Sector 128 Noida</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-sector-150-noida" rel="noopener noreferrer" target="_blank" title="Flats For Sale In Sector 150 Noida">Flats For Sale In Sector 150 Noida</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-greater-noida" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Greater Noida">Flats for Sale in Greater Noida</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-below-70-lakhs-in-noida-noida" rel="noopener noreferrer" target="_blank" title="Flats For Sale Below 70 Lakhs In Noida">Flats For Sale Below 70 Lakhs In Noida</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-below-80-lakhs-in-noida-noida" rel="noopener noreferrer" target="_blank" title="Flats For Sale Below 80 Lakhs In Noida">Flats For Sale Below 80 Lakhs In Noida</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-below-90-lakhs-in-noida-noida" rel="noopener noreferrer" target="_blank" title="Flats For Sale Below 90 Lakhs In Noida">Flats For Sale Below 90 Lakhs In Noida</a></div></div><div><a class="font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/properties-for-sale-in-noida-noida" rel="noopener noreferrer" target="_blank" title="Properties for Sale in Noida">Properties for Sale in Noida</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-in-noida-extension-noida" rel="noopener noreferrer" target="_blank" title="Properties For Sale In Noida Extension">Properties For Sale In Noida Extension</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-in-sector-12-noida" rel="noopener noreferrer" target="_blank" title="Properties For Sale In Sector 12 Noida">Properties For Sale In Sector 12 Noida</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-sale-in-greater-noida" rel="noopener noreferrer" target="_blank" title="Properties for Sale in Greater Noida">Properties for Sale in Greater Noida</a></div></div><div><a class="font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/independentfloor-for-sale-in-greater-noida " rel="noopener noreferrer" target="_blank" title="Builder Floor for Sale in Greater Noida">Builder Floor for Sale in Greater Noida</a></div><div class=""></div></div></div><div class="bg-white h-auto py-1p px-3 flex w-fit" id="content-2"><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/flats-for-rent-in-bangalore_bangalore" rel="noopener noreferrer" target="_blank" title="Flats for Rent in Bangalore">Flats for Rent in Bangalore</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-koramangala_bangalore" rel="noopener noreferrer" target="_blank" title="Flats for rent in Koramangala">Flats for rent in Koramangala</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-hsr_layout_bangalore" rel="noopener noreferrer" target="_blank" title="Flats for rent in HSR Layout">Flats for rent in HSR Layout</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-marathahalli_bangalore" rel="noopener noreferrer" target="_blank" title="Flats for rent in Marathahalli">Flats for rent in Marathahalli</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-indira_nagar_bangalore" rel="noopener noreferrer" target="_blank" title="Flats for rent in Indira Nagar">Flats for rent in Indira Nagar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-bellandur_bangalore" rel="noopener noreferrer" target="_blank" title="Flats for rent in Bellandur">Flats for rent in Bellandur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-chandra_layout_bangalore" rel="noopener noreferrer" target="_blank" title="Flats for rent in Chandra Layout">Flats for rent in Chandra Layout</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-j_p_nagar_bangalore" rel="noopener noreferrer" target="_blank" title="Flats for rent in J. P. Nagar">Flats for rent in J. P. Nagar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-btm_layout_bangalore" rel="noopener noreferrer" target="_blank" title="Flats for rent in BTM Layout">Flats for rent in BTM Layout</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-jayanagar_bangalore" rel="noopener noreferrer" target="_blank" title="Flats for rent in Jayanagar">Flats for rent in Jayanagar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-whitefield_bangalore" rel="noopener noreferrer" target="_blank" title="Flats for rent in Whitefield">Flats for rent in Whitefield</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-lease-in-bangalore_bangalore" rel="noopener noreferrer" target="_blank" title="Properties in Bangalore for Lease">Properties in Bangalore for Lease</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-bangalore_bangalore-page-2" rel="noopener noreferrer" target="_blank" title="Apartments for rent in Bangalore">Apartments for rent in Bangalore</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-bangalore_bangalore" rel="noopener noreferrer" target="_blank" title="House for Rent in Bangalore">House for Rent in Bangalore</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-banashankari_bangalore" rel="noopener noreferrer" target="_blank" title="House for Rent in Banashankari">House for Rent in Banashankari</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-rajajinagar_bangalore" rel="noopener noreferrer" target="_blank" title="House for Rent in Rajaji Nagar">House for Rent in Rajaji Nagar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-mathikere_bangalore" rel="noopener noreferrer" target="_blank" title="House for Rent in Mathikere">House for Rent in Mathikere</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-jayanagar_bangalore" rel="noopener noreferrer" target="_blank" title="House for Rent in Jayanagar">House for Rent in Jayanagar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-nagarbhavi_bangalore" rel="noopener noreferrer" target="_blank" title="House for Rent in Nagarbhavi">House for Rent in Nagarbhavi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-devanahalli_bangalore" rel="noopener noreferrer" target="_blank" title="House for Rent in Devanahalli">House for Rent in Devanahalli</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-koramangala_bangalore" rel="noopener noreferrer" target="_blank" title="House for Rent in Koramangala">House for Rent in Koramangala</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-marathahalli_bangalore" rel="noopener noreferrer" target="_blank" title="House for Rent in Marathahalli">House for Rent in Marathahalli</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-whitefield_bangalore" rel="noopener noreferrer" target="_blank" title="House for Rent in Whitefield">House for Rent in Whitefield</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-hsr_layout_bangalore" rel="noopener noreferrer" target="_blank" title="House for Rent in HSR Layout">House for Rent in HSR Layout</a></div></div><div><a class="font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/independentfloor-for-rent-in-bangalore_bangalore" rel="noopener noreferrer" target="_blank" title="Independent Floor for Rent in Bangalore">Independent Floor for Rent in Bangalore</a></div><div class=""></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/flats-for-rent-in-mumbai_mumbai" rel="noopener noreferrer" target="_blank" title="Flats for Rent in Mumbai">Flats for Rent in Mumbai</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-andheri_west_mumbai" rel="noopener noreferrer" target="_blank" title="Flats for rent in Andheri West">Flats for rent in Andheri West</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href=" /flats-for-rent-in-malad_west_mumbai" rel="noopener noreferrer" target="_blank" title="Flats for rent in Malad West">Flats for rent in Malad West</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-andheri_east_mumbai" rel="noopener noreferrer" target="_blank" title="Flats for rent in Andheri East">Flats for rent in Andheri East</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-powai_mumbai" rel="noopener noreferrer" target="_blank" title="Flats for rent in Powai">Flats for rent in Powai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-thane_west_mumbai" rel="noopener noreferrer" target="_blank" title="Flats for rent in Thane West">Flats for rent in Thane West</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-dombivli_mumbai" rel="noopener noreferrer" target="_blank" title="Flats for rent in Dombivli">Flats for rent in Dombivli</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-mira_road_east_mumbai" rel="noopener noreferrer" target="_blank" title="Flats for rent in Mira Road East">Flats for rent in Mira Road East</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-kharghar_mumbai" rel="noopener noreferrer" target="_blank" title="Flats for rent in Kharghar">Flats for rent in Kharghar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-navi_mumbai_mumbai" rel="noopener noreferrer" target="_blank" title="Flats for rent in Navi Mumbai">Flats for rent in Navi Mumbai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-bandra_mumbai" rel="noopener noreferrer" target="_blank" title="Flats for rent in Bandra West">Flats for rent in Bandra West</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-lease-in-mumbai_mumbai" rel="noopener noreferrer" target="_blank" title="Properties in Mumbai with Heavy Deposit">Properties in Mumbai with Heavy Deposit</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-mumbai_mumbai" rel="noopener noreferrer" target="_blank" title="House for Rent in Mumbai">House for Rent in Mumbai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-navi_mumbai_mumbai" rel="noopener noreferrer" target="_blank" title="House for Rent in Navi Mumbai">House for Rent in Navi Mumbai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-kandivali_west_mumbai" rel="noopener noreferrer" target="_blank" title="House for Rent in Kandivali West">House for Rent in Kandivali West</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-thane_west_mumbai" rel="noopener noreferrer" target="_blank" title="House for Rent in Thane West">House for Rent in Thane West</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-panvel_mumbai" rel="noopener noreferrer" target="_blank" title="House for Rent in Panvel">House for Rent in Panvel</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-goregaon_west_mumbai" rel="noopener noreferrer" target="_blank" title="House for Rent in Goregaon West">House for Rent in Goregaon West</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-bhandup_west_mumbai" rel="noopener noreferrer" target="_blank" title="House for Rent in Bhandup West">House for Rent in Bhandup West</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-andheri_east_mumbai" rel="noopener noreferrer" target="_blank" title="House for Rent in Andheri East">House for Rent in Andheri East</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-airoli_mumbai" rel="noopener noreferrer" target="_blank" title="House for Rent in Airoli">House for Rent in Airoli</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-vashi_mumbai" rel="noopener noreferrer" target="_blank" title="House for Rent in Vashi">House for Rent in Vashi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-malad_west_mumbai" rel="noopener noreferrer" target="_blank" title="House for Rent in Malad West">House for Rent in Malad West</a></div></div><div><a class="font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/independentfloor-for-rent-in-mumbai_mumbai" rel="noopener noreferrer" target="_blank" title="Independent Floor for Rent in Mumbai">Independent Floor for Rent in Mumbai</a></div><div class=""></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/flats-for-rent-in-chennai_chennai" rel="noopener noreferrer" target="_blank" title="Flats for Rent in Chennai">Flats for Rent in Chennai</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-velachery_chennai" rel="noopener noreferrer" target="_blank" title="Flats for rent in Velachery">Flats for rent in Velachery</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-madipakkam_chennai" rel="noopener noreferrer" target="_blank" title="Flats for rent in Madipakkam">Flats for rent in Madipakkam</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-chromepet_chennai" rel="noopener noreferrer" target="_blank" title="Flats for rent in Chromepet">Flats for rent in Chromepet</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-medavakkam_chennai" rel="noopener noreferrer" target="_blank" title="Flats for rent in Medavakkam">Flats for rent in Medavakkam</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-porur_chennai" rel="noopener noreferrer" target="_blank" title="Flats for rent in Porur">Flats for rent in Porur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-pallikaranai_chennai" rel="noopener noreferrer" target="_blank" title="Flats for rent in Pallikaranai">Flats for rent in Pallikaranai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-urapakkam_chennai" rel="noopener noreferrer" target="_blank" title="Flats for rent in Urapakkam">Flats for rent in Urapakkam</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-ambattur_chennai" rel="noopener noreferrer" target="_blank" title="Flats for rent in Ambattur">Flats for rent in Ambattur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-thoraipakkam_chennai" rel="noopener noreferrer" target="_blank" title=" Flats for rent in Okkiyam Thuraipakkam"> Flats for rent in Okkiyam Thuraipakkam</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-thiruvanmiyur_chennai" rel="noopener noreferrer" target="_blank" title="Flats for rent in Thiruvanmiyur">Flats for rent in Thiruvanmiyur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-lease-in-chennai_chennai" rel="noopener noreferrer" target="_blank" title="Properties in Chennai for Lease">Properties in Chennai for Lease</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-chennai_chennai" rel="noopener noreferrer" target="_blank" title="House for Rent in Chennai">House for Rent in Chennai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-kolathur_chennai" rel="noopener noreferrer" target="_blank" title="House For Rent in Kolathur">House For Rent in Kolathur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-velachery_chennai" rel="noopener noreferrer" target="_blank" title="House For Rent in Velachery">House For Rent in Velachery</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-chennai_chennai" rel="noopener noreferrer" target="_blank" title="House for Rent in Chennai">House for Rent in Chennai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-kolathur_chennai" rel="noopener noreferrer" target="_blank" title="House For Rent in Kolathur">House For Rent in Kolathur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-velachery_chennai" rel="noopener noreferrer" target="_blank" title="House For Rent in Velachery">House For Rent in Velachery</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-ambattur_chennai" rel="noopener noreferrer" target="_blank" title="House For Rent in Ambattur">House For Rent in Ambattur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-porur_chennai" rel="noopener noreferrer" target="_blank" title="House For Rent in Porur">House For Rent in Porur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-avadi_chennai" rel="noopener noreferrer" target="_blank" title="House For Rent in Avadi">House For Rent in Avadi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-madipakkam_chennai" rel="noopener noreferrer" target="_blank" title="House For Rent in Madipakkam">House For Rent in Madipakkam</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-t_nagar_chennai" rel="noopener noreferrer" target="_blank" title="House For Rent in T Nagar">House For Rent in T Nagar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-pallikaranai_chennai" rel="noopener noreferrer" target="_blank" title="House For Rent in Pallikaranai">House For Rent in Pallikaranai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-chromepet_chennai" rel="noopener noreferrer" target="_blank" title="House For Rent in Chromepet">House For Rent in Chromepet</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-valasaravakkam_chennai" rel="noopener noreferrer" target="_blank" title="House for rent in Valasaravakkam">House for rent in Valasaravakkam</a></div></div><div><a class="font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/independentfloor-for-rent-in-chennai_chennai" rel="noopener noreferrer" target="_blank" title="Independent Floor for Rent in Chennai">Independent Floor for Rent in Chennai</a></div><div class=""></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/flats-for-rent-in-pune_pune" rel="noopener noreferrer" target="_blank" title="Flats for Rent in Pune">Flats for Rent in Pune</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-hadapsar_pune" rel="noopener noreferrer" target="_blank" title="Flats for rent in Hadapsar">Flats for rent in Hadapsar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-kharadi_pune" rel="noopener noreferrer" target="_blank" title="Flats for rent in Kharadi">Flats for rent in Kharadi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-baner_pune" rel="noopener noreferrer" target="_blank" title="Flats for rent in Baner">Flats for rent in Baner</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href=" /flats-for-rent-in-kothrud_pune" rel="noopener noreferrer" target="_blank" title="Flats for rent in Kothrud">Flats for rent in Kothrud</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-wagholi_pune" rel="noopener noreferrer" target="_blank" title="Flats for rent in Wagholi">Flats for rent in Wagholi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-wakad_pune" rel="noopener noreferrer" target="_blank" title="Flats for rent in Wakad">Flats for rent in Wakad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-wadgaon_sheri_pune" rel="noopener noreferrer" target="_blank" title="Flats for rent in Wadgaon">Flats for rent in Wadgaon</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-ambegaon_budruk_pune" rel="noopener noreferrer" target="_blank" title="Flats for rent in Ambegaon Budruk">Flats for rent in Ambegaon Budruk</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-aundh_pune" rel="noopener noreferrer" target="_blank" title="Flats for rent in Aundh">Flats for rent in Aundh</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-pimple_saudagar_pune" rel="noopener noreferrer" target="_blank" title="Flats for rent in Pimple Saudagar">Flats for rent in Pimple Saudagar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-lease-in-pune_pune" rel="noopener noreferrer" target="_blank" title="Properties in Pune with Heavy Deposit">Properties in Pune with Heavy Deposit</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-ghaziabad-ghaziabad" rel="noopener noreferrer" target="_blank" title="Flats for rent in Ghaziabad">Flats for rent in Ghaziabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-pune_pune" rel="noopener noreferrer" target="_blank" title="House for Rent in Pune">House for Rent in Pune</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-pimpri_chinchwad_pune" rel="noopener noreferrer" target="_blank" title="House for Rent in Pimpri Chinchwad">House for Rent in Pimpri Chinchwad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-baner_pune" rel="noopener noreferrer" target="_blank" title="House for Rent in Baner">House for Rent in Baner</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-dhanori_pune" rel="noopener noreferrer" target="_blank" title="House for Rent in Dhanori">House for Rent in Dhanori</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-kothrud_pune" rel="noopener noreferrer" target="_blank" title="House for Rent in Kothrud">House for Rent in Kothrud</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-wakad_pune" rel="noopener noreferrer" target="_blank" title="House for Rent in Wakad">House for Rent in Wakad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-kharadi_pune" rel="noopener noreferrer" target="_blank" title="House for Rent in Kharadi">House for Rent in Kharadi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-viman_nagar_pune" rel="noopener noreferrer" target="_blank" title="House for Rent in Viman Nagar">House for Rent in Viman Nagar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-hadapsar_pune" rel="noopener noreferrer" target="_blank" title="House for Rent in Hadapsar">House for Rent in Hadapsar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-wagholi_pune" rel="noopener noreferrer" target="_blank" title="House for Rent in Wagholi">House for Rent in Wagholi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-karve_nagar_pune" rel="noopener noreferrer" target="_blank" title="House for Rent in Karve Nagar">House for Rent in Karve Nagar</a></div></div><div><a class="font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/independentfloor-for-rent-in-pune_pune" rel="noopener noreferrer" target="_blank" title="Independent Floor for Rent in Pune">Independent Floor for Rent in Pune</a></div><div class=""></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/flats-for-rent-in-hyderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="Flats for Rent in Hyderabad">Flats for Rent in Hyderabad</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-hyderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="Flats for Rent in Hyderabad">Flats for Rent in Hyderabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-kukatpally_hyderabad" rel="noopener noreferrer" target="_blank" title="Flats for Rent in Kukatpally">Flats for Rent in Kukatpally</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-secunderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="Flats for Rent in Secunderabad">Flats for Rent in Secunderabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-kondapur_hyderabad" rel="noopener noreferrer" target="_blank" title="Flats for Rent in Kondapur">Flats for Rent in Kondapur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-manikonda_hyderabad" rel="noopener noreferrer" target="_blank" title="Flats for Rent in Manikonda">Flats for Rent in Manikonda</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-pragathi_nagar_hyderabad" rel="noopener noreferrer" target="_blank" title="Flats for Rent in Pragathi Nagar">Flats for Rent in Pragathi Nagar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-miyapur_hyderabad" rel="noopener noreferrer" target="_blank" title="Flats for Rent in Miyapur">Flats for Rent in Miyapur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-gachibowli_hyderabad" rel="noopener noreferrer" target="_blank" title="Flats for Rent in Gachibowli">Flats for Rent in Gachibowli</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-madhapur_hyderabad" rel="noopener noreferrer" target="_blank" title="Flats for Rent in Madhapur">Flats for Rent in Madhapur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-uppal_hyderabad" rel="noopener noreferrer" target="_blank" title="Flats for Rent in Uppal">Flats for Rent in Uppal</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-banjara_hills_hyderabad" rel="noopener noreferrer" target="_blank" title="Flats for Rent in Banjara Hills">Flats for Rent in Banjara Hills</a></div></div><div><a class="font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/independentfloor-for-rent-in-hyderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="Independent Floor for Rent in Hyderabad">Independent Floor for Rent in Hyderabad</a></div><div class=""></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/villas-for-rent-in-hyderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="House for Rent in Hyderabad">House for Rent in Hyderabad</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-old_bowenpally_hyderabad" rel="noopener noreferrer" target="_blank" title="House for rent in Old Bowenpally">House for rent in Old Bowenpally</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-boduppal_hyderabad" rel="noopener noreferrer" target="_blank" title="House for rent in Boduppal">House for rent in Boduppal</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-peerzadiguda_hyderabad" rel="noopener noreferrer" target="_blank" title="House for rent in Peerzadiguda">House for rent in Peerzadiguda</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-gachibowli_hyderabad" rel="noopener noreferrer" target="_blank" title="House for rent in Gachibowli">House for rent in Gachibowli</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-kukatpally_hyderabad" rel="noopener noreferrer" target="_blank" title="house for rent in Kukatpally">house for rent in Kukatpally</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-secunderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="House for rent in Secunderabad">House for rent in Secunderabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-kondapur_hyderabad" rel="noopener noreferrer" target="_blank" title="House for rent in Kondapur">House for rent in Kondapur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-sainikpuri_hyderabad" rel="noopener noreferrer" target="_blank" title="House for rent in Sainikpuri">House for rent in Sainikpuri</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-madhapur_hyderabad" rel="noopener noreferrer" target="_blank" title="House for rent in Madhapur">House for rent in Madhapur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-nagole_hyderabad" rel="noopener noreferrer" target="_blank" title="house for rent in Nagole">house for rent in Nagole</a></div></div><div class=""></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/flats-for-rent-in-gurgaon-gurgaon" rel="noopener noreferrer" target="_blank" title="Flats for Rent in Gurgaon">Flats for Rent in Gurgaon</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/1bhk-flats-for-rent-in-gurgaon-gurgaon" rel="noopener noreferrer" target="_blank" title="1 BHK Flats in Gurgaon for Rent ">1 BHK Flats in Gurgaon for Rent </a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/2bhk-flats-for-rent-in-gurgaon-gurgaon" rel="noopener noreferrer" target="_blank" title="2 BHK Flats in Gurgaon for Rent ">2 BHK Flats in Gurgaon for Rent </a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/3bhk-flats-for-rent-in-gurgaon-gurgaon" rel="noopener noreferrer" target="_blank" title="3 BHK Flats in Gurgaon for Rent">3 BHK Flats in Gurgaon for Rent</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href=" /flats-for-rent-in-sushant_lok_gurgaon" rel="noopener noreferrer" target="_blank" title="Flats in Sushant Lok Gurgaon for Rent">Flats in Sushant Lok Gurgaon for Rent</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-sector_31_gurgaon" rel="noopener noreferrer" target="_blank" title="Flats in Sector 31 Gurgaon for Rent">Flats in Sector 31 Gurgaon for Rent</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-sector_49_gurgaon" rel="noopener noreferrer" target="_blank" title="Flats in Sector 49 Gurgaon for Rent">Flats in Sector 49 Gurgaon for Rent</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-sector_40_gurgaon" rel="noopener noreferrer" target="_blank" title="Flats in Sector 40 Gurgaon for Rent">Flats in Sector 40 Gurgaon for Rent</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-sector_45_gurgaon" rel="noopener noreferrer" target="_blank" title="Flats in Sector 45 Gurgaon for Rent">Flats in Sector 45 Gurgaon for Rent</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-sector_57_gurgaon" rel="noopener noreferrer" target="_blank" title="Flats in Sector 57 Gurgaon for Rent">Flats in Sector 57 Gurgaon for Rent</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-sector_23_gurgaon" rel="noopener noreferrer" target="_blank" title="Flats in Sector 23 Gurgaon for Rent">Flats in Sector 23 Gurgaon for Rent</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/properties-for-lease-in-gurgaon-gurgaon" rel="noopener noreferrer" target="_blank" title="Properties in Gurgaon for Lease">Properties in Gurgaon for Lease</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-greater-noida" rel="noopener noreferrer" target="_blank" title="Flats for rent in Greater Noida">Flats for rent in Greater Noida</a></div></div><div class=""></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/flats-for-rent-in-delhi-delhi" rel="noopener noreferrer" target="_blank" title="Flats for Rent in Delhi">Flats for Rent in Delhi</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-new-delhi-delhi" rel="noopener noreferrer" target="_blank" title="Flats for Rent in New Delhi">Flats for Rent in New Delhi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-rajouri-garden-delhi" rel="noopener noreferrer" target="_blank" title="Flats for Rent in Rajouri Garden">Flats for Rent in Rajouri Garden</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-punjabi-bagh-delhi" rel="noopener noreferrer" target="_blank" title="Flats for Rent in Punjabi Bagh">Flats for Rent in Punjabi Bagh</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-vasant-kunj-delhi" rel="noopener noreferrer" target="_blank" title="Flats for Rent in Vasant Kunj">Flats for Rent in Vasant Kunj</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-janakpuri-delhi" rel="noopener noreferrer" target="_blank" title="Flats for Rent in Janakpuri">Flats for Rent in Janakpuri</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-mayur-vihar-phase-1-delhi" rel="noopener noreferrer" target="_blank" title="Flats for Rent in Mayur Vihar Phase 1">Flats for Rent in Mayur Vihar Phase 1</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-vikaspuri-delhi" rel="noopener noreferrer" target="_blank" title="Flats for Rent in Vikaspuri">Flats for Rent in Vikaspuri</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-saket-delhi" rel="noopener noreferrer" target="_blank" title="Flats for Rent in Saket">Flats for Rent in Saket</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-malviya-nagar-delhi" rel="noopener noreferrer" target="_blank" title="Flats for Rent in Malviya Nagar">Flats for Rent in Malviya Nagar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-kalkaji-delhi" rel="noopener noreferrer" target="_blank" title="Flats for Rent in Kalkaji">Flats for Rent in Kalkaji</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-uttam-nagar-delhi" rel="noopener noreferrer" target="_blank" title="Flats for Rent in Uttam Nagar">Flats for Rent in Uttam Nagar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-pitampura-delhi" rel="noopener noreferrer" target="_blank" title="Flats for Rent in Pitampura">Flats for Rent in Pitampura</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-chhattarpur-delhi" rel="noopener noreferrer" target="_blank" title="Flats for Rent in Chhattarpur">Flats for Rent in Chhattarpur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-mukherjee-nagar-delhi" rel="noopener noreferrer" target="_blank" title="Flats for Rent in Mukherjee Nagar">Flats for Rent in Mukherjee Nagar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-paschim-vihar-delhi" rel="noopener noreferrer" target="_blank" title="Flats for Rent in Paschim Vihar">Flats for Rent in Paschim Vihar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-faridabad-faridabad" rel="noopener noreferrer" target="_blank" title="Flats for rent in Faridabad">Flats for rent in Faridabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-faridabad-faridabad" rel="noopener noreferrer" target="_blank" title="Flats for rent in Faridabad">Flats for rent in Faridabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-noida-noida" rel="noopener noreferrer" target="_blank" title="Flats for rent in Noida">Flats for rent in Noida</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-delhi-delhi" rel="noopener noreferrer" target="_blank" title="House for Rent in Delhi">House for Rent in Delhi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-gurgaon-gurgaon" rel="noopener noreferrer" target="_blank" title="House for Rent in Gurgaon">House for Rent in Gurgaon</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-sector_9_gurgaon" rel="noopener noreferrer" target="_blank" title="House for Rent in Sector 9 Gurgaon">House for Rent in Sector 9 Gurgaon</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-faridabad-faridabad" rel="noopener noreferrer" target="_blank" title="House for Rent in Faridabad">House for Rent in Faridabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-ghaziabad-ghaziabad" rel="noopener noreferrer" target="_blank" title="House for Rent in Ghaziabad">House for Rent in Ghaziabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-noida-noida" rel="noopener noreferrer" target="_blank" title="House for Rent in Noida">House for Rent in Noida</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-greater-noida" rel="noopener noreferrer" target="_blank" title="House for Rent in Greater Noida">House for Rent in Greater Noida</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-uttam-nagar-delhi" rel="noopener noreferrer" target="_blank" title="House for Rent in Uttam Nagar Delhi">House for Rent in Uttam Nagar Delhi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-janakpuri-delhi" rel="noopener noreferrer" target="_blank" title="House for Rent in Janakpuri">House for Rent in Janakpuri</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-vasant-kunj-delhi" rel="noopener noreferrer" target="_blank" title="House for Rent in Vasant Kunj">House for Rent in Vasant Kunj</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-rent-in-pitampura-delhi" rel="noopener noreferrer" target="_blank" title="House for Rent in Pitampura">House for Rent in Pitampura</a></div></div><div><a class="font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/independentfloor-for-rent-in-delhi-delhi" rel="noopener noreferrer" target="_blank" title="Builder Floor for Rent in Delhi">Builder Floor for Rent in Delhi</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independentfloor-for-rent-in-faridabad-faridabad" rel="noopener noreferrer" target="_blank" title="Builder Floor for Rent in Faridabad">Builder Floor for Rent in Faridabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independentfloor-for-rent-in-ghaziabad-ghaziabad" rel="noopener noreferrer" target="_blank" title="Builder Floor for Rent in Ghaziabad">Builder Floor for Rent in Ghaziabad</a></div></div><div class=""></div></div></div><div class="bg-white h-auto py-1p px-3 flex w-fit" id="content-3"><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/pg-in-bangalore_bangalore" rel="noopener noreferrer" target="_blank" title="PG in Bangalore">PG in Bangalore</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-koramangala_bangalore" rel="noopener noreferrer" target="_blank" title="PG in Koramangala">PG in Koramangala</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-marathahalli_bangalore" rel="noopener noreferrer" target="_blank" title="PG in Marathahalli">PG in Marathahalli</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-hsr_layout_bangalore" rel="noopener noreferrer" target="_blank" title="PG in HSR Layout">PG in HSR Layout</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-whitefield_bangalore" rel="noopener noreferrer" target="_blank" title="PG in Whitefield">PG in Whitefield</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-indira_nagar_bangalore" rel="noopener noreferrer" target="_blank" title="PG in Indira Nagar">PG in Indira Nagar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-bellandur_bangalore" rel="noopener noreferrer" target="_blank" title="PG in Bellandur">PG in Bellandur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-chandra_layout_bangalore" rel="noopener noreferrer" target="_blank" title="PG in Chandra Layout">PG in Chandra Layout</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href=" /pg-in-j_p_nagar_bangalore" rel="noopener noreferrer" target="_blank" title="PG in J. P. Nagar">PG in J. P. Nagar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href=" /pg-in-btm_layout_bangalore " rel="noopener noreferrer" target="_blank" title="PG in BTM Layout">PG in BTM Layout</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-jayanagar_bangalore" rel="noopener noreferrer" target="_blank" title="PG in Jayanagar">PG in Jayanagar</a></div></div><div class=""></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/pg-in-mumbai_mumbai" rel="noopener noreferrer" target="_blank" title="PG in Mumbai">PG in Mumbai</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-andheri_west_mumbai" rel="noopener noreferrer" target="_blank" title="PG in Andheri West">PG in Andheri West</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-andheri_east_mumbai" rel="noopener noreferrer" target="_blank" title="PG in Andheri East">PG in Andheri East</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-malad_west_mumbai" rel="noopener noreferrer" target="_blank" title="PG in Malad West">PG in Malad West</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-navi_mumbai_mumbai" rel="noopener noreferrer" target="_blank" title="PG in Navi Mumbai">PG in Navi Mumbai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-powai_mumbai" rel="noopener noreferrer" target="_blank" title="PG in Powai">PG in Powai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-thane_west_mumbai" rel="noopener noreferrer" target="_blank" title="PG in Thane West">PG in Thane West</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-mira_road_east_mumbai" rel="noopener noreferrer" target="_blank" title="PG in Mira Road East">PG in Mira Road East</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-kharghar_mumbai" rel="noopener noreferrer" target="_blank" title="PG in Kharghar">PG in Kharghar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-kandivali_east_mumbai" rel="noopener noreferrer" target="_blank" title="PG in Kandivali East">PG in Kandivali East</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-bandra_mumbai" rel="noopener noreferrer" target="_blank" title="PG in Bandra West">PG in Bandra West</a></div></div><div class=""></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/pg-in-chennai_chennai" rel="noopener noreferrer" target="_blank" title="PG in Chennai">PG in Chennai</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-velachery_chennai" rel="noopener noreferrer" target="_blank" title="PG in Velachery">PG in Velachery</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-madipakkam_chennai" rel="noopener noreferrer" target="_blank" title="PG in Madipakkam">PG in Madipakkam</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-chromepet_chennai" rel="noopener noreferrer" target="_blank" title="PG in Chromepet">PG in Chromepet</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-medavakkam_chennai" rel="noopener noreferrer" target="_blank" title="PG in Medavakkam">PG in Medavakkam</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-choolaimedu_chennai" rel="noopener noreferrer" target="_blank" title="PG in Choolaimedu">PG in Choolaimedu</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-porur_chennai" rel="noopener noreferrer" target="_blank" title="PG in Porur">PG in Porur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-pallikaranai_chennai" rel="noopener noreferrer" target="_blank" title="PG in Pallikaranai">PG in Pallikaranai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-urapakkam_chennai" rel="noopener noreferrer" target="_blank" title="PG in Urapakkam">PG in Urapakkam</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-valasaravakkam_chennai" rel="noopener noreferrer" target="_blank" title="PG in Valasaravakkam">PG in Valasaravakkam</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-thiruvanmiyur_chennai" rel="noopener noreferrer" target="_blank" title="PG in Thiruvanmiyur">PG in Thiruvanmiyur</a></div></div><div class=""></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/pg-in-pune_pune" rel="noopener noreferrer" target="_blank" title="PG in Pune">PG in Pune</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-hadapsar_pune" rel="noopener noreferrer" target="_blank" title="PG in Hadapsar">PG in Hadapsar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-kharadi_pune" rel="noopener noreferrer" target="_blank" title="PG in Kharadi">PG in Kharadi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-baner_pune" rel="noopener noreferrer" target="_blank" title="PG in Baner">PG in Baner</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-kothrud_pune" rel="noopener noreferrer" target="_blank" title="PG in Kothrud">PG in Kothrud</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-hinjewadi_pune" rel="noopener noreferrer" target="_blank" title="PG in Hinjawadi">PG in Hinjawadi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-wakad_pune" rel="noopener noreferrer" target="_blank" title="PG in Wakad">PG in Wakad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-wadgaon_sheri_pune" rel="noopener noreferrer" target="_blank" title="PG in Wadgaon">PG in Wadgaon</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-aundh_pune" rel="noopener noreferrer" target="_blank" title="PG in Aundh">PG in Aundh</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-pimple_saudagar_pune" rel="noopener noreferrer" target="_blank" title="PG in Pimple Saudagar">PG in Pimple Saudagar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-bavdhan_pune" rel="noopener noreferrer" target="_blank" title="PG in Bavdhan">PG in Bavdhan</a></div></div><div class=""></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/pg-in-hyderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="PG in Hyderabad">PG in Hyderabad</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-kukatpally_hyderabad" rel="noopener noreferrer" target="_blank" title="PG in Kukatpally">PG in Kukatpally</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-secunderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="PG in Secunderabad">PG in Secunderabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-kondapur_hyderabad" rel="noopener noreferrer" target="_blank" title="PG in Kondapur">PG in Kondapur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-manikonda_hyderabad" rel="noopener noreferrer" target="_blank" title="PG in Manikonda">PG in Manikonda</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-pragathi_nagar_hyderabad" rel="noopener noreferrer" target="_blank" title="PG in Pragathi Nagar">PG in Pragathi Nagar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-miyapur_hyderabad" rel="noopener noreferrer" target="_blank" title="PG in Miyapur">PG in Miyapur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-gachibowli_hyderabad" rel="noopener noreferrer" target="_blank" title="PG in Gachibowli">PG in Gachibowli</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-madhapur_hyderabad" rel="noopener noreferrer" target="_blank" title="PG in Madhapur">PG in Madhapur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-uppal_hyderabad" rel="noopener noreferrer" target="_blank" title="PG in Uppal">PG in Uppal</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-banjara_hills_hyderabad" rel="noopener noreferrer" target="_blank" title="PG in Banjara Hills">PG in Banjara Hills</a></div></div><div class=""></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/pg-in-gurgaon-gurgaon" rel="noopener noreferrer" target="_blank" title="PG / Hostels in Gurgaon">PG / Hostels in Gurgaon</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-for-ladies-in-gurgaon-gurgaon" rel="noopener noreferrer" target="_blank" title="Girls PG / Hostels in Gurgaon">Girls PG / Hostels in Gurgaon</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-for-gents-in-gurgaon-gurgaon" rel="noopener noreferrer" target="_blank" title="Boys PG / hostels in Gurgaon">Boys PG / hostels in Gurgaon</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-sector_14_gurgaon" rel="noopener noreferrer" target="_blank" title="PG / Hostels in Sector 14 Gurgaon">PG / Hostels in Sector 14 Gurgaon</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-dlf_cyber_city_dlf_city_ii_sector_24_gurgaon" rel="noopener noreferrer" target="_blank" title="PG / Hostels in DLF Cyber City Gurgaon">PG / Hostels in DLF Cyber City Gurgaon</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-sector_44_gurgaon" rel="noopener noreferrer" target="_blank" title="PG / Hostels in Gurgaon Sector 44">PG / Hostels in Gurgaon Sector 44</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-sector_22_gurgaon" rel="noopener noreferrer" target="_blank" title="PG / Hostels in Gurgaon Sector 22">PG / Hostels in Gurgaon Sector 22</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-sector_21_gurgaon" rel="noopener noreferrer" target="_blank" title="PG / Hostels in Gurgaon Sector 21">PG / Hostels in Gurgaon Sector 21</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-sector_49_gurgaon" rel="noopener noreferrer" target="_blank" title="PG / Hostels in Sector 49 Gurgaon">PG / Hostels in Sector 49 Gurgaon</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-sector_48_gurgaon" rel="noopener noreferrer" target="_blank" title="PG / Hostels in Gurgaon Sector 48">PG / Hostels in Gurgaon Sector 48</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-imt_manesar_gurgaon" rel="noopener noreferrer" target="_blank" title="PG / Hostels in IMT Manesar Gurgaon">PG / Hostels in IMT Manesar Gurgaon</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/property/pg/pg-hostel-for-girls-in-near-allen-supath-coral-park-naya-nohra-kota-kota-for-rs-15000/8a9f969c8f96199c018f962362b8023f/detail" rel="noopener noreferrer" target="_blank" title="Hostels in Kota near Allen Supath">Hostels in Kota near Allen Supath</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/property/pg/pg-hostel-for-girls-in-near-allen-sammunnat-sathyarth-jawahar-nagar-talwandi-kota-bangalore-for-rs-15000/8a9f96158f95ab7b018f95f4fc5428ae/detail" rel="noopener noreferrer" target="_blank" title="Hostels in Kota near Allen Sammunat">Hostels in Kota near Allen Sammunat</a></div></div><div class=""></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="" rel="noopener noreferrer" target="_blank" title="PG / Hostels in Delhi NCR">PG / Hostels in Delhi NCR</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-new-delhi-delhi" rel="noopener noreferrer" target="_blank" title="PG in New Delhi">PG in New Delhi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-rajouri-garden-delhi" rel="noopener noreferrer" target="_blank" title="PG in Rajouri Garden">PG in Rajouri Garden</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-punjabi-bagh-delhi" rel="noopener noreferrer" target="_blank" title="PG in Punjabi Bagh">PG in Punjabi Bagh</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-vasant-kunj-delhi" rel="noopener noreferrer" target="_blank" title="PG in Vasant Kunj">PG in Vasant Kunj</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-janakpuri-delhi" rel="noopener noreferrer" target="_blank" title="PG in Janakpuri">PG in Janakpuri</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-mayur-vihar-phase-1-delhi" rel="noopener noreferrer" target="_blank" title="PG in Mayur Vihar Phase 1">PG in Mayur Vihar Phase 1</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-vikaspuri-delhi" rel="noopener noreferrer" target="_blank" title="PG in Vikaspuri">PG in Vikaspuri</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-saket-delhi" rel="noopener noreferrer" target="_blank" title="PG in Saket">PG in Saket</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-malviya-nagar-delhi" rel="noopener noreferrer" target="_blank" title="PG in Malviya Nagar">PG in Malviya Nagar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-kalkaji-delhi" rel="noopener noreferrer" target="_blank" title="PG in Kalkaji">PG in Kalkaji</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-uttam-nagar-delhi" rel="noopener noreferrer" target="_blank" title="PG in Uttam Nagar">PG in Uttam Nagar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-pitampura-delhi" rel="noopener noreferrer" target="_blank" title="PG in Pitampura">PG in Pitampura</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-chhattarpur-delhi" rel="noopener noreferrer" target="_blank" title="PG in Chhattarpur">PG in Chhattarpur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-mukherjee-nagar-delhi" rel="noopener noreferrer" target="_blank" title="PG in Mukherjee Nagar">PG in Mukherjee Nagar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-paschim-vihar-delhi" rel="noopener noreferrer" target="_blank" title="PG in Paschim Vihar">PG in Paschim Vihar</a></div></div><div class=""></div><div class=""></div></div></div><div class="bg-white h-auto py-1p px-3 flex w-fit" id="content-4"><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/roommates-in-bangalore_bangalore" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Bangalore">Rooms for Rent in Bangalore</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-koramangala_bangalore" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Koramangala">Rooms for Rent in Koramangala</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-marathahalli_bangalore" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Marathahalli">Rooms for Rent in Marathahalli</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-hsr_layout_bangalore" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in HSR Layout">Rooms for Rent in HSR Layout</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-whitefield_bangalore" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Whitefield">Rooms for Rent in Whitefield</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-indira_nagar_bangalore" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Indira Nagar">Rooms for Rent in Indira Nagar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-bellandur_bangalore" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Bellandur">Rooms for Rent in Bellandur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-chandra_layout_bangalore" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Chandra Layout">Rooms for Rent in Chandra Layout</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-j_p_nagar_bangalore" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in J. P. Nagar">Rooms for Rent in J. P. Nagar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-btm_layout_bangalore" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in BTM Layout">Rooms for Rent in BTM Layout</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-jayanagar_bangalore" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Jayanagar">Rooms for Rent in Jayanagar</a></div></div><div class=""></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/roommates-in-mumbai_mumbai" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Mumbai">Rooms for Rent in Mumbai</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-andheri_west_mumbai" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Andheri West">Rooms for Rent in Andheri West</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-andheri_east_mumbai" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Andheri East">Rooms for Rent in Andheri East</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-malad_west_mumbai" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Malad West">Rooms for Rent in Malad West</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-navi_mumbai_mumbai" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Navi Mumbai">Rooms for Rent in Navi Mumbai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-powai_mumbai" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Powai">Rooms for Rent in Powai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-thane_west_mumbai" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Thane West">Rooms for Rent in Thane West</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-mira_road_east_mumbai" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Mira Road East">Rooms for Rent in Mira Road East</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-kharghar_mumbai" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Kharghar">Rooms for Rent in Kharghar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-kandivali_east_mumbai" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Kandivali East">Rooms for Rent in Kandivali East</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-bandra_mumbai" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Bandra West">Rooms for Rent in Bandra West</a></div></div><div class=""></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/roommates-in-chennai_chennai" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Chennai">Rooms for Rent in Chennai</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-velachery_chennai" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Velachery">Rooms for Rent in Velachery</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-madipakkam_chennai" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Madipakkam">Rooms for Rent in Madipakkam</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-chromepet_chennai" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Chromepet">Rooms for Rent in Chromepet</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-medavakkam_chennai" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Medavakkam">Rooms for Rent in Medavakkam</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-choolaimedu_chennai" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Choolaimedu">Rooms for Rent in Choolaimedu</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-porur_chennai" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Porur">Rooms for Rent in Porur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-pallikaranai_chennai" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Pallikaranai">Rooms for Rent in Pallikaranai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-urapakkam_chennai" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Urapakkam">Rooms for Rent in Urapakkam</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-valasaravakkam_chennai" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Valasaravakkam">Rooms for Rent in Valasaravakkam</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-thiruvanmiyur_chennai" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Thiruvanmiyur">Rooms for Rent in Thiruvanmiyur</a></div></div><div class=""></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/roommates-in-pune_pune" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Pune">Rooms for Rent in Pune</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-hadapsar_pune" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Hadapsar">Rooms for Rent in Hadapsar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-kharadi_pune" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Kharadi">Rooms for Rent in Kharadi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-baner_pune" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Baner">Rooms for Rent in Baner</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-kothrud_pune" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Kothrud">Rooms for Rent in Kothrud</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-hinjewadi_pune" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Hinjawadi">Rooms for Rent in Hinjawadi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-wakad_pune" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Wakad">Rooms for Rent in Wakad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-wadgaon_sheri_pune" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Wadgaon">Rooms for Rent in Wadgaon</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-aundh_pune" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Aundh">Rooms for Rent in Aundh</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-pimple_saudagar_pune" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Pimple Saudagar">Rooms for Rent in Pimple Saudagar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-bavdhan_pune" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Bavdhan">Rooms for Rent in Bavdhan</a></div></div><div class=""></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/roommates-in-gurgaon-gurgaon" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Gurgaon">Rooms for Rent in Gurgaon</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-sector_31_gurgaon" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Sector 31">Rooms for Rent in Sector 31</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-gurgaon-gurgaon" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Palam Vihar">Rooms for Rent in Palam Vihar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-sushant_lok_gurgaon" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Sushant Lok">Rooms for Rent in Sushant Lok</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-south_city_i_gurgaon" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in South City 1">Rooms for Rent in South City 1</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-sector_21_gurgaon" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Sector 21">Rooms for Rent in Sector 21</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-sector_15_gurgaon" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Sector 15">Rooms for Rent in Sector 15</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-mg_road_sikanderpur_gurgaon" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in MG Road">Rooms for Rent in MG Road</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-sector_14_gurgaon	" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Sector 14">Rooms for Rent in Sector 14</a></div></div><div class=""></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/roommates-in-hyderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Hyderabad">Rooms for Rent in Hyderabad</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-hyderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Hyderabad">Rooms for Rent in Hyderabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-kukatpally_hyderabad" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Kukatpally">Rooms for Rent in Kukatpally</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-secunderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Secunderabad">Rooms for Rent in Secunderabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-kondapur_hyderabad" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Kondapur">Rooms for Rent in Kondapur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-manikonda_hyderabad" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Manikonda">Rooms for Rent in Manikonda</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-pragathi_nagar_hyderabad" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Pragathi Nagar">Rooms for Rent in Pragathi Nagar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-miyapur_hyderabad" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Miyapur">Rooms for Rent in Miyapur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-gachibowli_hyderabad" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Gachibowli">Rooms for Rent in Gachibowli</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-madhapur_hyderabad" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Madhapur">Rooms for Rent in Madhapur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-uppal_hyderabad" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Uppal">Rooms for Rent in Uppal</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-banjara_hills_hyderabad" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Banjara Hills">Rooms for Rent in Banjara Hills</a></div></div><div class=""></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Delhi NCR">Rooms for Rent in Delhi NCR</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-delhi-delhi" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Delhi">Rooms for Rent in Delhi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-new-delhi-delhi" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in New Delhi">Rooms for Rent in New Delhi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-rajouri-garden-delhi" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Rajouri Garden">Rooms for Rent in Rajouri Garden</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-vasant-kunj-delhi" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Vasant Kunj">Rooms for Rent in Vasant Kunj</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-janakpuri-delhi" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Janakpuri">Rooms for Rent in Janakpuri</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-mayur-vihar-phase-1-delhi" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Mayur Vihar Phase 1">Rooms for Rent in Mayur Vihar Phase 1</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-saket-delhi" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Saket">Rooms for Rent in Saket</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-malviya-nagar-delhi" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Malviya Nagar">Rooms for Rent in Malviya Nagar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-kalkaji-delhi" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Kalkaji">Rooms for Rent in Kalkaji</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-uttam-nagar-delhi" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Uttam Nagar">Rooms for Rent in Uttam Nagar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-pitampura-delhi" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Pitampura">Rooms for Rent in Pitampura</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-chhattarpur-delhi" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Chhattarpur">Rooms for Rent in Chhattarpur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-mukherjee-nagar-delhi" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Mukherjee Nagar">Rooms for Rent in Mukherjee Nagar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-paschim-vihar-delhi" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Paschim Vihar">Rooms for Rent in Paschim Vihar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-noida-noida" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Noida">Rooms for Rent in Noida</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-greater-noida" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Greater Noida">Rooms for Rent in Greater Noida</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-faridabad-faridabad" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Faridabad">Rooms for Rent in Faridabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-ghaziabad-ghaziabad" rel="noopener noreferrer" target="_blank" title="Rooms for Rent in Ghaziabad">Rooms for Rent in Ghaziabad</a></div></div><div class=""></div><div class=""></div></div></div><div class="bg-white h-auto py-1p px-3 flex w-fit" id="content-5"><div class="p-3p w-20vw"><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/packers-and-movers" rel="noopener noreferrer" target="_blank" title="Packers and Movers">Packers and Movers</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/packers-and-movers-in-bangalore" rel="noopener noreferrer" target="_blank" title="Packers and Movers in Bangalore">Packers and Movers in Bangalore</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-rent-in-hyderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="Flats for Rent in Hyderabad">Flats for Rent in Hyderabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-office-space-in-hyderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="Office Space for Rent in Hyderabad">Office Space for Rent in Hyderabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-coworking-space-in-hyderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="Coworking Space for Rent in Hyderabad">Coworking Space for Rent in Hyderabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-commercial-shops-in-hyderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="Shops for Rent in Hyderabad">Shops for Rent in Hyderabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/office-space-for-sale-in-hyderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="Office Space for Sale in Hyderabad">Office Space for Sale in Hyderabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/electrician-services-in-bangalore" rel="noopener noreferrer" target="_blank" title="Electrician Services Bangalore">Electrician Services Bangalore</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/carpentry-services-in-bangalore" rel="noopener noreferrer" target="_blank" title="Carpentry Services Bangalore">Carpentry Services Bangalore</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/cleaning-services-in-bangalore" rel="noopener noreferrer" target="_blank" title="Cleaning Services Bangalore">Cleaning Services Bangalore</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/prophub/property-management/property-management-in-hyderabad/?isHybrid=false" rel="noopener noreferrer" target="_blank" title="Property Management in Hyderabad">Property Management in Hyderabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/interiors/home-interior-designers-in-pune" rel="noopener noreferrer" target="_blank" title="Interior Designers in Pune">Interior Designers in Pune</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/interiors/home-interior-designers-in-gurgaon" rel="noopener noreferrer" target="_blank" title="Interior Designers in Gurgaon">Interior Designers in Gurgaon</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/prophub/nris/nri-property-management-in-chennai/?isHybrid=false" rel="noopener noreferrer" target="_blank" title="NRI Services in Chennai">NRI Services in Chennai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/prophub/nris/nri-property-management-in-delhi/?isHybrid=false" rel="noopener noreferrer" target="_blank" title="NRI Services in Delhi">NRI Services in Delhi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="https://www.nobroker.in/prophub/property-management/property-inspection/?isHybrid=false" rel="noopener noreferrer" target="_blank" title="Property Inspection">Property Inspection</a></div></div><div class=""></div><div class=""></div></div><div class="p-3p w-20vw"><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/blog/best-packers-and-movers-in-whitefield-bangalore/" rel="noopener noreferrer" target="_blank" title="Best Packers and Movers in Whitefield">Best Packers and Movers in Whitefield</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/blog/local-shifting-packers-and-movers-in-bangalore/" rel="noopener noreferrer" target="_blank" title="Packers and Movers in Bangalore for Local Shifting">Packers and Movers in Bangalore for Local Shifting</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/flats-for-sale-in-hyderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="Flats for Sale in Hyderabad">Flats for Sale in Hyderabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-industrial-building-in-hyderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="Industrial Building for Rent in Hyderabad">Industrial Building for Rent in Hyderabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-industrial-shed-in-hyderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="Industrial Shed for Rent in Hyderabad">Industrial Shed for Rent in Hyderabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-warehouse-godown-in-hyderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="Godown for Rent in Hyderabad">Godown for Rent in Hyderabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/industrial-building-for-sale-in-hyderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="Industrial Building for Sale in Hyderabad">Industrial Building for Sale in Hyderabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/plumbing-services-in-bangalore" rel="noopener noreferrer" target="_blank" title="Plumbing Services Bangalore">Plumbing Services Bangalore</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/sapphire-lakeside-chs-powai_mumbai-prjt-5d1af03ba88c4211026a4a2b" rel="noopener noreferrer" target="_blank" title="Sapphire Lakeside">Sapphire Lakeside</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/sobha-dream-acres-apartments-balagere_bangalore-prjt-5ba009ad714b568105760801" rel="noopener noreferrer" target="_blank" title="Sobha Dream Acres">Sobha Dream Acres</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/prophub/property-management/property-management-in-pune/?isHybrid=false" rel="noopener noreferrer" target="_blank" title="Property Management in Pune">Property Management in Pune</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/interiors/home-interior-designers-in-mumbai" rel="noopener noreferrer" target="_blank" title="Interior Designers in Mumbai">Interior Designers in Mumbai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/interiors/home-interior-designers-in-faridabad" rel="noopener noreferrer" target="_blank" title="Interior Designers in Faridabad">Interior Designers in Faridabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/prophub/nris/nri-property-management-in-mumbai/?isHybrid=false" rel="noopener noreferrer" target="_blank" title="NRI Services in Mumbai">NRI Services in Mumbai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/prophub/nris/nri-property-management-in-gurgaon/?isHybrid=false" rel="noopener noreferrer" target="_blank" title="NRI Services in Gurgaon">NRI Services in Gurgaon</a></div></div><div class=""></div><div class=""></div></div><div class="p-3p w-20vw"><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/packers-and-movers-in-mumbai" rel="noopener noreferrer" target="_blank" title="Packers and Movers in Mumbai">Packers and Movers in Mumbai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/blog/best-packers-and-movers-in-mumbai/" rel="noopener noreferrer" target="_blank" title="Best Packers and Movers in Mumbai">Best Packers and Movers in Mumbai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/packers-and-movers-in-chennai" rel="noopener noreferrer" target="_blank" title="Packers and Movers in Chennai">Packers and Movers in Chennai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/blog/best-packers-movers-in-chennai/" rel="noopener noreferrer" target="_blank" title="Best Packers and Movers in Chennai">Best Packers and Movers in Chennai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pg-in-hyderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="PG in Hyderabad">PG in Hyderabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-commercial-showrooms-in-hyderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="Showroom Space for Rent in Hyderabad">Showroom Space for Rent in Hyderabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/warehouse-godown-for-sale-in-hyderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="Godown for Sale in Hyderabad">Godown for Sale in Hyderabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/industrial-shed-for-sale-in-hyderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="Industrial Shed for Sale in Hyderabad">Industrial Shed for Sale in Hyderabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/home-services" rel="noopener noreferrer" target="_blank" title="Home Services">Home Services</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/prestige-lakeside-habitat-villa-gunjur_bangalore-prjt-5ba009ad714b568105760861" rel="noopener noreferrer" target="_blank" title="Prestige Lakeside Habitat">Prestige Lakeside Habitat</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/prophub/property-management/property-management-in-mumbai/?isHybrid=false" rel="noopener noreferrer" target="_blank" title="Property Management in Mumbai">Property Management in Mumbai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/interiors/home-interior-designers-in-bangalore" rel="noopener noreferrer" target="_blank" title="Interior Designers in Bangalore">Interior Designers in Bangalore</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/interiors/home-interior-designers-in-ghaziabad" rel="noopener noreferrer" target="_blank" title="Interior Designers in Ghaziabad">Interior Designers in Ghaziabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/prophub/nris/nri-property-management-in-pune/?isHybrid=false" rel="noopener noreferrer" target="_blank" title="NRI Services in pune">NRI Services in pune</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/prophub/nris/nri-property-management-in-ghaziabad/?isHybrid=false" rel="noopener noreferrer" target="_blank" title="NRI Services in Ghaziabad">NRI Services in Ghaziabad</a></div></div><div class=""></div><div class=""></div></div><div class="p-3p w-20vw"><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/blog/top-20-best-two-color-combination-for-your-bedroom-walls/" rel="noopener noreferrer" target="_blank" title="Two Colour Combination for Bedroom Walls">Two Colour Combination for Bedroom Walls</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/blog/25-best-out-of-waste-ideas-to-decorate-your-home/" rel="noopener noreferrer" target="_blank" title="Best Out Of Waste Ideas">Best Out Of Waste Ideas</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/blog/inside-the-home-of-bollywoods-favorite-action-hero-akshay-kumar/" rel="noopener noreferrer" target="_blank" title="Akshay Kumar House">Akshay Kumar House</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/blog/15-attractive-outside-color-combinations-for-indian-houses/" rel="noopener noreferrer" target="_blank" title="Indian House Colour Combination Outside">Indian House Colour Combination Outside</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/blog/top-7-tallest-buildings-in-mumbai/" rel="noopener noreferrer" target="_blank" title="Tallest Buildings in Mumbai">Tallest Buildings in Mumbai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/blog/wall-mounted-dining-table-ideas/" rel="noopener noreferrer" target="_blank" title="Wall Mounted Dining Table">Wall Mounted Dining Table</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/blog/15-safety-rules-at-home-for-kids/" rel="noopener noreferrer" target="_blank" title="Safety Rules at Home">Safety Rules at Home</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/blog/gfrg-panels-a-new-technology-in-building-construction/" rel="noopener noreferrer" target="_blank" title="GFRG Panel">GFRG Panel</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/blog/top-15-awesome-hanging-lights-to-illuminate-your-living-room/" rel="noopener noreferrer" target="_blank" title="Hanging Lights for Living Room">Hanging Lights for Living Room</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/blog/franking-charges/" rel="noopener noreferrer" target="_blank" title="Franking Charges">Franking Charges</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="https://www.kirtiheights.com/" rel="noopener noreferrer" target="_blank" title="Paying Guest">Paying Guest</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/prophub/property-management/property-management-in-bangalore/?isHybrid=false" rel="noopener noreferrer" target="_blank" title="Property Management in Bangalore">Property Management in Bangalore</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/interiors/home-interior-designers-in-chennai" rel="noopener noreferrer" target="_blank" title="Interior Designers in Chennai">Interior Designers in Chennai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/interiors/home-interior-designers-in-delhi" rel="noopener noreferrer" target="_blank" title="Interior Designers in Delhi">Interior Designers in Delhi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/prophub/nris/nri-property-management-in-bangalore/?isHybrid=false" rel="noopener noreferrer" target="_blank" title="NRI Services in Bangalore">NRI Services in Bangalore</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/prophub/nris/nri-property-management-in-faridabad/?isHybrid=false" rel="noopener noreferrer" target="_blank" title="NRI Services in Faridabad">NRI Services in Faridabad</a></div></div><div class=""></div><div class=""></div></div><div class="p-3p w-20vw"><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/packers-and-movers-in-pune" rel="noopener noreferrer" target="_blank" title="Packers and Movers in Pune">Packers and Movers in Pune</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/blog/best-packers-and-movers-in-pune/" rel="noopener noreferrer" target="_blank" title="Best Packers and Movers in Pune">Best Packers and Movers in Pune</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/blog/top-15-awesome-hanging-lights-to-illuminate-your-living-room/" rel="noopener noreferrer" target="_blank" title="Hanging Lights for Living Room">Hanging Lights for Living Room</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/prophub/property-management/?isHybrid=false" rel="noopener noreferrer" target="_blank" title="Property Management Services">Property Management Services</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="https://www.nobrokerhood.com/" rel="noopener noreferrer" target="_blank" title="NoBrokerHOOD - Visitor &amp; Society Management System">NoBrokerHOOD - Visitor &amp; Society Management System</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/roommates-in-hyderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="Flatmates in Hyderabad">Flatmates in Hyderabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/commercial-showrooms-for-sale-in-hyderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="Showrooms Space for Sale in Hyderabad">Showrooms Space for Sale in Hyderabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/commercial-shops-for-sale-in-hyderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="Shops for Sale in Hyderabad">Shops for Sale in Hyderabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/coworking-space-for-sale-in-hyderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="Coworking Space for Sale in Hyderabad">Coworking Space for Sale in Hyderabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/painting-services-in-bangalore" rel="noopener noreferrer" target="_blank" title="Painting Services Bangalore">Painting Services Bangalore</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/prophub/property-management/property-management-in-chennai/?isHybrid=false" rel="noopener noreferrer" target="_blank" title="Property Management in Chennai">Property Management in Chennai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/interiors/home-interior-designers-in-hyderabad" rel="noopener noreferrer" target="_blank" title="Interior Designers in Hyderabad">Interior Designers in Hyderabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/interiors/home-interior-designers-in-noida" rel="noopener noreferrer" target="_blank" title="Interior Designers in Noida">Interior Designers in Noida</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/prophub/nris/nri-property-management-in-hyderabad/?isHybrid=false" rel="noopener noreferrer" target="_blank" title="NRI Services in Hyderabad">NRI Services in Hyderabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="prophub/nris/nri-property-management-in-noida/" rel="noopener noreferrer" target="_blank" title="NRI Services in Noida">NRI Services in Noida</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="https://www.kirtiheights.com/pages-sitemap.xml" rel="noopener noreferrer" target="_blank" title="Sitemap">Sitemap</a></div></div><div class=""></div><div class=""></div></div><div class="p-3p w-20vw"><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/home-services" rel="noopener noreferrer" target="_blank" title="Home Services">Home Services</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/painting-services" rel="noopener noreferrer" target="_blank" title="Painting Services">Painting Services</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/ac-repair-services" rel="noopener noreferrer" target="_blank" title="AC Repair Services">AC Repair Services</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/electrician-services" rel="noopener noreferrer" target="_blank" title="Electrician Services">Electrician Services</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/carpentry-services" rel="noopener noreferrer" target="_blank" title="Carpentry Services">Carpentry Services</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/plumbing-services" rel="noopener noreferrer" target="_blank" title="Plumbing Services">Plumbing Services</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/home-sanitization-services-in-faridabad" rel="noopener noreferrer" target="_blank" title="Home Sanitization Services">Home Sanitization Services</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/prophub/renovation/home-renovation/?isHybrid=false" rel="noopener noreferrer" target="_blank" title="Home Renovation">Home Renovation</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/bathroom-cleaning-services" rel="noopener noreferrer" target="_blank" title="Bathroom Cleaning">Bathroom Cleaning</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/home-cleaning-services" rel="noopener noreferrer" target="_blank" title="Full House Cleaning">Full House Cleaning</a></div></div><div class=""></div><div class=""></div></div><div class="p-3p w-20vw"><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/kitchen-cleaning-services" rel="noopener noreferrer" target="_blank" title="Kitchen Cleaning">Kitchen Cleaning</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/sofa-cleaning-services" rel="noopener noreferrer" target="_blank" title="Sofa and cushion Cleaning">Sofa and cushion Cleaning</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/tempo-service" rel="noopener noreferrer" target="_blank" title="Tempo Service">Tempo Service</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/prestige-lavender-fields-varthur_bangalore-prjt-8a9fe18284bde3930184be5266754dae" rel="noopener noreferrer" target="_blank" title="Prestige Lavender Fields">Prestige Lavender Fields</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/kolte-patil-life-republic-hinjewadi_pune-prjt-ff8081816be536c7016be569f9ea2148" rel="noopener noreferrer" target="_blank" title="Kolte Patil Life Republic First Avenue">Kolte Patil Life Republic First Avenue</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/sobha-sentosa-balagere_bangalore-prjt-8a9fb6827fd8ff0a017fd9a400ec6ea5" rel="noopener noreferrer" target="_blank" title="Sobha Sentosa">Sobha Sentosa</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/after-the-rain-yelahanka_bangalore-prjt-8a9f8af87140100701714054833c1078" rel="noopener noreferrer" target="_blank" title="After The Rain">After The Rain</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/pavani-mirabilia-whitefield_bangalore-prjt-8a9fd683848eb35c01848f23c2165c8c" rel="noopener noreferrer" target="_blank" title="Pavani Mirabilia">Pavani Mirabilia</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/zen-gardens--kandivali-west_mumbai-prjt-8a9fbe827e1f654a017e201ecded6796" rel="noopener noreferrer" target="_blank" title="Zen Gardens">Zen Gardens</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/godrej-24-ashok-nagar_bangalore-prjt-ff8081816d24f775016d250083ad04a4" rel="noopener noreferrer" target="_blank" title="Godrej 24">Godrej 24</a></div></div><div class=""></div><div class=""></div></div><div class="p-3p w-20vw"><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/prestige-park-grove-seegahalli_bangalore-prjt-8a9fae82889029f00188905ae2fb1fe3" rel="noopener noreferrer" target="_blank" title="prestige park grove">prestige park grove</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/godrej-ananda-bagalur_bangalore-prjt-8a9f8c82796ed64f01796f7235ed4535" rel="noopener noreferrer" target="_blank" title="godrej ananda">godrej ananda</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/prestige-tranquil-kokapet_hyderabad-prjt-8a9f820075fedd2e0175ff15b6ec112b" rel="noopener noreferrer" target="_blank" title="prestige tranquil">prestige tranquil</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/sobha-neopolis-balagere_bangalore-prjt-8a9f158286e93b7c0186e9ab5ca2444d" rel="noopener noreferrer" target="_blank" title="sobha neopolis">sobha neopolis</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/prestige-serenity-shores-varthur_bangalore-prjt-8a9f018288992d35018899c898256507" rel="noopener noreferrer" target="_blank" title="prestige serenity shores">prestige serenity shores</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/casagrand-flagship-pallikaranai_chennai-prjt-8a9fa78283548f2e01835517cf615f82" rel="noopener noreferrer" target="_blank" title="casagrand flagship">casagrand flagship</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/dlf-the-magnolias--sector-42_gurgaon-prjt-8a9f9f82881e5c3801881ea744af2d6b" rel="noopener noreferrer" target="_blank" title="dlf the magnolias">dlf the magnolias</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/sobha-windsor-nagondanahalli-bangalore_bangalore-prjt-8a9f92e277ceff950177cf124c1c0757" rel="noopener noreferrer" target="_blank" title="sobha windsor">sobha windsor</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/bestech-altura-gurugram_gurgaon-prjt-8a9fdb82841275d9018412f0dfd6473b" rel="noopener noreferrer" target="_blank" title="bestech altura">bestech altura</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/dlf-ultima-sector-81_gurgaon-prjt-8a9fd982881e5c2101881eb787963b39" rel="noopener noreferrer" target="_blank" title="dlf ultima">dlf ultima</a></div></div><div class=""></div><div class=""></div></div><div class="p-3p w-20vw"><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/nambiar-bellezea-muthanallur_bangalore-prjt-8a9f8f8279957605017995951a2107fd" rel="noopener noreferrer" target="_blank" title="nambiar bellezea">nambiar bellezea</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/piramal-mahalaxmi-mahalaxmi-east_mumbai-prjt-8a9fc0828210c3e00182113656944b85" rel="noopener noreferrer" target="_blank" title="piramal mahalaxmi">piramal mahalaxmi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/experion-windchants-gurugram,dwarka-expressway_gurgaon-prjt-8a9f95827bcaa80c017bcab4c3aa03dc" rel="noopener noreferrer" target="_blank" title="experion windchants">experion windchants</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/gulshan-bellina-sector-16_noida-prjt-8a9f92828824048d0188242c9c2d1771" rel="noopener noreferrer" target="_blank" title="gulshan bellina">gulshan bellina</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/prestige-elysian-kalena-agrahara-bangalore_bangalore-prjt-8a9f82cc702dfd0d01702e7a8a153c78" rel="noopener noreferrer" target="_blank" title="prestige elysian">prestige elysian</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/oberoi-esquire--goregaon-east_mumbai-prjt-8a9faa8277724d77017772b1b9cf344d" rel="noopener noreferrer" target="_blank" title="oberoi esquire">oberoi esquire</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/brigade-laguna-hebbal-_bangalore-prjt-8a9fb6827ffd0bc8017ffd71a3933b76" rel="noopener noreferrer" target="_blank" title="brigade laguna">brigade laguna</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/godrej-air-hoodi-bangalore_bangalore-prjt-ff8081816d1ae78f016d1b0ef7ac1967" rel="noopener noreferrer" target="_blank" title="Godrej Air">Godrej Air</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/divyasree-republic-of-whitefield-whitefield_bangalore-prjt-8a9fb0827abeb5a0017abec1b4720530" rel="noopener noreferrer" target="_blank" title="Divyasree Republic Of Whitefield">Divyasree Republic Of Whitefield</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/tata-promont-hosakerehalli_bangalore-prjt-ff808181602c05c901602c089f000122" rel="noopener noreferrer" target="_blank" title="Tata Promont">Tata Promont</a></div></div><div class=""></div><div class=""></div></div><div class="p-3p w-20vw"><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/lodha-park-worli_mumbai-prjt-8a9f858281e1c55c0181e2116e563a7c" rel="noopener noreferrer" target="_blank" title="Lodha Park">Lodha Park</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/ace-divino-sector-1_noida-prjt-8a9fa7827f8698dc017f86efb4e92eae" rel="noopener noreferrer" target="_blank" title="Ace Divino">Ace Divino</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/piramal-aranya-byculla-east_mumbai-prjt-8a9f9282822413a1018224a1f4cd6bf7" rel="noopener noreferrer" target="_blank" title="Piramal Aranya">Piramal Aranya</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/embassy-lake-terraces-hebbal-kempapura-village_bangalore-prjt-8a9ff58287932ed10187935d01861c10" rel="noopener noreferrer" target="_blank" title="Embassy Lake Terraces">Embassy Lake Terraces</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/crc-joyous-amrapali-dream-valley_noida-prjt-8a9fe5828485a176018485c5fa2e131d" rel="noopener noreferrer" target="_blank" title="Crc Joyous">Crc Joyous</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/lodha-new-cuffe-parade-wadala-east_mumbai-prjt-ff8081816527855001652841b5a66bba" rel="noopener noreferrer" target="_blank" title="Lodha New Cuffe Parade">Lodha New Cuffe Parade</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rustomjee-crown-prabhadevi_mumbai-prjt-8a9fa1837bf2a2b4017bf2b7dcda1236" rel="noopener noreferrer" target="_blank" title="Rustomjee Crown">Rustomjee Crown</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rustomjee-seasons-bandra-east_mumbai-prjt-8a9f9085796ce70301796d83219d0928" rel="noopener noreferrer" target="_blank" title="Rustomjee Seasons">Rustomjee Seasons</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rustomjee-paramount-khar-west_mumbai-prjt-8a9fef8288e221d40188e2b1e96e6033" rel="noopener noreferrer" target="_blank" title="Rustomjee Paramount">Rustomjee Paramount</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/godrej-horizon-wadala_mumbai-prjt-8a9fbe828088bb5b018088d9811013ca" rel="noopener noreferrer" target="_blank" title="Godrej Horizon">Godrej Horizon</a></div></div><div class=""></div><div class=""></div></div></div><div class="bg-white h-auto py-1p px-3 flex w-fit" id="content-6"><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/commercial-properties-for-rent-in-bangalore_bangalore" rel="noopener noreferrer" target="_blank" title="Commercial Properties For Rent in Bangalore">Commercial Properties For Rent in Bangalore</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-warehouse-godown-in-bangalore_bangalore" rel="noopener noreferrer" target="_blank" title="Warehouse for Rent in Bangalore">Warehouse for Rent in Bangalore</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-office-space-in-bangalore_bangalore" rel="noopener noreferrer" target="_blank" title="Commercial Office Space for Rent in Bangalore">Commercial Office Space for Rent in Bangalore</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-coworking-space-in-bangalore_bangalore" rel="noopener noreferrer" target="_blank" title="Coworking Spaces for Rent in Bangalore">Coworking Spaces for Rent in Bangalore</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-commercial-shops-in-bangalore_bangalore" rel="noopener noreferrer" target="_blank" title="Commercial Shops for Rent in Bangalore">Commercial Shops for Rent in Bangalore</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-industrial-building-in-bangalore_bangalore" rel="noopener noreferrer" target="_blank" title="Industrial Building for Rent in Bangalore">Industrial Building for Rent in Bangalore</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-commercial-showrooms-in-bangalore_bangalore" rel="noopener noreferrer" target="_blank" title="Commercial Showrooms for Rent in Bangalore">Commercial Showrooms for Rent in Bangalore</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-industrial-shed-in-bangalore_bangalore" rel="noopener noreferrer" target="_blank" title="Industrial Shed for Rent in Bangalore">Industrial Shed for Rent in Bangalore</a></div></div><div class=""></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/commercial-properties-for-rent-in-chennai_chennai" rel="noopener noreferrer" target="_blank" title="Commercial Properties For Rent in Chennai">Commercial Properties For Rent in Chennai</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-warehouse-godown-in-chennai_chennai" rel="noopener noreferrer" target="_blank" title="Warehouse for Rent in Chennai">Warehouse for Rent in Chennai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-coworking-space-in-chennai_chennai" rel="noopener noreferrer" target="_blank" title="Coworking Spaces for Rent in Chennai">Coworking Spaces for Rent in Chennai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-office-space-in-chennai_chennai" rel="noopener noreferrer" target="_blank" title="Office Space for Rent in Chennai">Office Space for Rent in Chennai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-industrial-building-in-chennai_chennai" rel="noopener noreferrer" target="_blank" title="Industrial Building for Rent in Chennai">Industrial Building for Rent in Chennai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-commercial-shops-in-chennai_chennai" rel="noopener noreferrer" target="_blank" title="Commercial Shops for Rent in Chennai">Commercial Shops for Rent in Chennai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-commercial-showrooms-in-chennai_chennai" rel="noopener noreferrer" target="_blank" title="Commercial Showrooms for Rent in Chennai">Commercial Showrooms for Rent in Chennai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-industrial-shed-in-chennai_chennai" rel="noopener noreferrer" target="_blank" title="Industrial Shed for Rent in Chennai">Industrial Shed for Rent in Chennai</a></div></div><div class=""></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/commercial-properties-for-rent-in-pune_pune" rel="noopener noreferrer" target="_blank" title="Commercial Properties For Rent in Pune">Commercial Properties For Rent in Pune</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-warehouse-godown-in-pune_pune" rel="noopener noreferrer" target="_blank" title="Warehouse for Rent in Pune">Warehouse for Rent in Pune</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-office-space-in-pune_pune" rel="noopener noreferrer" target="_blank" title="Office Space for Rent in Pune">Office Space for Rent in Pune</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-commercial-shops-in-pune_pune" rel="noopener noreferrer" target="_blank" title="Commercial Shops for Rent in Pune">Commercial Shops for Rent in Pune</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-industrial-shed-in-pune_pune" rel="noopener noreferrer" target="_blank" title="Industrial Shed for Rent in Pune">Industrial Shed for Rent in Pune</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-commercial-showrooms-in-pune_pune" rel="noopener noreferrer" target="_blank" title="Commercial Showrooms for Rent in Pune">Commercial Showrooms for Rent in Pune</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-coworking-space-in-pune_pune" rel="noopener noreferrer" target="_blank" title="Coworking Spaces for Rent in Pune">Coworking Spaces for Rent in Pune</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-industrial-building-in-pune_pune" rel="noopener noreferrer" target="_blank" title="Industrial Building for Rent in Pune">Industrial Building for Rent in Pune</a></div></div><div class=""></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/commercial-properties-for-rent-in-mumbai_mumbai" rel="noopener noreferrer" target="_blank" title="Commercial Properties For Rent in Mumbai">Commercial Properties For Rent in Mumbai</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-office-space-in-mumbai_mumbai" rel="noopener noreferrer" target="_blank" title="Office Space for Rent in Mumbai">Office Space for Rent in Mumbai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-industrial-building-in-mumbai_mumbai" rel="noopener noreferrer" target="_blank" title="Industrial Building for Rent in Mumbai">Industrial Building for Rent in Mumbai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-warehouse-godown-in-mumbai_mumbai" rel="noopener noreferrer" target="_blank" title="Warehouse for Rent in Mumbai">Warehouse for Rent in Mumbai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-commercial-shops-in-mumbai_mumbai" rel="noopener noreferrer" target="_blank" title="Commercial Shops for Rent in Mumbai">Commercial Shops for Rent in Mumbai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-coworking-space-in-mumbai_mumbai" rel="noopener noreferrer" target="_blank" title="Coworking Spaces for Rent in Mumbai">Coworking Spaces for Rent in Mumbai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-commercial-showrooms-in-mumbai_mumbai" rel="noopener noreferrer" target="_blank" title="Commercial Showrooms for Rent in Mumbai">Commercial Showrooms for Rent in Mumbai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-industrial-shed-in-mumbai_mumbai" rel="noopener noreferrer" target="_blank" title="Industrial Shed for Rent in Mumbai">Industrial Shed for Rent in Mumbai</a></div></div><div class=""></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/commercial-properties-for-rent-in-gurgaon-gurgaon" rel="noopener noreferrer" target="_blank" title="Commercial Properties For Rent in Gurgaon">Commercial Properties For Rent in Gurgaon</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-office-space-in-gurgaon-gurgaon" rel="noopener noreferrer" target="_blank" title="Office space for rent in gurgaon">Office space for rent in gurgaon</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-warehouse-godown-in-gurgaon-gurgaon" rel="noopener noreferrer" target="_blank" title="Warehouse for Rent in Gurgaon">Warehouse for Rent in Gurgaon</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-commercial-showrooms-in-gurgaon-gurgaon" rel="noopener noreferrer" target="_blank" title="Commercial Showrooms for Rent in Gurgaon">Commercial Showrooms for Rent in Gurgaon</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-industrial-building-in-gurgaon-gurgaon" rel="noopener noreferrer" target="_blank" title="Industrial Building for Rent in Gurgaon">Industrial Building for Rent in Gurgaon</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-coworking-space-in-gurgaon-gurgaon" rel="noopener noreferrer" target="_blank" title="Coworking Spaces for Rent in Gurgaon">Coworking Spaces for Rent in Gurgaon</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-industrial-shed-in-gurgaon-gurgaon" rel="noopener noreferrer" target="_blank" title="Industrial Shed for Rent in Gurgaon">Industrial Shed for Rent in Gurgaon</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-commercial-shops-in-gurgaon-gurgaon" rel="noopener noreferrer" target="_blank" title="Commercial Shops for Rent in Gurgaon">Commercial Shops for Rent in Gurgaon</a></div></div><div class=""></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/commercial-properties-for-sale-in-bangalore_bangalore" rel="noopener noreferrer" target="_blank" title="Commercial Properties For Sale in Bangalore">Commercial Properties For Sale in Bangalore</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/office-space-for-sale-in-bangalore_bangalore" rel="noopener noreferrer" target="_blank" title="Office Space for Sale in Bangalore">Office Space for Sale in Bangalore</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/industrial-building-for-sale-in-bangalore_bangalore" rel="noopener noreferrer" target="_blank" title="Industrial Building for Sale in Bangalore">Industrial Building for Sale in Bangalore</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/coworking-space-for-sale-in-bangalore_bangalore" rel="noopener noreferrer" target="_blank" title="Coworking Spaces for Sale in Bangalore">Coworking Spaces for Sale in Bangalore</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/industrial-shed-for-sale-in-bangalore_bangalore" rel="noopener noreferrer" target="_blank" title="Industrial Shed for Sale in Bangalore">Industrial Shed for Sale in Bangalore</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/commercial-shops-for-sale-in-bangalore_bangalore" rel="noopener noreferrer" target="_blank" title="Commercial Shops for Sale in Bangalore">Commercial Shops for Sale in Bangalore</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/warehouse-godown-for-sale-in-bangalore_bangalore" rel="noopener noreferrer" target="_blank" title="Warehouse for Sale in Bangalore">Warehouse for Sale in Bangalore</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/commercial-showrooms-for-sale-in-bangalore_bangalore" rel="noopener noreferrer" target="_blank" title="Commercial Showrooms for Sale in Bangalore">Commercial Showrooms for Sale in Bangalore</a></div></div><div class=""></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/commercial-properties-for-sale-in-chennai_chennai" rel="noopener noreferrer" target="_blank" title="Commercial Properties For Sale in Chennai">Commercial Properties For Sale in Chennai</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/office-space-for-sale-in-chennai_chennai" rel="noopener noreferrer" target="_blank" title="Office Space for Sale in Chennai">Office Space for Sale in Chennai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/industrial-building-for-sale-in-chennai_chennai" rel="noopener noreferrer" target="_blank" title="Industrial Building for Sale in Chennai">Industrial Building for Sale in Chennai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/coworking-space-for-sale-in-chennai_chennai" rel="noopener noreferrer" target="_blank" title="Coworking Spaces for Sale in Chennai">Coworking Spaces for Sale in Chennai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/industrial-shed-for-sale-in-chennai_chennai" rel="noopener noreferrer" target="_blank" title="Industrial Shed for Sale in Chennai">Industrial Shed for Sale in Chennai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/commercial-shops-for-sale-in-chennai_chennai" rel="noopener noreferrer" target="_blank" title="Commercial Shops for Sale in Chennai">Commercial Shops for Sale in Chennai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/warehouse-godown-for-sale-in-chennai_chennai" rel="noopener noreferrer" target="_blank" title="Warehouse for Sale in Chennai">Warehouse for Sale in Chennai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/commercial-showrooms-for-sale-in-chennai_chennai" rel="noopener noreferrer" target="_blank" title="Commercial Showrooms for Sale in Chennai">Commercial Showrooms for Sale in Chennai</a></div></div><div class=""></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/commercial-properties-for-sale-in-pune_pune" rel="noopener noreferrer" target="_blank" title="Commercial Properties For Sale in Pune">Commercial Properties For Sale in Pune</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/coworking-space-for-sale-in-pune_pune" rel="noopener noreferrer" target="_blank" title="Coworking Spaces for Sale in Pune">Coworking Spaces for Sale in Pune</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/industrial-shed-for-sale-in-pune_pune" rel="noopener noreferrer" target="_blank" title="Industrial Shed for Sale in Pune">Industrial Shed for Sale in Pune</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/industrial-building-for-sale-in-pune_pune" rel="noopener noreferrer" target="_blank" title="Industrial Building for Sale in Pune">Industrial Building for Sale in Pune</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/commercial-shops-for-sale-in-pune_pune" rel="noopener noreferrer" target="_blank" title="Commercial Shops for Sale in Pune">Commercial Shops for Sale in Pune</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/warehouse-godown-for-sale-in-pune_pune" rel="noopener noreferrer" target="_blank" title="Warehouse for Sale in Pune">Warehouse for Sale in Pune</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/commercial-showrooms-for-sale-in-pune_pune" rel="noopener noreferrer" target="_blank" title="Commercial Showrooms for Sale in Pune">Commercial Showrooms for Sale in Pune</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/office-space-for-sale-in-pune_pune" rel="noopener noreferrer" target="_blank" title="Office Space for Sale in Pune">Office Space for Sale in Pune</a></div></div><div class=""></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/commercial-properties-for-sale-in-mumbai_mumbai" rel="noopener noreferrer" target="_blank" title="Commercial Properties For Sale in Mumbai">Commercial Properties For Sale in Mumbai</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/industrial-building-for-sale-in-mumbai_mumbai" rel="noopener noreferrer" target="_blank" title="Industrial Building for Sale in Mumbai">Industrial Building for Sale in Mumbai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/coworking-space-for-sale-in-mumbai_mumbai" rel="noopener noreferrer" target="_blank" title="Coworking Spaces for Sale in Mumbai">Coworking Spaces for Sale in Mumbai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/commercial-shops-for-sale-in-mumbai_mumbai" rel="noopener noreferrer" target="_blank" title="Commercial Shops for Sale in Mumbai">Commercial Shops for Sale in Mumbai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/industrial-shed-for-sale-in-mumbai_mumbai" rel="noopener noreferrer" target="_blank" title="Industrial Shed for Sale in Mumbai">Industrial Shed for Sale in Mumbai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/commercial-showrooms-for-sale-in-mumbai_mumbai" rel="noopener noreferrer" target="_blank" title="Commercial Showrooms for Sale in Mumbai">Commercial Showrooms for Sale in Mumbai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/warehouse-godown-for-sale-in-mumbai_mumbai" rel="noopener noreferrer" target="_blank" title="Warehouse for Sale in Mumbai">Warehouse for Sale in Mumbai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/office-space-for-sale-in-mumbai_mumbai" rel="noopener noreferrer" target="_blank" title="Office Space for Sale in Mumbai">Office Space for Sale in Mumbai</a></div></div><div class=""></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/commercial-properties-for-sale-in-gurgaon-gurgaon" rel="noopener noreferrer" target="_blank" title="Commercial Properties For Sale in Gurgaon">Commercial Properties For Sale in Gurgaon</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/coworking-space-for-sale-in-gurgaon-gurgaon" rel="noopener noreferrer" target="_blank" title="Coworking Spaces for Sale in Gurgaon">Coworking Spaces for Sale in Gurgaon</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/industrial-shed-for-sale-in-gurgaon-gurgaon" rel="noopener noreferrer" target="_blank" title="Industrial Shed for Sale in Gurgaon">Industrial Shed for Sale in Gurgaon</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/commercial-shops-for-sale-in-gurgaon-gurgaon" rel="noopener noreferrer" target="_blank" title="Commercial Shops for Sale in Gurgaon">Commercial Shops for Sale in Gurgaon</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/commercial-showrooms-for-sale-in-gurgaon-gurgaon" rel="noopener noreferrer" target="_blank" title="Commercial Showrooms for Sale in Gurgaon">Commercial Showrooms for Sale in Gurgaon</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/warehouse-godown-for-sale-in-gurgaon-gurgaon" rel="noopener noreferrer" target="_blank" title="Warehouse for Sale in Gurgaon">Warehouse for Sale in Gurgaon</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/office-space-for-sale-in-gurgaon-gurgaon" rel="noopener noreferrer" target="_blank" title="Office Space for Sale in Gurgaon">Office Space for Sale in Gurgaon</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/industrial-building-for-sale-in-gurgaon-gurgaon" rel="noopener noreferrer" target="_blank" title="Industrial Building for Sale in Gurgaon">Industrial Building for Sale in Gurgaon</a></div></div><div class=""></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/commercial-properties-for-sale-in-hyderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="Commercial Properties For Sale in Hyderabad">Commercial Properties For Sale in Hyderabad</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/coworking-space-for-sale-in-hyderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="Coworking Space For Sale In Hyderabad">Coworking Space For Sale In Hyderabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/office-space-for-sale-in-hyderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="Office Space For Sale In Hyderabad">Office Space For Sale In Hyderabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/commercial-shops-for-sale-in-hyderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="Commercial Shops For Sale In Hyderabad">Commercial Shops For Sale In Hyderabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/commercial-showrooms-for-sale-in-hyderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="Commercial Showrooms For Sale In Hyderabad">Commercial Showrooms For Sale In Hyderabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/warehouse-godown-for-sale-in-hyderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="Warehouse Godown For Sale In Hyderabad">Warehouse Godown For Sale In Hyderabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/industrial-shed-for-sale-in-hyderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="Industrial Shed For Sale In Hyderabad">Industrial Shed For Sale In Hyderabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/industrial-building-for-sale-in-hyderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="Industrial Building For Sale In Hyderabad">Industrial Building For Sale In Hyderabad</a></div></div><div class=""></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/commercial-properties-for-sale-in-delhi-delhi" rel="noopener noreferrer" target="_blank" title="Commercial Properties For Sale In Delhi NCR">Commercial Properties For Sale In Delhi NCR</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/commercial-shops-for-sale-in-delhi-delhi" rel="noopener noreferrer" target="_blank" title="Commercial Shops For Sale In Delhi">Commercial Shops For Sale In Delhi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/commercial-showrooms-for-sale-in-delhi-delhi" rel="noopener noreferrer" target="_blank" title="Commercial Showrooms For Sale In Delhi">Commercial Showrooms For Sale In Delhi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/warehouse-godown-for-sale-in-delhi-delhi" rel="noopener noreferrer" target="_blank" title="Warehouse Godown For Sale In Delhi">Warehouse Godown For Sale In Delhi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/office-space-for-sale-in-delhi-delhi" rel="noopener noreferrer" target="_blank" title="Office Space For Sale In Delhi">Office Space For Sale In Delhi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/coworking-space-for-sale-in-delhi-delhi" rel="noopener noreferrer" target="_blank" title="Coworking Space For Sale In Delhi">Coworking Space For Sale In Delhi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/industrial-building-for-sale-in-delhi-delhi" rel="noopener noreferrer" target="_blank" title="Industrial Building For Sale In Delhi">Industrial Building For Sale In Delhi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/industrial-shed-for-sale-in-delhi-delhi" rel="noopener noreferrer" target="_blank" title="Industrial Shed For Sale In Delhi">Industrial Shed For Sale In Delhi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/commercial-properties-for-sale-in-noida-noida" rel="noopener noreferrer" target="_blank" title="Commercial Properties For Sale In Noida">Commercial Properties For Sale In Noida</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/commercial-shops-for-sale-in-noida-noida" rel="noopener noreferrer" target="_blank" title="Commercial Shops For Sale In Noida">Commercial Shops For Sale In Noida</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/office-space-for-sale-in-noida-noida" rel="noopener noreferrer" target="_blank" title="Office Space For Sale In Noida">Office Space For Sale In Noida</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/commercial-properties-for-sale-in-greater-noida" rel="noopener noreferrer" target="_blank" title="Commercial Properties For Sale In Greater Noida">Commercial Properties For Sale In Greater Noida</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/commercial-shops-for-sale-in-greater-noida" rel="noopener noreferrer" target="_blank" title="Commercial Shops For Sale In Greater Noida">Commercial Shops For Sale In Greater Noida</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/office-space-for-sale-in-greater-noida" rel="noopener noreferrer" target="_blank" title="Office Space For Sale In Greater Noida">Office Space For Sale In Greater Noida</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/commercial-properties-for-sale-in-faridabad-faridabad" rel="noopener noreferrer" target="_blank" title="Commercial Properties For Sale In Faridabad">Commercial Properties For Sale In Faridabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/commercial-shops-for-sale-in-faridabad-faridabad" rel="noopener noreferrer" target="_blank" title="Commercial Shops For Sale In Faridabad">Commercial Shops For Sale In Faridabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/office-space-for-sale-in-faridabad-faridabad" rel="noopener noreferrer" target="_blank" title="Office Space For Sale In Faridabad">Office Space For Sale In Faridabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/commercial-properties-for-sale-in-ghaziabad-ghaziabad" rel="noopener noreferrer" target="_blank" title="Commercial Properties For Sale In Ghaziabad">Commercial Properties For Sale In Ghaziabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/commercial-shops-for-sale-in-ghaziabad-ghaziabad" rel="noopener noreferrer" target="_blank" title="Commercial Shops For Sale In Ghaziabad">Commercial Shops For Sale In Ghaziabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/office-space-for-sale-in-ghaziabad-ghaziabad" rel="noopener noreferrer" target="_blank" title="Office Space For Sale In Ghaziabad">Office Space For Sale In Ghaziabad</a></div></div><div class=""></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/commercial-properties-for-rent-in-hyderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="Commercial Properties For Rent in Hyderabad">Commercial Properties For Rent in Hyderabad</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-coworking-space-in-hyderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="Coworking Space in Hyderabad">Coworking Space in Hyderabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-office-space-in-hyderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="Office Space for Rent in Hyderabad">Office Space for Rent in Hyderabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-commercial-shops-in-hyderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="Shop for Rent in Hyderabad">Shop for Rent in Hyderabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="rent-commercial-showrooms-in-hyderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="Showrooms for rent in Hyderabad,">Showrooms for rent in Hyderabad,</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-warehouse-godown-in-hyderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="Warehouse or Godown For Rent in Hyderabad">Warehouse or Godown For Rent in Hyderabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-industrial-shed-in-hyderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="Industrial Shed for rent in Hyderabad">Industrial Shed for rent in Hyderabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-industrial-building-in-hyderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="Industrial Building for Rent in Hyderabad">Industrial Building for Rent in Hyderabad</a></div></div><div class=""></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/commercial-properties-for-rent-in-delhi-delhi" rel="noopener noreferrer" target="_blank" title="Commercial Properties for Rent in Delhi NCR">Commercial Properties for Rent in Delhi NCR</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-warehouse-godown-in-delhi-delhi" rel="noopener noreferrer" target="_blank" title="Warehouse for Rent in Delhi">Warehouse for Rent in Delhi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-office-space-in-delhi-delhi" rel="noopener noreferrer" target="_blank" title="Office for Rent in Delhi">Office for Rent in Delhi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-coworking-space-in-delhi-delhi" rel="noopener noreferrer" target="_blank" title="Coworking Space for Rent in Delhi">Coworking Space for Rent in Delhi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-commercial-shops-in-delhi-delhi" rel="noopener noreferrer" target="_blank" title="Shops for Rent in Delhi">Shops for Rent in Delhi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-industrial-building-in-delhi-delhi" rel="noopener noreferrer" target="_blank" title="Industrial Building for Rent in Delhi">Industrial Building for Rent in Delhi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-commercial-showrooms-in-delhi-delhi" rel="noopener noreferrer" target="_blank" title="Showrooms Space for Rent in Delhi">Showrooms Space for Rent in Delhi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-industrial-shed-in-delhi-delhi" rel="noopener noreferrer" target="_blank" title="Industrial Sheds for Rent in Delhi">Industrial Sheds for Rent in Delhi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-commercial-shops-in-noida-noida" rel="noopener noreferrer" target="_blank" title="Shops for Rent in Noida">Shops for Rent in Noida</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-office-space-in-noida-noida" rel="noopener noreferrer" target="_blank" title="Office for Rent in Noida">Office for Rent in Noida</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-commercial-shops-in-greater-noida" rel="noopener noreferrer" target="_blank" title="Shops for Rent in Greater Noida">Shops for Rent in Greater Noida</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-office-space-in-greater-noida" rel="noopener noreferrer" target="_blank" title="Office for Rent in Greater Noida">Office for Rent in Greater Noida</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-commercial-shops-in-faridabad-faridabad" rel="noopener noreferrer" target="_blank" title="Shops for Rent in Faridabad">Shops for Rent in Faridabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-office-space-in-faridabad-faridabad" rel="noopener noreferrer" target="_blank" title="Office for Rent in Faridabad">Office for Rent in Faridabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-commercial-shops-in-faridabad-faridabad" rel="noopener noreferrer" target="_blank" title="Shops for Rent in Ghaziabad">Shops for Rent in Ghaziabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/rent-office-space-in-ghaziabad-ghaziabad" rel="noopener noreferrer" target="_blank" title="Office for Rent in Ghaziabad">Office for Rent in Ghaziabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/commercial-properties-for-rent-in-noida-noida" rel="noopener noreferrer" target="_blank" title="Commercial Properties For Rent In Noida Noida">Commercial Properties For Rent In Noida Noida</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/commercial-properties-for-rent-in-ghaziabad-ghaziabad" rel="noopener noreferrer" target="_blank" title="Commercial Properties For Rent In Ghaziabad">Commercial Properties For Rent In Ghaziabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/commercial-properties-for-rent-in-faridabad-faridabad" rel="noopener noreferrer" target="_blank" title="Commercial Properties For Rent In Faridabad">Commercial Properties For Rent In Faridabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/commercial-properties-for-rent-in-greater-noida" rel="noopener noreferrer" target="_blank" title="Commercial Properties For Rent In Greater Noida">Commercial Properties For Rent In Greater Noida</a></div></div><div class=""></div><div class=""></div></div></div><div class="bg-white h-auto py-1p px-3 flex w-fit" id="content-7"><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/new-projects-in-bangalore" rel="noopener noreferrer" target="_blank" title="New Projects in Bangalore">New Projects in Bangalore</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-koramangala-bangalore" rel="noopener noreferrer" target="_blank" title="New Projects in Koramangala">New Projects in Koramangala</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-hsr-layout-bangalore" rel="noopener noreferrer" target="_blank" title="New Projects in HSR Layout">New Projects in HSR Layout</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-marathahalli-bangalore" rel="noopener noreferrer" target="_blank" title="New Projects in Marathahalli">New Projects in Marathahalli</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-indira-nagar-bangalore" rel="noopener noreferrer" target="_blank" title="New Projects in Indira Nagar">New Projects in Indira Nagar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-bellandur-bangalore" rel="noopener noreferrer" target="_blank" title="New Projects in Bellandur">New Projects in Bellandur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-chandra-layout-bangalore" rel="noopener noreferrer" target="_blank" title="New Projects in Chandra Layout">New Projects in Chandra Layout</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-j-p-nagar-bangalore" rel="noopener noreferrer" target="_blank" title="New Projects in J. P. Nagar">New Projects in J. P. Nagar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-btm-layout-bangalore" rel="noopener noreferrer" target="_blank" title="New Projects in BTM Layout">New Projects in BTM Layout</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-jayanagar-bangalore" rel="noopener noreferrer" target="_blank" title="New Projects in Jayanagar">New Projects in Jayanagar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-whitefield-bangalore" rel="noopener noreferrer" target="_blank" title="New Projects in Whitefield">New Projects in Whitefield</a></div></div><div><a class="font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/residential-land-plots-for-sale-in-bangalore_bangalore" rel="noopener noreferrer" target="_blank" title="Plots for Sale in Bangalore">Plots for Sale in Bangalore</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-sarjapur_bangalore" rel="noopener noreferrer" target="_blank" title="Plots For Sale In Sarjapur Road">Plots For Sale In Sarjapur Road</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-whitefield_main_road_bangalore" rel="noopener noreferrer" target="_blank" title="Plots For Sale In Whitefield">Plots For Sale In Whitefield</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-devanahalli_bangalore" rel="noopener noreferrer" target="_blank" title="Plots For Sale In Devanahalli">Plots For Sale In Devanahalli</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-north_bangalore_bangalore" rel="noopener noreferrer" target="_blank" title="Plots For Sale In Bangalore North">Plots For Sale In Bangalore North</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-electronic_city_bangalore" rel="noopener noreferrer" target="_blank" title="Plots For Sale In Electronic City">Plots For Sale In Electronic City</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-yelahanka_bangalore" rel="noopener noreferrer" target="_blank" title="Plots For Sale In Yelahanka">Plots For Sale In Yelahanka</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-hoskote_bangalore" rel="noopener noreferrer" target="_blank" title="Plots For Sale In Hoskote">Plots For Sale In Hoskote</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-varthur_bangalore" rel="noopener noreferrer" target="_blank" title="Plots For Sale In Varthur">Plots For Sale In Varthur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-south_bangalore_bangalore" rel="noopener noreferrer" target="_blank" title="Plots For Sale In Bangalore South">Plots For Sale In Bangalore South</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-j_p_nagar_bangalore" rel="noopener noreferrer" target="_blank" title="Plots For Sale In Jp Nagar">Plots For Sale In Jp Nagar</a></div></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/new-projects-in-mumbai" rel="noopener noreferrer" target="_blank" title="New Projects in Mumbai">New Projects in Mumbai</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-andheri-west-mumbai" rel="noopener noreferrer" target="_blank" title="New Projects in Andheri West">New Projects in Andheri West</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href=" /new-projects-in-malad-west-mumbai" rel="noopener noreferrer" target="_blank" title="New Projects in Malad West">New Projects in Malad West</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-andheri-east-mumbai" rel="noopener noreferrer" target="_blank" title="New Projects in Andheri East">New Projects in Andheri East</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-powai-mumbai" rel="noopener noreferrer" target="_blank" title="New Projects in Powai">New Projects in Powai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-thane-west-mumbai" rel="noopener noreferrer" target="_blank" title="New Projects in Thane West">New Projects in Thane West</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-dombivli-mumbai" rel="noopener noreferrer" target="_blank" title="New Projects in Dombivli">New Projects in Dombivli</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-mira-road-east-mumbai" rel="noopener noreferrer" target="_blank" title="New Projects in Mira Road East">New Projects in Mira Road East</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-kharghar-mumbai" rel="noopener noreferrer" target="_blank" title="New Projects in Kharghar">New Projects in Kharghar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-navi-mumbai-mumbai" rel="noopener noreferrer" target="_blank" title="New Projects in Navi Mumbai">New Projects in Navi Mumbai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-bandra-mumbai" rel="noopener noreferrer" target="_blank" title="New Projects in Bandra West">New Projects in Bandra West</a></div></div><div><a class="font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/residential-land-plots-for-sale-in-mumbai_mumbai" rel="noopener noreferrer" target="_blank" title="Plots for Sale in Mumbai">Plots for Sale in Mumbai</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-karjat_mumbai" rel="noopener noreferrer" target="_blank" title="Plots For Sale In Karjat">Plots For Sale In Karjat</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-navi_mumbai_mumbai" rel="noopener noreferrer" target="_blank" title="Plots For Sale In Navi Mumbai">Plots For Sale In Navi Mumbai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-panvel_mumbai" rel="noopener noreferrer" target="_blank" title="Plots For Sale In Panvel">Plots For Sale In Panvel</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-ulwe_mumbai" rel="noopener noreferrer" target="_blank" title="Plots For Sale In Ulwe">Plots For Sale In Ulwe</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-kharghar_mumbai" rel="noopener noreferrer" target="_blank" title="Plots For Sale In Kharghar">Plots For Sale In Kharghar</a></div></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/new-projects-in-chennai" rel="noopener noreferrer" target="_blank" title="New Projects in Chennai">New Projects in Chennai</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-velachery-chennai" rel="noopener noreferrer" target="_blank" title="New Projects in Velachery">New Projects in Velachery</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-madipakkam-chennai" rel="noopener noreferrer" target="_blank" title="New Projects in Madipakkam">New Projects in Madipakkam</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-chromepet-chennai" rel="noopener noreferrer" target="_blank" title="New Projects in Chromepet">New Projects in Chromepet</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-medavakkam-chennai" rel="noopener noreferrer" target="_blank" title="New Projects in Medavakkam">New Projects in Medavakkam</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-porur-chennai" rel="noopener noreferrer" target="_blank" title="New Projects in Porur">New Projects in Porur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-pallikaranai-chennai" rel="noopener noreferrer" target="_blank" title="New Projects in Pallikaranai">New Projects in Pallikaranai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-urapakkam-chennai" rel="noopener noreferrer" target="_blank" title="New Projects in Urapakkam">New Projects in Urapakkam</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-ambattur-chennai" rel="noopener noreferrer" target="_blank" title="New Projects in Ambattur">New Projects in Ambattur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-thoraipakkam-chennai" rel="noopener noreferrer" target="_blank" title=" New Projects in Okkiyam Thuraipakkam"> New Projects in Okkiyam Thuraipakkam</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-thiruvanmiyur-chennai" rel="noopener noreferrer" target="_blank" title="New Projects in Thiruvanmiyur">New Projects in Thiruvanmiyur</a></div></div><div><a class="font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/residential-land-plots-for-sale-in-chennai_chennai" rel="noopener noreferrer" target="_blank" title="Plots for Sale in Chennai">Plots for Sale in Chennai</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-madipakkam_chennai" rel="noopener noreferrer" target="_blank" title="Plots For Sale In Madipakkam">Plots For Sale In Madipakkam</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-medavakkam_chennai" rel="noopener noreferrer" target="_blank" title="Plots For Sale In Medavakkam">Plots For Sale In Medavakkam</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-avadi_chennai" rel="noopener noreferrer" target="_blank" title="Plots For Sale In Avadi">Plots For Sale In Avadi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-guduvancheri_chennai" rel="noopener noreferrer" target="_blank" title="Plots For Sale In Guduvanchery">Plots For Sale In Guduvanchery</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-kundrathur_chennai" rel="noopener noreferrer" target="_blank" title="Plots For Sale In Kundrathur">Plots For Sale In Kundrathur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-kelambakkam_chennai" rel="noopener noreferrer" target="_blank" title="Plots For Sale In Kelambakkam">Plots For Sale In Kelambakkam</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-ambattur_chennai" rel="noopener noreferrer" target="_blank" title="Plots For Sale In Ambattur">Plots For Sale In Ambattur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-madhavaram_chennai" rel="noopener noreferrer" target="_blank" title="Plots For Sale In Madhavaram">Plots For Sale In Madhavaram</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-madambakkam_chennai" rel="noopener noreferrer" target="_blank" title="Plots For Sale In Madambakkam">Plots For Sale In Madambakkam</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-mannivakkam_chennai" rel="noopener noreferrer" target="_blank" title="Plots For Sale In Mannivakkam">Plots For Sale In Mannivakkam</a></div></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/new-projects-in-pune" rel="noopener noreferrer" target="_blank" title="New Projects in Pune">New Projects in Pune</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-hadapsar-pune" rel="noopener noreferrer" target="_blank" title="New Projects in Hadapsar">New Projects in Hadapsar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-kharadi-pune" rel="noopener noreferrer" target="_blank" title="New Projects in Kharadi">New Projects in Kharadi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-baner-pune" rel="noopener noreferrer" target="_blank" title="New Projects in Baner">New Projects in Baner</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href=" /new-projects-in-kothrud-pune" rel="noopener noreferrer" target="_blank" title="New Projects in Kothrud">New Projects in Kothrud</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-wagholi-pune" rel="noopener noreferrer" target="_blank" title="New Projects in Wagholi">New Projects in Wagholi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-wakad-pune" rel="noopener noreferrer" target="_blank" title="New Projects in Wakad">New Projects in Wakad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-wadgaon-sheri-pune" rel="noopener noreferrer" target="_blank" title="New Projects in Wadgaon">New Projects in Wadgaon</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-ambegaon-budruk-pune" rel="noopener noreferrer" target="_blank" title="New Projects in Ambegaon Budruk">New Projects in Ambegaon Budruk</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-aundh-pune" rel="noopener noreferrer" target="_blank" title="New Projects in Aundh">New Projects in Aundh</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-pimple-saudagar-pune" rel="noopener noreferrer" target="_blank" title="New Projects in Pimple Saudagar">New Projects in Pimple Saudagar</a></div></div><div><a class="font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/residential-land-plots-for-sale-in-pune_pune" rel="noopener noreferrer" target="_blank" title="Plots for Sale in Pune">Plots for Sale in Pune</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-wagholi_pune" rel="noopener noreferrer" target="_blank" title="Plot For Sale In Wagholi">Plot For Sale In Wagholi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-ravet_pune" rel="noopener noreferrer" target="_blank" title="Plot For Sale In Ravet">Plot For Sale In Ravet</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-hinjewadi_pune" rel="noopener noreferrer" target="_blank" title="Plot For Sale In Hinjewadi">Plot For Sale In Hinjewadi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-baner_pune" rel="noopener noreferrer" target="_blank" title="Plot For Sale In Baner">Plot For Sale In Baner</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-kharadi_pune" rel="noopener noreferrer" target="_blank" title="Plot For Sale In Kharadi">Plot For Sale In Kharadi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-hadapsar_pune" rel="noopener noreferrer" target="_blank" title="Plot For Sale In Hadapsar">Plot For Sale In Hadapsar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-chakan_pune" rel="noopener noreferrer" target="_blank" title="Plot For Sale In Chakan">Plot For Sale In Chakan</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-lohegaon_pune" rel="noopener noreferrer" target="_blank" title="Plot For Sale In Lohegaon">Plot For Sale In Lohegaon</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-marunji_pune" rel="noopener noreferrer" target="_blank" title="Plot For Sale In Marunji">Plot For Sale In Marunji</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-pimpri_chinchwad_pune" rel="noopener noreferrer" target="_blank" title="Plot For Sale In Pimpri Chinchwad">Plot For Sale In Pimpri Chinchwad</a></div></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/new-projects-in-gurgaon" rel="noopener noreferrer" target="_blank" title="New Projects in Gurgaon">New Projects in Gurgaon</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href=" /new-projects-in-sushant-lok-gurgaon" rel="noopener noreferrer" target="_blank" title="New Projects in Sushant Lok Gurgaon">New Projects in Sushant Lok Gurgaon</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-sector-31-gurgaon" rel="noopener noreferrer" target="_blank" title="New Projects in Sector 31 Gurgaon">New Projects in Sector 31 Gurgaon</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-sector-49-gurgaon" rel="noopener noreferrer" target="_blank" title="New Projects in Sector 49 Gurgaon">New Projects in Sector 49 Gurgaon</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-sector-40-gurgaon" rel="noopener noreferrer" target="_blank" title="New Projects in Sector 40 Gurgaon">New Projects in Sector 40 Gurgaon</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-sector-45-gurgaon" rel="noopener noreferrer" target="_blank" title="New Projects in Sector 45 Gurgaon">New Projects in Sector 45 Gurgaon</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-sector-57-gurgaon" rel="noopener noreferrer" target="_blank" title="New Projects in Sector 57 Gurgaon">New Projects in Sector 57 Gurgaon</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-sector-23-gurgaon" rel="noopener noreferrer" target="_blank" title="New Projects in Sector 23 Gurgaon">New Projects in Sector 23 Gurgaon</a></div></div><div class=""></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/new-projects-in-hyderabad" rel="noopener noreferrer" target="_blank" title="New Projects in Hyderabad">New Projects in Hyderabad</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-hitech-city-hyderabad" rel="noopener noreferrer" target="_blank" title="New Projects in Hitech City">New Projects in Hitech City</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-miyapur-hyderabad" rel="noopener noreferrer" target="_blank" title="New Projects in Miyapur">New Projects in Miyapur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-kukatpally-hyderabad" rel="noopener noreferrer" target="_blank" title="New Projects in Kukatpally">New Projects in Kukatpally</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-toli-chowki-hyderabad" rel="noopener noreferrer" target="_blank" title="New Projects in Toli Chowki">New Projects in Toli Chowki</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-ameerpet-hyderabad" rel="noopener noreferrer" target="_blank" title="New Projects in Ameerpet">New Projects in Ameerpet</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-madhapur-hyderabad" rel="noopener noreferrer" target="_blank" title="New Projects in Madhapur">New Projects in Madhapur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-uppal-hyderabad" rel="noopener noreferrer" target="_blank" title="New Projects in Uppal">New Projects in Uppal</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-gachibowli-hyderabad" rel="noopener noreferrer" target="_blank" title="New Projects in Gachibowli">New Projects in Gachibowli</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-kondapur-hyderabad" rel="noopener noreferrer" target="_blank" title="New Projects in Kondapur">New Projects in Kondapur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-manikonda-hyderabad" rel="noopener noreferrer" target="_blank" title="New Projects in Manikonda">New Projects in Manikonda</a></div></div><div><a class="font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/residential-land-plots-for-sale-in-hyderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="Plots for Sale in Hyderabad">Plots for Sale in Hyderabad</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-kollur_hyderabad" rel="noopener noreferrer" target="_blank" title="Plots For Sale In Kollur">Plots For Sale In Kollur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-bachupally_north_hyderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="Plots For Sale In Bachupally">Plots For Sale In Bachupally</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-kondapur_hyderabad" rel="noopener noreferrer" target="_blank" title="Plots For Sale In Kondapur">Plots For Sale In Kondapur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-tellapur_hyderabad" rel="noopener noreferrer" target="_blank" title="Plots For Sale In Tellapur">Plots For Sale In Tellapur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-manikonda_hyderabad" rel="noopener noreferrer" target="_blank" title="Plots For Sale In Manikonda">Plots For Sale In Manikonda</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-nallagandla_hyderabad" rel="noopener noreferrer" target="_blank" title="Plots For Sale In Nallagandla">Plots For Sale In Nallagandla</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-beeramguda_hyderabad" rel="noopener noreferrer" target="_blank" title="Plots For Sale In Beeramguda">Plots For Sale In Beeramguda</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-gachibowli_hyderabad" rel="noopener noreferrer" target="_blank" title="Plots For Sale In Gachibowli">Plots For Sale In Gachibowli</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-kukatpally_hyderabad" rel="noopener noreferrer" target="_blank" title="Plots For Sale In Kukatpally">Plots For Sale In Kukatpally</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-narsingi_hyderabad" rel="noopener noreferrer" target="_blank" title="Plots For Sale In Narsingi">Plots For Sale In Narsingi</a></div></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/new-projects-in-noida" rel="noopener noreferrer" target="_blank" title="New Projects in Noida">New Projects in Noida</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-sector-88-greater-noida" rel="noopener noreferrer" target="_blank" title="New Projects in Sector 88">New Projects in Sector 88</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-sector-18-greater-noida" rel="noopener noreferrer" target="_blank" title="New Projects in Sector 18">New Projects in Sector 18</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-noida-extension-greater-noida" rel="noopener noreferrer" target="_blank" title="New Projects in Noida Extension">New Projects in Noida Extension</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-sector-150-noida" rel="noopener noreferrer" target="_blank" title="New Projects in Sector 150 Noida">New Projects in Sector 150 Noida</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-sector-79-noida" rel="noopener noreferrer" target="_blank" title="New Projects in Sector 79 Noida">New Projects in Sector 79 Noida</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/new-projects-in-sector-137-noida" rel="noopener noreferrer" target="_blank" title="New Projects in Sector 137 Noida">New Projects in Sector 137 Noida</a></div></div><div><a class="font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/residential-land-plots-for-sale-in-noida-noida" rel="noopener noreferrer" target="_blank" title="Plots for Sale in Noida">Plots for Sale in Noida</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-noida-extension-greater-noida" rel="noopener noreferrer" target="_blank" title="Plots For Sale In Noida Extension">Plots For Sale In Noida Extension</a></div></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/residential-land-plots-for-sale-in-ghaziabad-ghaziabad" rel="noopener noreferrer" target="_blank" title="Plots for Sale in Ghaziabad">Plots for Sale in Ghaziabad</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-vasundhara-ghaziabad" rel="noopener noreferrer" target="_blank" title="Plots For Sale In Vasundhara">Plots For Sale In Vasundhara</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-indirapuram-ghaziabad" rel="noopener noreferrer" target="_blank" title="Plots For Sale In Indirapuram">Plots For Sale In Indirapuram</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-wave-city-ghaziabad" rel="noopener noreferrer" target="_blank" title="Plots For Sale In Wave City">Plots For Sale In Wave City</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-hapur-road-nehru-nagar-ghaziabad" rel="noopener noreferrer" target="_blank" title="Plots For Sale In Nehru Nagar">Plots For Sale In Nehru Nagar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-raj-nagar-extension-ghaziabad" rel="noopener noreferrer" target="_blank" title="Plots For Sale In Raj Nagar Extension">Plots For Sale In Raj Nagar Extension</a></div></div><div class=""></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="/residential-land-plots-for-sale-in-delhi-delhi" rel="noopener noreferrer" target="_blank" title="Plots for Sale in Delhi &amp; NCR">Plots for Sale in Delhi &amp; NCR</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-sector-34-rohini-delhi" rel="noopener noreferrer" target="_blank" title="Plots For Sale In Rohini Sector 34">Plots For Sale In Rohini Sector 34</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-sector-24-rohini-delhi" rel="noopener noreferrer" target="_blank" title="Plots For Sale In Rohini Sector 24">Plots For Sale In Rohini Sector 24</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-kalkaji-delhi" rel="noopener noreferrer" target="_blank" title="Plots For Sale In Kalkaji">Plots For Sale In Kalkaji</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-pitampura-delhi" rel="noopener noreferrer" target="_blank" title="Plots For Sale In Pitampura">Plots For Sale In Pitampura</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-faridabad-faridabad" rel="noopener noreferrer" target="_blank" title="Plots For Sale In Faridabad">Plots For Sale In Faridabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-palam-vihar-faridabad" rel="noopener noreferrer" target="_blank" title="Plots For Sale In Palam Vihar">Plots For Sale In Palam Vihar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/residential-land-plots-for-sale-in-dlf-phase-2-faridabad" rel="noopener noreferrer" target="_blank" title="Plots For Sale In Dlf Phase 2">Plots For Sale In Dlf Phase 2</a></div></div><div class=""></div><div class=""></div></div></div><div class="bg-white h-auto py-1p px-3 flex w-fit" id="content-8"><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="https://www.nobroker.in/real-estate-in-bangalore/" rel="noopener noreferrer" target="_blank" title="Real Estate in Bangalore">Real Estate in Bangalore</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-bangalore-bangalore" rel="noopener noreferrer" target="_blank" title="House For Sale In Bangalore">House For Sale In Bangalore</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-hosur-bangalore" rel="noopener noreferrer" target="_blank" title="House For Sale In Hosur">House For Sale In Hosur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-yelahanka-new-town-bangalore" rel="noopener noreferrer" target="_blank" title="House For Sale In Yelahanka New Town">House For Sale In Yelahanka New Town</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-electronic-city-bangalore" rel="noopener noreferrer" target="_blank" title="House For Sale In Electronic City">House For Sale In Electronic City</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-koramangala-bangalore" rel="noopener noreferrer" target="_blank" title="House For Sale In Koramangala">House For Sale In Koramangala</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-whitefield-bangalore" rel="noopener noreferrer" target="_blank" title="House For Sale In Whitefield">House For Sale In Whitefield</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-rajajinagar-bangalore" rel="noopener noreferrer" target="_blank" title="House For Sale In Rajajinagar">House For Sale In Rajajinagar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-k-r-puram-bangalore" rel="noopener noreferrer" target="_blank" title="House For Sale In K R Puram">House For Sale In K R Puram</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-indira-nagar-bangalore" rel="noopener noreferrer" target="_blank" title="House For Sale In Indira Nagar">House For Sale In Indira Nagar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-bannerghatta-road-bangalore" rel="noopener noreferrer" target="_blank" title="House For Sale In Bannerghatta Road">House For Sale In Bannerghatta Road</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-bellandur-bangalore" rel="noopener noreferrer" target="_blank" title="House For Sale In Bellandur">House For Sale In Bellandur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-bangalore_bangalore" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Bangalore">Villas For Sale In Bangalore</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-sarjapur_bangalore" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Sarjapur">Villas For Sale In Sarjapur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-whitefield_bangalore" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Whitefield">Villas For Sale In Whitefield</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-electronic_city_bangalore" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Electronic City">Villas For Sale In Electronic City</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-north_bangalore_bangalore" rel="noopener noreferrer" target="_blank" title="Villas For Sale In North">Villas For Sale In North</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-devanahalli_bangalore" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Devanahalli">Villas For Sale In Devanahalli</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-varthur_bangalore" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Varthur">Villas For Sale In Varthur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-south_bangalore_bangalore" rel="noopener noreferrer" target="_blank" title="Villas For Sale In South">Villas For Sale In South</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-bannerghatta_road_bangalore" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Bannerghatta Road">Villas For Sale In Bannerghatta Road</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-hosur_bangalore" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Hosur">Villas For Sale In Hosur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-chandapura_bangalore" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Chandapura">Villas For Sale In Chandapura</a></div></div><div class=""></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="https://www.nobroker.in/real-estate-in-mumbai/" rel="noopener noreferrer" target="_blank" title="Real Estate in Mumbai">Real Estate in Mumbai</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-mumbai-mumbai" rel="noopener noreferrer" target="_blank" title="House For Sale In Mumbai">House For Sale In Mumbai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-bandra-mumbai" rel="noopener noreferrer" target="_blank" title="House For Sale In Bandra">House For Sale In Bandra</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-panvel-mumbai" rel="noopener noreferrer" target="_blank" title="House For Sale In Panvel">House For Sale In Panvel</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-navi-mumbai-mumbai" rel="noopener noreferrer" target="_blank" title="House For Sale In Navi Mumbai">House For Sale In Navi Mumbai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-vashi-mumbai" rel="noopener noreferrer" target="_blank" title="House For Sale In Vashi">House For Sale In Vashi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-kalyan-mumbai" rel="noopener noreferrer" target="_blank" title="House For Sale In Kalyan">House For Sale In Kalyan</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-kharghar-mumbai" rel="noopener noreferrer" target="_blank" title="House For Sale In Kharghar">House For Sale In Kharghar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-vasai-mumbai" rel="noopener noreferrer" target="_blank" title="House For Sale In Vasai">House For Sale In Vasai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-ghansoli-mumbai" rel="noopener noreferrer" target="_blank" title="House For Sale In Ghansoli">House For Sale In Ghansoli</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-lower-parel-mumbai" rel="noopener noreferrer" target="_blank" title="House For Sale In Lower Parel">House For Sale In Lower Parel</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-thane-mumbai" rel="noopener noreferrer" target="_blank" title="House For Sale In Thane">House For Sale In Thane</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-mumbai-mumbai" rel="noopener noreferrer" target="_blank" title="House For Sale In Mumbai">House For Sale In Mumbai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-virar_mumbai" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Virar">Villas For Sale In Virar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-vasai_mumbai" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Vasai">Villas For Sale In Vasai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-panvel_mumbai" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Panvel">Villas For Sale In Panvel</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-gorai_mumbai" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Gorai">Villas For Sale In Gorai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-manori_mumbai" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Manori">Villas For Sale In Manori</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-navi_mumbai_mumbai" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Navi">Villas For Sale In Navi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-karjat_mumbai" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Karjat">Villas For Sale In Karjat</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-kharghar_mumbai" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Kharghar">Villas For Sale In Kharghar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-mira_road_east_mumbai" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Mira Road East">Villas For Sale In Mira Road East</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-mira_bhayandar_mumbai" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Mira Bhayandar">Villas For Sale In Mira Bhayandar</a></div></div><div class=""></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="https://www.nobroker.in/real-estate-in-chennai/" rel="noopener noreferrer" target="_blank" title="Real Estate in Chennai">Real Estate in Chennai</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-chennai-chennai" rel="noopener noreferrer" target="_blank" title="House For Sale In Chennai">House For Sale In Chennai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-madhavaram-chennai" rel="noopener noreferrer" target="_blank" title="House For Sale In Madhavaram">House For Sale In Madhavaram</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-kolathur-chennai" rel="noopener noreferrer" target="_blank" title="House For Sale In Kolathur">House For Sale In Kolathur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-medavakkam-chennai" rel="noopener noreferrer" target="_blank" title="House For Sale In Medavakkam">House For Sale In Medavakkam</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-velachery-chennai" rel="noopener noreferrer" target="_blank" title="House For Sale In Velachery">House For Sale In Velachery</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-porur-chennai" rel="noopener noreferrer" target="_blank" title="House For Sale In Porur">House For Sale In Porur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-valasaravakkam-chennai" rel="noopener noreferrer" target="_blank" title="House For Sale In Valasaravakkam">House For Sale In Valasaravakkam</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-madhavaram-chennai" rel="noopener noreferrer" target="_blank" title="House For Sale In Madhavaram">House For Sale In Madhavaram</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-tiruvottiyur-chennai" rel="noopener noreferrer" target="_blank" title="House For Sale In Tiruvottiyur">House For Sale In Tiruvottiyur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-mangadu-chennai" rel="noopener noreferrer" target="_blank" title="House For Sale In Mangadu">House For Sale In Mangadu</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-adyar-chennai" rel="noopener noreferrer" target="_blank" title="House For Sale In Adyar">House For Sale In Adyar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-chennai_chennai" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Chennai">Villas For Sale In Chennai</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-sholinganallur_chennai" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Sholinganallur">Villas For Sale In Sholinganallur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-medavakkam_chennai" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Medavakkam">Villas For Sale In Medavakkam</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-navalur_chennai" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Navalur">Villas For Sale In Navalur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-perumbakkam_chennai" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Perumbakkam">Villas For Sale In Perumbakkam</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-guduvancheri_chennai" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Guduvancheri">Villas For Sale In Guduvancheri</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-kelambakkam_chennai" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Kelambakkam">Villas For Sale In Kelambakkam</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-avadi_chennai" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Avadi">Villas For Sale In Avadi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-tambaram_chennai" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Tambaram">Villas For Sale In Tambaram</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-perungudi_chennai" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Perungudi">Villas For Sale In Perungudi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-poonamallee_chennai" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Poonamallee">Villas For Sale In Poonamallee</a></div></div><div class=""></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="https://www.nobroker.in/real-estate-in-hyderabad/" rel="noopener noreferrer" target="_blank" title="Real Estate in Hyderabad">Real Estate in Hyderabad</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-hyderabad-hyderabad" rel="noopener noreferrer" target="_blank" title="House For Sale In Hyderabad">House For Sale In Hyderabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-lb-nagar-hyderabad" rel="noopener noreferrer" target="_blank" title="House For Sale In Lb Nagar">House For Sale In Lb Nagar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-kondapur-hyderabad" rel="noopener noreferrer" target="_blank" title="House For Sale In Kondapur">House For Sale In Kondapur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-manikonda-hyderabad" rel="noopener noreferrer" target="_blank" title="House For Sale In Manikonda">House For Sale In Manikonda</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-hayathnagar-hyderabad" rel="noopener noreferrer" target="_blank" title="House For Sale In Hayathnagar">House For Sale In Hayathnagar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-mehdipatnam-hyderabad" rel="noopener noreferrer" target="_blank" title="House For Sale In Mehdipatnam">House For Sale In Mehdipatnam</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-shamshabad-hyderabad" rel="noopener noreferrer" target="_blank" title="House For Sale In Shamshabad">House For Sale In Shamshabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-beeramguda-hyderabad" rel="noopener noreferrer" target="_blank" title="House For Sale In Beeramguda">House For Sale In Beeramguda</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-pragathi-nagar-hyderabad" rel="noopener noreferrer" target="_blank" title="House For Sale In Pragathi Nagar">House For Sale In Pragathi Nagar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-sainikpuri-hyderabad" rel="noopener noreferrer" target="_blank" title="House For Sale In Sainikpuri">House For Sale In Sainikpuri</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-gachibowli-hyderabad" rel="noopener noreferrer" target="_blank" title="House For Sale In Gachibowli">House For Sale In Gachibowli</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-hyderabad_hyderabad" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Hyderabad">Villas For Sale In Hyderabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-tellapur_hyderabad" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Tellapur">Villas For Sale In Tellapur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-kompally_hyderabad" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Kompally">Villas For Sale In Kompally</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-kollur_hyderabad" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Kollur">Villas For Sale In Kollur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-patancheru_hyderabad" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Patancheru">Villas For Sale In Patancheru</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-bachupally_hyderabad" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Bachupally">Villas For Sale In Bachupally</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-nizampet_hyderabad" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Nizampet">Villas For Sale In Nizampet</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-beeramguda_hyderabad" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Beeramguda">Villas For Sale In Beeramguda</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-medchal_hyderabad" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Medchal">Villas For Sale In Medchal</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-gachibowli_hyderabad" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Gachibowli">Villas For Sale In Gachibowli</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-kokapet_hyderabad" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Kokapet">Villas For Sale In Kokapet</a></div></div><div class=""></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="https://www.nobroker.in/real-estate-in-pune/" rel="noopener noreferrer" target="_blank" title="Real Estate in Pune">Real Estate in Pune</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-pune-pune" rel="noopener noreferrer" target="_blank" title="House For Sale In Pune">House For Sale In Pune</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-wagholi-pune" rel="noopener noreferrer" target="_blank" title="House For Sale In Wagholi">House For Sale In Wagholi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-lohegaon-pune" rel="noopener noreferrer" target="_blank" title="House For Sale In Lohegaon">House For Sale In Lohegaon</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-kharadi-pune" rel="noopener noreferrer" target="_blank" title="House For Sale In Kharadi">House For Sale In Kharadi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-baner-pune" rel="noopener noreferrer" target="_blank" title="House For Sale In Baner">House For Sale In Baner</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-hinjewadi-pune" rel="noopener noreferrer" target="_blank" title="House For Sale In Hinjewadi">House For Sale In Hinjewadi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-talegaon-dabhade-pune" rel="noopener noreferrer" target="_blank" title="House For Sale In Talegaon Dabhade">House For Sale In Talegaon Dabhade</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-moshi-pune" rel="noopener noreferrer" target="_blank" title="House For Sale In Moshi">House For Sale In Moshi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-wakad-pune" rel="noopener noreferrer" target="_blank" title="House For Sale In Wakad">House For Sale In Wakad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-dhanori-pune" rel="noopener noreferrer" target="_blank" title="House For Sale In Dhanori">House For Sale In Dhanori</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-aundh-pune" rel="noopener noreferrer" target="_blank" title="House For Sale In Aundh">House For Sale In Aundh</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-pune_pune" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Pune">Villas For Sale In Pune</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-dhanori_pune" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Dhanori">Villas For Sale In Dhanori</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-baner_pune" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Baner">Villas For Sale In Baner</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-kharadi_pune" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Kharadi">Villas For Sale In Kharadi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-wagholi_pune" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Wagholi">Villas For Sale In Wagholi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-hinjewadi_pune" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Hinjewadi">Villas For Sale In Hinjewadi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-hadapsar_pune" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Hadapsar">Villas For Sale In Hadapsar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-lohegaon_pune" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Lohegaon">Villas For Sale In Lohegaon</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-undri_pune" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Undri">Villas For Sale In Undri</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-kondhwa_pune" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Kondhwa">Villas For Sale In Kondhwa</a></div></div><div class=""></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="https://www.nobroker.in/real-estate-in-gurgaon/" rel="noopener noreferrer" target="_blank" title="Real Estate in Gurgaon">Real Estate in Gurgaon</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-gurgaon-gurgaon" rel="noopener noreferrer" target="_blank" title="House For Sale In Gurgaon">House For Sale In Gurgaon</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-sector-14-gurgaon" rel="noopener noreferrer" target="_blank" title="House For Sale In Sector 14">House For Sale In Sector 14</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-sector-48-gurgaon" rel="noopener noreferrer" target="_blank" title="House For Sale In Sector 48">House For Sale In Sector 48</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-sector-10-gurgaon" rel="noopener noreferrer" target="_blank" title="House For Sale In Sector 10">House For Sale In Sector 10</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-sector-36-gurgaon" rel="noopener noreferrer" target="_blank" title="House For Sale In Sector 36">House For Sale In Sector 36</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-sector-93-gurgaon" rel="noopener noreferrer" target="_blank" title="House For Sale In Sector 93">House For Sale In Sector 93</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-sector-10a-gurgaon" rel="noopener noreferrer" target="_blank" title="House For Sale In Sector 10A">House For Sale In Sector 10A</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-sector-23-gurgaon" rel="noopener noreferrer" target="_blank" title="House For Sale In Sector 23">House For Sale In Sector 23</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-sector-50-gurgaon" rel="noopener noreferrer" target="_blank" title="House For Sale In Sector 50">House For Sale In Sector 50</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-sector-67-gurgaon" rel="noopener noreferrer" target="_blank" title="House For Sale In Sector 67">House For Sale In Sector 67</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-sohna-road-gurgaon" rel="noopener noreferrer" target="_blank" title="House For Sale In Sohna Road">House For Sale In Sohna Road</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-gurgaon-gurgaon" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Gurgaon">Villas For Sale In Gurgaon</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-palam_vihar_gurgaon" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Palam Vihar">Villas For Sale In Palam Vihar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-krishna_colony_gurgaon" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Krishna Colony">Villas For Sale In Krishna Colony</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-garhi_harsaru_gurgaon" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Garhi Harsaru">Villas For Sale In Garhi Harsaru</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-laxman_vihar_sector_3a_gurgaon" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Laxman Vihar Sector 3A">Villas For Sale In Laxman Vihar Sector 3A</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-ashok_vihar_phase_iii_extension_gurgaon" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Ashok Vihar Phase Iii Extension">Villas For Sale In Ashok Vihar Phase Iii Extension</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-manohar_nagar_gurgaon" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Manohar Nagar">Villas For Sale In Manohar Nagar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-rajendra_park_sector_105_gurgaon" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Rajendra Park Sector 105">Villas For Sale In Rajendra Park Sector 105</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-basai_village_gurgaon" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Basai Village">Villas For Sale In Basai Village</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-dhanwapur_dhanwanpur_village_sector_104_gurgaon" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Dhanwapur Dhanwanpur Village Sector 104">Villas For Sale In Dhanwapur Dhanwanpur Village Sector 104</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-sector_15_gurgaon" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Sector 15">Villas For Sale In Sector 15</a></div></div><div class=""></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="https://www.nobroker.in/real-estate-in-noida/" rel="noopener noreferrer" target="_blank" title="Real Estate in Noida">Real Estate in Noida</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-noida-noida" rel="noopener noreferrer" target="_blank" title="House For Sale In Noida">House For Sale In Noida</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-sector-12-noida" rel="noopener noreferrer" target="_blank" title="House For Sale In Sector 12">House For Sale In Sector 12</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-sector-135-noida" rel="noopener noreferrer" target="_blank" title="House For Sale In Sector 135">House For Sale In Sector 135</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-sector-50-noida" rel="noopener noreferrer" target="_blank" title="House For Sale In Sector 50">House For Sale In Sector 50</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-sector-81-noida" rel="noopener noreferrer" target="_blank" title="House For Sale In Sector 81">House For Sale In Sector 81</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-dadri-noida" rel="noopener noreferrer" target="_blank" title="House For Sale In Dadri">House For Sale In Dadri</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-noida-extension-greater-noida" rel="noopener noreferrer" target="_blank" title="House For Sale In Extension">House For Sale In Extension</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-jalpura-noida-extension-greater-noida" rel="noopener noreferrer" target="_blank" title="House For Sale In Jalpura Extension">House For Sale In Jalpura Extension</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-kulesara-greater-noida" rel="noopener noreferrer" target="_blank" title="House For Sale In Kulesara">House For Sale In Kulesara</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-knowledge-park-4-greater-noida" rel="noopener noreferrer" target="_blank" title="House For Sale In Knowledge Park 4">House For Sale In Knowledge Park 4</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-sector-1-greater-noida-west-noida-extension-greater-noida" rel="noopener noreferrer" target="_blank" title="House For Sale In Sector 1 West Extension">House For Sale In Sector 1 West Extension</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-noida-noida" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Noida">Villas For Sale In Noida</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-biharipur-village-noida" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Biharipur Village">Villas For Sale In Biharipur Village</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-abhay-khand-noida" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Abhay Khand">Villas For Sale In Abhay Khand</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-khora-colony-sector-62a-noida" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Khora Colony Sector 62A">Villas For Sale In Khora Colony Sector 62A</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-sector-81-noida" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Sector 81">Villas For Sale In Sector 81</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-sector-112-noida" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Sector 112">Villas For Sale In Sector 112</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-zeta-i-greater-noida" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Zeta I">Villas For Sale In Zeta I</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-ibadullapur-urf-badalpur-noida" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Ibadullapur Urf Badalpur">Villas For Sale In Ibadullapur Urf Badalpur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-mayur-vihar-phase-3-noida" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Mayur Vihar Phase 3">Villas For Sale In Mayur Vihar Phase 3</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-sector-47-noida" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Sector 47">Villas For Sale In Sector 47</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-sector-150-noida" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Sector 150">Villas For Sale In Sector 150</a></div></div><div class=""></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="https://www.nobroker.in/real-estate-in-delhi/" rel="noopener noreferrer" target="_blank" title="Real Estate in Delhi">Real Estate in Delhi</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-chattarpur-chhattarpur-delhi" rel="noopener noreferrer" target="_blank" title="House For Sale In Chattarpur Chhattarpur">House For Sale In Chattarpur Chhattarpur</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-dwarka-sector-3-dwarka-new-delhi" rel="noopener noreferrer" target="_blank" title="House For Sale In Dwarka Sector 3 Dwarka New">House For Sale In Dwarka Sector 3 Dwarka New</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-uttam-nagar-new-delhi" rel="noopener noreferrer" target="_blank" title="House For Sale In Uttam Nagar New">House For Sale In Uttam Nagar New</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-janakpuri-delhi" rel="noopener noreferrer" target="_blank" title="House For Sale In Janakpuri">House For Sale In Janakpuri</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-greater-kailash-delhi" rel="noopener noreferrer" target="_blank" title="House For Sale In Greater Kailash">House For Sale In Greater Kailash</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-rohini-new-delhi" rel="noopener noreferrer" target="_blank" title="House For Sale In Rohini New">House For Sale In Rohini New</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-vasant-kunj-delhi" rel="noopener noreferrer" target="_blank" title="House For Sale In Vasant Kunj">House For Sale In Vasant Kunj</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-saket-block-mandawali-delhi" rel="noopener noreferrer" target="_blank" title="House For Sale In Saket Block Mandawali">House For Sale In Saket Block Mandawali</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-sultanpuri-delhi" rel="noopener noreferrer" target="_blank" title="House For Sale In Sultanpuri">House For Sale In Sultanpuri</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-mayur-vihar-delhi" rel="noopener noreferrer" target="_blank" title="House For Sale In Mayur Vihar">House For Sale In Mayur Vihar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-delhi-delhi" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Delhi">Villas For Sale In Delhi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-nangloi-delhi" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Nangloi">Villas For Sale In Nangloi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-paschim-vihar-delhi" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Paschim Vihar">Villas For Sale In Paschim Vihar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-sainik-farm-delhi" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Sainik Farm">Villas For Sale In Sainik Farm</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-raja-garden-delhi" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Raja Garden">Villas For Sale In Raja Garden</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-burari-delhi" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Burari">Villas For Sale In Burari</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-gujranwala-town-delhi" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Gujranwala Town">Villas For Sale In Gujranwala Town</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-mandi-house-delhi" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Mandi House">Villas For Sale In Mandi House</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-sultanpuri-delhi" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Sultanpuri">Villas For Sale In Sultanpuri</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-najafgarh-delhi" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Najafgarh">Villas For Sale In Najafgarh</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-sitapuri-delhi" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Sitapuri">Villas For Sale In Sitapuri</a></div></div><div class=""></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="https://www.nobroker.in/real-estate-in-faridabad/" rel="noopener noreferrer" target="_blank" title="Real Estate in Faridabad">Real Estate in Faridabad</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-sector-30-faridabad" rel="noopener noreferrer" target="_blank" title="House For Sale In Sector 30">House For Sale In Sector 30</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-sector-39-faridabad" rel="noopener noreferrer" target="_blank" title="House For Sale In Sector 39">House For Sale In Sector 39</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-sector-22-faridabad" rel="noopener noreferrer" target="_blank" title="House For Sale In Sector 22">House For Sale In Sector 22</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-sector-88-faridabad" rel="noopener noreferrer" target="_blank" title="House For Sale In Sector 88">House For Sale In Sector 88</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-sector-37-faridabad" rel="noopener noreferrer" target="_blank" title="House For Sale In Sector 37">House For Sale In Sector 37</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-sector-14-faridabad" rel="noopener noreferrer" target="_blank" title="House For Sale In Sector 14">House For Sale In Sector 14</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-sector-21c-faridabad" rel="noopener noreferrer" target="_blank" title="House For Sale In Sector 21C">House For Sale In Sector 21C</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-sector-31-faridabad" rel="noopener noreferrer" target="_blank" title="House For Sale In Sector 31">House For Sale In Sector 31</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-sector-16a-faridabad" rel="noopener noreferrer" target="_blank" title="House For Sale In Sector 16A">House For Sale In Sector 16A</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-sector-21d-faridabad" rel="noopener noreferrer" target="_blank" title="House For Sale In Sector 21D">House For Sale In Sector 21D</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-jawahar-colony-faridabad" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Jawahar Colony">Villas For Sale In Jawahar Colony</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-ismailpur-extension-faridabad" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Ismailpur Extension">Villas For Sale In Ismailpur Extension</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-sainik-colony-sector-49-faridabad" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Sainik Colony Sector 49">Villas For Sale In Sainik Colony Sector 49</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-dabua-colony-sector-50-faridabad" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Dabua Colony Sector 50">Villas For Sale In Dabua Colony Sector 50</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-sector-55-faridabad" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Sector 55">Villas For Sale In Sector 55</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-sector-23-faridabad" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Sector 23">Villas For Sale In Sector 23</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-sector-46-faridabad" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Sector 46">Villas For Sale In Sector 46</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-sector-7-faridabad" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Sector 7">Villas For Sale In Sector 7</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-harkesh-colony-faridabad" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Harkesh Colony">Villas For Sale In Harkesh Colony</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-ballabhgarh-faridabad" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Ballabhgarh">Villas For Sale In Ballabhgarh</a></div></div><div class=""></div><div class=""></div></div><div class="p-3p w-20vw"><div><a class="heading-6 font-semi-bold cursor-pointer text-defaultcolor mb-1p inline-block no-underline" href="https://www.nobroker.in/real-estate-in-ghaziabad/" rel="noopener noreferrer" target="_blank" title="Real Estate in Ghaziabad">Real Estate in Ghaziabad</a></div><div class=""><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-ghaziabad-ghaziabad" rel="noopener noreferrer" target="_blank" title="House For Sale In Ghaziabad">House For Sale In Ghaziabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-indirapuram-ghaziabad" rel="noopener noreferrer" target="_blank" title="House For Sale In Indirapuram">House For Sale In Indirapuram</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-vasundhara-ghaziabad" rel="noopener noreferrer" target="_blank" title="House For Sale In Vasundhara">House For Sale In Vasundhara</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-shastri-nagar-ghaziabad" rel="noopener noreferrer" target="_blank" title="House For Sale In Shastri Nagar">House For Sale In Shastri Nagar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-govindpuram-ghaziabad" rel="noopener noreferrer" target="_blank" title="House For Sale In Govindpuram">House For Sale In Govindpuram</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-kavi-nagar-ghaziabad" rel="noopener noreferrer" target="_blank" title="House For Sale In Kavi Nagar">House For Sale In Kavi Nagar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-rajendra-nagar-ghaziabad" rel="noopener noreferrer" target="_blank" title="House For Sale In Rajendra Nagar">House For Sale In Rajendra Nagar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-raj-nagar-ghaziabad" rel="noopener noreferrer" target="_blank" title="House For Sale In Raj Nagar">House For Sale In Raj Nagar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-vaishali-ghaziabad" rel="noopener noreferrer" target="_blank" title="House For Sale In Vaishali">House For Sale In Vaishali</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-abhay-khand-noida" rel="noopener noreferrer" target="_blank" title="House For Sale In Abhay Khand Noida">House For Sale In Abhay Khand Noida</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/independent-house-for-sale-in-kaushambi-ghaziabad" rel="noopener noreferrer" target="_blank" title="House For Sale In Kaushambi">House For Sale In Kaushambi</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-ghaziabad-ghaziabad" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Ghaziabad">Villas For Sale In Ghaziabad</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-raj-nagar-extension-ghaziabad" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Raj Nagar Extension">Villas For Sale In Raj Nagar Extension</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-indirapuram-ghaziabad" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Indirapuram">Villas For Sale In Indirapuram</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-mandoli-ghaziabad" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Mandoli">Villas For Sale In Mandoli</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-chipiyana-buzurg-ghaziabad" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Chipiyana Buzurg">Villas For Sale In Chipiyana Buzurg</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-naya-ganj-ghaziabad" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Naya Ganj">Villas For Sale In Naya Ganj</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-loni-dehat-ghaziabad" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Loni Dehat">Villas For Sale In Loni Dehat</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-raj-nagar-ghaziabad" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Raj Nagar">Villas For Sale In Raj Nagar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-wave-city-ghaziabad" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Wave City">Villas For Sale In Wave City</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-christian-nagar-ghaziabad" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Christian Nagar">Villas For Sale In Christian Nagar</a></div><div><a class="no-underline cursor-pointer text-grayDark mr-1p mb-0.5p text-12 inline-block" href="/villas-for-sale-in-chiranjiv-vihar-ghaziabad" rel="noopener noreferrer" target="_blank" title="Villas For Sale In Chiranjiv Vihar">Villas For Sale In Chiranjiv Vihar</a></div></div><div class=""></div><div class=""></div></div></div></div></div></div><div class="px-4p py-3p po:p-5" style="border-top:1px solid #4646463d"><div class="font-semibold text-22 pb-5 po:text-18">NoBroker services</div><div class="flex justify-between po:block"><div class="w-48pe po:w-full"><div class="heading-6 mb-1.5p">Buy</div><div class="flex flex-wrap"><a aria-label="property-legal-service" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/legal-services" rel="noopener" style="background-color:#e8e8e8" target="_blank">Property Legal Services</a><a aria-label="interiors" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/interiors/" rel="noopener" style="background-color:#e8e8e8" target="_blank">Interiors</a><a aria-label="sale-agreement" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/sales-agreement" rel="noopener" style="background-color:#e8e8e8" target="_blank">Sale Agreement</a><a aria-label="nri" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/prophub/nris/properties-in-india/" rel="noopener" style="background-color:#e8e8e8" target="_blank">NoBroker For NRI's</a><a aria-label="new-builder-project" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/builder-list?action=builderCitySelect" rel="noopener" style="background-color:#e8e8e8" target="_blank">New Builder Project</a><a aria-label="emi-calc" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/home-loan/home-loan-eligibility-calculator-insights/" rel="noopener" style="background-color:#e8e8e8" target="_blank">Home Loan EMI Calculator</a><a aria-label="home-loan-balance-transfer" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/home-loan/balance-transfer/" rel="noopener" style="background-color:#e8e8e8" target="_blank">Home Loan Balance Transfer</a><a aria-label="home-loan-eligibility-check" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/home-loan/home-loan-eligibility-calculator-insights/" rel="noopener" style="background-color:#e8e8e8" target="_blank">Home Loan Eligibility Calculator</a><a aria-label="home-loan-apply" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/home-loan/" rel="noopener" style="background-color:#e8e8e8" target="_blank">Apply Home Loan</a><a aria-label="home-loan-preapproved" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/home-loan/compare-interest-rates" rel="noopener" style="background-color:#e8e8e8" target="_blank">Compare Home Loan Interest</a><a aria-label="buy-prop-forum" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/forum/buy-sell-queries/" rel="noopener" style="background-color:#e8e8e8" target="_blank">Property Buyers Forum</a><a aria-label="buy-prop-guide" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/blog/buyers-guide/" rel="noopener" style="background-color:#e8e8e8" target="_blank">Property Buyers Guide</a><a aria-label="sell-prop-guide" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/blog/sellers-guide/" rel="noopener" style="background-color:#e8e8e8" target="_blank">Property Seller Guide</a><a aria-label="home-loan-tips" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/blog/home-loan-tips/" rel="noopener" style="background-color:#e8e8e8" target="_blank">Home Loan Guide</a><a aria-label="housing-loan" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/forum/finance-queries/housing-loan/" rel="noopener" style="background-color:#e8e8e8" target="_blank">Home Loan Queries</a><a aria-label="renovation-tip" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/blog/renovation-tips/" rel="noopener" style="background-color:#e8e8e8" target="_blank">Home Renovation Guide</a><a aria-label="home-renovation" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/forum/interior-design-queries/home-renovation/" rel="noopener" style="background-color:#e8e8e8" target="_blank">Home Renovation Queries</a><a aria-label="interior-tips" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/blog/interior-design-tips/" rel="noopener" style="background-color:#e8e8e8" target="_blank">Interior Design Tips</a><a aria-label="interior-design-query" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/forum/interior-design-queries/" rel="noopener" style="background-color:#e8e8e8" target="_blank">Interior Design Queries</a><a aria-label="nri-real-estate-guide" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/blog/nri-real-estate-guide/" rel="noopener" style="background-color:#e8e8e8" target="_blank">NRI RealEstae Guide</a><a aria-label="nri-real-estate-guery" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/forum/nri-real-estate-queries/" rel="noopener" style="background-color:#e8e8e8" target="_blank">NRI RealEstae Queries</a><a aria-label="vastu-tips" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/blog/vastu-tips/" rel="noopener" style="background-color:#e8e8e8" target="_blank">Realestate Vastu Guide</a><a aria-label="cash-loan" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/blog/cash-loan/" rel="noopener" style="background-color:#e8e8e8" target="_blank">Personal Loan Guide</a><a aria-label="personal-loan" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/forum/finance-queries/personal-loan/" rel="noopener" style="background-color:#e8e8e8" target="_blank">Personal Loan Queries</a><a aria-label="bill-payment" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/blog/bill-payment/" rel="noopener" style="background-color:#e8e8e8" target="_blank">Bill Payment Guide</a><a aria-label="real-estate-legal-guide" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/blog/real-estate-legal-guide/" rel="noopener" style="background-color:#e8e8e8" target="_blank">Realestate Legal Guide</a><a aria-label="legal-query" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/forum/legal-queries/" rel="noopener" style="background-color:#e8e8e8" target="_blank">Realestate Legal Queries</a></div></div><div class="w-48pe po:w-full"><div class="heading-6 mb-1.5p">Rent</div><div class="flex flex-wrap"><a aria-label="ra" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/rental-agreement" rel="noopener" style="background-color:#e8e8e8" target="_blank">Rental Agreement</a><a aria-label="rentopay" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/pay-property-rent-online" rel="noopener" style="background-color:#e8e8e8" target="_blank">Pay Rent</a><a aria-label="refer-and-earn" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/refer-and-earn" rel="noopener" style="background-color:#e8e8e8" target="_blank">Refer and Earn</a><a aria-label="pnm" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/packers-and-movers" rel="noopener" style="background-color:#e8e8e8" target="_blank">Packers and Movers</a><a aria-label="property-management" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/prophub/property-management/property-management-in-india/" rel="noopener" style="background-color:#e8e8e8" target="_blank">Property Management in India</a><a aria-label="hs-qa" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/forum/home-servicing-queries/" rel="noopener" style="background-color:#e8e8e8" target="_blank">Home Services Questions</a><a aria-label="rent-prop-questions" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/forum/rental-and-lease-queries/" rel="noopener" style="background-color:#e8e8e8" target="_blank">Rent Services Questions</a><a aria-label="rent-calculator" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/rent-calculator/" rel="noopener" style="background-color:#e8e8e8" target="_blank">Rent Calculator</a><a aria-label="rental-guide" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/blog/rental-guide/" rel="noopener" style="background-color:#e8e8e8" target="_blank">Property Rental Guide</a><a aria-label="rental-guide-landloard" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/blog/rental-guide/landlord/" rel="noopener" style="background-color:#e8e8e8" target="_blank">Landlord Guide</a><a aria-label="rental-guide-tenant" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/blog/rental-guide/tenant/" rel="noopener" style="background-color:#e8e8e8" target="_blank">Tenant Guide</a><a aria-label="pnm-guide" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/blog/packers-and-movers/" rel="noopener" style="background-color:#e8e8e8" target="_blank">Packers and Movers Guide</a><a aria-label="pnm-query" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/forum/packers-movers-queries/" rel="noopener" style="background-color:#e8e8e8" target="_blank">Packers and Movers queries</a><a aria-label="hs" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/home-services" rel="noopener" style="background-color:#e8e8e8" target="_blank">Home Services</a><a aria-label="hs-query" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/forum/home-servicing-queries/" rel="noopener" style="background-color:#e8e8e8" target="_blank">Home Services Queries</a><a aria-label="painting" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/painting-services" rel="noopener" style="background-color:#e8e8e8" target="_blank">Painting Services</a><a aria-label="painting-tips" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/blog/home-services/painting-tips/" rel="noopener" style="background-color:#e8e8e8" target="_blank">Home Painting Guide</a><a aria-label="painting-query" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/forum/home-servicing-queries/painting/" rel="noopener" style="background-color:#e8e8e8" target="_blank">Home Painting Queries</a><a aria-label="cleaning" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/cleaning-services" rel="noopener" style="background-color:#e8e8e8" target="_blank">Cleaning Services</a><a aria-label="kitchen-cleaning" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/kitchen-cleaning-services" rel="noopener" style="background-color:#e8e8e8" target="_blank">Kitchen Cleaning Services</a><a aria-label="sofa-cleaning" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/sofa-cleaning-services" rel="noopener" style="background-color:#e8e8e8" target="_blank">Sofa Cleaning Services</a><a aria-label="bathroom-cleaning" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/bathroom-cleaning-services" rel="noopener" style="background-color:#e8e8e8" target="_blank">Bathroom Cleaning Services</a><a aria-label="home-cleaning" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/home-cleaning-services" rel="noopener" style="background-color:#e8e8e8" target="_blank">Full House Cleaning Services</a><a aria-label="cleaning-tips" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/blog/home-services/cleaning-tips/" rel="noopener" style="background-color:#e8e8e8" target="_blank">Home Cleaning Guide</a><a aria-label="cleaning-query" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/forum/home-servicing-queries/cleaning/" rel="noopener" style="background-color:#e8e8e8" target="_blank">Home Cleaning Queries</a><a aria-label="ac-service" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/ac-repair-services" rel="noopener" style="background-color:#e8e8e8" target="_blank">AC Services</a><a aria-label="carpentry-service" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/carpentry-services" rel="noopener" style="background-color:#e8e8e8" target="_blank">Carpentry Services</a><a aria-label="carpentry-query" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/forum/home-servicing-queries/carpentry/" rel="noopener" style="background-color:#e8e8e8" target="_blank">Carpentry Services Queries</a><a aria-label="electrician-service" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/electrician-services" rel="noopener" style="background-color:#e8e8e8" target="_blank">Electrician Services</a><a aria-label="electrician-query" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/forum/home-servicing-queries/electrician/" rel="noopener" style="background-color:#e8e8e8" target="_blank">Electrician Services Queries</a><a aria-label="plumbing" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/plumbing-services" rel="noopener" style="background-color:#e8e8e8" target="_blank">Plumbing Services</a><a aria-label="plumbing-query" class="py-0.5 px-2 no-underline text-defaultcolor rounded-4 cursor-pointer mr-1.5p mb-1.5p" href="/forum/home-servicing-queries/plumbing/" rel="noopener" style="background-color:#e8e8e8" target="_blank">Plumbing Services Queries</a></div></div></div></div></div><div style="min-height:200px"><div class="footer-container"><div class="bg-loader-bg-color flex p-3p flex-wrap po:py-2p po:px-1.5p po:border-none" style="border-top:1px solid #4646463d"><div class="w-50pe po:w-full text-center"><div class="font-semi-bold text-18 po:text-14">Find Property</div><div class="po:text-12">Select from thousands of options, without brokerage.</div><a aria-label="find" class="py-0.3p px-2p rounded-4 no-underline bg-default-color text-white font-semibold inline-block mt-1.5p po:mt-0.5p po:text-12" href="/" rel="noopener" target="_blank">Find Now</a></div><div class="w-50pe po:w-full text-center border-l-1 border-solid border-footer-border po:border-t-1 po:border-l-0 po:mt-2p po:pt-1.5p"><div class="font-semi-bold text-18 po:text-14">List Your Property</div><div class="po:text-12">For Free. Without any brokerage.</div><a aria-label="list" class="py-0.3p px-2p rounded-4 no-underline bg-default-color text-white font-semibold inline-block mt-1.5p po:mt-0.5p po:text-12" href="/list-your-property-for-rent-sale" rel="noopener" target="_blank">Free Posting</a></div></div><div class="bottom-footer-container pt-3p border-t-1 border-solid border-footer-border"><div class="bottom-footer-links-wrapper flex justify-center flex-wrap po:mb-2p"><div class="cursor-pointer mx-2p my-0 text-18 text-defaultcolor no-underline tp:mr-2p tp:ml-0 po:mr-0.5p po:mb-0.5p po:text-14">About Us</div><a aria-label="careers" class="cursor-pointer mx-2p my-0 text-18 text-defaultcolor no-underline tp:mr-2p tp:ml-0 po:mr-0.5p po:mb-0.5p po:text-14" href="/careers" rel="noopener" target="_blank">Careers</a><a aria-label="t&amp;c" class="cursor-pointer mx-2p my-0 text-18 text-defaultcolor no-underline tp:mr-2p tp:ml-0 po:mr-0.5p po:mb-0.5p po:text-14" href="/terms-and-condition" rel="noopener" target="_blank">Terms &amp; Conditions</a><a aria-label="privacy" class="cursor-pointer mx-2p my-0 text-18 text-defaultcolor no-underline tp:mr-2p tp:ml-0 po:mr-0.5p po:mb-0.5p po:text-14" href="/privacy" rel="noopener" target="_blank">Privacy Policy</a><a aria-label="testimonials" class="cursor-pointer mx-2p my-0 text-18 text-defaultcolor no-underline tp:mr-2p tp:ml-0 po:mr-0.5p po:mb-0.5p po:text-14" href="/testimonials" rel="noopener" target="_blank">Testimonials</a><a aria-label="sitemap" class="cursor-pointer mx-2p my-0 text-18 text-defaultcolor no-underline tp:mr-2p tp:ml-0 po:mr-0.5p po:mb-0.5p po:text-14" href="/sitemap" rel="noopener" target="_blank">Sitemap</a><div class="cursor-pointer mx-2p my-0 text-18 text-defaultcolor no-underline tp:mr-2p tp:ml-0 po:mr-0.5p po:mb-0.5p po:text-14">FAQs</div></div><hr class="hidden tpu:block my-3.5p mx-20pe tp:my-2p"/><div class="flex justify-center"><a aria-label="android" class="my-0 mx-2p po:mx-0.5p" href="https://nobroker.in/app?type=android" rel="noopener" target="_blank"><img alt="android" height="34px" loading="lazy" src="https://assets.nobroker.in/nb-new/public/Common/android_download.svg" width="108px"/></a><a aria-label="ios" class="my-0 mx-2p po:mx-0.5p" href="https://nobroker.in/app?type=ios" rel="noopener" target="_blank"><img alt="ios" height="34px" loading="lazy" src="https://assets.nobroker.in/nb-new/public/Common/IOS_download.svg" width="108px"/></a></div><div class="flex justify-center mt-2p"><a aria-label="facebook" class="rounded-100pe py-0.7p px-0.9p my-0 mx-2p po:mx-0.5p" href="https://www.facebook.com/nobroker.com" rel="noopener" style="background-color:#e8e8e8" target="_blank"><img alt="facebook" height="19px" loading="lazy" src="https://assets.nobroker.in/nb-new/public/Common/social/facebook.svg" width="19px"/></a><a aria-label="twitter" class="rounded-100pe py-0.7p px-0.9p my-0 mx-2p po:mx-0.5p" href="https://twitter.com/nobrokercom" rel="noopener" style="background-color:#e8e8e8" target="_blank"><img alt="twitter" height="19px" loading="lazy" src="https://assets.nobroker.in/nb-new/public/Common/social/twitter.svg" width="19px"/></a><a aria-label="instagram" class="rounded-100pe py-0.7p px-0.9p my-0 mx-2p po:mx-0.5p" href="https://www.instagram.com/nobroker/" rel="noopener" style="background-color:#e8e8e8" target="_blank"><img alt="instagram" height="19px" loading="lazy" src="https://assets.nobroker.in/nb-new/public/Common/social/instagram.svg" width="19px"/></a><a aria-label="linkedin" class="rounded-100pe py-0.7p px-0.9p my-0 mx-2p po:mx-0.5p" href="https://www.linkedin.com/company/nobroker-in/" rel="noopener" style="background-color:#e8e8e8" target="_blank"><img alt="linkedin" height="19px" loading="lazy" src="https://assets.nobroker.in/nb-new/public/Common/social/linkedin.svg" width="19px"/></a><a aria-label="youtube" class="rounded-100pe py-0.7p px-0.9p my-0 mx-2p po:mx-0.5p" href="https://www.youtube.com/c/NoBrokercomOfficial" rel="noopener" style="background-color:#e8e8e8" target="_blank"><img alt="youtube" height="19px" loading="lazy" src="https://assets.nobroker.in/nb-new/public/Common/social/youtube.svg" width="19px"/></a></div><div class="text-center py-2p">© 2013-24 NoBroker Technologies Solution Pvt. Ltd.</div></div></div></div></div></div></div><script id="__LOADABLE_REQUIRED_CHUNKS__" type="application/json">[2,4,6,7,8,28,129,571,261,338,0,15,17,64,81,528,448,1,3,5,10,16,25,31,126,265,415,271,9,263,34,33,511,173]</script><script id="__LOADABLE_REQUIRED_CHUNKS___ext" type="application/json">{"namedChunks":["home","HeaderContentDesktop","NbButton","SupportPanel","RABanner","HomeDesktopFilter","PostPropertyCardDesktop","HomeTileCard","HomeCard","Footer","SiteMapFooterNew","BottomLinkFooter"]}</script>
<script async="" data-chunk="main" src="https://assets.nobroker.in/nb-new/612.97816a2b1bc2a28d6e38.js"></script>
<script async="" data-chunk="main" src="https://assets.nobroker.in/nb-new/main.231b0bc09f994d5daefa.js"></script>
<script async="" data-chunk="home" src="https://assets.nobroker.in/nb-new/2/2.1945c117fb220acb372e.chunk.js"></script>
<script async="" data-chunk="home" src="https://assets.nobroker.in/nb-new/4/4.494e0d66754510485923.chunk.js"></script>
<script async="" data-chunk="home" src="https://assets.nobroker.in/nb-new/6/6.176907fe8881ba824412.chunk.js"></script>
<script async="" data-chunk="home" src="https://assets.nobroker.in/nb-new/7/7.3f31a9ff4d6df5152b59.chunk.js"></script>
<script async="" data-chunk="home" src="https://assets.nobroker.in/nb-new/8/8.72bf78cde529281d34b1.chunk.js"></script>
<script async="" data-chunk="home" src="https://assets.nobroker.in/nb-new/28/28.2725ccc1d617a35d970a.chunk.js"></script>
<script async="" data-chunk="home" src="https://assets.nobroker.in/nb-new/129/129.6b44a258912c083395f6.chunk.js"></script>
<script async="" data-chunk="home" src="https://assets.nobroker.in/nb-new/home/home.af7e80c3d8ca8598efba.chunk.js"></script>
<script async="" data-chunk="HeaderContentDesktop" src="https://assets.nobroker.in/nb-new/HeaderContentDesktop/HeaderContentDesktop.96df5a64d9448b2f4f6b.chunk.js"></script>
<script async="" data-chunk="NbButton" src="https://assets.nobroker.in/nb-new/NbButton/NbButton.3a8720c86f71f8ba88c3.chunk.js"></script>
<script async="" data-chunk="SupportPanel" src="https://assets.nobroker.in/nb-new/0/0.3f907631d096c0ade89e.chunk.js"></script>
<script async="" data-chunk="SupportPanel" src="https://assets.nobroker.in/nb-new/15/15.034c2a329ad0d0fadcb5.chunk.js"></script>
<script async="" data-chunk="SupportPanel" src="https://assets.nobroker.in/nb-new/17/17.1acba2f5f754b6a40503.chunk.js"></script>
<script async="" data-chunk="SupportPanel" src="https://assets.nobroker.in/nb-new/64/64.e50697c015985d86cce3.chunk.js"></script>
<script async="" data-chunk="SupportPanel" src="https://assets.nobroker.in/nb-new/81/81.d52ca1e7b847ceda34d7.chunk.js"></script>
<script async="" data-chunk="SupportPanel" src="https://assets.nobroker.in/nb-new/SupportPanel/SupportPanel.3a6259171dcc5004da11.chunk.js"></script>
<script async="" data-chunk="RABanner" src="https://assets.nobroker.in/nb-new/RABanner/RABanner.4b8177ef0b4d6ab2bf30.chunk.js"></script>
<script async="" data-chunk="HomeDesktopFilter" src="https://assets.nobroker.in/nb-new/1/1.8668eb8b0c45e2ec9759.chunk.js"></script>
<script async="" data-chunk="HomeDesktopFilter" src="https://assets.nobroker.in/nb-new/3/3.f92b342fbd2777af7aef.chunk.js"></script>
<script async="" data-chunk="HomeDesktopFilter" src="https://assets.nobroker.in/nb-new/5/5.8e5a92b2931fcb6a2d9c.chunk.js"></script>
<script async="" data-chunk="HomeDesktopFilter" src="https://assets.nobroker.in/nb-new/10/10.eac0290fb1d5c39fcc9d.chunk.js"></script>
<script async="" data-chunk="HomeDesktopFilter" src="https://assets.nobroker.in/nb-new/16/16.c84abec1d6fe40d3305d.chunk.js"></script>
<script async="" data-chunk="HomeDesktopFilter" src="https://assets.nobroker.in/nb-new/25/25.9b9056f1beded04b20b4.chunk.js"></script>
<script async="" data-chunk="HomeDesktopFilter" src="https://assets.nobroker.in/nb-new/31/31.02c858f539e7a9da6685.chunk.js"></script>
<script async="" data-chunk="HomeDesktopFilter" src="https://assets.nobroker.in/nb-new/126/126.1d117cec4676030b1eff.chunk.js"></script>
<script async="" data-chunk="HomeDesktopFilter" src="https://assets.nobroker.in/nb-new/HomeDesktopFilter/HomeDesktopFilter.f011bef7f4be51b0719f.chunk.js"></script>
<script async="" data-chunk="PostPropertyCardDesktop" src="https://assets.nobroker.in/nb-new/PostPropertyCardDesktop/PostPropertyCardDesktop.e8519c231e049bdec85d.chunk.js"></script>
<script async="" data-chunk="HomeTileCard" src="https://assets.nobroker.in/nb-new/HomeTileCard/HomeTileCard.36432a4dd49d0ff3a9ac.chunk.js"></script>
<script async="" data-chunk="HomeCard" src="https://assets.nobroker.in/nb-new/9/9.7336443ada2ed3be10c6.chunk.js"></script>
<script async="" data-chunk="HomeCard" src="https://assets.nobroker.in/nb-new/HomeCard/HomeCard.d7c503fabe5da6ede926.chunk.js"></script>
<script async="" data-chunk="Footer" src="https://assets.nobroker.in/nb-new/Footer/Footer.37f3162dd5f0ba459fee.chunk.js"></script>
<script async="" data-chunk="SiteMapFooterNew" src="https://assets.nobroker.in/nb-new/33/33.cf8e7c08148f8cbb6130.chunk.js"></script>
<script async="" data-chunk="SiteMapFooterNew" src="https://assets.nobroker.in/nb-new/SiteMapFooterNew/SiteMapFooterNew.a0415197631705c48521.chunk.js"></script>
<script async="" data-chunk="BottomLinkFooter" src="https://assets.nobroker.in/nb-new/BottomLinkFooter/BottomLinkFooter.ecbe050046d9717870e5.chunk.js"></script>
<img alt="" height="1" id="adobe-event" src="" style="display: none" width="1"/>
<noscript>If you're seeing this message, that means <strong>JavaScript has been disabled on your browser</strong>, please <strong>enable JS</strong> to make this app work.</noscript>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe height="0" src="https://www.googletagmanager.com/ns.html?id=GTM-NDNFVM5" style="display:none;visibility:hidden" width="0"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<script>digitalData={},window.isGAinit=!1</script>
</body>
</html>
In [74]:
house_title = soup.find('h2', class_="heading-6 flex items-center font-semi-bold m-0")
house_title
In [ ]:
house_title.text
In [76]:
location = soup.find('div', class_="mt-0.5p overflow-hidden overflow-ellipsis whitespace-nowrap max-w-70 text-gray-light leading-4 po:mb-0.1p po:max-w-95")
location
In [ ]:
location.text
In [78]:
area = soup.find('div', class_="text-default-color align-bottom underline hover:text-primary-color")
area
In [ ]:
area.text
In [79]:
EMI_price = soup.find('div', class_="font-semi-bold heading-6")
EMI_price
In [ ]:
EMI_price.text
In [81]:
house_title = []

for i in soup.find_all('h2', class_="heading-6 flex items-center font-semi-bold m-0"):
        house_title.append(i.text)
        
house_title
Out[81]:
[]
In [82]:
location = []

for i in soup.find_all('div', class_="mt-0.5p overflow-hidden overflow-ellipsis whitespace-nowrap max-w-70 text-gray-light leading-4 po:mb-0.1p po:max-w-95"):
        location.append(i.text)

location
Out[82]:
[]
In [83]:
area = []

for i in soup.find_all('div', class_="text-default-color align-bottom underline hover:text-primary-color"):
        area.append(i.text)
        
area 
Out[83]:
[]
In [84]:
EMI_price = []

for i in soup.find_all('div', class_="font-semi-bold heading-6"):
        EMI_price.append(i.text)
        
EMI_price 
Out[84]:
[]

4) Write a python program to scrape first 10 product details which include product name , price , Image URL from https://www.bewakoof.com/bestseller?sort=popular .

In [85]:
page = requests.get('https://www.bewakoof.com/bestseller?sort=popular')
In [86]:
page
Out[86]:
<Response [200]>
In [87]:
soup = BeautifulSoup(page.content)
soup
Out[87]:
<!DOCTYPE html>
<html><head>
<meta content="4d8KRpUCzf-ghquF_HLNphibw_xRvUS3kAvzpnF2KlA" name="google-site-verification"/>
<meta content="-TTsyPFCOB4bQlMHawiO4oZGcGX9pxqenB_NZNhhhgA" name="google-site-verification"/>
<meta content="wQa0CQvt7fd2VIoa9qhkevhvwuBvhRwiaB3hVizI9OY" name="google-site-verification"/>
<meta content="o7KS3-fVt15m4Cc1HeYh5HIpv532A4FvvYQzIf-LnsQ" name="google-site-verification"/>
<link href="https://images.bewakoof.com" rel="preconnect"/>
<link href="https://images.bewakoof.com" rel="dns-prefetch"/>
<link href="https://static.bewakoof.com" rel="preconnect"/>
<link href="https://static.bewakoof.com" rel="dns-prefetch"/>
<link href="https://cdn.polyfill.io" rel="preconnect"/>
<link href="https://cdn.polyfill.io" rel="dns-prefetch"/>
<link href="https//www.googletagmanager.com" rel="preconnect"/>
<link href="https//www.googletagmanager.com" rel="dns-prefetch"/>
<link href="https://www.google-analytics.com" rel="dns-prefetch"/>
<link href="https://connect.facebook.net" rel="dns-prefetch"/>
<link href="https://www.facebook.com" rel="dns-prefetch"/>
<link href="https://analytics.bewakoof.com" rel="dns-prefetch"/>
<link href="https://my.spline.design/untitled-23e4e5884989c299a902d46f236c685b" rel="prefetch"/>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
<meta content="no-cache, no-store, must-revalidate" http-equiv="Cache-Control"/>
<meta content="no-cache" http-equiv="Pragma"/>
<meta content="0" http-equiv="Expires"/>
<script type="text/javascript">window.NREUM||(NREUM={});NREUM.info = {"agent":"","beacon":"bam.nr-data.net","errorBeacon":"bam.nr-data.net","licenseKey":"NRJS-d388fbd2feb0308fac9","applicationID":"1050236615","applicationTime":373.008339,"transactionName":"YwcEZkVTDxECUxVbWFpNI0pHQAQREFoSHXBxNkkdDUITDQdFAkZwRgsC","queueTime":0,"ttGuid":"b35a61c1c104e4ce","agentToken":null}; (window.NREUM||(NREUM={})).init={privacy:{cookies_enabled:true},ajax:{deny_list:["bam.nr-data.net"]},distributed_tracing:{enabled:true}};(window.NREUM||(NREUM={})).loader_config={agentID:"1134083009",accountID:"2563413",trustKey:"2563413",xpid:"VgMBUlJSCxABVFRSBQIBUFUE",licenseKey:"NRJS-d388fbd2feb0308fac9",applicationID:"1050236615"};;/*! For license information please see nr-loader-spa-1.264.0.min.js.LICENSE.txt */
(()=>{var e,t,r={2983:(e,t,r)=>{"use strict";r.d(t,{D0:()=>v,gD:()=>y,Vp:()=>s,oC:()=>x,fr:()=>_,jD:()=>P,hR:()=>A,xN:()=>b,x1:()=>c,aN:()=>T,V:()=>j});var n=r(384),i=r(7864);const o={beacon:n.NT.beacon,errorBeacon:n.NT.errorBeacon,licenseKey:void 0,applicationID:void 0,sa:void 0,queueTime:void 0,applicationTime:void 0,ttGuid:void 0,user:void 0,account:void 0,product:void 0,extra:void 0,jsAttributes:{},userAttributes:void 0,atts:void 0,transactionName:void 0,tNamePlain:void 0},a={};function s(e){if(!e)throw new Error("All info objects require an agent identifier!");if(!a[e])throw new Error("Info for ".concat(e," was never set"));return a[e]}function c(e,t){if(!e)throw new Error("All info objects require an agent identifier!");a[e]=(0,i.a)(t,o);const r=(0,n.nY)(e);r&&(r.info=a[e])}var u=r(993);const d=e=>{if(!e||"string"!=typeof e)return!1;try{document.createDocumentFragment().querySelector(e)}catch{return!1}return!0};var l=r(2614),f=r(944);const h="[data-nr-mask]",g=()=>{const e={mask_selector:"*",block_selector:"[data-nr-block]",mask_input_options:{color:!1,date:!1,"datetime-local":!1,email:!1,month:!1,number:!1,range:!1,search:!1,tel:!1,text:!1,time:!1,url:!1,week:!1,textarea:!1,select:!1,password:!0}};return{ajax:{deny_list:void 0,block_internal:!0,enabled:!0,harvestTimeSeconds:10,autoStart:!0},distributed_tracing:{enabled:void 0,exclude_newrelic_header:void 0,cors_use_newrelic_header:void 0,cors_use_tracecontext_headers:void 0,allowed_origins:void 0},feature_flags:[],generic_events:{enabled:!0,harvestTimeSeconds:30,autoStart:!0},harvest:{tooManyRequestsDelay:60},jserrors:{enabled:!0,harvestTimeSeconds:10,autoStart:!0},logging:{enabled:!0,harvestTimeSeconds:10,autoStart:!0,level:u.p_.INFO},metrics:{enabled:!0,autoStart:!0},obfuscate:void 0,page_action:{enabled:!0},page_view_event:{enabled:!0,autoStart:!0},page_view_timing:{enabled:!0,harvestTimeSeconds:30,long_task:!1,autoStart:!0},privacy:{cookies_enabled:!0},proxy:{assets:void 0,beacon:void 0},session:{expiresMs:l.wk,inactiveMs:l.BB},session_replay:{autoStart:!0,enabled:!1,harvestTimeSeconds:60,preload:!1,sampling_rate:10,error_sampling_rate:100,collect_fonts:!1,inline_images:!1,inline_stylesheet:!0,fix_stylesheets:!0,mask_all_inputs:!0,get mask_text_selector(){return e.mask_selector},set mask_text_selector(t){d(t)?e.mask_selector="".concat(t,",").concat(h):""===t||null===t?e.mask_selector=h:(0,f.R)(5,t)},get block_class(){return"nr-block"},get ignore_class(){return"nr-ignore"},get mask_text_class(){return"nr-mask"},get block_selector(){return e.block_selector},set block_selector(t){d(t)?e.block_selector+=",".concat(t):""!==t&&(0,f.R)(6,t)},get mask_input_options(){return e.mask_input_options},set mask_input_options(t){t&&"object"==typeof t?e.mask_input_options={...t,password:!0}:(0,f.R)(7,t)}},session_trace:{enabled:!0,harvestTimeSeconds:10,autoStart:!0},soft_navigations:{enabled:!0,harvestTimeSeconds:10,autoStart:!0},spa:{enabled:!0,harvestTimeSeconds:10,autoStart:!0},ssl:void 0}},p={},m="All configuration objects require an agent identifier!";function v(e){if(!e)throw new Error(m);if(!p[e])throw new Error("Configuration for ".concat(e," was never set"));return p[e]}function b(e,t){if(!e)throw new Error(m);p[e]=(0,i.a)(t,g());const r=(0,n.nY)(e);r&&(r.init=p[e])}function y(e,t){if(!e)throw new Error(m);var r=v(e);if(r){for(var n=t.split("."),i=0;i<n.length-1;i++)if("object"!=typeof(r=r[n[i]]))return;r=r[n[n.length-1]]}return r}const w={accountID:void 0,trustKey:void 0,agentID:void 0,licenseKey:void 0,applicationID:void 0,xpid:void 0},R={};function x(e){if(!e)throw new Error("All loader-config objects require an agent identifier!");if(!R[e])throw new Error("LoaderConfig for ".concat(e," was never set"));return R[e]}function T(e,t){if(!e)throw new Error("All loader-config objects require an agent identifier!");R[e]=(0,i.a)(t,w);const r=(0,n.nY)(e);r&&(r.loader_config=R[e])}const A=(0,n.dV)().o;var E=r(6154),N=r(9324);const S={buildEnv:N.F3,distMethod:N.Xs,version:N.xv,originTime:E.WN},O={customTransaction:void 0,disabled:!1,isolatedBacklog:!1,loaderType:void 0,maxBytes:3e4,onerror:void 0,origin:""+E.gm.location,ptid:void 0,releaseIds:{},appMetadata:{},session:void 0,denyList:void 0,harvestCount:0,timeKeeper:void 0},I={};function _(e){if(!e)throw new Error("All runtime objects require an agent identifier!");if(!I[e])throw new Error("Runtime for ".concat(e," was never set"));return I[e]}function j(e,t){if(!e)throw new Error("All runtime objects require an agent identifier!");I[e]={...(0,i.a)(t,O),...S};const r=(0,n.nY)(e);r&&(r.runtime=I[e])}function P(e){return function(e){try{const t=s(e);return!!t.licenseKey&&!!t.errorBeacon&&!!t.applicationID}catch(e){return!1}}(e)}},7864:(e,t,r)=>{"use strict";r.d(t,{a:()=>i});var n=r(944);function i(e,t){try{if(!e||"object"!=typeof e)return(0,n.R)(3);if(!t||"object"!=typeof t)return(0,n.R)(4);const r=Object.create(Object.getPrototypeOf(t),Object.getOwnPropertyDescriptors(t)),o=0===Object.keys(r).length?e:r;for(let a in o)if(void 0!==e[a])try{if(null===e[a]){r[a]=null;continue}Array.isArray(e[a])&&Array.isArray(t[a])?r[a]=Array.from(new Set([...e[a],...t[a]])):"object"==typeof e[a]&&"object"==typeof t[a]?r[a]=i(e[a],t[a]):r[a]=e[a]}catch(e){(0,n.R)(1,e)}return r}catch(e){(0,n.R)(2,e)}}},9324:(e,t,r)=>{"use strict";r.d(t,{F3:()=>i,Xs:()=>o,Yq:()=>a,xv:()=>n});const n="1.264.0",i="PROD",o="CDN",a="2.0.0-alpha.12"},6154:(e,t,r)=>{"use strict";r.d(t,{A4:()=>s,OF:()=>d,RI:()=>i,Vr:()=>h,WN:()=>g,bv:()=>o,gm:()=>a,lR:()=>f,m:()=>u,mw:()=>c,sb:()=>l});var n=r(1863);const i="undefined"!=typeof window&&!!window.document,o="undefined"!=typeof WorkerGlobalScope&&("undefined"!=typeof self&&self instanceof WorkerGlobalScope&&self.navigator instanceof WorkerNavigator||"undefined"!=typeof globalThis&&globalThis instanceof WorkerGlobalScope&&globalThis.navigator instanceof WorkerNavigator),a=i?window:"undefined"!=typeof WorkerGlobalScope&&("undefined"!=typeof self&&self instanceof WorkerGlobalScope&&self||"undefined"!=typeof globalThis&&globalThis instanceof WorkerGlobalScope&&globalThis),s="complete"===a?.document?.readyState,c=Boolean("hidden"===a?.document?.visibilityState),u=""+a?.location,d=/iPad|iPhone|iPod/.test(a.navigator?.userAgent),l=d&&"undefined"==typeof SharedWorker,f=(()=>{const e=a.navigator?.userAgent?.match(/Firefox[/\s](\d+\.\d+)/);return Array.isArray(e)&&e.length>=2?+e[1]:0})(),h=!!a.navigator?.sendBeacon,g=Date.now()-(0,n.t)()},4777:(e,t,r)=>{"use strict";r.d(t,{J:()=>o});var n=r(944);const i={agentIdentifier:"",ee:void 0};class o{constructor(e){try{if("object"!=typeof e)return(0,n.R)(8);this.sharedContext={},Object.assign(this.sharedContext,i),Object.entries(e).forEach((e=>{let[t,r]=e;Object.keys(i).includes(t)&&(this.sharedContext[t]=r)}))}catch(e){(0,n.R)(9,e)}}}},7295:(e,t,r)=>{"use strict";r.d(t,{Xv:()=>a,gX:()=>i,iW:()=>o});var n=[];function i(e){if(!e||o(e))return!1;if(0===n.length)return!0;for(var t=0;t<n.length;t++){var r=n[t];if("*"===r.hostname)return!1;if(s(r.hostname,e.hostname)&&c(r.pathname,e.pathname))return!1}return!0}function o(e){return void 0===e.hostname}function a(e){if(n=[],e&&e.length)for(var t=0;t<e.length;t++){let r=e[t];if(!r)continue;0===r.indexOf("http://")?r=r.substring(7):0===r.indexOf("https://")&&(r=r.substring(8));const i=r.indexOf("/");let o,a;i>0?(o=r.substring(0,i),a=r.substring(i)):(o=r,a="");let[s]=o.split(":");n.push({hostname:s,pathname:a})}}function s(e,t){return!(e.length>t.length)&&t.indexOf(e)===t.length-e.length}function c(e,t){return 0===e.indexOf("/")&&(e=e.substring(1)),0===t.indexOf("/")&&(t=t.substring(1)),""===e||e===t}},1687:(e,t,r)=>{"use strict";r.d(t,{Ak:()=>s,Ze:()=>d,x3:()=>c});var n=r(7836),i=r(3606),o=r(860);const a={};function s(e,t){const r={staged:!1,priority:o.P[t]||0};u(e),a[e].get(t)||a[e].set(t,r)}function c(e,t){e&&a[e]&&(a[e].get(t)&&a[e].delete(t),f(e,t,!1),a[e].size&&l(e))}function u(e){if(!e)throw new Error("agentIdentifier required");a[e]||(a[e]=new Map)}function d(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"feature",r=arguments.length>2&&void 0!==arguments[2]&&arguments[2];if(u(e),!e||!a[e].get(t)||r)return f(e,t);a[e].get(t).staged=!0,l(e)}function l(e){const t=Array.from(a[e]);t.every((e=>{let[t,r]=e;return r.staged}))&&(t.sort(((e,t)=>e[1].priority-t[1].priority)),t.forEach((t=>{let[r]=t;a[e].delete(r),f(e,r)})))}function f(e,t){let r=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];const o=e?n.ee.get(e):n.ee,a=i.i.handlers;if(!o.aborted&&o.backlog&&a){if(r){const e=o.backlog[t],r=a[t];if(r){for(let t=0;e&&t<e.length;++t)h(e[t],r);Object.entries(r).forEach((e=>{let[t,r]=e;Object.values(r||{}).forEach((e=>{e[0].on(t,e[1])}))}))}}o.isolatedBacklog||delete a[t],o.backlog[t]=null,o.emit("drain-"+t,[])}}function h(e,t){var r=e[1];Object.values(t[r]||{}).forEach((t=>{var r=e[0];if(t[0]===r){var n=t[1],i=e[3],o=e[2];n.apply(i,o)}}))}},7836:(e,t,r)=>{"use strict";r.d(t,{P:()=>c,ee:()=>u});var n=r(384),i=r(8990),o=r(2983),a=r(2646),s=r(5607);const c="nr@context:".concat(s.W),u=function e(t,r){var n={},s={},d={},l=!1;try{l=16===r.length&&(0,o.fr)(r).isolatedBacklog}catch(e){}var f={on:g,addEventListener:g,removeEventListener:function(e,t){var r=n[e];if(!r)return;for(var i=0;i<r.length;i++)r[i]===t&&r.splice(i,1)},emit:function(e,r,n,i,o){!1!==o&&(o=!0);if(u.aborted&&!i)return;t&&o&&t.emit(e,r,n);for(var a=h(n),c=p(e),d=c.length,l=0;l<d;l++)c[l].apply(a,r);var g=v()[s[e]];g&&g.push([f,e,r,a]);return a},get:m,listeners:p,context:h,buffer:function(e,t){const r=v();if(t=t||"feature",f.aborted)return;Object.entries(e||{}).forEach((e=>{let[n,i]=e;s[i]=t,t in r||(r[t]=[])}))},abort:function(){f._aborted=!0,Object.keys(f.backlog).forEach((e=>{delete f.backlog[e]}))},isBuffering:function(e){return!!v()[s[e]]},debugId:r,backlog:l?{}:t&&"object"==typeof t.backlog?t.backlog:{},isolatedBacklog:l};return Object.defineProperty(f,"aborted",{get:()=>{let e=f._aborted||!1;return e||(t&&(e=t.aborted),e)}}),f;function h(e){return e&&e instanceof a.y?e:e?(0,i.I)(e,c,(()=>new a.y(c))):new a.y(c)}function g(e,t){n[e]=p(e).concat(t)}function p(e){return n[e]||[]}function m(t){return d[t]=d[t]||e(f,t)}function v(){return f.backlog}}(void 0,"globalEE"),d=(0,n.Zm)();d.ee||(d.ee=u)},2646:(e,t,r)=>{"use strict";r.d(t,{y:()=>n});class n{constructor(e){this.contextId=e}}},9908:(e,t,r)=>{"use strict";r.d(t,{d:()=>n,p:()=>i});var n=r(7836).ee.get("handle");function i(e,t,r,i,o){o?(o.buffer([e],i),o.emit(e,t,r)):(n.buffer([e],i),n.emit(e,t,r))}},3606:(e,t,r)=>{"use strict";r.d(t,{i:()=>o});var n=r(9908);o.on=a;var i=o.handlers={};function o(e,t,r,o){a(o||n.d,i,e,t,r)}function a(e,t,r,i,o){o||(o="feature"),e||(e=n.d);var a=t[o]=t[o]||{};(a[r]=a[r]||[]).push([e,i])}},3878:(e,t,r)=>{"use strict";r.d(t,{DD:()=>c,jT:()=>a,sp:()=>s});var n=r(6154);let i=!1,o=!1;try{const e={get passive(){return i=!0,!1},get signal(){return o=!0,!1}};n.gm.addEventListener("test",null,e),n.gm.removeEventListener("test",null,e)}catch(e){}function a(e,t){return i||o?{capture:!!e,passive:i,signal:t}:!!e}function s(e,t){let r=arguments.length>2&&void 0!==arguments[2]&&arguments[2],n=arguments.length>3?arguments[3]:void 0;window.addEventListener(e,t,a(r,n))}function c(e,t){let r=arguments.length>2&&void 0!==arguments[2]&&arguments[2],n=arguments.length>3?arguments[3]:void 0;document.addEventListener(e,t,a(r,n))}},5607:(e,t,r)=>{"use strict";r.d(t,{W:()=>n});const n=(0,r(9566).bz)()},9566:(e,t,r)=>{"use strict";r.d(t,{LA:()=>s,ZF:()=>c,bz:()=>a,el:()=>u});var n=r(6154);const i="xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx";function o(e,t){return e?15&e[t]:16*Math.random()|0}function a(){const e=n.gm?.crypto||n.gm?.msCrypto;let t,r=0;return e&&e.getRandomValues&&(t=e.getRandomValues(new Uint8Array(30))),i.split("").map((e=>"x"===e?o(t,r++).toString(16):"y"===e?(3&o()|8).toString(16):e)).join("")}function s(e){const t=n.gm?.crypto||n.gm?.msCrypto;let r,i=0;t&&t.getRandomValues&&(r=t.getRandomValues(new Uint8Array(e)));const a=[];for(var s=0;s<e;s++)a.push(o(r,i++).toString(16));return a.join("")}function c(){return s(16)}function u(){return s(32)}},2614:(e,t,r)=>{"use strict";r.d(t,{BB:()=>a,H3:()=>n,g:()=>u,iL:()=>c,tS:()=>s,uh:()=>i,wk:()=>o});const n="NRBA",i="SESSION",o=144e5,a=18e5,s={STARTED:"session-started",PAUSE:"session-pause",RESET:"session-reset",RESUME:"session-resume",UPDATE:"session-update"},c={SAME_TAB:"same-tab",CROSS_TAB:"cross-tab"},u={OFF:0,FULL:1,ERROR:2}},1863:(e,t,r)=>{"use strict";function n(){return Math.floor(performance.now())}r.d(t,{t:()=>n})},7485:(e,t,r)=>{"use strict";r.d(t,{D:()=>i});var n=r(6154);function i(e){if(0===(e||"").indexOf("data:"))return{protocol:"data"};try{const t=new URL(e,location.href),r={port:t.port,hostname:t.hostname,pathname:t.pathname,search:t.search,protocol:t.protocol.slice(0,t.protocol.indexOf(":")),sameOrigin:t.protocol===n.gm?.location?.protocol&&t.host===n.gm?.location?.host};return r.port&&""!==r.port||("http:"===t.protocol&&(r.port="80"),"https:"===t.protocol&&(r.port="443")),r.pathname&&""!==r.pathname?r.pathname.startsWith("/")||(r.pathname="/".concat(r.pathname)):r.pathname="/",r}catch(e){return{}}}},944:(e,t,r)=>{"use strict";function n(e,t){"function"==typeof console.debug&&console.debug("New Relic Warning: https://github.com/newrelic/newrelic-browser-agent/blob/main/docs/warning-codes.md#".concat(e),t)}r.d(t,{R:()=>n})},5284:(e,t,r)=>{"use strict";r.d(t,{t:()=>c,B:()=>s});var n=r(7836),i=r(6154);const o="newrelic";const a=new Set,s={};function c(e,t){const r=n.ee.get(t);s[t]??={},e&&"object"==typeof e&&(a.has(t)||(r.emit("rumresp",[e]),s[t]=e,a.add(t),function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};try{i.gm.dispatchEvent(new CustomEvent(o,{detail:e}))}catch(e){}}({loaded:!0})))}},8990:(e,t,r)=>{"use strict";r.d(t,{I:()=>i});var n=Object.prototype.hasOwnProperty;function i(e,t,r){if(n.call(e,t))return e[t];var i=r();if(Object.defineProperty&&Object.keys)try{return Object.defineProperty(e,t,{value:i,writable:!0,enumerable:!1}),i}catch(e){}return e[t]=i,i}},6389:(e,t,r)=>{"use strict";function n(e){var t=this;let r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:500,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};const i=n?.leading||!1;let o;return function(){for(var n=arguments.length,a=new Array(n),s=0;s<n;s++)a[s]=arguments[s];i&&void 0===o&&(e.apply(t,a),o=setTimeout((()=>{o=clearTimeout(o)}),r)),i||(clearTimeout(o),o=setTimeout((()=>{e.apply(t,a)}),r))}}function i(e){var t=this;let r=!1;return function(){if(!r){r=!0;for(var n=arguments.length,i=new Array(n),o=0;o<n;o++)i[o]=arguments[o];e.apply(t,i)}}}r.d(t,{J:()=>i,s:()=>n})},3304:(e,t,r)=>{"use strict";r.d(t,{A:()=>o});var n=r(7836);const i=()=>{const e=new WeakSet;return(t,r)=>{if("object"==typeof r&&null!==r){if(e.has(r))return;e.add(r)}return r}};function o(e){try{return JSON.stringify(e,i())}catch(e){try{n.ee.emit("internal-error",[e])}catch(e){}}}},5289:(e,t,r)=>{"use strict";r.d(t,{GG:()=>o,sB:()=>a});var n=r(3878);function i(){return"undefined"==typeof document||"complete"===document.readyState}function o(e,t){if(i())return e();(0,n.sp)("load",e,t)}function a(e){if(i())return e();(0,n.DD)("DOMContentLoaded",e)}},384:(e,t,r)=>{"use strict";r.d(t,{NT:()=>o,US:()=>d,Zm:()=>a,bQ:()=>c,dV:()=>s,nY:()=>u,pV:()=>l});var n=r(6154),i=r(1863);const o={beacon:"bam.nr-data.net",errorBeacon:"bam.nr-data.net"};function a(){return n.gm.NREUM||(n.gm.NREUM={}),void 0===n.gm.newrelic&&(n.gm.newrelic=n.gm.NREUM),n.gm.NREUM}function s(){let e=a();return e.o||(e.o={ST:n.gm.setTimeout,SI:n.gm.setImmediate,CT:n.gm.clearTimeout,XHR:n.gm.XMLHttpRequest,REQ:n.gm.Request,EV:n.gm.Event,PR:n.gm.Promise,MO:n.gm.MutationObserver,FETCH:n.gm.fetch}),e}function c(e,t){let r=a();r.initializedAgents??={},t.initializedAt={ms:(0,i.t)(),date:new Date},r.initializedAgents[e]=t}function u(e){let t=a();return t.initializedAgents?.[e]}function d(e,t){a()[e]=t}function l(){return function(){let e=a();const t=e.info||{};e.info={beacon:o.beacon,errorBeacon:o.errorBeacon,...t}}(),function(){let e=a();const t=e.init||{};e.init={...t}}(),s(),function(){let e=a();const t=e.loader_config||{};e.loader_config={...t}}(),a()}},2843:(e,t,r)=>{"use strict";r.d(t,{u:()=>i});var n=r(3878);function i(e){let t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],r=arguments.length>2?arguments[2]:void 0,i=arguments.length>3?arguments[3]:void 0;(0,n.DD)("visibilitychange",(function(){if(t)return void("hidden"===document.visibilityState&&e());e(document.visibilityState)}),r,i)}},8941:(e,t,r)=>{"use strict";r.d(t,{um:()=>f,NZ:()=>R,vC:()=>A,Ri:()=>O,Ak:()=>_,o8:()=>P,MO:()=>U,bX:()=>F});var n=r(7836),i=r(3434),o=r(8990),a=r(6154);const s={},c=a.gm.XMLHttpRequest,u="addEventListener",d="removeEventListener",l="nr@wrapped:".concat(n.P);function f(e){var t=function(e){return(e||n.ee).get("events")}(e);if(s[t.debugId]++)return t;s[t.debugId]=1;var r=(0,i.YM)(t,!0);function f(e){r.inPlace(e,[u,d],"-",g)}function g(e,t){return e[1]}return"getPrototypeOf"in Object&&(a.RI&&h(document,f),h(a.gm,f),h(c.prototype,f)),t.on(u+"-start",(function(e,t){var n=e[1];if(null!==n&&("function"==typeof n||"object"==typeof n)){var i=(0,o.I)(n,l,(function(){var e={object:function(){if("function"!=typeof n.handleEvent)return;return n.handleEvent.apply(n,arguments)},function:n}[typeof n];return e?r(e,"fn-",null,e.name||"anonymous"):n}));this.wrapped=e[1]=i}})),t.on(d+"-start",(function(e){e[1]=this.wrapped||e[1]})),t}function h(e,t){let r=e;for(;"object"==typeof r&&!Object.prototype.hasOwnProperty.call(r,u);)r=Object.getPrototypeOf(r);for(var n=arguments.length,i=new Array(n>2?n-2:0),o=2;o<n;o++)i[o-2]=arguments[o];r&&t(r,...i)}var g="fetch-",p=g+"body-",m=["arrayBuffer","blob","json","text","formData"],v=a.gm.Request,b=a.gm.Response,y="prototype";const w={};function R(e){const t=function(e){return(e||n.ee).get("fetch")}(e);if(!(v&&b&&a.gm.fetch))return t;if(w[t.debugId]++)return t;function r(e,r,i){var o=e[r];"function"==typeof o&&(e[r]=function(){var e,r=[...arguments],a={};t.emit(i+"before-start",[r],a),a[n.P]&&a[n.P].dt&&(e=a[n.P].dt);var s=o.apply(this,r);return t.emit(i+"start",[r,e],s),s.then((function(e){return t.emit(i+"end",[null,e],s),e}),(function(e){throw t.emit(i+"end",[e],s),e}))})}return w[t.debugId]=1,m.forEach((e=>{r(v[y],e,p),r(b[y],e,p)})),r(a.gm,"fetch",g),t.on(g+"end",(function(e,r){var n=this;if(r){var i=r.headers.get("content-length");null!==i&&(n.rxSize=i),t.emit(g+"done",[null,r],n)}else t.emit(g+"done",[e],n)})),t}const x={},T=["pushState","replaceState"];function A(e){const t=function(e){return(e||n.ee).get("history")}(e);return!a.RI||x[t.debugId]++||(x[t.debugId]=1,(0,i.YM)(t).inPlace(window.history,T,"-")),t}var E=r(3878);const N={},S=["appendChild","insertBefore","replaceChild"];function O(e){const t=function(e){return(e||n.ee).get("jsonp")}(e);if(!a.RI||N[t.debugId])return t;N[t.debugId]=!0;var r=(0,i.YM)(t),o=/[?&](?:callback|cb)=([^&#]+)/,s=/(.*)\.([^.]+)/,c=/^(\w+)(\.|$)(.*)$/;function u(e,t){if(!e)return t;const r=e.match(c),n=r[1];return u(r[3],t[n])}return r.inPlace(Node.prototype,S,"dom-"),t.on("dom-start",(function(e){!function(e){if(!e||"string"!=typeof e.nodeName||"script"!==e.nodeName.toLowerCase())return;if("function"!=typeof e.addEventListener)return;var n=(i=e.src,a=i.match(o),a?a[1]:null);var i,a;if(!n)return;var c=function(e){var t=e.match(s);if(t&&t.length>=3)return{key:t[2],parent:u(t[1],window)};return{key:e,parent:window}}(n);if("function"!=typeof c.parent[c.key])return;var d={};function l(){t.emit("jsonp-end",[],d),e.removeEventListener("load",l,(0,E.jT)(!1)),e.removeEventListener("error",f,(0,E.jT)(!1))}function f(){t.emit("jsonp-error",[],d),t.emit("jsonp-end",[],d),e.removeEventListener("load",l,(0,E.jT)(!1)),e.removeEventListener("error",f,(0,E.jT)(!1))}r.inPlace(c.parent,[c.key],"cb-",d),e.addEventListener("load",l,(0,E.jT)(!1)),e.addEventListener("error",f,(0,E.jT)(!1)),t.emit("new-jsonp",[e.src],d)}(e[0])})),t}const I={};function _(e){const t=function(e){return(e||n.ee).get("mutation")}(e);if(!a.RI||I[t.debugId])return t;I[t.debugId]=!0;var r=(0,i.YM)(t),o=a.gm.MutationObserver;return o&&(window.MutationObserver=function(e){return this instanceof o?new o(r(e,"fn-")):o.apply(this,arguments)},MutationObserver.prototype=o.prototype),t}const j={};function P(e){const t=function(e){return(e||n.ee).get("promise")}(e);if(j[t.debugId])return t;j[t.debugId]=!0;var r=t.context,o=(0,i.YM)(t),s=a.gm.Promise;return s&&function(){function e(r){var n=t.context(),i=o(r,"executor-",n,null,!1);const a=Reflect.construct(s,[i],e);return t.context(a).getCtx=function(){return n},a}a.gm.Promise=e,Object.defineProperty(e,"name",{value:"Promise"}),e.toString=function(){return s.toString()},Object.setPrototypeOf(e,s),["all","race"].forEach((function(r){const n=s[r];e[r]=function(e){let i=!1;[...e||[]].forEach((e=>{this.resolve(e).then(a("all"===r),a(!1))}));const o=n.apply(this,arguments);return o;function a(e){return function(){t.emit("propagate",[null,!i],o,!1,!1),i=i||!e}}}})),["resolve","reject"].forEach((function(r){const n=s[r];e[r]=function(e){const r=n.apply(this,arguments);return e!==r&&t.emit("propagate",[e,!0],r,!1,!1),r}})),e.prototype=s.prototype;const n=s.prototype.then;s.prototype.then=function(){var e=this,i=r(e);i.promise=e;for(var a=arguments.length,s=new Array(a),c=0;c<a;c++)s[c]=arguments[c];s[0]=o(s[0],"cb-",i,null,!1),s[1]=o(s[1],"cb-",i,null,!1);const u=n.apply(this,s);return i.nextPromise=u,t.emit("propagate",[e,!0],u,!1,!1),u},s.prototype.then[i.Jt]=n,t.on("executor-start",(function(e){e[0]=o(e[0],"resolve-",this,null,!1),e[1]=o(e[1],"resolve-",this,null,!1)})),t.on("executor-err",(function(e,t,r){e[1](r)})),t.on("cb-end",(function(e,r,n){t.emit("propagate",[n,!0],this.nextPromise,!1,!1)})),t.on("propagate",(function(e,r,n){this.getCtx&&!r||(this.getCtx=function(){if(e instanceof Promise)var r=t.context(e);return r&&r.getCtx?r.getCtx():this})}))}(),t}const C={},k="setTimeout",L="setInterval",D="clearTimeout",H="-start",M="-",K=[k,"setImmediate",L,D,"clearImmediate"];function U(e){const t=function(e){return(e||n.ee).get("timer")}(e);if(C[t.debugId]++)return t;C[t.debugId]=1;var r=(0,i.YM)(t);return r.inPlace(a.gm,K.slice(0,2),k+M),r.inPlace(a.gm,K.slice(2,3),L+M),r.inPlace(a.gm,K.slice(3),D+M),t.on(L+H,(function(e,t,n){e[0]=r(e[0],"fn-",null,n)})),t.on(k+H,(function(e,t,n){this.method=n,this.timerDuration=isNaN(e[1])?0:+e[1],e[0]=r(e[0],"fn-",this,n)})),t}var G=r(944);const B={},V=["open","send"];function F(e){var t=e||n.ee;const r=function(e){return(e||n.ee).get("xhr")}(t);if(B[r.debugId]++)return r;B[r.debugId]=1,f(t);var o=(0,i.YM)(r),s=a.gm.XMLHttpRequest,c=a.gm.MutationObserver,u=a.gm.Promise,d=a.gm.setInterval,l="readystatechange",h=["onload","onerror","onabort","onloadstart","onloadend","onprogress","ontimeout"],g=[],p=a.gm.XMLHttpRequest=function(e){const t=new s(e),n=r.context(t);try{r.emit("new-xhr",[t],n),t.addEventListener(l,(i=n,function(){var e=this;e.readyState>3&&!i.resolved&&(i.resolved=!0,r.emit("xhr-resolved",[],e)),o.inPlace(e,h,"fn-",R)}),(0,E.jT)(!1))}catch(e){(0,G.R)(15,e);try{r.emit("internal-error",[e])}catch(e){}}var i;return t};function m(e,t){o.inPlace(t,["onreadystatechange"],"fn-",R)}if(function(e,t){for(var r in e)t[r]=e[r]}(s,p),p.prototype=s.prototype,o.inPlace(p.prototype,V,"-xhr-",R),r.on("send-xhr-start",(function(e,t){m(e,t),function(e){g.push(e),c&&(v?v.then(w):d?d(w):(b=-b,y.data=b))}(t)})),r.on("open-xhr-start",m),c){var v=u&&u.resolve();if(!d&&!u){var b=1,y=document.createTextNode(b);new c(w).observe(y,{characterData:!0})}}else t.on("fn-end",(function(e){e[0]&&e[0].type===l||w()}));function w(){for(var e=0;e<g.length;e++)m(0,g[e]);g.length&&(g=[])}function R(e,t){return t}return r}},3434:(e,t,r)=>{"use strict";r.d(t,{Jt:()=>o,YM:()=>c});var n=r(7836),i=r(5607);const o="nr@original:".concat(i.W);var a=Object.prototype.hasOwnProperty,s=!1;function c(e,t){return e||(e=n.ee),r.inPlace=function(e,t,n,i,o){n||(n="");const a="-"===n.charAt(0);for(let s=0;s<t.length;s++){const c=t[s],u=e[c];d(u)||(e[c]=r(u,a?c+n:n,i,c,o))}},r.flag=o,r;function r(t,r,n,s,c){return d(t)?t:(r||(r=""),nrWrapper[o]=t,function(e,t,r){if(Object.defineProperty&&Object.keys)try{return Object.keys(e).forEach((function(r){Object.defineProperty(t,r,{get:function(){return e[r]},set:function(t){return e[r]=t,t}})})),t}catch(e){u([e],r)}for(var n in e)a.call(e,n)&&(t[n]=e[n])}(t,nrWrapper,e),nrWrapper);function nrWrapper(){var o,a,d,l;try{a=this,o=[...arguments],d="function"==typeof n?n(o,a):n||{}}catch(t){u([t,"",[o,a,s],d],e)}i(r+"start",[o,a,s],d,c);try{return l=t.apply(a,o)}catch(e){throw i(r+"err",[o,a,e],d,c),e}finally{i(r+"end",[o,a,l],d,c)}}}function i(r,n,i,o){if(!s||t){var a=s;s=!0;try{e.emit(r,n,i,t,o)}catch(t){u([t,r,n,i],e)}s=a}}}function u(e,t){t||(t=n.ee);try{t.emit("internal-error",e)}catch(e){}}function d(e){return!(e&&"function"==typeof e&&e.apply&&!e[o])}},9300:(e,t,r)=>{"use strict";r.d(t,{T:()=>n});const n=r(860).K.ajax},3333:(e,t,r)=>{"use strict";r.d(t,{T:()=>n});const n=r(860).K.genericEvents},6774:(e,t,r)=>{"use strict";r.d(t,{T:()=>n});const n=r(860).K.jserrors},993:(e,t,r)=>{"use strict";r.d(t,{ET:()=>o,It:()=>s,TZ:()=>a,p_:()=>i});var n=r(860);const i={ERROR:"ERROR",WARN:"WARN",INFO:"INFO",DEBUG:"DEBUG",TRACE:"TRACE"},o="log",a=n.K.logging,s=1e6},3785:(e,t,r)=>{"use strict";r.d(t,{R:()=>c,b:()=>u});var n=r(9908),i=r(1863),o=r(860),a=r(3969),s=r(993);function c(e,t){let r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},c=arguments.length>3&&void 0!==arguments[3]?arguments[3]:s.p_.INFO;(0,n.p)(a.xV,["API/logging/".concat(c.toLowerCase(),"/called")],void 0,o.K.metrics,e),(0,n.p)(s.ET,[(0,i.t)(),t,r,c],void 0,o.K.logging,e)}function u(e){return"string"==typeof e&&Object.values(s.p_).some((t=>t===e))}},3969:(e,t,r)=>{"use strict";r.d(t,{TZ:()=>n,XG:()=>s,rs:()=>i,xV:()=>a,z_:()=>o});const n=r(860).K.metrics,i="sm",o="cm",a="storeSupportabilityMetrics",s="storeEventMetrics"},6630:(e,t,r)=>{"use strict";r.d(t,{T:()=>n});const n=r(860).K.pageViewEvent},782:(e,t,r)=>{"use strict";r.d(t,{T:()=>n});const n=r(860).K.pageViewTiming},6344:(e,t,r)=>{"use strict";r.d(t,{BB:()=>f,G4:()=>o,It:()=>c,No:()=>u,Qb:()=>h,TZ:()=>i,Ug:()=>a,_s:()=>s,bc:()=>l,yP:()=>d});var n=r(2614);const i=r(860).K.sessionReplay,o={RECORD:"recordReplay",PAUSE:"pauseReplay",REPLAY_RUNNING:"replayRunning",ERROR_DURING_REPLAY:"errorDuringReplay"},a=.12,s={DomContentLoaded:0,Load:1,FullSnapshot:2,IncrementalSnapshot:3,Meta:4,Custom:5},c=1e6,u=64e3,d={[n.g.ERROR]:15e3,[n.g.FULL]:3e5,[n.g.OFF]:0},l={RESET:{message:"Session was reset",sm:"Reset"},IMPORT:{message:"Recorder failed to import",sm:"Import"},TOO_MANY:{message:"429: Too Many Requests",sm:"Too-Many"},TOO_BIG:{message:"Payload was too large",sm:"Too-Big"},CROSS_TAB:{message:"Session Entity was set to OFF on another tab",sm:"Cross-Tab"},ENTITLEMENTS:{message:"Session Replay is not allowed and will not be started",sm:"Entitlement"}},f=5e3,h={API:"api"}},5270:(e,t,r)=>{"use strict";r.d(t,{Aw:()=>s,CT:()=>c,SR:()=>a});var n=r(2983),i=r(7767),o=r(6154);function a(e){return!!n.hR.MO&&(0,i.V)(e)&&!0===(0,n.gD)(e,"session_trace.enabled")}function s(e){return!0===(0,n.gD)(e,"session_replay.preload")&&a(e)}function c(e,t){const r=t.correctAbsoluteTimestamp(e);return{originalTimestamp:e,correctedTimestamp:r,timestampDiff:e-r,originTime:o.WN,correctedOriginTime:t.correctedOriginTime,originTimeDiff:Math.floor(o.WN-t.correctedOriginTime)}}},3738:(e,t,r)=>{"use strict";r.d(t,{He:()=>i,Kp:()=>s,Lc:()=>u,Rz:()=>d,TZ:()=>n,bD:()=>o,d3:()=>a,jx:()=>l,uP:()=>c});const n=r(860).K.sessionTrace,i="bstResource",o="resource",a="-start",s="-end",c="fn"+a,u="fn"+s,d="pushState",l=1e3},3962:(e,t,r)=>{"use strict";r.d(t,{AM:()=>o,O2:()=>s,Qu:()=>c,TZ:()=>a,ih:()=>u,tC:()=>i});var n=r(860);const i=["click","keydown","submit"],o="api",a=n.K.softNav,s={INITIAL_PAGE_LOAD:"",ROUTE_CHANGE:1,UNSPECIFIED:2},c={INTERACTION:1,AJAX:2,CUSTOM_END:3,CUSTOM_TRACER:4},u={IP:"in progress",FIN:"finished",CAN:"cancelled"}},7378:(e,t,r)=>{"use strict";r.d(t,{$p:()=>x,BR:()=>b,Kp:()=>R,L3:()=>y,Lc:()=>c,NC:()=>o,SG:()=>d,TZ:()=>i,U6:()=>g,UT:()=>m,d3:()=>w,dT:()=>f,e5:()=>A,gx:()=>v,l9:()=>l,oW:()=>h,op:()=>p,rw:()=>u,tH:()=>E,uP:()=>s,wW:()=>T,xq:()=>a});var n=r(2983);const i=r(860).K.spa,o=["click","submit","keypress","keydown","keyup","change"],a=999,s="fn-start",c="fn-end",u="cb-start",d="api-ixn-",l="remaining",f="interaction",h="spaNode",g="jsonpNode",p="fetch-start",m="fetch-done",v="fetch-body-",b="jsonp-end",y=n.hR.ST,w="-start",R="-end",x="-body",T="cb"+R,A="jsTime",E="fetch"},4234:(e,t,r)=>{"use strict";r.d(t,{W:()=>i});var n=r(7836);class i{constructor(e,t,r){this.agentIdentifier=e,this.aggregator=t,this.ee=n.ee.get(e),this.featureName=r,this.blocked=!1}}},7767:(e,t,r)=>{"use strict";r.d(t,{V:()=>o});var n=r(2983),i=r(6154);const o=e=>i.RI&&!0===(0,n.gD)(e,"privacy.cookies_enabled")},425:(e,t,r)=>{"use strict";r.d(t,{j:()=>O});var n=r(860),i=r(2983),o=r(9908),a=r(7836),s=r(1687),c=r(5289),u=r(6154),d=r(944),l=r(3969),f=r(384),h=r(6344);const g=["setErrorHandler","finished","addToTrace","addRelease","addPageAction","setCurrentRouteName","setPageViewName","setCustomAttribute","interaction","noticeError","setUserId","setApplicationVersion","start",h.G4.RECORD,h.G4.PAUSE,"log","wrapLogger"],p=["setErrorHandler","finished","addToTrace","addRelease"];var m=r(1863),v=r(2614),b=r(993),y=r(3785),w=r(2646),R=r(3434);function x(e,t,r,n){if("object"!=typeof t||!t||"string"!=typeof r||!r||"function"!=typeof t[r])return(0,d.R)(29);const i=function(e){return(e||a.ee).get("logger")}(e),o=(0,R.YM)(i),s=new w.y(a.P);return s.level=n.level,s.customAttributes=n.customAttributes,o.inPlace(t,[r],"wrap-logger-",s),i}function T(){const e=(0,f.pV)();g.forEach((t=>{e[t]=function(){for(var r=arguments.length,n=new Array(r),i=0;i<r;i++)n[i]=arguments[i];return function(t){for(var r=arguments.length,n=new Array(r>1?r-1:0),i=1;i<r;i++)n[i-1]=arguments[i];let o=[];return Object.values(e.initializedAgents).forEach((e=>{e&&e.api?e.exposed&&e.api[t]&&o.push(e.api[t](...n)):(0,d.R)(38,t)})),o.length>1?o:o[0]}(t,...n)}}))}const A={};var E=r(5284);const N=e=>{const t=e.startsWith("http");e+="/",r.p=t?e:"https://"+e};let S=!1;function O(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},g=arguments.length>2?arguments[2]:void 0,w=arguments.length>3?arguments[3]:void 0,{init:R,info:O,loader_config:I,runtime:_={},exposed:j=!0}=t;_.loaderType=g;const P=(0,f.pV)();O||(R=P.init,O=P.info,I=P.loader_config),(0,i.xN)(e.agentIdentifier,R||{}),(0,i.aN)(e.agentIdentifier,I||{}),O.jsAttributes??={},u.bv&&(O.jsAttributes.isWorker=!0),(0,i.x1)(e.agentIdentifier,O);const C=(0,i.D0)(e.agentIdentifier),k=[O.beacon,O.errorBeacon];S||(C.proxy.assets&&(N(C.proxy.assets),k.push(C.proxy.assets)),C.proxy.beacon&&k.push(C.proxy.beacon),T(),(0,f.US)("activatedFeatures",E.B),e.runSoftNavOverSpa&&=!0===C.soft_navigations.enabled&&C.feature_flags.includes("soft_nav")),_.denyList=[...C.ajax.deny_list||[],...C.ajax.block_internal?k:[]],_.ptid=e.agentIdentifier,(0,i.V)(e.agentIdentifier,_),e.ee=a.ee.get(e.agentIdentifier),void 0===e.api&&(e.api=function(e,t){let f=arguments.length>2&&void 0!==arguments[2]&&arguments[2];t||(0,s.Ak)(e,"api");const g={};var w=a.ee.get(e),R=w.get("tracer");A[e]=v.g.OFF,w.on(h.G4.REPLAY_RUNNING,(t=>{A[e]=t}));var T="api-",E=T+"ixn-";function N(t,r,n,o){const a=(0,i.Vp)(e);return null===r?delete a.jsAttributes[t]:(0,i.x1)(e,{...a,jsAttributes:{...a.jsAttributes,[t]:r}}),I(T,n,!0,o||null===r?"session":void 0)(t,r)}function S(){}g.log=function(e){let{customAttributes:t={},level:r=b.p_.INFO}=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};(0,o.p)(l.xV,["API/log/called"],void 0,n.K.metrics,w),(0,y.R)(w,e,t,r)},g.wrapLogger=function(e,t){let{customAttributes:r={},level:i=b.p_.INFO}=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};(0,o.p)(l.xV,["API/wrapLogger/called"],void 0,n.K.metrics,w),x(w,e,t,{customAttributes:r,level:i})},p.forEach((e=>{g[e]=I(T,e,!0,"api")})),g.addPageAction=I(T,"addPageAction",!0,n.K.genericEvents),g.setPageViewName=function(t,r){if("string"==typeof t)return"/"!==t.charAt(0)&&(t="/"+t),(0,i.fr)(e).customTransaction=(r||"http://custom.transaction")+t,I(T,"setPageViewName",!0)()},g.setCustomAttribute=function(e,t){let r=arguments.length>2&&void 0!==arguments[2]&&arguments[2];if("string"==typeof e){if(["string","number","boolean"].includes(typeof t)||null===t)return N(e,t,"setCustomAttribute",r);(0,d.R)(40,typeof t)}else(0,d.R)(39,typeof e)},g.setUserId=function(e){if("string"==typeof e||null===e)return N("enduser.id",e,"setUserId",!0);(0,d.R)(41,typeof e)},g.setApplicationVersion=function(e){if("string"==typeof e||null===e)return N("application.version",e,"setApplicationVersion",!1);(0,d.R)(42,typeof e)},g.start=()=>{try{(0,o.p)(l.xV,["API/start/called"],void 0,n.K.metrics,w),w.emit("manual-start-all")}catch(e){(0,d.R)(23,e)}},g[h.G4.RECORD]=function(){(0,o.p)(l.xV,["API/recordReplay/called"],void 0,n.K.metrics,w),(0,o.p)(h.G4.RECORD,[],void 0,n.K.sessionReplay,w)},g[h.G4.PAUSE]=function(){(0,o.p)(l.xV,["API/pauseReplay/called"],void 0,n.K.metrics,w),(0,o.p)(h.G4.PAUSE,[],void 0,n.K.sessionReplay,w)},g.interaction=function(e){return(new S).get("object"==typeof e?e:{})};const O=S.prototype={createTracer:function(e,t){var r={},i=this,a="function"==typeof t;return(0,o.p)(l.xV,["API/createTracer/called"],void 0,n.K.metrics,w),f||(0,o.p)(E+"tracer",[(0,m.t)(),e,r],i,n.K.spa,w),function(){if(R.emit((a?"":"no-")+"fn-start",[(0,m.t)(),i,a],r),a)try{return t.apply(this,arguments)}catch(e){const t="string"==typeof e?new Error(e):e;throw R.emit("fn-err",[arguments,this,t],r),t}finally{R.emit("fn-end",[(0,m.t)()],r)}}}};function I(e,t,r,i){return function(){return(0,o.p)(l.xV,["API/"+t+"/called"],void 0,n.K.metrics,w),i&&(0,o.p)(e+t,[(0,m.t)(),...arguments],r?null:this,i,w),r?void 0:this}}function _(){r.e(478).then(r.bind(r,8778)).then((t=>{let{setAPI:r}=t;r(e),(0,s.Ze)(e,"api")})).catch((e=>{(0,d.R)(27,e),w.abort()}))}return["actionText","setName","setAttribute","save","ignore","onEnd","getContext","end","get"].forEach((e=>{O[e]=I(E,e,void 0,f?n.K.softNav:n.K.spa)})),g.setCurrentRouteName=f?I(E,"routeName",void 0,n.K.softNav):I(T,"routeName",!0,n.K.spa),g.noticeError=function(t,r){"string"==typeof t&&(t=new Error(t)),(0,o.p)(l.xV,["API/noticeError/called"],void 0,n.K.metrics,w),(0,o.p)("err",[t,(0,m.t)(),!1,r,!!A[e]],void 0,n.K.jserrors,w)},u.RI?(0,c.GG)((()=>_()),!0):_(),g}(e.agentIdentifier,w,e.runSoftNavOverSpa)),void 0===e.exposed&&(e.exposed=j),S=!0}},8374:(e,t,r)=>{r.nc=(()=>{try{return document?.currentScript?.nonce}catch(e){}return""})()},860:(e,t,r)=>{"use strict";r.d(t,{K:()=>n,P:()=>i});const n={ajax:"ajax",genericEvents:"generic_events",jserrors:"jserrors",logging:"logging",metrics:"metrics",pageAction:"page_action",pageViewEvent:"page_view_event",pageViewTiming:"page_view_timing",sessionReplay:"session_replay",sessionTrace:"session_trace",softNav:"soft_navigations",spa:"spa"},i={[n.pageViewEvent]:1,[n.pageViewTiming]:2,[n.metrics]:3,[n.jserrors]:4,[n.spa]:5,[n.ajax]:6,[n.sessionTrace]:7,[n.softNav]:8,[n.sessionReplay]:9,[n.logging]:10,[n.genericEvents]:11}}},n={};function i(e){var t=n[e];if(void 0!==t)return t.exports;var o=n[e]={exports:{}};return r[e](o,o.exports,i),o.exports}i.m=r,i.d=(e,t)=>{for(var r in t)i.o(t,r)&&!i.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},i.f={},i.e=e=>Promise.all(Object.keys(i.f).reduce(((t,r)=>(i.f[r](e,t),t)),[])),i.u=e=>({212:"nr-spa-compressor",249:"nr-spa-recorder",478:"nr-spa"}[e]+"-1.264.0.min.js"),i.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),e={},t="NRBA-1.264.0.PROD:",i.l=(r,n,o,a)=>{if(e[r])e[r].push(n);else{var s,c;if(void 0!==o)for(var u=document.getElementsByTagName("script"),d=0;d<u.length;d++){var l=u[d];if(l.getAttribute("src")==r||l.getAttribute("data-webpack")==t+o){s=l;break}}if(!s){c=!0;var f={478:"sha512-McVw1bGHjjUf5GGS4WenO1eJQ8s7UloN07RDcN8bH9X1iGHTAJZ38fRFPC9DW3pFKJ2uKysBuvqehJYvHcIthg==",249:"sha512-QYiFK3L0u5EMr5V3YITSZcfvK9upxp9dvxRVLY9qis5pUIvOkKb5SKvPYPNw7sEKXP8TzyY2DLpLmqHxWCZ2cg==",212:"sha512-pdn6WS9R03kXhRA2vQoZgApGomYEaTBtHJfyGcBu9pt7MUR6schZTqs6BcrSDNoPhpJO6N5kUTMqB2WknZMDIA=="};(s=document.createElement("script")).charset="utf-8",s.timeout=120,i.nc&&s.setAttribute("nonce",i.nc),s.setAttribute("data-webpack",t+o),s.src=r,0!==s.src.indexOf(window.location.origin+"/")&&(s.crossOrigin="anonymous"),f[a]&&(s.integrity=f[a])}e[r]=[n];var h=(t,n)=>{s.onerror=s.onload=null,clearTimeout(g);var i=e[r];if(delete e[r],s.parentNode&&s.parentNode.removeChild(s),i&&i.forEach((e=>e(n))),t)return t(n)},g=setTimeout(h.bind(null,void 0,{type:"timeout",target:s}),12e4);s.onerror=h.bind(null,s.onerror),s.onload=h.bind(null,s.onload),c&&document.head.appendChild(s)}},i.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.p="https://js-agent.newrelic.com/",(()=>{var e={38:0,788:0};i.f.j=(t,r)=>{var n=i.o(e,t)?e[t]:void 0;if(0!==n)if(n)r.push(n[2]);else{var o=new Promise(((r,i)=>n=e[t]=[r,i]));r.push(n[2]=o);var a=i.p+i.u(t),s=new Error;i.l(a,(r=>{if(i.o(e,t)&&(0!==(n=e[t])&&(e[t]=void 0),n)){var o=r&&("load"===r.type?"missing":r.type),a=r&&r.target&&r.target.src;s.message="Loading chunk "+t+" failed.\n("+o+": "+a+")",s.name="ChunkLoadError",s.type=o,s.request=a,n[1](s)}}),"chunk-"+t,t)}};var t=(t,r)=>{var n,o,[a,s,c]=r,u=0;if(a.some((t=>0!==e[t]))){for(n in s)i.o(s,n)&&(i.m[n]=s[n]);if(c)c(i)}for(t&&t(r);u<a.length;u++)o=a[u],i.o(e,o)&&e[o]&&e[o][0](),e[o]=0},r=self["webpackChunk:NRBA-1.264.0.PROD"]=self["webpackChunk:NRBA-1.264.0.PROD"]||[];r.forEach(t.bind(null,0)),r.push=t.bind(null,r.push.bind(r))})(),(()=>{"use strict";i(8374);var e=i(944),t=i(6344),r=i(9566);class n{agentIdentifier;constructor(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:(0,r.LA)(16);this.agentIdentifier=e}#e(t){for(var r=arguments.length,n=new Array(r>1?r-1:0),i=1;i<r;i++)n[i-1]=arguments[i];if("function"==typeof this.api?.[t])return this.api[t](...n);(0,e.R)(35,t)}addPageAction(e,t){return this.#e("addPageAction",e,t)}setPageViewName(e,t){return this.#e("setPageViewName",e,t)}setCustomAttribute(e,t,r){return this.#e("setCustomAttribute",e,t,r)}noticeError(e,t){return this.#e("noticeError",e,t)}setUserId(e){return this.#e("setUserId",e)}setApplicationVersion(e){return this.#e("setApplicationVersion",e)}setErrorHandler(e){return this.#e("setErrorHandler",e)}finished(e){return this.#e("finished",e)}addRelease(e,t){return this.#e("addRelease",e,t)}start(e){return this.#e("start",e)}recordReplay(){return this.#e(t.G4.RECORD)}pauseReplay(){return this.#e(t.G4.PAUSE)}addToTrace(e){return this.#e("addToTrace",e)}setCurrentRouteName(e){return this.#e("setCurrentRouteName",e)}interaction(){return this.#e("interaction")}log(e,t){return this.#e("logInfo",e,t)}wrapLogger(e,t,r){return this.#e("wrapLogger",e,t,r)}}var o=i(860),a=i(2983);const s=Object.values(o.K);function c(e){const t={};return s.forEach((r=>{t[r]=function(e,t){return!0===(0,a.gD)(t,"".concat(e,".enabled"))}(r,e)})),t}var u=i(425);var d=i(1687),l=i(4234),f=i(5289),h=i(6154),g=i(5270),p=i(7767),m=i(6389);class v extends l.W{constructor(e,t,r){let n=!(arguments.length>3&&void 0!==arguments[3])||arguments[3];super(e,t,r),this.auto=n,this.abortHandler=void 0,this.featAggregate=void 0,this.onAggregateImported=void 0,!1===(0,a.gD)(this.agentIdentifier,"".concat(this.featureName,".autoStart"))&&(this.auto=!1),this.auto?(0,d.Ak)(e,r):this.ee.on("manual-start-all",(0,m.J)((()=>{(0,d.Ak)(this.agentIdentifier,this.featureName),this.auto=!0,this.importAggregator()})))}importAggregator(){let t,r=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(this.featAggregate||!this.auto)return;this.onAggregateImported=new Promise((e=>{t=e}));const n=async()=>{let n;try{if((0,p.V)(this.agentIdentifier)){const{setupAgentSession:e}=await i.e(478).then(i.bind(i,6526));n=e(this.agentIdentifier)}}catch(t){(0,e.R)(20,t),this.ee.emit("internal-error",[t]),this.featureName===o.K.sessionReplay&&this.abortHandler?.()}try{if(!this.#t(this.featureName,n))return(0,d.Ze)(this.agentIdentifier,this.featureName),void t(!1);const{lazyFeatureLoader:e}=await i.e(478).then(i.bind(i,6103)),{Aggregate:o}=await e(this.featureName,"aggregate");this.featAggregate=new o(this.agentIdentifier,this.aggregator,r),t(!0)}catch(r){(0,e.R)(34,r),this.abortHandler?.(),(0,d.Ze)(this.agentIdentifier,this.featureName,!0),t(!1),this.ee&&this.ee.abort()}};h.RI?(0,f.GG)((()=>n()),!0):n()}#t(e,t){switch(e){case o.K.sessionReplay:return(0,g.SR)(this.agentIdentifier)&&!!t;case o.K.sessionTrace:return!!t;default:return!0}}}var b=i(6630);class y extends v{static featureName=(()=>b.T)();constructor(e,t){let r=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];super(e,t,b.T,r),this.importAggregator()}}var w=i(4777);class R extends w.J{constructor(e){super(e),this.aggregatedData={}}store(e,t,r,n,i){var o=this.getBucket(e,t,r,i);return o.metrics=function(e,t){t||(t={count:0});return t.count+=1,Object.entries(e||{}).forEach((e=>{let[r,n]=e;t[r]=x(n,t[r])})),t}(n,o.metrics),o}merge(e,t,r,n,i){var o=this.getBucket(e,t,n,i);if(o.metrics){var a=o.metrics;a.count+=r.count,Object.keys(r||{}).forEach((e=>{if("count"!==e){var t=a[e],n=r[e];n&&!n.c?a[e]=x(n.t,t):a[e]=function(e,t){if(!t)return e;t.c||(t=T(t.t));return t.min=Math.min(e.min,t.min),t.max=Math.max(e.max,t.max),t.t+=e.t,t.sos+=e.sos,t.c+=e.c,t}(n,a[e])}}))}else o.metrics=r}storeMetric(e,t,r,n){var i=this.getBucket(e,t,r);return i.stats=x(n,i.stats),i}getBucket(e,t,r,n){this.aggregatedData[e]||(this.aggregatedData[e]={});var i=this.aggregatedData[e][t];return i||(i=this.aggregatedData[e][t]={params:r||{}},n&&(i.custom=n)),i}get(e,t){return t?this.aggregatedData[e]&&this.aggregatedData[e][t]:this.aggregatedData[e]}take(e){for(var t={},r="",n=!1,i=0;i<e.length;i++)t[r=e[i]]=Object.values(this.aggregatedData[r]||{}),t[r].length&&(n=!0),delete this.aggregatedData[r];return n?t:null}}function x(e,t){return null==e?function(e){e?e.c++:e={c:1};return e}(t):t?(t.c||(t=T(t.t)),t.c+=1,t.t+=e,t.sos+=e*e,e>t.max&&(t.max=e),e<t.min&&(t.min=e),t):{t:e}}function T(e){return{t:e,min:e,max:e,sos:e*e,c:1}}var A=i(384);var E=i(9908),N=i(2843),S=i(3878),O=i(782),I=i(1863);class _ extends v{static featureName=(()=>O.T)();constructor(e,t){let r=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];super(e,t,O.T,r),h.RI&&((0,N.u)((()=>(0,E.p)("docHidden",[(0,I.t)()],void 0,O.T,this.ee)),!0),(0,S.sp)("pagehide",(()=>(0,E.p)("winPagehide",[(0,I.t)()],void 0,O.T,this.ee))),this.importAggregator())}}var j=i(3969);class P extends v{static featureName=(()=>j.TZ)();constructor(e,t){let r=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];super(e,t,j.TZ,r),this.importAggregator()}}var C=i(6774),k=i(3304);class L{constructor(e,t,r,n,i){this.name="UncaughtError",this.message="string"==typeof e?e:(0,k.A)(e),this.sourceURL=t,this.line=r,this.column=n,this.__newrelic=i}}function D(e){return K(e)?e:new L(void 0!==e?.message?e.message:e,e?.filename||e?.sourceURL,e?.lineno||e?.line,e?.colno||e?.col,e?.__newrelic)}function H(e){let t="Unhandled Promise Rejection";if(K(e?.reason))try{return e.reason.message=t+": "+e.reason.message,D(e.reason)}catch(t){return D(e.reason)}if(void 0===e.reason)return D(t);const r=D(e.reason);return r.message=t+": "+r?.message,r}function M(e){if(e.error instanceof SyntaxError&&!/:\d+$/.test(e.error.stack?.trim())){const t=new L(e.message,e.filename,e.lineno,e.colno,e.error.__newrelic);return t.name=SyntaxError.name,t}return K(e.error)?e.error:D(e)}function K(e){return e instanceof Error&&!!e.stack}class U extends v{static featureName=(()=>C.T)();#r=!1;constructor(e,r){let n=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];super(e,r,C.T,n);try{this.removeOnAbort=new AbortController}catch(e){}this.ee.on("internal-error",(e=>{this.abortHandler&&(0,E.p)("ierr",[D(e),(0,I.t)(),!0,{},this.#r],void 0,this.featureName,this.ee)})),this.ee.on(t.G4.REPLAY_RUNNING,(e=>{this.#r=e})),h.gm.addEventListener("unhandledrejection",(e=>{this.abortHandler&&(0,E.p)("err",[H(e),(0,I.t)(),!1,{unhandledPromiseRejection:1},this.#r],void 0,this.featureName,this.ee)}),(0,S.jT)(!1,this.removeOnAbort?.signal)),h.gm.addEventListener("error",(e=>{this.abortHandler&&(0,E.p)("err",[M(e),(0,I.t)(),!1,{},this.#r],void 0,this.featureName,this.ee)}),(0,S.jT)(!1,this.removeOnAbort?.signal)),this.abortHandler=this.#n,this.importAggregator()}#n(){this.removeOnAbort?.abort(),this.abortHandler=void 0}}var G=i(8990);let B=1;const V="nr@id";function F(e){const t=typeof e;return!e||"object"!==t&&"function"!==t?-1:e===h.gm?0:(0,G.I)(e,V,(function(){return B++}))}function W(e){if("string"==typeof e&&e.length)return e.length;if("object"==typeof e){if("undefined"!=typeof ArrayBuffer&&e instanceof ArrayBuffer&&e.byteLength)return e.byteLength;if("undefined"!=typeof Blob&&e instanceof Blob&&e.size)return e.size;if(!("undefined"!=typeof FormData&&e instanceof FormData))try{return(0,k.A)(e).length}catch(e){return}}}var z=i(8941),Z=i(7485);class q{constructor(e){this.agentIdentifier=e}generateTracePayload(e){if(!this.shouldGenerateTrace(e))return null;var t=(0,a.oC)(this.agentIdentifier);if(!t)return null;var n=(t.accountID||"").toString()||null,i=(t.agentID||"").toString()||null,o=(t.trustKey||"").toString()||null;if(!n||!i)return null;var s=(0,r.ZF)(),c=(0,r.el)(),u=Date.now(),d={spanId:s,traceId:c,timestamp:u};return(e.sameOrigin||this.isAllowedOrigin(e)&&this.useTraceContextHeadersForCors())&&(d.traceContextParentHeader=this.generateTraceContextParentHeader(s,c),d.traceContextStateHeader=this.generateTraceContextStateHeader(s,u,n,i,o)),(e.sameOrigin&&!this.excludeNewrelicHeader()||!e.sameOrigin&&this.isAllowedOrigin(e)&&this.useNewrelicHeaderForCors())&&(d.newrelicHeader=this.generateTraceHeader(s,c,u,n,i,o)),d}generateTraceContextParentHeader(e,t){return"00-"+t+"-"+e+"-01"}generateTraceContextStateHeader(e,t,r,n,i){return i+"@nr=0-1-"+r+"-"+n+"-"+e+"----"+t}generateTraceHeader(e,t,r,n,i,o){if(!("function"==typeof h.gm?.btoa))return null;var a={v:[0,1],d:{ty:"Browser",ac:n,ap:i,id:e,tr:t,ti:r}};return o&&n!==o&&(a.d.tk=o),btoa((0,k.A)(a))}shouldGenerateTrace(e){return this.isDtEnabled()&&this.isAllowedOrigin(e)}isAllowedOrigin(e){var t=!1,r={};if((0,a.gD)(this.agentIdentifier,"distributed_tracing")&&(r=(0,a.D0)(this.agentIdentifier).distributed_tracing),e.sameOrigin)t=!0;else if(r.allowed_origins instanceof Array)for(var n=0;n<r.allowed_origins.length;n++){var i=(0,Z.D)(r.allowed_origins[n]);if(e.hostname===i.hostname&&e.protocol===i.protocol&&e.port===i.port){t=!0;break}}return t}isDtEnabled(){var e=(0,a.gD)(this.agentIdentifier,"distributed_tracing");return!!e&&!!e.enabled}excludeNewrelicHeader(){var e=(0,a.gD)(this.agentIdentifier,"distributed_tracing");return!!e&&!!e.exclude_newrelic_header}useNewrelicHeaderForCors(){var e=(0,a.gD)(this.agentIdentifier,"distributed_tracing");return!!e&&!1!==e.cors_use_newrelic_header}useTraceContextHeadersForCors(){var e=(0,a.gD)(this.agentIdentifier,"distributed_tracing");return!!e&&!!e.cors_use_tracecontext_headers}}var Y=i(9300),X=i(7295),J=["load","error","abort","timeout"],Q=J.length,ee=a.hR.REQ,te=a.hR.XHR;class re extends v{static featureName=(()=>Y.T)();constructor(e,t){let r=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];super(e,t,Y.T,r),this.dt=new q(e),this.handler=(e,t,r,n)=>(0,E.p)(e,t,r,n,this.ee);try{const e={xmlhttprequest:"xhr",fetch:"fetch",beacon:"beacon"};h.gm?.performance?.getEntriesByType("resource").forEach((t=>{if(t.initiatorType in e&&0!==t.responseStatus){const r={status:t.responseStatus},n={rxSize:t.transferSize,duration:Math.floor(t.duration),cbTime:0};ne(r,t.name),this.handler("xhr",[r,n,t.startTime,t.responseEnd,e[t.initiatorType]],void 0,o.K.ajax)}}))}catch(e){}(0,z.NZ)(this.ee),(0,z.bX)(this.ee),function(e,t,r,n){function i(e){var t=this;t.totalCbs=0,t.called=0,t.cbTime=0,t.end=x,t.ended=!1,t.xhrGuids={},t.lastSize=null,t.loadCaptureCalled=!1,t.params=this.params||{},t.metrics=this.metrics||{},e.addEventListener("load",(function(r){T(t,e)}),(0,S.jT)(!1)),h.lR||e.addEventListener("progress",(function(e){t.lastSize=e.loaded}),(0,S.jT)(!1))}function s(e){this.params={method:e[0]},ne(this,e[1]),this.metrics={}}function c(t,r){var i=(0,a.oC)(e);i.xpid&&this.sameOrigin&&r.setRequestHeader("X-NewRelic-ID",i.xpid);var o=n.generateTracePayload(this.parsedOrigin);if(o){var s=!1;o.newrelicHeader&&(r.setRequestHeader("newrelic",o.newrelicHeader),s=!0),o.traceContextParentHeader&&(r.setRequestHeader("traceparent",o.traceContextParentHeader),o.traceContextStateHeader&&r.setRequestHeader("tracestate",o.traceContextStateHeader),s=!0),s&&(this.dt=o)}}function u(e,r){var n=this.metrics,i=e[0],o=this;if(n&&i){var a=W(i);a&&(n.txSize=a)}this.startTime=(0,I.t)(),this.body=i,this.listener=function(e){try{"abort"!==e.type||o.loadCaptureCalled||(o.params.aborted=!0),("load"!==e.type||o.called===o.totalCbs&&(o.onloadCalled||"function"!=typeof r.onload)&&"function"==typeof o.end)&&o.end(r)}catch(e){try{t.emit("internal-error",[e])}catch(e){}}};for(var s=0;s<Q;s++)r.addEventListener(J[s],this.listener,(0,S.jT)(!1))}function d(e,t,r){this.cbTime+=e,t?this.onloadCalled=!0:this.called+=1,this.called!==this.totalCbs||!this.onloadCalled&&"function"==typeof r.onload||"function"!=typeof this.end||this.end(r)}function l(e,t){var r=""+F(e)+!!t;this.xhrGuids&&!this.xhrGuids[r]&&(this.xhrGuids[r]=!0,this.totalCbs+=1)}function f(e,t){var r=""+F(e)+!!t;this.xhrGuids&&this.xhrGuids[r]&&(delete this.xhrGuids[r],this.totalCbs-=1)}function g(){this.endTime=(0,I.t)()}function p(e,r){r instanceof te&&"load"===e[0]&&t.emit("xhr-load-added",[e[1],e[2]],r)}function m(e,r){r instanceof te&&"load"===e[0]&&t.emit("xhr-load-removed",[e[1],e[2]],r)}function v(e,t,r){t instanceof te&&("onload"===r&&(this.onload=!0),("load"===(e[0]&&e[0].type)||this.onload)&&(this.xhrCbStart=(0,I.t)()))}function b(e,r){this.xhrCbStart&&t.emit("xhr-cb-time",[(0,I.t)()-this.xhrCbStart,this.onload,r],r)}function y(e){var t,r=e[1]||{};if("string"==typeof e[0]?0===(t=e[0]).length&&h.RI&&(t=""+h.gm.location.href):e[0]&&e[0].url?t=e[0].url:h.gm?.URL&&e[0]&&e[0]instanceof URL?t=e[0].href:"function"==typeof e[0].toString&&(t=e[0].toString()),"string"==typeof t&&0!==t.length){t&&(this.parsedOrigin=(0,Z.D)(t),this.sameOrigin=this.parsedOrigin.sameOrigin);var i=n.generateTracePayload(this.parsedOrigin);if(i&&(i.newrelicHeader||i.traceContextParentHeader))if(e[0]&&e[0].headers)s(e[0].headers,i)&&(this.dt=i);else{var o={};for(var a in r)o[a]=r[a];o.headers=new Headers(r.headers||{}),s(o.headers,i)&&(this.dt=i),e.length>1?e[1]=o:e.push(o)}}function s(e,t){var r=!1;return t.newrelicHeader&&(e.set("newrelic",t.newrelicHeader),r=!0),t.traceContextParentHeader&&(e.set("traceparent",t.traceContextParentHeader),t.traceContextStateHeader&&e.set("tracestate",t.traceContextStateHeader),r=!0),r}}function w(e,t){this.params={},this.metrics={},this.startTime=(0,I.t)(),this.dt=t,e.length>=1&&(this.target=e[0]),e.length>=2&&(this.opts=e[1]);var r,n=this.opts||{},i=this.target;"string"==typeof i?r=i:"object"==typeof i&&i instanceof ee?r=i.url:h.gm?.URL&&"object"==typeof i&&i instanceof URL&&(r=i.href),ne(this,r);var o=(""+(i&&i instanceof ee&&i.method||n.method||"GET")).toUpperCase();this.params.method=o,this.body=n.body,this.txSize=W(n.body)||0}function R(e,t){if(this.endTime=(0,I.t)(),this.params||(this.params={}),(0,X.iW)(this.params))return;let n;this.params.status=t?t.status:0,"string"==typeof this.rxSize&&this.rxSize.length>0&&(n=+this.rxSize);const i={txSize:this.txSize,rxSize:n,duration:(0,I.t)()-this.startTime};r("xhr",[this.params,i,this.startTime,this.endTime,"fetch"],this,o.K.ajax)}function x(e){const t=this.params,n=this.metrics;if(!this.ended){this.ended=!0;for(let t=0;t<Q;t++)e.removeEventListener(J[t],this.listener,!1);t.aborted||(0,X.iW)(t)||(n.duration=(0,I.t)()-this.startTime,this.loadCaptureCalled||4!==e.readyState?null==t.status&&(t.status=0):T(this,e),n.cbTime=this.cbTime,r("xhr",[t,n,this.startTime,this.endTime,"xhr"],this,o.K.ajax))}}function T(e,r){e.params.status=r.status;var n=function(e,t){var r=e.responseType;return"json"===r&&null!==t?t:"arraybuffer"===r||"blob"===r||"json"===r?W(e.response):"text"===r||""===r||void 0===r?W(e.responseText):void 0}(r,e.lastSize);if(n&&(e.metrics.rxSize=n),e.sameOrigin){var i=r.getResponseHeader("X-NewRelic-App-Data");i&&((0,E.p)(j.rs,["Ajax/CrossApplicationTracing/Header/Seen"],void 0,o.K.metrics,t),e.params.cat=i.split(", ").pop())}e.loadCaptureCalled=!0}t.on("new-xhr",i),t.on("open-xhr-start",s),t.on("open-xhr-end",c),t.on("send-xhr-start",u),t.on("xhr-cb-time",d),t.on("xhr-load-added",l),t.on("xhr-load-removed",f),t.on("xhr-resolved",g),t.on("addEventListener-end",p),t.on("removeEventListener-end",m),t.on("fn-end",b),t.on("fetch-before-start",y),t.on("fetch-start",w),t.on("fn-start",v),t.on("fetch-done",R)}(e,this.ee,this.handler,this.dt),this.importAggregator()}}function ne(e,t){var r=(0,Z.D)(t),n=e.params||e;n.hostname=r.hostname,n.port=r.port,n.protocol=r.protocol,n.host=r.hostname+":"+r.port,n.pathname=r.pathname,e.parsedOrigin=r,e.sameOrigin=r.sameOrigin}var ie=i(3738);const{He:oe,bD:ae,d3:se,Kp:ce,TZ:ue,Lc:de,uP:le,Rz:fe}=ie;class he extends v{static featureName=(()=>ue)();constructor(e,t){super(e,t,ue,!(arguments.length>2&&void 0!==arguments[2])||arguments[2]);if(!(0,p.V)(this.agentIdentifier))return void(0,d.x3)(this.agentIdentifier,this.featureName);const r=this.ee;let n;(0,z.vC)(r),this.eventsEE=(0,z.um)(r),this.eventsEE.on(le,(function(e,t){this.bstStart=(0,I.t)()})),this.eventsEE.on(de,(function(e,t){(0,E.p)("bst",[e[0],t,this.bstStart,(0,I.t)()],void 0,o.K.sessionTrace,r)})),r.on(fe+se,(function(e){this.time=(0,I.t)(),this.startPath=location.pathname+location.hash})),r.on(fe+ce,(function(e){(0,E.p)("bstHist",[location.pathname+location.hash,this.startPath,this.time],void 0,o.K.sessionTrace,r)}));try{n=new PerformanceObserver((e=>{const t=e.getEntries();(0,E.p)(oe,[t],void 0,o.K.sessionTrace,r)})),n.observe({type:ae,buffered:!0})}catch(e){}this.importAggregator({resourceObserver:n})}}var ge=i(2614);class pe extends v{static featureName=(()=>t.TZ)();#i;constructor(e,r){let n,i=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];super(e,r,t.TZ,i),this.replayRunning=!1;try{n=JSON.parse(localStorage.getItem("".concat(ge.H3,"_").concat(ge.uh)))}catch(e){}(0,g.SR)(e)&&this.ee.on(t.G4.RECORD,(()=>this.#o())),this.#a(n)?(this.#i=n?.sessionReplayMode,this.#s()):this.importAggregator(),this.ee.on("err",(e=>{this.replayRunning&&(this.errorNoticed=!0,(0,E.p)(t.G4.ERROR_DURING_REPLAY,[e],void 0,this.featureName,this.ee))})),this.ee.on(t.G4.REPLAY_RUNNING,(e=>{this.replayRunning=e}))}#a(e){return e&&(e.sessionReplayMode===ge.g.FULL||e.sessionReplayMode===ge.g.ERROR)||(0,g.Aw)(this.agentIdentifier)}#c=!1;async#s(e){if(!this.#c){this.#c=!0;try{const{Recorder:t}=await Promise.all([i.e(478),i.e(249)]).then(i.bind(i,2496));this.recorder??=new t({mode:this.#i,agentIdentifier:this.agentIdentifier,trigger:e,ee:this.ee}),this.recorder.startRecording(),this.abortHandler=this.recorder.stopRecording}catch(e){}this.importAggregator({recorder:this.recorder,errorNoticed:this.errorNoticed})}}#o(){this.featAggregate?this.featAggregate.mode!==ge.g.FULL&&this.featAggregate.initializeRecording(ge.g.FULL,!0):(this.#i=ge.g.FULL,this.#s(t.Qb.API),this.recorder&&this.recorder.parent.mode!==ge.g.FULL&&(this.recorder.parent.mode=ge.g.FULL,this.recorder.stopRecording(),this.recorder.startRecording(),this.abortHandler=this.recorder.stopRecording))}}var me=i(3962);class ve extends v{static featureName=(()=>me.TZ)();constructor(e,t){let r=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];if(super(e,t,me.TZ,r),!h.RI||!a.hR.MO)return;const n=(0,z.vC)(this.ee),i=(0,z.um)(this.ee),o=()=>(0,E.p)("newURL",[(0,I.t)(),""+window.location],void 0,this.featureName,this.ee);n.on("pushState-end",o),n.on("replaceState-end",o);try{this.removeOnAbort=new AbortController}catch(e){}(0,S.sp)("popstate",(e=>(0,E.p)("newURL",[e.timeStamp,""+window.location],void 0,this.featureName,this.ee)),!0,this.removeOnAbort?.signal);let s=!1;const c=new a.hR.MO(((e,t)=>{s||(s=!0,requestAnimationFrame((()=>{(0,E.p)("newDom",[(0,I.t)()],void 0,this.featureName,this.ee),s=!1})))})),u=(0,m.s)((e=>{(0,E.p)("newUIEvent",[e],void 0,this.featureName,this.ee),c.observe(document.body,{attributes:!0,childList:!0,subtree:!0,characterData:!0})}),100,{leading:!0});i.on("fn-start",(e=>{let[t]=e;me.tC.includes(t?.type)&&u(t)}));for(let e of me.tC)document.addEventListener(e,(()=>{}));this.abortHandler=function(){this.removeOnAbort?.abort(),c.disconnect(),this.abortHandler=void 0},this.importAggregator({domObserver:c})}}var be=i(7378);const{TZ:ye,d3:we,Kp:Re,$p:xe,wW:Te,e5:Ae,tH:Ee,uP:Ne,rw:Se,Lc:Oe}=be;class Ie extends v{static featureName=(()=>ye)();constructor(e,t){var r;if(super(e,t,ye,!(arguments.length>2&&void 0!==arguments[2])||arguments[2]),r=this,!h.RI)return;try{this.removeOnAbort=new AbortController}catch(e){}let n,i=0;const o=this.ee.get("tracer"),a=(0,z.Ri)(this.ee),s=(0,z.o8)(this.ee),c=(0,z.MO)(this.ee),u=(0,z.bX)(this.ee),d=this.ee.get("events"),l=(0,z.NZ)(this.ee),f=(0,z.vC)(this.ee),g=(0,z.Ak)(this.ee);function p(e,t){f.emit("newURL",[""+window.location,t])}function m(){i++,n=window.location.hash,this[Ne]=(0,I.t)()}function v(){i--,window.location.hash!==n&&p(0,!0);var e=(0,I.t)();this[Ae]=~~this[Ae]+e-this[Ne],this[Oe]=e}function b(e,t){e.on(t,(function(){this[t]=(0,I.t)()}))}this.ee.on(Ne,m),s.on(Se,m),a.on(Se,m),this.ee.on(Oe,v),s.on(Te,v),a.on(Te,v),this.ee.on("fn-err",(function(){for(var t=arguments.length,n=new Array(t),i=0;i<t;i++)n[i]=arguments[i];n[2]?.__newrelic?.[e]||(0,E.p)("function-err",[...n],void 0,r.featureName,r.ee)})),this.ee.buffer([Ne,Oe,"xhr-resolved"],this.featureName),d.buffer([Ne],this.featureName),c.buffer(["setTimeout"+Re,"clearTimeout"+we,Ne],this.featureName),u.buffer([Ne,"new-xhr","send-xhr"+we],this.featureName),l.buffer([Ee+we,Ee+"-done",Ee+xe+we,Ee+xe+Re],this.featureName),f.buffer(["newURL"],this.featureName),g.buffer([Ne],this.featureName),s.buffer(["propagate",Se,Te,"executor-err","resolve"+we],this.featureName),o.buffer([Ne,"no-"+Ne],this.featureName),a.buffer(["new-jsonp","cb-start","jsonp-error","jsonp-end"],this.featureName),b(l,Ee+we),b(l,Ee+"-done"),b(a,"new-jsonp"),b(a,"jsonp-end"),b(a,"cb-start"),f.on("pushState-end",p),f.on("replaceState-end",p),window.addEventListener("hashchange",p,(0,S.jT)(!0,this.removeOnAbort?.signal)),window.addEventListener("load",p,(0,S.jT)(!0,this.removeOnAbort?.signal)),window.addEventListener("popstate",(function(){p(0,i>1)}),(0,S.jT)(!0,this.removeOnAbort?.signal)),this.abortHandler=this.#n,this.importAggregator()}#n(){this.removeOnAbort?.abort(),this.abortHandler=void 0}}var _e=i(3333);class je extends v{static featureName=(()=>_e.T)();constructor(e,t){let r=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];super(e,t,_e.T,r);[(0,a.gD)(this.agentIdentifier,"page_action.enabled")].some((e=>e))?this.importAggregator():(0,d.x3)(this.agentIdentifier,this.featureName)}}var Pe=i(993),Ce=i(3785);class ke extends v{static featureName=(()=>Pe.TZ)();constructor(e,t){let r=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];super(e,t,Pe.TZ,r);const n=this.ee;this.ee.on("wrap-logger-end",(function(e){let[t]=e;const{level:r,customAttributes:i}=this;(0,Ce.R)(n,t,i,r)})),this.importAggregator()}}new class extends n{constructor(t,r){super(r),h.gm?(this.sharedAggregator=new R({agentIdentifier:this.agentIdentifier}),this.features={},(0,A.bQ)(this.agentIdentifier,this),this.desiredFeatures=new Set(t.features||[]),this.desiredFeatures.add(y),this.runSoftNavOverSpa=[...this.desiredFeatures].some((e=>e.featureName===o.K.softNav)),(0,u.j)(this,t,t.loaderType||"agent"),this.run()):(0,e.R)(21)}get config(){return{info:this.info,init:this.init,loader_config:this.loader_config,runtime:this.runtime}}run(){try{const t=c(this.agentIdentifier),r=[...this.desiredFeatures];r.sort(((e,t)=>o.P[e.featureName]-o.P[t.featureName])),r.forEach((r=>{if(!t[r.featureName]&&r.featureName!==o.K.pageViewEvent)return;if(this.runSoftNavOverSpa&&r.featureName===o.K.spa)return;if(!this.runSoftNavOverSpa&&r.featureName===o.K.softNav)return;(function(e){switch(e){case o.K.ajax:return[o.K.jserrors];case o.K.sessionTrace:return[o.K.ajax,o.K.pageViewEvent];case o.K.sessionReplay:return[o.K.sessionTrace];case o.K.pageViewTiming:return[o.K.pageViewEvent];default:return[]}})(r.featureName).every((e=>e in this.features))||(0,e.R)(36,r.featureName),this.features[r.featureName]=new r(this.agentIdentifier,this.sharedAggregator)}))}catch(t){(0,e.R)(22,t);for(const e in this.features)this.features[e].abortHandler?.();const r=(0,A.Zm)();delete r.initializedAgents[this.agentIdentifier]?.api,delete r.initializedAgents[this.agentIdentifier]?.features,delete this.sharedAggregator;return r.ee.get(this.agentIdentifier).abort(),!1}}}({features:[re,y,_,he,pe,P,U,je,ke,ve,Ie],loaderType:"spa"})})()})();</script>
<meta content="EA3F0DC751089224F0A97C414E310BE8" name="msvalidate.01"/>
<meta content="index, follow" name="robots"/>
<title>Bestseller</title>
<meta content="Bestseller" name="description"/>
<meta content="Bestseller" name="keywords"/>
<meta content="yes" name="mobile-web-app-capable"/>
<meta content="yes" name="apple-mobile-web-app-capable"/>
<meta content="width=device-width, initial-scale=1.0, user-scalable=no, maximum-scale=1.0" name="viewport"/>
<link href="https://images.bewakoof.com/web/favicon-1635856217.png" rel="shortcut icon" type="image/x-icon"/>
<link href="https://images.bewakoof.com/lib/icon/app-logo.png" rel="apple-touch-icon" sizes="192x192"/>
<link href="https://images.bewakoof.com/lib/icon/app-logo.png" rel="icon" sizes="192x192"/>
<link href="/manifest.json" rel="manifest"/>
<meta content="Bewakoof" name="apple-mobile-web-app-title"/>
<meta content="119193024779571" property="fb:app_id"/>
<meta content="140947639712-ukpgitufo1i1gc6nmd8o1l14tcu72nt2.apps.googleusercontent.com" name="google-signin-client_id"/>
<link href="https://plus.google.com/+Bewakoof/" rel="publisher"/>
<meta content="Bewakoof" name="application-name"/>
<meta content="#ffc40d" name="msapplication-TileColor"/>
<meta content="https://images.bewakoof.com/lib/icon/app-logo.png" name="msapplication-TileImage"/>
<meta content="https://files.bewakoof.com/lib/default/images_css/browserconfig.xml" name="msapplication-config"/>
<meta content="#222222" name="theme-color"/>
<meta content="bewakoof://www.bewakoof.com/bestseller?sort=popular" property="al:ios:url"/>
<meta content="1100190514" property="al:ios:app_store_id"/>
<meta content="Bewakoof- Fashion Shopping App" property="al:ios:app_name"/>
<meta content="bewakoof://www.bewakoof.com/bestseller?sort=popular" property="al:android:url"/>
<meta content="com.bewakoof.bewakoof" property="al:android:package"/>
<meta content="Bewakoof Online Fashion Shopping App" property="al:android:app_name"/>
<meta content="1548728332017744" property="og:app_id"/>
<meta content="640" property="og:image:width"/>
<meta content="300" property="og:image:height"/>
<meta content="website" property="og:type"/>
<meta content="Bestseller" property="og:title"/>
<meta content="Bestseller" property="og:description"/>
<meta content="Bewakoof" property="og:site_name"/>
<meta content="https://www.bewakoof.com/bestseller?sort=popular" property="og:url"/>
<meta content="https://images.bewakoof.com/lib/icon/app-logo.png" property="og:image"/>
<meta content="En" property="og:locale"/>
<meta content="summary" name="twitter:card"/>
<meta content="@bewakoof" name="twitter:site"/>
<meta content="Bewakoof.com" name="twitter:creator"/>
<meta content="Bestseller" name="twitter:title"/>
<meta content="Bestseller" name="twitter:description"/>
<meta content="https://www.bewakoof.com/bestseller?sort=popular" name="branch:deeplink:$canonical_url"/>
<meta content="5833" name="branch:deeplink:collectionID"/>
<meta content="Bestseller" name="branch:deeplink:collectionName"/>
<meta content="https://www.bewakoof.com/bestseller" name="branch:deeplink:collectionUrl"/>
<meta content="https://images.bewakoof.com/lib/icon/app-logo.png" name="twitter:image"/>
<link href="https://www.bewakoof.com/bestseller" rel="canonical"/>
<link href="https://www.bewakoof.com/bestseller/default/2" rel="next"/>
<link href="https://www.bewakoof.com/osdd.xml" rel="search" title="bewakoof.com" type="application/opensearchdescription+xml"/>
<link href="https://static.bewakoof.com/www/app/style.c92f01af592169557f99.css" rel="stylesheet"/>
<script type="application/ld+json">{
        "@context": "http://schema.org",
        "@type": "Organization",
        "url": "http://www.bewakoof.com",
        "logo": "https://images.bewakoof.com/logos/bewakoof-logo-og.png",
        "sameAs": [
            "https://www.facebook.com/bewakoofcom", "https://www.instagram.com/bewakoofofficial/", "https://twitter.com/bewakoof", "https://plus.google.com/+Bewakoof", "https://in.pinterest.com/bewakoof"
        ],
        "potentialAction": {
            "@type": "SearchAction",
            "target": "http://www.bewakoof.com/search/{search_term_string}",
            "query-input": "required name=search_term_string"
        }
    }</script>
<script type="application/ld+json">{
      "@context": "http://schema.org",
      "@type": "BreadcrumbList",
      "itemListElement": [{
          "@type": "ListItem",
          "position": 1,
          "item": {
            "@id": "https://www.bewakoof.com/",
            "name": "Home",
            "image": ""
          }
        },{
          "@type": "ListItem",
          "position": 2,
          "item": {
            "@id": "https://www.bewakoof.com/bestseller",
            "name": "Bestseller",
            "image": ""
          }
        }]
    }</script>
<script type="application/ld+json">{
      "@context": "http://schema.org",
      "@type": "ItemList",
      "itemListElement": [{"@type": "ListItem",
                  "position": 1,
                  "url": "https://www.bewakoof.com/p/womens-pink-living-in-paradise-graphic-print-boyfriend-t-shirt",
                  "name": "Women's Pink Living in Paradise Graphic Printed Boyfriend T-shirt"
                },{"@type": "ListItem",
                  "position": 2,
                  "url": "https://www.bewakoof.com/p/inner-peace-boyfriend-t-shirts-bold-red-womens-printed-boyfriend-t-shirts",
                  "name": "Women's Red Inner Peace Graphic Printed Boyfriend T-shirt"
                },{"@type": "ListItem",
                  "position": 3,
                  "url": "https://www.bewakoof.com/p/nasa-astronaut-half-sleeve-t-shirt-men",
                  "name": "Men's Red NASA Astronaut Graphic Printed T-shirt"
                },{"@type": "ListItem",
                  "position": 4,
                  "url": "https://www.bewakoof.com/p/women-certified-troublemakers-tjl-regular-graphic-printed-t-shirt",
                  "name": "Women's Black Certified Troublemakers Graphic Printed T-shirt"
                },{"@type": "ListItem",
                  "position": 5,
                  "url": "https://www.bewakoof.com/p/hod-iconic-half-sleeve-t-shirt",
                  "name": "Men's Black House Of The Dragon Iconic Graphic Printed T-shirt"
                },{"@type": "ListItem",
                  "position": 6,
                  "url": "https://www.bewakoof.com/p/mens-black-eternity-graphic-printed-t-shirt",
                  "name": "Men's Black Eternity Graphic Printed T-shirt"
                },{"@type": "ListItem",
                  "position": 7,
                  "url": "https://www.bewakoof.com/p/no-we-in-food-boyfriend-t-shirt-women-black",
                  "name": "Women's Black No We in Food Graphic Printed Boyfriend T-shirt"
                },{"@type": "ListItem",
                  "position": 8,
                  "url": "https://www.bewakoof.com/p/womens-black-bts-astro-jin-graphic-printed-oversized-t-shirt",
                  "name": "Women's Black BTS Astro (JIN) Graphic Printed Oversized T-shirt"
                },{"@type": "ListItem",
                  "position": 9,
                  "url": "https://www.bewakoof.com/p/hang-loose-relax-half-sleeve-t-shirt",
                  "name": "Men's Black Relax T-shirt"
                },{"@type": "ListItem",
                  "position": 10,
                  "url": "https://www.bewakoof.com/p/womens-pink-garfields-icecream-graphic-printed-oversized-t-shirt",
                  "name": "Women's Pink Garfield's Icecream Graphic Printed Oversized T-shirt"
                }]
    }</script>
<script>
        /*! For license information please see web-analytics-dist.js.LICENSE */
var Analytics=function(t){function o(e){if(n[e])return n[e].exports;var r=n[e]={i:e,l:!1,exports:{}};return t[e].call(r.exports,r,r.exports,o),r.l=!0,r.exports}var n={};return o.m=t,o.c=n,o.d=function(e,r,t){o.o(e,r)||Object.defineProperty(e,r,{enumerable:!0,get:t})},o.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},o.t=function(r,e){if(1&e&&(r=o(r)),8&e)return r;if(4&e&&"object"==typeof r&&r&&r.__esModule)return r;var t=Object.create(null);if(o.r(t),Object.defineProperty(t,"default",{enumerable:!0,value:r}),2&e&&"string"!=typeof r)for(var n in r)o.d(t,n,function(e){return r[e]}.bind(null,n));return t},o.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return o.d(r,"a",r),r},o.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},o.p="/",o(o.s=3)}([function(e,r,t){var g,v,_=t(1),y=t(2),m=0,h=0;e.exports=function(e,r,t){var n=r&&t||0,o=r||[],i=(e=e||{}).node||g,a=void 0!==e.clockseq?e.clockseq:v;if(null==i||null==a){var u=_();null==i&&(i=g=[1|u[0],u[1],u[2],u[3],u[4],u[5]]),null==a&&(a=v=16383&(u[6]<<8|u[7]))}var c=void 0!==e.msecs?e.msecs:(new Date).getTime(),s=void 0!==e.nsecs?e.nsecs:h+1,l=c-m+(s-h)/1e4;if(l<0&&void 0===e.clockseq&&(a=a+1&16383),(l<0||m<c)&&void 0===e.nsecs&&(s=0),1e4<=s)throw new Error("uuid.v1(): Can't create more than 10M uuids/sec");m=c,v=a;var f=(1e4*(268435455&(c+=122192928e5))+(h=s))%4294967296;o[n++]=f>>>24&255,o[n++]=f>>>16&255,o[n++]=f>>>8&255,o[n++]=255&f;var p=c/4294967296*1e4&268435455;o[n++]=p>>>8&255,o[n++]=255&p,o[n++]=p>>>24&15|16,o[n++]=p>>>16&255,o[n++]=a>>>8|128,o[n++]=255&a;for(var d=0;d<6;++d)o[n+d]=i[d];return r||y(o)}},function(e,r){var t="undefined"!=typeof crypto&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto)||"undefined"!=typeof msCrypto&&"function"==typeof window.msCrypto.getRandomValues&&msCrypto.getRandomValues.bind(msCrypto);if(t){var n=new Uint8Array(16);e.exports=function(){return t(n),n}}else{var o=new Array(16);e.exports=function(){for(var e,r=0;r<16;r++)0==(3&r)&&(e=4294967296*Math.random()),o[r]=e>>>((3&r)<<3)&255;return o}}},function(e,r){for(var o=[],t=0;t<256;++t)o[t]=(t+256).toString(16).substr(1);e.exports=function(e,r){var t=r||0,n=o;return[n[e[t++]],n[e[t++]],n[e[t++]],n[e[t++]],"-",n[e[t++]],n[e[t++]],"-",n[e[t++]],n[e[t++]],"-",n[e[t++]],n[e[t++]],"-",n[e[t++]],n[e[t++]],n[e[t++]],n[e[t++]],n[e[t++]],n[e[t++]]].join("")}},function(e,r,t){"use strict";function n(r,t){return new Promise(function(e){y({type:"track",event:r,properties:t}),e()})}function o(r,t){var n={path:l.pathname||"",search:l.search||"",title:l.title||"",url:l.url||"",referrer:l.referrer};return new Promise(function(e){y({type:"page",name:r,properties:b({},n,t)}),e()})}function i(r,t){return new Promise(function(e){h.set(r,t),e()})}function a(r,t){return new Promise(function(e){switch(r){case"device_category":g.context.device_category=t;break;case"ab_id":g.ab_id=t;break;case"webview":g.context.webview=t;break;case"api_url":v.BA_API_URL=t,h.initialize(),g.initialize();break;case"page_properties":g.context.page=t}e()})}t.r(r);var u="_stv1",c=function(e,r,t){localStorage.setItem(u+e,JSON.stringify({value:r,expiry:t?Math.floor(Date.now()/1e3)+t:9999999999}))},s=function(r){try{var e=JSON.parse(localStorage.getItem(u+r));if(e.expiry&&e.expiry>Math.floor(Date.now()/1e3))return e.value;throw new Error("Key not found or expired")}catch(e){return localStorage.removeItem(u+r),null}},l={get query(){for(var e,r=location.search.substring(1),t=/([^&=]+)=([^&]*)/g,n={};e=t.exec(r);)n[decodeURIComponent(e[1])]=decodeURIComponent(e[2]);return n},get search(){return location.search},get pathname(){return location.pathname},get referrer(){var e=s("_ref")||"";return document.referrer&&-1<document.referrer.search(location.host)&&(e=document.referrer),c("_ref",e,31536e3),e},get title(){return document.title},get url(){return location.href}},f=t(0),p=t.n(f),d=function(){return(d=Object.assign||function(e){for(var r,t=1,n=arguments.length;t<n;t++)for(var o in r=arguments[t])Object.prototype.hasOwnProperty.call(r,o)&&(e[o]=r[o]);return e}).apply(this,arguments)},g={initialize:function(){},get context(){return{get page(){return d({path:l.pathname||"",search:l.search||"",title:l.title||"",url:l.url||"",referrer:l.referrer},s("__p"))},set page(e){c("__p",e)},get utm(){var e={source:"",medium:"",campaign:""};return s("_utm")&&(e=s("_utm")),c("_utm",e,1800),e},get webview(){return s("_wv")||""},set webview(e){c("_wv",e)},get device_category(){return s("_de")||""},set device_category(e){c("_de",e)},get screen(){return{width:screen.width,height:screen.height}},get scroll_depth(){return innerHeight+scrollY}}},set ab_id(e){c("_ab_id",e,1800)},get ab_id(){return s("_ab_id")||""},get user_id(){return h.user_id},get anonymous_id(){var e=s("_a_id")||p()();return c("_a_id",e),e},get session_id(){var e=JSON.parse(localStorage.getItem("_stv1_s_id"));return e&&e.expiry&&e.expiry<Math.floor(Date.now()/1e3)&&(localStorage.isExpiredSession="true"),e||((e={}).value=p()()),c("_s_id",e.value,1800),e.value}},v={BA_API_URL:void 0},_=function(){return(_=Object.assign||function(e){for(var r,t=1,n=arguments.length;t<n;t++)for(var o in r=arguments[t])Object.prototype.hasOwnProperty.call(r,o)&&(e[o]=r[o]);return e}).apply(this,arguments)},y=function(e){var r=new XMLHttpRequest,t=JSON.parse(JSON.stringify(_({common:g},e)));window.localStorage&&window.localStorage.getItem("debug")&&("event"!=t.event?console.log("%c "+JSON.stringify(t,null,2),"color: red"):console.table(t.properties)),r.open("GET",v.BA_API_URL+"/web?d="+encodeURIComponent(JSON.stringify(t)),!0),r.send()},m={user_id:"",properties:{}},h={initialize:function(){s("_u")&&(m=s("_u"))},set:function(e,r){var t=JSON.stringify(m)||"";m={user_id:e,properties:r};var n=JSON.stringify(m);c("_u",m),t!==n&&y({type:"identify",properties:r})},get user_id(){return m.user_id},get properties(){return m.properties}},b=function(){return(b=Object.assign||function(e){for(var r,t=1,n=arguments.length;t<n;t++)for(var o in r=arguments[t])Object.prototype.hasOwnProperty.call(r,o)&&(e[o]=r[o]);return e}).apply(this,arguments)};t.d(r,"track",function(){return n}),t.d(r,"identify",function(){return i}),t.d(r,"page",function(){return o}),t.d(r,"set",function(){return a})}]);
        </script>
<script>
        var PhonePe=function(e){var t={};function n(r){if(t[r])return t[r].exports;var i=t[r]={i:r,l:!1,exports:{}};return e[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)n.d(r,i,function(t){return e[t]}.bind(null,i));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=9)}([function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),function(e){let t,n,r,i,s;!function(e){e.READ_SMS="READ_SMS",e.LOCATION="LOCATION",e.CAMERA="CAMERA",e.WRITE_EXTERNAL_STORAGE="WRITE_EXTERNAL_STORAGE",e.READ_EXTERNAL_STORAGE="READ_EXTERNAL_STORAGE"}(t=e.Permission||(e.Permission={})),function(e){e.web="web",e.native="native"}(n=e.Species||(e.Species={})),function(e){e.ios="ios",e.android="android"}(r=e.OS||(e.OS={})),function(e){e.ios="phonepe-ios",e.android="phonepe-android"}(i=e.OSUserAgent||(e.OSUserAgent={})),function(e){e.email="email",e.name="name",e.phoneNumber="phoneNumber",e.isEmailVerified="isEmailVerified"}(s=e.UserDetail||(e.UserDetail={}))}(t.ExternalConstants||(t.ExternalConstants={}))},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(4),i=n(5),s=n(3),o=n(10);class a{static callback(e,t,n,r){i.Logger.logd("PhonePe","phonepeCallback called! with callbackName = "+e);let o=a.promiseMapping[e];o&&("1"===t?o[s.PhonePeSDKWebConstants.General.resolve](n):o[s.PhonePeSDKWebConstants.General.reject](r),delete a.promiseMapping[e])}static callNative(e,t,n){if(!o.MethodVersioningHandler.isMethodSupported(e))return void i.Logger.logd("PhonePe","Sorry! This method is not supported with PhonePe app's version");i.Logger.logd("PhonePe","Trying to call methodName = "+e);let s=window.webkit;if(r.PhonePeUtils.isValidMethodOniOS(e))s.messageHandlers[e].postMessage(n);else{window[t][e](JSON.stringify(n))}}static storePromiseAndCallNative(e,t,n){return new Promise((i,o)=>{let a=r.PhonePeUtils.createuuid();n[s.PhonePeSDKWebConstants.General.callbackId]=a,this.callNative(e,t,n),this.promiseMapping[a]={resolve:i,reject:o}})}}a.promiseMapping={},t.MessagingHandler=a},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),function(e){let t,n,r,i,s,o,a,c,l;e.sdkVersion="0.1",e.PhonePeSDKRNMajorVersion=0,e.PhonePeSDKRNMinorVersion=53,e.data_preferences="database_versions",e.PhonePeSDKVersion=4,function(e){e.confirmationScreenDuration=400,e.discoveryContextMode="PEER_TO_MERCHANT",e.paymentScreenName="PAY",e.v1="v1",e.v2="v2"}(t=e.General||(e.General={})),function(e){e.invalidParams="PARAMS_INVALID_OR_INSUFFICIENT"}(n=e.ErrorCode||(e.ErrorCode={})),function(e){e.payments=103,e.transactionDetails=105}(r=e.ActivityID||(e.ActivityID={})),function(e){e.name="PermissionsBridge",e.seekPermission="seekPermission",e.openSettingsPage="openSettingsPageForPermission",e.androidPrefix="android.permission.",e.locationPermissionName="ACCESS_FINE_LOCATION",e.kPermission="permission"}(i=e.PermissionsBridge||(e.PermissionsBridge={})),function(e){e.bridgeName="AnalyticsBridge",e.methodName="logMerchantEvent",e.kName="name",e.kMetadata="metadata",e.kGroupingKey="groupingKey"}(s=e.AnalyticsBridge||(e.AnalyticsBridge={})),function(e){e.bridgeName="AuthBridge",e.fetchGrantToken="fetchGrantToken",e.fetchAuthToken="fetchAuthToken"}(o=e.AuthBridge||(e.AuthBridge={})),function(e){e.bridgeName="OrderActionBridge",e.reserveOrder="reserveOrder",e.fetchOrderRequestToken="fetchOrderRequestToken",e.openPaymentsPageForReservedOrder="openPaymentsPageForReservedOrder"}(a=e.OrderActionBridge||(e.OrderActionBridge={})),function(e){e.bridgeName="FilePickerBridge",e.selectFile="selectFile",e.readFile="readFile"}(c=e.FilePickerBridge||(e.FilePickerBridge={})),function(e){e.bridgeName="CameraBridge",e.scanQRCode="scanQRCode",e.startCamera="startCamera"}(l=e.CameraBridge||(e.CameraBridge={}))}(t.InternalConstants||(t.InternalConstants={}))},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),function(e){let t,n,r,i,s,o,a,c,l;!function(e){e.reject="reject",e.resolve="resolve",e.callbackId="callbackId",e.prefName="prefName",e.key="key",e.defaultValue="defaultValue",e.value="value",e.min="min",e.max="max"}(t=e.General||(e.General={})),function(e){e.androidBridgeName="PreferencesBridge",e.getItem="getItem",e.setItem="setItem",e.removeItem="removeItem",e.removeItemAndroid="removeKey"}(n=e.Preferences||(e.Preferences={})),function(e){e.supportedVersion="getSupportedWebSDKVersion",e.androidBridgeName="MetadataBridge"}(r=e.Metadata||(e.Metadata={})),function(e){e.androidBridgeName="LocationBridge",e.startUpdatingLocation="startUpdatingLocation",e.stopUpdatingLocation="stopUpdatingLocation",e.getCurrentLocation="getCurrentLocation",e.locationSuccessEventKey="locationUpdated",e.locationFailureEventKey="failedToUpdateLocation",e.forceNewLocation="forceNew",e.getAddress="getAddress"}(i=e.Location||(e.Location={})),function(e){e.androidBridgeName="NavigationBridge",e.processRequest="processRequest",e.navigateToPath="navigateToPath",e.navigateToPathForResult="navigateToPathForResult",e.navigateToGenericPaymentForResult="navigateToGenericPaymentForResult",e.navigateToGenericPayment="navigateToGenericPayment"}(s=e.Navigation||(e.Navigation={})),function(e){e.navigateToPaymentsView="openPaymentsPage",e.navigateToTransactionDetail="openTransactionDetailsPage",e.navigateToGenericPaymentsView="openGenericPaymentsPage",e.navigateToHelpPage="openHelpPage",e.navigateToReactView="openReactView"}(o=e.NavigationIOS||(e.NavigationIOS={})),function(e){e.merchantId="merchantId",e.discoveryMode="mode",e.discoveryModeValue="PEER_TO_MERCHANT",e.title="Pay",e.transactionType="SENT_PAYMENT",e.timeoutTitle="Payment Expired",e.timeoutMessage="Sorry! Your payment request timed out. Please try again.",e.timeoutActionButtonTitle="OK",e.dismissTitle="Are you sure?",e.dismissMessage="Going back will cancel the payment. Are you sure you want to proceed?",e.dismissPositiveButtonTitle="I'm sure",e.dismissNegativeButtonTitle="Dismiss"}(a=e.Payments||(e.Payments={})),function(e){e.getUserDetails="getUserDetails",e.androidBridgeName="UserBridge",e.attributes="attributes"}(c=e.User||(e.User={})),function(e){e.androidBridgeName="CameraBridge",e.scanQRCode="scanQRCode",e.startCamera="startCamera"}(l=e.Camera||(e.Camera={}))}(t.PhonePeSDKWebConstants||(t.PhonePeSDKWebConstants={}))},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(0),i=n(2);var s=r.ExternalConstants.Permission;class o{static assert(e,t){if(!e)throw new Error(t)}static assertString(e,t){o.assertType(e,"string",t)}static assertNumber(e,t){o.assertType(e,"number",t)}static assertBoolean(e,t){o.assertType(e,"boolean",t)}static assertFunction(e,t){o.assertType(e,"function",t)}static assertArray(e,t){if((!t||e)&&e.constructor!==Array)throw new TypeError(i.InternalConstants.ErrorCode.invalidParams)}static assertObject(e,t){o.assertType(e,"object",t)}static assertType(e,t,n){if((!n||e)&&typeof e!==t)throw new TypeError(i.InternalConstants.ErrorCode.invalidParams)}static returnResolution(e){return new Promise((t,n)=>{t(e)})}static returnRejection(e){return new Promise((t,n)=>{n(e)})}static isValidSpecies(e){return e===r.ExternalConstants.Species.web||e===r.ExternalConstants.Species.native}static isValidOS(e){return e===r.ExternalConstants.OS.ios||e===r.ExternalConstants.OS.android}static createuuid(){return"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,function(e){var t=16*Math.random()|0;return("x"==e?t:3&t|8).toString(16)})}static osSpecificPermissionNames(e,t){let n=[];for(let o of e)if(t===r.ExternalConstants.OS.ios)n.push(s[o]);else{let e="";e=o===s.LOCATION?i.InternalConstants.PermissionsBridge.androidPrefix+i.InternalConstants.PermissionsBridge.locationPermissionName:i.InternalConstants.PermissionsBridge.androidPrefix+s[o],n.push(e)}return n}static strippedPermissionName(e,t){if(t===r.ExternalConstants.OS.ios)return e;let n=i.InternalConstants.PermissionsBridge.androidPrefix,o=e.replace(new RegExp("^"+n),"");return o===i.InternalConstants.PermissionsBridge.locationPermissionName&&(o=s.LOCATION),o}static isValidMethodOniOS(e){let t=window.webkit;return t&&t.messageHandlers&&t.messageHandlers[e]&&"function"==typeof t.messageHandlers[e].postMessage}static getReserveOrderPayload(e,t){const n={};return n["X-PROVIDER-ID"]=t,{headers:n,body:e}}}t.PhonePeUtils=o},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(9);class i{static isLoggingEnabled(){return r.PhonePe.loggingEnabled}static logd(e,t){i.isLoggingEnabled()&&console.log("["+e+"] "+t)}constructor(e){this.tag=e}logd(e){i.logd(this.tag,e)}logAnything(e){console.log(e)}logError(e){0}}t.Logger=i},function(e,t,n){"use strict";var r;Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.WebView="WebView",e.ReactView="ReactView",e.PaymentsView="PaymentView",e.GenericPaymentsView="GenericPaymentsView",e.AppScreen="AppScreen",e.ContactPicker="ContactPicker",e.TransactionDetail="TransactionDetail",e.Profile="Profile",e.HelpPage="HelpPage",e.MandateSetup="MandateSetup",e.AddToWallet="AddToWallet",e.MicroApp="MicroApp",e.PWAWebView="PWAWebView"}(r=t.NavigationScreenType||(t.NavigationScreenType={}));class i{constructor(e,t,n,r){this.screenType=e,this.title=t,this.animated=n,this.showModally=r,this.isNewTask=!1}}t.BaseNavigationRequest=i;t.ReactViewNavigationRequest=class extends i{constructor(e,t,n,i,s,o,a,c,l,d,u,h,g){super(r.ReactView,i,s,o),this.appId=h,this.bundleName=e,this.componentName=t,this.shouldShowToolbar=n,this.toolBarText=i,this.animated=s,this.showModally=o,this.initialProperties=a,this.category=c,this.merchantId=l,this.merchantName=d,this.tAndCUrl=u,this.appUniqueId=g}};t.WebViewNavigationRequest=class extends i{constructor(e,t,n,i,s,o,a,c,l){super(r.WebView,t,c,l),this.url=e,this.title=t,this.shouldShowToolBar=n,this.shouldShowBackButton=i,this.screenName=s,this.shouldAllowWebViewBack=o,this.shouldShowProgressWhileLoading=a}};t.PWAWebViewNavigationRequest=class extends i{constructor(e,t,n,i){super(r.PWAWebView,"",!0,!0),this.merchantId=e,this.deepLinkUrl=t,this.appId=n,this.appUniqueId=i}};t.AppScreenNavigationRequest=class extends i{constructor(e,t,n,i,s,o){super(r.AppScreen,i,s,o),this.screenName=e,this.url=t,this.params=n}};t.PaymentMetaData=class{constructor(e){this.details=e}};t.PaymentNavigationRequest=class extends i{constructor(e,t,n,i,s,o,a,c,l,d){super(r.PaymentsView,t,n,i),this.mode=s,this.microPayRequest=o,this.internalPaymentUiConfig=a,this.transactionType=c,this.metaData=l,this.originInfo=d}};t.GenericPaymentNavigationRequest=class extends i{constructor(e,t,n,i,s){super(r.GenericPaymentsView,e,t,n),this.reservationId=i,s&&(this.fallbackUrl=s)}};t.MandateSetupNavigationRequest=class extends i{constructor(e,t,n,i,s,o){super(r.MandateSetup,n,i,s),this.mandateContext=e,this.mandateUiConfig=t,this.mandateType=o||"MERCHANT"}};t.AddToWalletNavigationRequest=class extends i{constructor(e,t,n,i){super(r.AddToWallet,t,n,i),this.addToWalletUiContext=e}};t.TransactionDetailsNavigationRequest=class extends i{constructor(e,t,n,i,s,o,a){super(r.TransactionDetail,t,n,i),this.transactionId=s,this.transactionType=o,this.info=a}};t.ContactNavigationRequest=class extends i{constructor(e,t,n,i,s,o,a,c,l,d,u,h,g,P){super(r.ContactPicker,t,n,i),this.contactPickerMode=s,this.contactPickerType=o,this.initialContacts=a,this.transactionType=c,this.isVpaEnable=l,this.isSelfEnable=d,this.phoneContact=u,this.vpaContact=h,this.accountContact=g}};t.ProfileNavRequest=class extends i{constructor(e,t,n,r){super(e,t,n,r)}};t.HelpPageNavRequest=class extends i{constructor(e,t,n,i,s,o,a,c,l){super(r.HelpPage,t,n,i),this.transactionId=e,this.screen=a,this.url=c,this.shouldShowToolBar=s,this.shouldAllowWebViewBack=o,this.freshBotIntentData=l}};t.FreshBotIntentData=class{constructor(e){this.freshBotScreens=e,this.queryParams={}}};t.CloseAppNavRequest=class{constructor(e){this.appIdentifier=e}};t.MicroAppNavigationRequest=class extends i{constructor(e,t,n,i,s,o){super(r.MicroApp,i,s,o),this.appId=e,this.appUniqueId=t,this.initialProperties=n}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(11).ExternalPaymentModels.ActionButtonProp;!function(e){let t,n,i,s,o;!function(e){e.discoveryModeValue="PEER_TO_MERCHANT",e.title="Pay",e.transactionType="SENT_PAYMENT",e.timeoutTitle="Payment Expired",e.timeoutMessage="Sorry! Your payment request timed out. Please try again.",e.timeoutActionButtonTitle="OK",e.dismissTitle="Are you sure?",e.dismissMessage="Going back will cancel the payment. Are you sure you want to proceed?",e.dismissPositiveButtonTitle="I'm sure",e.dismissNegativeButtonTitle="Dismiss",e.PAYMENT_TIMEOUT="PAYMENT_TIMEOUT",e.PAYMENT_DISMISS="PAYMENT_DISMISS",e.kMerchantId="merchantId",e.kSellingPrice="sellingPrice",e.kPayableAmount="payableAmount",e.kServiceType="serviceType",e.kServiceTypeValue="WEBAPP",e.kReservationId="reservationId",e.kServiceRequestId="serviceRequestId",e.kServiceCategory="serviceCategory",e.kServiceCategoryValue="WEB",e.kServiceContext="serviceContext",e.kQuantity="quantity",e.kValidFor="validFor",e.kMerchantTransactionId="merchantTransactionId",e.kServiceTypeVersion="serviceTypeVersion",e.kKey="key",e.kValue="value"}(t=e.Constant||(e.Constant={})),function(e){e[e.CONTACT_TYPE_VPA=1]="CONTACT_TYPE_VPA",e[e.CONTACT_TYPE_PHONE=2]="CONTACT_TYPE_PHONE",e[e.CONTACT_TYPE_MERCHANT=3]="CONTACT_TYPE_MERCHANT",e[e.CONTACT_TYPE_USER_DATA=4]="CONTACT_TYPE_USER_DATA",e[e.CONTACT_TYPE_EXTERNAL_UPI_MERCHANT=5]="CONTACT_TYPE_EXTERNAL_UPI_MERCHANT",e[e.CONTACT_TYPE_RETAIL_MERCHANT=6]="CONTACT_TYPE_RETAIL_MERCHANT",e[e.CONTACT_TYPE_BANK_ACCOUNT=7]="CONTACT_TYPE_BANK_ACCOUNT",e[e.CONTACT_TYPE_WALLET=8]="CONTACT_TYPE_WALLET",e[e.CONTACT_TYPE_MY_ACCOUNT=9]="CONTACT_TYPE_MY_ACCOUNT"}(n=e.CONTACT_TYPE||(e.CONTACT_TYPE={})),function(e){e[e.MODE_SEND_MONEY=1]="MODE_SEND_MONEY",e[e.MODE_SPLIT_MONEY=2]="MODE_SPLIT_MONEY",e[e.REQUEST_MONEY=3]="REQUEST_MONEY",e[e.MODE_RECHARGE_MOBILE=4]="MODE_RECHARGE_MOBILE",e[e.MODE_WALLET_TOP_UP=5]="MODE_WALLET_TOP_UP",e[e.MODE_BLE_PAYMENT=6]="MODE_BLE_PAYMENT"}(i=e.PAYMENT_MODE||(e.PAYMENT_MODE={})),function(e){e.SENT_PAYMENT="SENT_PAYMENT",e.RECEIVED_PAYMENT="RECEIVED_PAYMENT",e.USER_TO_USER_SENT_REQUEST="USER_TO_USER_SENT_REQUEST",e.USER_TO_USER_RECEIVED_REQUEST="USER_TO_USER_RECEIVED_REQUEST",e.ENSEMBLE_SENT_PAYMENT="ENSEMBLE_SENT_PAYMENT",e.MISSED_PAYMENT="MISSED_PAYMENT",e.PHONE_RECHARGE="PHONE_RECHARGE",e.BILL_PAYMENT="BILL_PAYMENT",e.TICKETING="TICKETING",e.COMMUTE="COMMUTE",e.UNKNOWN="UNKNOWN"}(s=e.TRANSACTION_TYPE||(e.TRANSACTION_TYPE={})),function(e){e.MERCHANT_REVERSAL="MERCHANT_REVERSAL",e.MERCHANT_CASHBACK="MERCHANT_CASHBACK"}(o=e.TRANSFER_MODE||(e.TRANSFER_MODE={}));e.Contact=class{constructor(e,t,n,r){this.type=e,this.name=t,this.displayImageUrl=n,this.lookupId=r}};e.InternalPaymentUiConfig=class{constructor(e,t,n,i,s,o){if(this.isAmountEditable=!1,this.isInitialContactEditable=!1,this.isNoteEditable=!1,this.showRateMeDialog=!1,this.title=e,this.initialAmount=t,this.initialContactList=n,this.confirmationScreenDuration=i,s)this.confirmationActionButtonProperties=s;else{let e={PENDING:new r("DONE"),COMPLETED:new r("VIEW BOOKING"),ERRORED:new r("DONE"),DEFAULT:new r("DONE")};this.confirmationActionButtonProperties=e}this.shouldConfirmationCloseOnFailure=o||!1}};class a{constructor(e){this.allowedInstruments=e,this.supportedInstruments=e}}e.PayRequest=a;e.MicroPayRequest=class extends a{constructor(e,t,n,r,i,s){super(t),this.merchantId=e,this.serviceVersion=n,this.fallbackURL=r,this.paymentOptionsContext=i,this.serviceRequestId=s}};e.PaymentTimeOutModel=class{constructor(e,t,n,r,i,s){this.time=e,this.showDialog=t,this.title=n,this.message=r,this.actionButtonName=i,this.errorCode=s}};e.DismissBehaviourModel=class{constructor(e,t,n,r,i,s){this.showDialog=e,this.title=t,this.message=n,this.positiveButton=r,this.negativeButton=i,this.errorCode=s}};e.TopUpConsentContext=class{constructor(e,t,n){this.showDialog=e,this.title=t,this.message=n}};e.AddToWalletUiContext=class{constructor(e,t,n,r,i,s,o,a,c,l,d,u){this.walletPageTitle=e,this.suggestedAmount=t,this.showCloseWalletOption=n,this.hideWalletWithdrawal=r,this.minAmount=i,this.showRateMeDialog=s,this.isAmountEditable=o,this.confirmationScreenDuration=a,this.showTopupConsent=c,this.topUpConsentContext=l,this.paymentDismiss=d,this.paymentOptionsContext=u}};e.MandateConfig=class{constructor(e,t,n,r,i,s){this.type=e,this.merchantId=t,this.serviceProviderIds=n,this.serviceType=r,this.serviceCategory=i,this.entityType=s}};e.MandateVisibleProperties=class{constructor(e,t,n,r,i){this.amount=e,this.frequency=t,this.autoPayDay=n,this.payeeWidget=r,this.toolbar=i}};e.MandateUiConfig=class{constructor(e,t,n,r,i,s,o,a,c,l,d,u,h,g,P){this.visibilityProperty=e,this.analyticsInfo=t,this.successMessage=n,this.actionButtonText=r,this.title=i,this.merchantName=s,this.merchantMandateDescription=o,this.merchantBannerImageId=a,this.merchantBannerImageSection=c,this.merchantImageId=l,this.merchantImageSection=d,this.mandateInfoLink=u,this.confirmationScreenDuration=h,this.dismissButtonDisplayTimeout=g,this.contactId=P}};e.PaymentOptionsContext=class{constructor(e){this.type="FULFILL_SERVICE",this.metaData=e}};e.PaymentOptionsContextMetadata=class{constructor(e,t,n,r){this.merchantId=e,this.serviceCategory=t,this.serviceProviderId=n,this.serviceType=r}}}(t.ExternalPaymentsNamespace||(t.ExternalPaymentsNamespace={}))},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(5);class i{static addSubscription(e){let t=this.eventNameToSubscriptionMapping[e.eventName];t?t.push(e):(t=[]).push(e),this.eventNameToSubscriptionMapping[e.eventName]=t}static removeSubscription(e){let t=e.eventName,n=e.callbackName,r=this.eventNameToSubscriptionMapping[t];if(r){let e=[],t=0;for(let i of r)i.callbackName===n&&(e.push(t),t++);for(;e.length;){let t=e.pop();t&&r.splice(t,1)}}}static removeAllSubscriptions(e){this.eventNameToSubscriptionMapping.hasOwnProperty(e)&&delete this.eventNameToSubscriptionMapping[e]}static sendEvent(e,t){let n=this.eventNameToSubscriptionMapping[e];if(n)for(let e of n)e.listener(t);else r.Logger.logd("PhonePe","[Error] No subscribers for eventName = "+e)}}i.eventNameToSubscriptionMapping={},t.EventHandler=i},function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,s){function o(e){try{c(r.next(e))}catch(e){s(e)}}function a(e){try{c(r.throw(e))}catch(e){s(e)}}function c(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(o,a)}c((r=r.apply(e,t||[])).next())})};Object.defineProperty(t,"__esModule",{value:!0});const i=n(6),s=n(12),o=n(14),a=n(16),c=n(10),l=n(4),d=n(18),u=n(22),h=n(25),g=n(30),P=n(32),p=n(34),m=n(36),v=n(1),f=n(8),y=n(2),N=n(0),T=n(3),C=n(7),E=n(11),b=n(38),S=n(40),M=n(42);var _=N.ExternalConstants.Permission;t.MessagingHandler=v.MessagingHandler,t.EventHandler=f.EventHandler,t.Constants=N.ExternalConstants,t.PaymentModels=E.ExternalPaymentModels;class A{constructor(e,t){this.preferencesModule=g.NativePreferenceBridgeFactory.getNativePreferenceBridge(e,t),this.locationModule=u.LocationBridgeFactory.getNativeLocationBridge(e,t),this.navigationModule=h.NativeNavigationFactory.repository(e,t),this.cameraBridge=S.NativeCameraBridgeFactory.getNativeCameraBridge(e),this.permissionsBridge=a.NativePermissionsBridgeFactory.getPermissionsBridge(e,t),this.analyticsBridge=o.NativeAnalyticsBridgeFactory.getNativeAnalyticsBridge(e,t),this.authBridge=s.NativeOAuthBridgeFactory.bridge(e),this.deviceInfoBridge=P.NativeDeviceInfoBridgeFactory.bridge(e),this.bleManagerBridge=b.default.getBleManagerBridge(e),this.orderActionBridge=p.NativeOrderActionBridgeFactory.bridge(e),this.filePickerBridge=m.NativeFilePickerBridgeFactory.bridge(e),this.species=e}static build(e,t){return r(this,void 0,void 0,function*(){let n=t;if(n||(n=this.getOperatingSystem(e)),!n)throw new Error(y.InternalConstants.ErrorCode.invalidParams);if(!l.PhonePeUtils.isValidSpecies(e)||!l.PhonePeUtils.isValidOS(n))throw new Error(y.InternalConstants.ErrorCode.invalidParams);let r=new A(e,n);return e===N.ExternalConstants.Species.web&&(yield c.MethodVersioningHandler.initSupportedVersionFromNative()),r})}static getOperatingSystem(e){if(e===N.ExternalConstants.Species.web){if(-1!==navigator.userAgent.search(N.ExternalConstants.OSUserAgent.android))return N.ExternalConstants.OS.android;if(-1!==navigator.userAgent.search(N.ExternalConstants.OSUserAgent.ios))return N.ExternalConstants.OS.ios;let e=T.PhonePeSDKWebConstants.NavigationIOS.navigateToPaymentsView;return l.PhonePeUtils.isValidMethodOniOS(e)?N.ExternalConstants.OS.ios:N.ExternalConstants.OS.android}return N.ExternalConstants.OS.android}getItem(e,t,n){try{l.PhonePeUtils.assertString(e),l.PhonePeUtils.assertString(t),l.PhonePeUtils.assertString(n,!0)}catch(e){return l.PhonePeUtils.returnRejection(e)}return this.preferencesModule.getString(e,t,n)}setItem(e,t,n){try{l.PhonePeUtils.assertString(e),l.PhonePeUtils.assertString(t),l.PhonePeUtils.assertString(n)}catch(e){return l.PhonePeUtils.returnRejection(e)}return this.preferencesModule.saveString(e,t,n),l.PhonePeUtils.returnResolution(void 0)}removeItem(e,t){try{l.PhonePeUtils.assertString(e),l.PhonePeUtils.assertString(t)}catch(e){return l.PhonePeUtils.returnRejection(e)}return this.preferencesModule.removeItem(e,t),l.PhonePeUtils.returnResolution(void 0)}startUpdatingLocation(){this.locationModule.startUpdatingLocation()}stopUpdatingLocation(){this.locationModule.stopUpdatingLocation()}getCurrentLocation(){return this.locationModule.getCurrentLocation(!0)}registerLocationUpdateSuccessCallback(e,t){try{l.PhonePeUtils.assertString(e),l.PhonePeUtils.assertFunction(t)}catch(e){return l.PhonePeUtils.returnRejection(e)}let n=this.locationModule.onLocationUpdateSuccess(e,t);return l.PhonePeUtils.returnResolution(n)}registerLocationUpdateFailureCallback(e,t){try{l.PhonePeUtils.assertString(e),l.PhonePeUtils.assertFunction(t)}catch(e){return l.PhonePeUtils.returnRejection(e)}let n=this.locationModule.onLocationUpdateFailure(e,t);return l.PhonePeUtils.returnResolution(n)}openPaymentsPage(e,t,n,r,i,s){return this.makeCommonPaymentsPageCall(y.InternalConstants.General.v1,e,t,n,r,i,s)}openTransactionDetailsPage(e){try{l.PhonePeUtils.assertString(e)}catch(e){return l.PhonePeUtils.returnRejection(e)}let t=d.ExternalNavigationFactory.transactionDetailRequest(e);return this.navigationModule.processNavigationRequestForResultAsync(t)}seekPermission(e){try{l.PhonePeUtils.assertArray(e);for(let t of e)l.PhonePeUtils.assertString(t),l.PhonePeUtils.assert(void 0!==_[t],y.InternalConstants.ErrorCode.invalidParams)}catch(e){return l.PhonePeUtils.returnRejection(e)}return this.permissionsBridge.seekPermission(e)}openSettingsPageForPermission(){return this.permissionsBridge.openSettingsPageForPermission()}scanQRCode(e,t=".*"){return this.cameraBridge.scanQRCode(e,t)}startCamera(){return this.cameraBridge.startCamera()}loadFont(e,t,n){if(this.species===N.ExternalConstants.Species.web)return l.PhonePeUtils.returnRejection(y.InternalConstants.ErrorCode.invalidParams);throw new Error("Wrong species sent")}logMerchantEvent(e,t){try{l.PhonePeUtils.assertString(e),l.PhonePeUtils.assertObject(t,!0)}catch(e){return l.PhonePeUtils.returnRejection(e)}return this.analyticsBridge.logMerchantEvent(e,t)}fetchGrantToken(){return this.authBridge.fetchGrantToken()}fetchAuthToken(){return this.authBridge.fetchAuthToken()}createServiceRequestToken(){return this.orderActionBridge.createServiceRequestToken()}getDeviceInfo(){return this.deviceInfoBridge.getDeviceInfo()}bluetoothRead(e,t,n){return this.bleManagerBridge.read(e,t,n)}bluetoothReadRSSI(e){return this.bleManagerBridge.readRSSI(e)}bluetoothRefreshCache(e){return this.bleManagerBridge.refreshCache(e)}bluetoothRetrieveServices(e,t){return this.bleManagerBridge.retrieveServices(e,t)}bluetoothWrite(e,t,n,r,i=20){return this.bleManagerBridge.write(e,t,n,r,i)}bluetoothWriteWithoutResponse(e,t,n,r,i=20,s=10){return this.bleManagerBridge.writeWithoutResponse(e,t,n,r,i,s)}bluetoothConnect(e){return this.bleManagerBridge.connect(e)}bluetoothCreateBond(e){return this.bleManagerBridge.createBond(e)}bluetoothRemoveBond(e){return this.bleManagerBridge.removeBond(e)}bluetoothDisconnect(e){return this.bleManagerBridge.disconnect(e)}bluetoothStartNotification(e,t,n){return this.bleManagerBridge.startNotification(e,t,n)}bluetoothStopNotification(e,t,n){return this.bleManagerBridge.stopNotification(e,t,n)}bluetoothCheckState(){this.bleManagerBridge.checkState()}bluetoothStart(e){return this.bleManagerBridge.start(e)}bluetoothScan(e,t,n=!1,r={}){return this.bleManagerBridge.scan(e,t,n,r)}bluetoothStopScan(){return this.bleManagerBridge.stopScan()}bluetoothEnableBluetooth(){return this.bleManagerBridge.enableBluetooth()}bluetoothGetConnectedPeripherals(e){return this.bleManagerBridge.getConnectedPeripherals(e)}bluetoothGetBondedPeripherals(){return this.bleManagerBridge.getBondedPeripherals()}bluetoothGetDiscoveredPeripherals(){return this.bleManagerBridge.getDiscoveredPeripherals()}bluetoothRemovePeripheral(e){return this.bleManagerBridge.removePeripheral(e)}bluetoothIsPeripheralConnected(e,t){return this.bleManagerBridge.isPeripheralConnected(e,t)}bluetoothRequestConnectionPriority(e,t){return this.bleManagerBridge.requestConnectionPriority(e,t)}bluetoothRequestMTU(e,t){return this.bleManagerBridge.requestMTU(e,t)}reserveOrder(e,t){let n;try{l.PhonePeUtils.assertString(e),l.PhonePeUtils.assertString(t),n=JSON.parse(M.Base64Client.decode(e)),l.PhonePeUtils.assertObject(n)}catch(e){return l.PhonePeUtils.returnRejection(e)}return this.orderActionBridge.reserveOrder(l.PhonePeUtils.getReserveOrderPayload(n,t))}proceedToPay(e,t){try{this.logMerchantEvent("CATEGORY_PAYMENT_INIT",{}),l.PhonePeUtils.assertString(e),A.getOperatingSystem(this.species)===N.ExternalConstants.OS.ios&&l.PhonePeUtils.assertString(t)}catch(e){return l.PhonePeUtils.returnRejection(e)}let n=t?encodeURIComponent(t):"";const r=d.ExternalNavigationFactory.genericPaymentNavigationRequest(e,n);return this.navigationModule.processNavigationRequestForResultAsync(r)}openPaymentsPageForReservedOrder(e,t,n,r,i,s){const o=JSON.parse(M.Base64Client.decode(t));return this.makeCommonPaymentsPageCall(y.InternalConstants.General.v2,e,o,n,r,i,s)}makeCommonPaymentsPageCall(e,t,n,r,i,s,o){try{l.PhonePeUtils.assertString(t),l.PhonePeUtils.assertObject(n),this.species===N.ExternalConstants.Species.web&&l.PhonePeUtils.assertString(r,!0),l.PhonePeUtils.assertString(i,!0),l.PhonePeUtils.assertArray(s,!0)}catch(e){return l.PhonePeUtils.returnRejection(e)}let a=n[C.ExternalPaymentsNamespace.Constant.kPayableAmount],c={};a&&(c={amount:a}),this.logMerchantEvent("CATEGORY_PAYMENT_INIT",c);let u=d.ExternalNavigationFactory.paymentNavigationRequest(t,n,e,r,i,s,o);return new Promise((e,t)=>{this.navigationModule.processNavigationRequestForResultAsync(u).then(t=>{let r={},i=C.ExternalPaymentsNamespace.Constant.kMerchantTransactionId,s=n[i];s&&(r[i]=s),e(r)}).catch(e=>{t(e)})})}selectFile(e,t){try{l.PhonePeUtils.assertString(e),l.PhonePeUtils.assertBoolean(t)}catch(e){return l.PhonePeUtils.returnRejection(e)}return this.filePickerBridge.selectFile(e,t)}readFile(e,t,n){try{if(l.PhonePeUtils.assertString(e),l.PhonePeUtils.assertNumber(t),l.PhonePeUtils.assertNumber(n),t<0||n<0)throw new TypeError(y.InternalConstants.ErrorCode.invalidParams)}catch(e){return l.PhonePeUtils.returnRejection(e)}return this.filePickerBridge.readFile(e,t,n)}closeApp(){let e=new i.CloseAppNavRequest("");this.navigationModule.closeAppRequest(e)}openMicroApp(e,t){try{l.PhonePeUtils.assertString(e),l.PhonePeUtils.assertObject(t,!0)}catch(e){return l.PhonePeUtils.returnRejection(e)}let n=new i.MicroAppNavigationRequest("",e,t,"",!0,!1);return this.navigationModule.processNavigationRequestAsync(n)}isMethodSupported(e){return c.MethodVersioningHandler.isMethodSupported(e)}}A.loggingEnabled=!1,t.PhonePe=A},function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,s){function o(e){try{c(r.next(e))}catch(e){s(e)}}function a(e){try{c(r.throw(e))}catch(e){s(e)}}function c(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(o,a)}c((r=r.apply(e,t||[])).next())})};Object.defineProperty(t,"__esModule",{value:!0});const i=n(5),s=n(1),o=n(3),a=n(2);class c{static initSupportedVersionFromNative(){return r(this,void 0,void 0,function*(){yield this.fetchNativeSupportedSDKVersion().then(e=>{i.Logger.logd("PhonePe","Version received from native side = "+e),c.version=Number(e)}).catch(e=>{throw i.Logger.logd("PhonePe","Error found when trying to fetch version = "+e),Error("Something is really wrong here! We should be able to fetch version always. Are you sure you are testing it inside the PhonePe app?")}),this.populateMethodToVersionMapping()})}static isMethodSupported(e){if(e===o.PhonePeSDKWebConstants.Metadata.supportedVersion)return!0;if(!c.version)throw i.Logger.logd("PhonePe","[Error] Can't call isMethodSupported before native has returned the version"),Error("Can't call isMethodSupported before native has returned the version");let t=c.methodToVersionMapping[e];if(!t)throw i.Logger.logd("PhonePe","[Error] Could not find this method in mapping. This should never happen!"),Error("Could not find this method in mapping. This should never happen!");{let e=t[o.PhonePeSDKWebConstants.General.min],n=t[o.PhonePeSDKWebConstants.General.max],r=c.version;if(i.Logger.logd("PhonePe","Comparing minVersion = "+e+" maxVersion = "+n+" nativeSDKSupportVersion = "+r),r<e)return!1;if(-1!==n&&r>n)return!1}return!0}static fetchNativeSupportedSDKVersion(){return i.Logger.logd("PhonePe","Trying to call supportedVersion method in fetchNativeSupportedSDKVersion"),s.MessagingHandler.storePromiseAndCallNative(o.PhonePeSDKWebConstants.Metadata.supportedVersion,o.PhonePeSDKWebConstants.Metadata.androidBridgeName,{})}static populateMethodToVersionMapping(){let e={min:1,max:-1};this.methodToVersionMapping[o.PhonePeSDKWebConstants.Preferences.getItem]=e,this.methodToVersionMapping[o.PhonePeSDKWebConstants.Preferences.setItem]=e,this.methodToVersionMapping[o.PhonePeSDKWebConstants.Preferences.removeItem]=e,this.methodToVersionMapping[o.PhonePeSDKWebConstants.Preferences.removeItemAndroid]=e,this.methodToVersionMapping[o.PhonePeSDKWebConstants.Location.startUpdatingLocation]=e,this.methodToVersionMapping[o.PhonePeSDKWebConstants.Location.stopUpdatingLocation]=e,this.methodToVersionMapping[o.PhonePeSDKWebConstants.Location.getCurrentLocation]=e,this.methodToVersionMapping[o.PhonePeSDKWebConstants.Navigation.navigateToPath]=e,this.methodToVersionMapping[o.PhonePeSDKWebConstants.Navigation.navigateToPathForResult]=e,this.methodToVersionMapping[o.PhonePeSDKWebConstants.NavigationIOS.navigateToPaymentsView]=e,this.methodToVersionMapping[o.PhonePeSDKWebConstants.NavigationIOS.navigateToHelpPage]=e,this.methodToVersionMapping[o.PhonePeSDKWebConstants.NavigationIOS.navigateToTransactionDetail]=e,this.methodToVersionMapping[o.PhonePeSDKWebConstants.User.getUserDetails]=e,this.methodToVersionMapping[o.PhonePeSDKWebConstants.Metadata.supportedVersion]=e,this.methodToVersionMapping[a.InternalConstants.PermissionsBridge.openSettingsPage]=e,this.methodToVersionMapping[a.InternalConstants.PermissionsBridge.seekPermission]=e,this.methodToVersionMapping[a.InternalConstants.AnalyticsBridge.methodName]=e,this.methodToVersionMapping[a.InternalConstants.AuthBridge.fetchGrantToken]=e,this.methodToVersionMapping[a.InternalConstants.CameraBridge.scanQRCode]=e,this.methodToVersionMapping[a.InternalConstants.CameraBridge.startCamera]=e,this.methodToVersionMapping[a.InternalConstants.OrderActionBridge.reserveOrder]=Object.assign({},e,{min:3}),this.methodToVersionMapping[a.InternalConstants.OrderActionBridge.openPaymentsPageForReservedOrder]=Object.assign({},e,{min:3}),this.methodToVersionMapping[a.InternalConstants.OrderActionBridge.fetchOrderRequestToken]=Object.assign({},e,{min:6}),this.methodToVersionMapping[a.InternalConstants.FilePickerBridge.readFile]=Object.assign({},e,{min:4}),this.methodToVersionMapping[a.InternalConstants.FilePickerBridge.selectFile]=Object.assign({},e,{min:4}),this.methodToVersionMapping[o.PhonePeSDKWebConstants.NavigationIOS.navigateToGenericPaymentsView]=Object.assign({},e,{min:5}),this.methodToVersionMapping[o.PhonePeSDKWebConstants.Navigation.navigateToGenericPayment]=Object.assign({},e,{min:5}),this.methodToVersionMapping[o.PhonePeSDKWebConstants.Navigation.navigateToGenericPaymentForResult]=Object.assign({},e,{min:5}),this.methodToVersionMapping[a.InternalConstants.AuthBridge.fetchAuthToken]=Object.assign({},e,{min:5})}}c.methodToVersionMapping={},t.MethodVersioningHandler=c},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),function(e){let t;!function(e){e.PENDING="PENDING",e.COMPLETED="COMPLETED",e.ERRORED="ERRORED",e.DEFAULT="DEFAULT"}(t=e.TransactionState||(e.TransactionState={}));e.ActionButtonProp=class{constructor(e,t){this.name=e,this.shouldHide=t}}}(t.ExternalPaymentModels||(t.ExternalPaymentModels={}))},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(13),i=n(0);t.NativeOAuthBridgeFactory=class{static bridge(e){if(e===i.ExternalConstants.Species.web)return new r.WebNativeOAuthBridge;throw new Error("Wrong species sent")}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(1),i=n(2).InternalConstants.AuthBridge;t.WebNativeOAuthBridge=class{fetchGrantToken(){return new Promise((e,t)=>{r.MessagingHandler.storePromiseAndCallNative(i.fetchGrantToken,i.bridgeName,{}).then(t=>{e(JSON.parse(t))}).catch(e=>{t(e)})})}fetchAuthToken(){return new Promise((e,t)=>{r.MessagingHandler.storePromiseAndCallNative(i.fetchAuthToken,i.bridgeName,{}).then(t=>{e(JSON.parse(t))}).catch(e=>{t(e)})})}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(15),i=n(0);t.NativeAnalyticsBridgeFactory=class{static getNativeAnalyticsBridge(e,t){if(e===i.ExternalConstants.Species.web)return new r.WebNativeAnalyticsBridge;throw new Error("Wrong species sent")}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(1),i=n(2);var s=i.InternalConstants.AnalyticsBridge;t.WebNativeAnalyticsBridge=class{logMerchantEvent(e,t){return r.MessagingHandler.storePromiseAndCallNative(s.methodName,s.bridgeName,this.objectForAnalytics(e,t))}objectForAnalytics(e,t){let n={};return n[i.InternalConstants.AnalyticsBridge.kName]=e,t&&(n[i.InternalConstants.AnalyticsBridge.kMetadata]=t),n}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(17),i=n(0);t.NativePermissionsBridgeFactory=class{static getPermissionsBridge(e,t){if(e===i.ExternalConstants.Species.web)return new r.WebPermissionsBridge(t);throw new Error("Wrong species sent")}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(5),i=n(4),s=n(1);var o=n(2).InternalConstants.PermissionsBridge;t.WebPermissionsBridge=class{constructor(e){this.operatingSystem=e}seekPermission(e){let t=i.PhonePeUtils.osSpecificPermissionNames(e,this.operatingSystem);return new Promise((e,n)=>{s.MessagingHandler.storePromiseAndCallNative(o.seekPermission,o.name,{permissions:t}).then(t=>{if(r.Logger.logd("PhonePe","Unstripped response = "+JSON.stringify(t)),"string"==typeof t){let n=JSON.parse(t);n.forEach(e=>{let t=i.PhonePeUtils.strippedPermissionName(e[o.kPermission],this.operatingSystem);e[o.kPermission]=t}),r.Logger.logd("PhonePe","Stripped response = "+JSON.stringify(n)),e(n)}else n("Wrong response sent by PhonePe")}).catch(e=>{n(e)})})}openSettingsPageForPermission(){return s.MessagingHandler.storePromiseAndCallNative(o.openSettingsPage,o.name,{})}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(19),i=n(20),s=n(6),o=n(7),a=n(21);var c=o.ExternalPaymentsNamespace.Constant;t.ExternalNavigationFactory=class{static genericPaymentNavigationRequest(e,t){return new s.GenericPaymentNavigationRequest("Pay",!0,!1,e,t)}static paymentNavigationRequest(e,t,n,l,d,u,h){let g=t[o.ExternalPaymentsNamespace.Constant.kPayableAmount],P=t[o.ExternalPaymentsNamespace.Constant.kValidFor];P&&(P*=1e3);let p=t[c.kMerchantId],m=i.ExternalPaymentsRequestFactory.internalPaymentUIConfig(g,e,P,d,h,p),v=i.ExternalPaymentsRequestFactory.microPayRequest(t,n,l),f=new s.PaymentMetaData([{}]);if(void 0!==u){let e=[];for(let t of u)for(let n in t)if(t.hasOwnProperty(n)){let r=n,i=t[n],s={};s[c.kKey]=r,s[c.kValue]=i,e.push(s)}f.details=e}let y=t[c.kServiceCategory];y||(y="JSSDK");let N=new r.OriginInfo(new a.AnalyticsInfo(y,y+"_NAVIGATE_TO_PAYMENTS",Math.random().toString(36).substring(7)));return new s.PaymentNavigationRequest("Pay","Pay",!0,!1,o.ExternalPaymentsNamespace.PAYMENT_MODE.MODE_SEND_MONEY,v,m,o.ExternalPaymentsNamespace.TRANSACTION_TYPE.SENT_PAYMENT,f,N)}static transactionDetailRequest(e){let t=new r.OriginInfo(new a.AnalyticsInfo("JSSDK","JSSDK_NAVIGATE_TO_TRANSACTION_DETAILS",Math.random().toString(36).substring(7)));return new s.TransactionDetailsNavigationRequest("Details","Details",!0,!1,e,o.ExternalPaymentsNamespace.TRANSACTION_TYPE.SENT_PAYMENT,t)}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});t.OriginInfo=class{constructor(e){this.analyticsInfo=e}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(7);var i=r.ExternalPaymentsNamespace.Constant,s=r.ExternalPaymentsNamespace.PaymentOptionsContext,o=r.ExternalPaymentsNamespace.PaymentOptionsContextMetadata,a=r.ExternalPaymentsNamespace.MicroPayRequest,c=r.ExternalPaymentsNamespace.PaymentTimeOutModel,l=r.ExternalPaymentsNamespace.DismissBehaviourModel,d=r.ExternalPaymentsNamespace.InternalPaymentUiConfig,u=r.ExternalPaymentsNamespace.Contact,h=r.ExternalPaymentsNamespace.CONTACT_TYPE;const g=n(2);t.ExternalPaymentsRequestFactory=class{static microPayRequest(e,t,n){let r=e[i.kServiceRequestId],c=new a(e[i.kMerchantId],191,g.InternalConstants.General.v1,n,void 0,r);c.serviceProviderId=c.merchantId;let l={};l[i.kSellingPrice]=e[i.kPayableAmount],l[i.kServiceType]=i.kServiceTypeValue,l[i.kReservationId]=e[i.kReservationId];let d={};d[i.kServiceCategory]=e[i.kServiceCategory],l[i.kServiceContext]=d,e[i.kQuantity]&&(l[i.kQuantity]=e[i.kQuantity]),l[i.kServiceTypeVersion]=e[i.kServiceTypeVersion],c.fulFillContext=JSON.stringify(l),c.discoveryContext=JSON.stringify(this.discoveryContext(c.merchantId));let u=new o(c.merchantId,e[i.kServiceCategory],c.merchantId,i.kServiceTypeValue);return c.paymentOptionsContext=JSON.stringify(new s(u)),c}static discoveryContext(e){return{merchantId:e,mode:g.InternalConstants.General.discoveryContextMode}}static internalPaymentUIConfig(e,t,n,r,i,s){let o=[new u(h.CONTACT_TYPE_MERCHANT,t,r,s)],a=g.InternalConstants.General.confirmationScreenDuration,c=new d(g.InternalConstants.General.paymentScreenName,e,o,a,i);return void 0!==n&&null!==n&&n>0&&(c.paymentTimeout=this.paymentTimeoutModel(n)),c.paymentDismiss=this.paymentDismissModel(),c}static paymentTimeoutModel(e){return new c(e,!0,i.timeoutTitle,i.timeoutMessage,i.timeoutActionButtonTitle,i.PAYMENT_TIMEOUT)}static paymentDismissModel(){return new l(!0,i.dismissTitle,i.dismissMessage,i.dismissPositiveButtonTitle,i.dismissNegativeButtonTitle,i.PAYMENT_DISMISS)}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});t.AnalyticsInfo=class{constructor(e,t,n){this.category=e,this.action=t,this.groupingKey=n,this.startTimeStamp=(new Date).getTime(),this.lastTimeStamp=this.startTimeStamp,this.customDimens={},this.isTransactionalEvent=!1,this.value=0,this.isFirstTime=!0}setValue(e){this.value=e}setTransactionalEvent(e){this.isTransactionalEvent=!0,this.value=e}setCustomDimension(e){this.customDimens=e}setLastTimeStamp(e){this.lastTimeStamp=e}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(23),i=n(0);t.LocationBridgeFactory=class{static getNativeLocationBridge(e,t){if(e===i.ExternalConstants.Species.web)return new r.WebLocationBridge;throw new Error("Wrong species sent")}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(24),i=n(3),s=n(1),o=n(8);var a=i.PhonePeSDKWebConstants.Location;t.WebLocationBridge=class{getAddress(e,t){return Promise.resolve()}startUpdatingLocation(){s.MessagingHandler.callNative(a.startUpdatingLocation,a.androidBridgeName,{})}stopUpdatingLocation(){s.MessagingHandler.callNative(a.stopUpdatingLocation,a.androidBridgeName,{}),o.EventHandler.removeAllSubscriptions(a.locationSuccessEventKey),o.EventHandler.removeAllSubscriptions(a.locationFailureEventKey)}getCurrentLocation(){let e={};return e[a.forceNewLocation]=!0,s.MessagingHandler.storePromiseAndCallNative(a.getCurrentLocation,a.androidBridgeName,e)}onLocationUpdateSuccess(e,t){let n=new r.PhonePeWebSubscription(e,a.locationSuccessEventKey,t);return o.EventHandler.addSubscription(n),n}onLocationUpdateFailure(e,t){let n=new r.PhonePeWebSubscription(e,a.locationFailureEventKey,t);return o.EventHandler.addSubscription(n),n}isLocationTurnedOn(){return Promise.resolve()}turnOnLocation(){return Promise.resolve()}setLocationPriority(e){}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(8);t.PhonePeWebSubscription=class{constructor(e,t,n){this.eventName=t,this.listener=n,this.callbackName=e}remove(){r.EventHandler.removeSubscription(this)}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(26),i=n(29),s=n(0);t.NativeNavigationFactory=class{static repository(e,t){if(e===s.ExternalConstants.Species.web)return t===s.ExternalConstants.OS.ios?new i.IOSWebNavigationHandler:new r.AndroidWebNavigationHandler;throw new Error("Wrong species sent")}}},function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,s){function o(e){try{c(r.next(e))}catch(e){s(e)}}function a(e){try{c(r.throw(e))}catch(e){s(e)}}function c(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(o,a)}c((r=r.apply(e,t||[])).next())})};Object.defineProperty(t,"__esModule",{value:!0});const i=n(4),s=n(1),o=n(27),a=n(6),c=n(3),l=n(2);var d=c.PhonePeSDKWebConstants.Navigation,u=l.InternalConstants.ActivityID;class h{processNavigationRequestAsync(e,t){return r(this,void 0,void 0,function*(){if(e.screenType===a.NavigationScreenType.PaymentsView){let n=e;return this.navigateToPayment(n,e.isNewTask,t)}if(e.screenType===a.NavigationScreenType.TransactionDetail){let n=e;return this.navigateToTransactionDetail(n,e.isNewTask,t)}if(e.screenType===a.NavigationScreenType.GenericPaymentsView){let n=e;return this.navigateToGenericPayment(n,e.isNewTask,t)}return i.PhonePeUtils.returnRejection("Unhandled request type")})}processNavigationRequestForResultAsync(e){return r(this,void 0,void 0,function*(){return this.processNavigationRequestAsync(e,!0)})}navigateToPayment(e,t,n){let r=o.NativeNavigationRequestFactory.pathFromPaymentRequest(e,t),i=this.objectForNavigation(r,u.payments,t);return n?s.MessagingHandler.storePromiseAndCallNative(d.navigateToPathForResult,d.androidBridgeName,i):s.MessagingHandler.callNative(d.navigateToPath,d.androidBridgeName,i)}navigateToTransactionDetail(e,t,n){return r(this,void 0,void 0,function*(){let r=o.NativeNavigationRequestFactory.pathFromTransactionDetailsRequest(e,t),i=this.objectForNavigation(r,u.transactionDetails,t);return n?s.MessagingHandler.storePromiseAndCallNative(d.navigateToPathForResult,d.androidBridgeName,i):s.MessagingHandler.callNative(d.navigateToPath,d.androidBridgeName,i)})}navigateToGenericPayment(e,t,n){let r=o.NativeNavigationRequestFactory.pathFromGenericPaymentRequest(e,t),i=this.objectForNavigation(r,u.payments,t);return n?s.MessagingHandler.storePromiseAndCallNative(d.navigateToPathForResult,d.androidBridgeName,i):s.MessagingHandler.callNative(d.navigateToPath,d.androidBridgeName,i)}objectForNavigation(e,t,n){let r={};return r[h.pathKey]=JSON.stringify(e),r[h.activityIdKey]=t,r[h.isNewTaskKey]=n?268435456:0,r}closeAppRequest(e){}}h.pathKey="path",h.activityIdKey="activityId",h.isNewTaskKey="isNewTask",t.AndroidWebNavigationHandler=h},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(28);t.NativeNavigationRequestFactory=class{static pathFromPaymentRequest(e,t){let n=[],i=new r.Node("payment_activity","ACTIVITY",{}),s={};s.mode=JSON.stringify(e.mode),s.internalPaymentUiConfig=JSON.stringify(e.internalPaymentUiConfig),s.microPayRequest=JSON.stringify(e.microPayRequest),s.transactionType=JSON.stringify(e.transactionType),s.info=JSON.stringify(e.originInfo),s.metaData=JSON.stringify(e.metaData);let o=new r.Node("micro_app_payment","FRAGMENT",s);return n.push(i),n.push(o),new r.Path(n)}static pathFromGenericPaymentRequest(e,t){let n=[],i=new r.Node("payment_activity","ACTIVITY",{}),s={};s.reservationId=e.reservationId,s.fallbackUrl=e.fallbackUrl;let o=new r.Node("micro_app_aggregator_payment","FRAGMENT",s);return n.push(i),n.push(o),new r.Path(n)}static pathFromTransactionDetailsRequest(e,t){let n=[],i=new r.Node("transaction_details_activity","ACTIVITY",{}),s={};s.transactionId=JSON.stringify(e.transactionId),s.transactionType=JSON.stringify("TICKETING"),s.info=JSON.stringify(e.info);let o=new r.Node("transaction_details_fragment","FRAGMENT",s);return n.push(i),n.push(o),new r.Path(n)}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});t.Node=class{constructor(e,t,n){this.name=e,this.screenType=t,this.data=n}};t.Path=class{constructor(e){this.node=e}}},function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,s){function o(e){try{c(r.next(e))}catch(e){s(e)}}function a(e){try{c(r.throw(e))}catch(e){s(e)}}function c(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(o,a)}c((r=r.apply(e,t||[])).next())})};Object.defineProperty(t,"__esModule",{value:!0});const i=n(4),s=n(6),o=n(1),a=n(3);t.IOSWebNavigationHandler=class{processNavigationRequestAsync(e,t){return r(this,void 0,void 0,function*(){if(e.screenType===s.NavigationScreenType.PaymentsView){let n=e;return this.navigateToPayment(n,e.isNewTask,t)}if(e.screenType===s.NavigationScreenType.TransactionDetail){let n=e;return this.navigateToTransactionDetail(n,e.isNewTask,t)}if(e.screenType===s.NavigationScreenType.GenericPaymentsView){let n=e;return this.navigateToGenericPayment(n,e.isNewTask,t)}return i.PhonePeUtils.returnRejection("Unhandled request type")})}processNavigationRequestForResultAsync(e){return r(this,void 0,void 0,function*(){return this.processNavigationRequestAsync(e,!0)})}navigateToPayment(e,t,n){let r=e,i=a.PhonePeSDKWebConstants.NavigationIOS.navigateToPaymentsView;return o.MessagingHandler.storePromiseAndCallNative(i,"",r)}navigateToTransactionDetail(e,t,n){return r(this,void 0,void 0,function*(){let t=e,n=a.PhonePeSDKWebConstants.NavigationIOS.navigateToTransactionDetail;return o.MessagingHandler.storePromiseAndCallNative(n,"",t)})}navigateToGenericPayment(e,t,n){return r(this,void 0,void 0,function*(){let t=e,n=a.PhonePeSDKWebConstants.NavigationIOS.navigateToGenericPaymentsView;return o.MessagingHandler.storePromiseAndCallNative(n,"",t)})}closeAppRequest(e){}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(31),i=n(0);t.NativePreferenceBridgeFactory=class{static getNativePreferenceBridge(e,t){if(e===i.ExternalConstants.Species.web)return new r.WebNativePreferenceBridge(t);throw new Error("Wrong species sent")}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(5),i=n(1),s=n(0),o=n(3);var a=o.PhonePeSDKWebConstants.Preferences;t.WebNativePreferenceBridge=class{constructor(e){this.operatingSystem=e}getString(e,t,n){let r=this.prefObject(e,t,void 0,n);return i.MessagingHandler.storePromiseAndCallNative(a.getItem,a.androidBridgeName,r)}getNumber(e,t,n){return new Promise((e,t)=>{t("This should not be called in case of web pref bridge")})}getDecryptedUserId(){return new Promise((e,t)=>{t("This should not be called in case of web pref bridge")})}saveNumber(e,t,n){r.Logger.logd("PhonePe","[Error] his should not be called in case of web pref bridge")}saveString(e,t,n){let r=this.prefObject(e,t,n,void 0);i.MessagingHandler.callNative(a.setItem,a.androidBridgeName,r)}removeItem(e,t){let n=this.prefObject(e,t,void 0,void 0),r=a.removeItem;this.operatingSystem===s.ExternalConstants.OS.android&&(r=a.removeItemAndroid),i.MessagingHandler.callNative(r,o.PhonePeSDKWebConstants.Preferences.androidBridgeName,n)}prefObject(e,t,n,r){let i={};return e&&(i[o.PhonePeSDKWebConstants.General.prefName]=e),t&&(i[o.PhonePeSDKWebConstants.General.key]=t),r&&(i[o.PhonePeSDKWebConstants.General.defaultValue]=r),n&&(i[o.PhonePeSDKWebConstants.General.value]=n),i}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(33),i=n(0);t.NativeDeviceInfoBridgeFactory=class{static bridge(e){if(e===i.ExternalConstants.Species.web)return new r.WebNativeDeviceInfoBridge;throw new Error("Wrong species sent")}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});t.WebNativeDeviceInfoBridge=class{getDeviceInfo(){return Promise.resolve()}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(35),i=n(0);t.NativeOrderActionBridgeFactory=class{static bridge(e){if(e===i.ExternalConstants.Species.web)return new r.WebNativeOrderActionBridge;throw new Error("Wrong species sent")}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(1),i=n(2).InternalConstants.OrderActionBridge;t.WebNativeOrderActionBridge=class{reserveOrder(e){return new Promise((t,n)=>{r.MessagingHandler.storePromiseAndCallNative(i.reserveOrder,i.bridgeName,e).then(e=>{t(JSON.parse(e))}).catch(e=>{n(e)})})}createServiceRequestToken(){return new Promise((e,t)=>{r.MessagingHandler.storePromiseAndCallNative(i.fetchOrderRequestToken,i.bridgeName,{}).then(t=>{e(JSON.parse(t))}).catch(e=>{t(e)})})}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(37),i=n(0);t.NativeFilePickerBridgeFactory=class{static bridge(e){if(e===i.ExternalConstants.Species.web)return new r.WebNativeFilePickerBridge;throw new Error("Wrong species sent")}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(1),i=n(2).InternalConstants.FilePickerBridge;t.WebNativeFilePickerBridge=class{selectFile(e,t){return new Promise((n,s)=>{r.MessagingHandler.storePromiseAndCallNative(i.selectFile,i.bridgeName,{mimeType:e,allowMultiple:t}).then(e=>{n(JSON.parse(e))}).catch(e=>{s(e)})})}readFile(e,t,n){return new Promise((s,o)=>{r.MessagingHandler.storePromiseAndCallNative(i.readFile,i.bridgeName,{uri:e,offset:t,length:n}).then(e=>{s(JSON.parse(e))}).catch(e=>{o(e)})})}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(0),i=n(39);t.default=class{static getBleManagerBridge(e){if(e===r.ExternalConstants.Species.web)return new i.WebPPBleManager;throw new Error("Wrong species sent")}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});t.WebPPBleManager=class{read(e,t,n){throw new Error("Wrong species sent")}readRSSI(e){throw new Error("Wrong species sent")}refreshCache(e){throw new Error("Wrong species sent")}retrieveServices(e,t){throw new Error("Wrong species sent")}write(e,t,n,r,i){throw new Error("Wrong species sent")}writeWithoutResponse(e,t,n,r,i,s){throw new Error("Wrong species sent")}connect(e){throw new Error("Wrong species sent")}createBond(e){throw new Error("Wrong species sent")}removeBond(e){throw new Error("Wrong species sent")}disconnect(e){throw new Error("Wrong species sent")}startNotification(e,t,n){throw new Error("Wrong species sent")}stopNotification(e,t,n){throw new Error("Wrong species sent")}checkState(){throw new Error("Wrong species sent")}start(e){throw new Error("Wrong species sent")}scan(e,t,n,r){throw new Error("Wrong species sent")}stopScan(){throw new Error("Wrong species sent")}enableBluetooth(){throw new Error("Wrong species sent")}getConnectedPeripherals(e){throw new Error("Wrong species sent")}getBondedPeripherals(){throw new Error("Wrong species sent")}getDiscoveredPeripherals(){throw new Error("Wrong species sent")}removePeripheral(e){throw new Error("Wrong species sent")}isPeripheralConnected(e,t){throw new Error("Wrong species sent")}requestConnectionPriority(e,t){throw new Error("Wrong species sent")}requestMTU(e,t){throw new Error("Wrong species sent")}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(41),i=n(0);t.NativeCameraBridgeFactory=class{static getNativeCameraBridge(e){if(e===i.ExternalConstants.Species.web)return new r.WebNativeCameraBridge;throw new Error("Wrong species sent")}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(1);var i=n(3).PhonePeSDKWebConstants.Camera;t.WebNativeCameraBridge=class{scanQRCode(e,t){return new Promise((n,s)=>{r.MessagingHandler.storePromiseAndCallNative(i.scanQRCode,i.androidBridgeName,{showGallery:e,validator:t}).then(e=>{n(e)}).catch(e=>{s(e)})})}startCamera(){return new Promise((e,t)=>{r.MessagingHandler.storePromiseAndCallNative(i.startCamera,i.androidBridgeName,{}).then(t=>{e(t)}).catch(e=>{t(e)})})}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(43);t.Base64Client=class{static encode(e){return r.Base64.encode(e)}static decode(e){return r.Base64.decode(e)}}},function(module,exports,__webpack_require__){(function(global){var __WEBPACK_AMD_DEFINE_ARRAY__,__WEBPACK_AMD_DEFINE_RESULT__;!function(global,factory){module.exports=function(global){"use strict";var _Base64=(global=global||{}).Base64,version="2.5.1",buffer;if(module.exports)try{buffer=eval("require('buffer').Buffer")}catch(e){buffer=void 0}var b64chars="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",b64tab=function(e){for(var t={},n=0,r=e.length;n<r;n++)t[e.charAt(n)]=n;return t}(b64chars),fromCharCode=String.fromCharCode,cb_utob=function(e){if(e.length<2){var t=e.charCodeAt(0);return t<128?e:t<2048?fromCharCode(192|t>>>6)+fromCharCode(128|63&t):fromCharCode(224|t>>>12&15)+fromCharCode(128|t>>>6&63)+fromCharCode(128|63&t)}var t=65536+1024*(e.charCodeAt(0)-55296)+(e.charCodeAt(1)-56320);return fromCharCode(240|t>>>18&7)+fromCharCode(128|t>>>12&63)+fromCharCode(128|t>>>6&63)+fromCharCode(128|63&t)},re_utob=/[\uD800-\uDBFF][\uDC00-\uDFFFF]|[^\x00-\x7F]/g,utob=function(e){return e.replace(re_utob,cb_utob)},cb_encode=function(e){var t=[0,2,1][e.length%3],n=e.charCodeAt(0)<<16|(e.length>1?e.charCodeAt(1):0)<<8|(e.length>2?e.charCodeAt(2):0),r=[b64chars.charAt(n>>>18),b64chars.charAt(n>>>12&63),t>=2?"=":b64chars.charAt(n>>>6&63),t>=1?"=":b64chars.charAt(63&n)];return r.join("")},btoa=global.btoa?function(e){return global.btoa(e)}:function(e){return e.replace(/[\s\S]{1,3}/g,cb_encode)},_encode=buffer?buffer.from&&Uint8Array&&buffer.from!==Uint8Array.from?function(e){return(e.constructor===buffer.constructor?e:buffer.from(e)).toString("base64")}:function(e){return(e.constructor===buffer.constructor?e:new buffer(e)).toString("base64")}:function(e){return btoa(utob(e))},encode=function(e,t){return t?_encode(String(e)).replace(/[+\/]/g,function(e){return"+"==e?"-":"_"}).replace(/=/g,""):_encode(String(e))},encodeURI=function(e){return encode(e,!0)},re_btou=new RegExp(["[À-ß][€-¿]","[à-ï][€-¿]{2}","[ð-÷][€-¿]{3}"].join("|"),"g"),cb_btou=function(e){switch(e.length){case 4:var t=(7&e.charCodeAt(0))<<18|(63&e.charCodeAt(1))<<12|(63&e.charCodeAt(2))<<6|63&e.charCodeAt(3),n=t-65536;return fromCharCode(55296+(n>>>10))+fromCharCode(56320+(1023&n));case 3:return fromCharCode((15&e.charCodeAt(0))<<12|(63&e.charCodeAt(1))<<6|63&e.charCodeAt(2));default:return fromCharCode((31&e.charCodeAt(0))<<6|63&e.charCodeAt(1))}},btou=function(e){return e.replace(re_btou,cb_btou)},cb_decode=function(e){var t=e.length,n=t%4,r=(t>0?b64tab[e.charAt(0)]<<18:0)|(t>1?b64tab[e.charAt(1)]<<12:0)|(t>2?b64tab[e.charAt(2)]<<6:0)|(t>3?b64tab[e.charAt(3)]:0),i=[fromCharCode(r>>>16),fromCharCode(r>>>8&255),fromCharCode(255&r)];return i.length-=[0,0,2,1][n],i.join("")},_atob=global.atob?function(e){return global.atob(e)}:function(e){return e.replace(/\S{1,4}/g,cb_decode)},atob=function(e){return _atob(String(e).replace(/[^A-Za-z0-9\+\/]/g,""))},_decode=buffer?buffer.from&&Uint8Array&&buffer.from!==Uint8Array.from?function(e){return(e.constructor===buffer.constructor?e:buffer.from(e,"base64")).toString()}:function(e){return(e.constructor===buffer.constructor?e:new buffer(e,"base64")).toString()}:function(e){return btou(_atob(e))},decode=function(e){return _decode(String(e).replace(/[-_]/g,function(e){return"-"==e?"+":"/"}).replace(/[^A-Za-z0-9\+\/]/g,""))},noConflict=function(){var e=global.Base64;return global.Base64=_Base64,e};if(global.Base64={VERSION:version,atob:atob,btoa:btoa,fromBase64:decode,toBase64:encode,utob:utob,encode:encode,encodeURI:encodeURI,btou:btou,decode:decode,noConflict:noConflict,__buffer__:buffer},"function"==typeof Object.defineProperty){var noEnum=function(e){return{value:e,enumerable:!1,writable:!0,configurable:!0}};global.Base64.extendString=function(){Object.defineProperty(String.prototype,"fromBase64",noEnum(function(){return decode(this)})),Object.defineProperty(String.prototype,"toBase64",noEnum(function(e){return encode(this,e)})),Object.defineProperty(String.prototype,"toBase64URI",noEnum(function(){return encode(this,!0)}))}}global.Meteor&&(Base64=global.Base64);module.exports?module.exports.Base64=global.Base64:(__WEBPACK_AMD_DEFINE_ARRAY__=[],__WEBPACK_AMD_DEFINE_RESULT__=function(){return global.Base64}.apply(exports,__WEBPACK_AMD_DEFINE_ARRAY__),void 0===__WEBPACK_AMD_DEFINE_RESULT__||(module.exports=__WEBPACK_AMD_DEFINE_RESULT__));return{Base64:global.Base64}}(global)}("undefined"!=typeof self?self:"undefined"!=typeof window?window:void 0!==global?global:this)}).call(this,__webpack_require__(44))},function(e,t){var n;n=function(){return this}();try{n=n||new Function("return this")()}catch(e){"object"==typeof window&&(n=window)}e.exports=n}]);
        </script>
<script defer="" src="https://microapps.google.com/apis/v1alpha/microapps.js"></script>
<script>var w=window;if(w.performance||w.mozPerformance||w.msPerformance||w.webkitPerformance){var d=document;AKSB=w.AKSB||{},AKSB.q=AKSB.q||[],AKSB.mark=AKSB.mark||function(e,_){AKSB.q.push(["mark",e,_||(new Date).getTime()])},AKSB.measure=AKSB.measure||function(e,_,t){AKSB.q.push(["measure",e,_,t||(new Date).getTime()])},AKSB.done=AKSB.done||function(e){AKSB.q.push(["done",e])},AKSB.mark("firstbyte",(new Date).getTime()),AKSB.prof={custid:"545004",ustr:"",originlat:"0",clientrtt:"531",ghostip:"23.212.252.172",ipv6:false,pct:"10",clientip:"103.57.173.166",requestid:"5129e12",region:"37485",protocol:"",blver:14,akM:"a",akN:"ae",akTT:"O",akTX:"1",akTI:"5129e12",ai:"354272",ra:"false",pmgn:"",pmgi:"",pmp:"",qc:""},function(e){var _=d.createElement("script");_.async="async",_.src=e;var t=d.getElementsByTagName("script"),t=t[t.length-1];t.parentNode.insertBefore(_,t)}(("https:"===d.location.protocol?"https:":"http:")+"//ds-aksb-a.akamaihd.net/aksb.min.js")}</script>
</head>
<body>
<div id="app"><div><div><header class="headerDivWrapper hidden-sm hidden-xs"><div class="topBarWrapper"><div class="topBar"><div class="pull-left"><a class="headerLinks" href="https://www.bewakoof.com/campaign/delights-coupons-discounts-offers-sale"> <!-- -->Offers</a><a class="headerLinks" href="https://www.bewakoof.com/fanbook-testimonial-reviews"> <!-- -->Fanbook</a><a class="headerLinks" href="https://www.bewakoof.com/campaign/apps"><i class="icon_mobile_covers mobileIcon"></i> <!-- -->Download App</a><a class="headerLinks" href="https://www.bewakoof.com/tribe"> <!-- -->TriBe Membership</a><a class="headerLinks" href="https://www.bewakoof.com/find-a-store"> <!-- -->Find a store near me</a></div><div class="pull-right"><a class="headerLinks" href="https://www.bewakoof.com/contact-us"> <!-- -->Contact Us</a><a class="headerLinks" href="https://www.bewakoof.com/myaccount/orders"> <!-- -->Track Order</a></div></div></div><div class="mainHeaderWrapper"><div class="mainHeader row"><div class="col-xs-2 mainHeaderCols bewakoofLogoDiv"><a href="/" style="display:inline-block;height:inherit"><img alt="bewakoof_logo" src="https://images.bewakoof.com/web/ic-desktop-bwkf-trademark-logo.svg" style="height:20px;vertical-align:middle;margin-bottom:5px;width:147px" title="Bewakoof.com"/> </a></div><div class="col-xs-5 dropDownWrapper"><div class="mainHeaderCols dropDownDiv" style="text-align:left"><span class="menuWrapper" style="color:#333"><a class="menuSelectWrpr" href="/men-clothing" id="testMenuSelect-shop-men" style="position:relative"><span class="menuSelect" style="cursor:pointer"><span>MEN</span></span></a><div class="container menuDropdownWrpr"><div class="menuContents dropdownContent"><div class="dropDownMenu"></div></div></div></span><span class="menuWrapper" style="color:#333"><a class="menuSelectWrpr" href="/women-clothing" id="testMenuSelect-shop-women" style="position:relative"><span class="menuSelect" style="cursor:pointer"><span>WOMEN</span></span></a><div class="container menuDropdownWrpr"><div class="menuContents dropdownContent"><div class="dropDownMenu"></div></div></div></span><span class="menuWrapper" style="color:#333"><a class="menuSelectWrpr" href="/mobile-covers-india" id="testMenuSelect-mobile covers" style="position:relative"><span class="menuSelect" style="cursor:pointer"><span>MOBILE COVERS</span></span></a><div class="container menuDropdownWrpr"><div class="menuContents dropdownContent"><div class="dropDownMenu"></div></div></div></span></div></div><div class="col-xs-5 mainHeaderCols searchMyAccount"><div class="pull-right mainHeaderCols activemenuwrp" style="padding-right:0"><div class="actionMenu"><span class="actionMenu actionMenuInner" id="testHeaderCart"><a class="cartIcon" href="/cart" style="padding-right:0;position:relative"><div><i aria-hidden="true" class="icon_bag"></i></div></a></span><span class="actionMenu" id="testHeadWish" style="padding:0 5px;cursor:pointer"><div><div class=""><i class="icon_wishlist"></i></div></div></span> <div class="actionMenu" style="display:flex;align-items:baseline;text-align:right"><a class="loginLink" href="#" id="loginLink">Login</a></div></div></div><div class="pull-right mainHeaderCols searchWrapper"><div class="icon-addon addon-sm"><form class="searchContainer" style="position:relative;border-bottom:none"><input autocomplete="off" class="searchInput form-controls" placeholder="Search by product, category or collection" type="text"/><i class="icon_search"></i></form><div class="seperator"></div></div></div></div></div></div></header><div class="sideNavBox"> <!-- --> <header class="mHeaderDiv mHeaderSticky visible-sm visible-xs" id="" style="z-index:9999;background-color:"><div class="noMg mHeader"><div class="backToPreviousPage"><a class="backPreviousCat"><img alt="back" src="https://images.bewakoof.com/web/ic-web-head-primary-back.svg"/></a></div><input id="hambu" type="checkbox"/><div class="mActionMenu" style="display:block"><span class="mBewakoofLogoDiv"><a href="/" title="Online Lifestyle Brand - Bewakoof.com"><img alt="bewakoof_logo" src="https://images.bewakoof.com/web/ic-web-head-bwk-primary-logo-eyes.svg" style="height:18px;margin:16px 0;width:40px"/></a></span></div><div class="iconMenuOption"><span class="" style="width:auto"><form class="msearchContainer" style="display:inline-block"><label><img alt="search-icon" class="header-icon ml-1 ico-search" src="https://images.bewakoof.com/web/ic-web-head-search.svg"/></label></form></span><span><div class=""><img alt="wish-list" class="header-icon" src="https://images.bewakoof.com/web/ic-web-head-wishlist.svg"/></div></span><a href="/cart"><span><img alt="shopping-bag" class="header-icon" src="https://images.bewakoof.com/web/ic-web-head-cart.svg"/> </span></a></div></div></header><div class="mMenuOverlay undefined"></div></div></div><div class="containerHeight" style="min-height:75vh"><div class="breadcrumbWrapper container"><div class="breadCrumBox hidden-xs"><ul><li class="anchorHover"><a href="/">Home</a></li><li class=""><a> Bestseller</a></li></ul></div></div><div class="categoryWrapper" style="margin-top:0"><div class="categoryInnerWrapper mobileFilterBtn container padding0 visible-xs"></div><div class="container"><div class="mainHeading"><div class="headingInner"><h1 class="searchResults">Bestseller</h1><span class="totalProductCount">(657)</span><div></div></div></div></div><div class="categoryInnerWrapper padding0 container" style="max-height:100%;position:relative"><div class="col-sm-3 padding0 filterContainer hidden-xs"><div><div class="filterBoxMain"><div class="filterHeadingDesktop"><h4>Filters</h4></div><div class="filterWrap hidden-xs"><div class="accordionWrapper"><div class="accordionBox clearfix"><div><div class="filterHeader clearfix"><span>Sort By</span><i class="icon_bullet bulletIcon"></i><i class="icon_down" style="float:right"></i></div></div></div></div></div></div></div></div><div class="col-sm-9 col-sm-offset-3 clearfix noPdXs"><div class="categoryGridWrapper clearfix"><div class="sortbyWrapper hidden-xs"><div class="hoverMenuWrapper"><button class="sortbyButton">Sort By<span>Popular<!-- --> <i class="icon_down"></i></span></button><div class="hoverMenu"><div class="sortbyHeading"><h4 class="visible-xs">Sort by <i class="icon_close"></i></h4><div class="listingBox"><ul><li><div><div><a aria-current="false" href="/bestseller?sort=popular" style="display:block;width:100%;color:#42a2a2">Popular</a></div></div></li><li><div><div><a aria-current="false" href="/bestseller?sort=new" style="display:block;width:100%;color:black">New</a></div></div></li><li><div><div><a aria-current="false" href="/bestseller?sort=high" style="display:block;width:100%;color:black">Price : High to Low</a></div></div></li><li><div><div><a aria-current="false" href="/bestseller?sort=low" style="display:block;width:100%;color:black">Price : Low to High</a></div></div></li></ul></div></div></div></div></div><div class="productGrid quickFilterProductgrid" id="productGrid"><div></div><div class="prodCardContainer"><div><a aria-current="true" class="subHeading hidden-xs active" href="/"></a><span style="display:none">0</span></div><div class="plp-product-card" id="testProductcard_1"><a aria-current="false" class="col-sm-4 col-xs-6 px-2" href="/p/womens-pink-living-in-paradise-graphic-print-boyfriend-t-shirt"><div class="productCardBox"><div class="productCardImg false"><div class="productImg" style="width:100%;padding-top:135%;position:relative;background:rgb(247, 246, 248)"><img alt="Shop Women's Pink Living in Paradise Graphic Printed Boyfriend T-shirt-Front" class="productImgTag" decoding="async" height="100%" loading="lazy" src="https://images.bewakoof.com/t640/women-s-pink-living-in-paradise-graphic-printed-boyfriend-t-shirt-609631-1715257770-1.jpg" title="Women's Pink Living in Paradise Graphic Printed Boyfriend T-shirt-Front Bewakoof" width="100%"/></div><div class="productStatusBox"></div><div class="bottomTag"></div></div><div class="productCardDetail pdt-card-h" style="min-height:"><div class="d-flex"><div class="productNaming bkf-ellipsis"><h3 class="brand-name undefined">Bewakoof®</h3><h2 class="clr-shade4 h3-p-name undefined false">Women's Pink Living in Paradise Graphic Printed Boyfriend T-shirt</h2></div><div class="wishListProduct-v2"><img alt="wishlist" class="wishlist-icon-animate" src="https://images.bewakoof.com/web/Wishlist.svg"/></div></div><div class="productPriceBox d-flex align-items-end false"><div class="discountedPriceText clr-p-black false"><span>₹</span>399</div><div class="actualPriceText clr-shade5">₹<!-- -->1099</div><span class="sellingFastBox"></span></div><div class="d-flex align-items-center justify-content-between loyalty-stock-wrap"><div class="loyaltyPriceBox" style="width:unset"><h6><b>₹<!-- -->369</b>For TriBe Members</h6></div></div><div class="fabric_tag_container px-2 py-1" style="border:1px solid #737373;background:white;margin-top:;margin-bottom:"><div class="tag_label_plp" style="color:#737373">100% COTTON</div></div></div></div></a></div><div class="plp-product-card" id="testProductcard_2"><a aria-current="false" class="col-sm-4 col-xs-6 px-2" href="/p/inner-peace-boyfriend-t-shirts-bold-red-womens-printed-boyfriend-t-shirts"><div class="productCardBox"><div class="productCardImg false"><div class="" style="width:100%;padding-top:135%;position:relative;background:rgb(247, 249, 249)"><img alt="Shop Women's Red Inner Peace Graphic Printed Boyfriend T-shirt-Front" class="productImgTag" decoding="async" height="100%" loading="lazy" src="https://images.bewakoof.com/t640/women-s-red-inner-peace-graphic-printed-boyfriend-t-shirt-295706-1720009662-1.jpg" title="Women's Red Inner Peace Graphic Printed Boyfriend T-shirt-Front Bewakoof" width="100%"/></div><div class="productStatusBox"></div><div class="bottomTag"></div><div class="lmtd-text-cntr d-flex align-items-center cursor-p false"><div class="pdt-r-wrap d-flex align-items-center bgclr-shade8 undefined"><i class="icon_star_filled clr-p-yellow"></i><span class="clr-shade-3">4.5</span></div></div></div><div class="productCardDetail pdt-card-h" style="min-height:"><div class="d-flex"><div class="productNaming bkf-ellipsis"><h3 class="brand-name undefined">Bewakoof®</h3><h2 class="clr-shade4 h3-p-name undefined false">Women's Red Inner Peace Graphic Printed Boyfriend T-shirt</h2></div><div class="wishListProduct-v2"><img alt="wishlist" class="wishlist-icon-animate" src="https://images.bewakoof.com/web/Wishlist.svg"/></div></div><div class="productPriceBox d-flex align-items-end false"><div class="discountedPriceText clr-p-black false"><span>₹</span>349</div><div class="actualPriceText clr-shade5">₹<!-- -->999</div><span class="sellingFastBox"></span></div><div class="d-flex align-items-center justify-content-between loyalty-stock-wrap"><div class="loyaltyPriceBox" style="width:unset"><h6><b>₹<!-- -->319</b>For TriBe Members</h6></div></div><div class="fabric_tag_container px-2 py-1" style="border:1px solid #737373;background:white;margin-top:;margin-bottom:"><div class="tag_label_plp" style="color:#737373">100% COTTON</div></div></div></div></a></div><div class="plp-product-card" id="testProductcard_3"><a aria-current="false" class="col-sm-4 col-xs-6 px-2" href="/p/nasa-astronaut-half-sleeve-t-shirt-men"><div class="productCardBox"><div class="productCardImg false"><div class="productImg" style="width:100%;padding-top:135%;position:relative;background:rgb(248, 246, 249)"><img alt="Shop Men's Red NASA Astronaut Graphic Printed T-shirt-Front" class="productImgTag" decoding="async" height="100%" loading="lazy" src="https://images.bewakoof.com/t640/men-s-red-nasa-astronaut-graphic-printed-t-shirt-481838-1715257546-1.jpg" title="Men's Red NASA Astronaut Graphic Printed T-shirt-Front Bewakoof" width="100%"/></div><div class="productStatusBox"></div><div class="bottomTag"></div><div class="lmtd-text-cntr d-flex align-items-center cursor-p false"><div class="pdt-r-wrap d-flex align-items-center bgclr-shade8 undefined"><i class="icon_star_filled clr-p-yellow"></i><span class="clr-shade-3">4.3</span></div></div></div><div class="productCardDetail pdt-card-h" style="min-height:"><div class="d-flex"><div class="productNaming bkf-ellipsis"><h3 class="brand-name undefined">bewakoof x nasa</h3><h2 class="clr-shade4 h3-p-name undefined false">Men's Red NASA Astronaut Graphic Printed T-shirt</h2></div><div class="wishListProduct-v2"><img alt="wishlist" class="wishlist-icon-animate" src="https://images.bewakoof.com/web/Wishlist.svg"/></div></div><div class="productPriceBox d-flex align-items-end false"><div class="discountedPriceText clr-p-black false"><span>₹</span>399</div><div class="actualPriceText clr-shade5">₹<!-- -->999</div><span class="sellingFastBox"></span></div><div class="d-flex align-items-center justify-content-between loyalty-stock-wrap"><div class="loyaltyPriceBox" style="width:unset"><h6><b>₹<!-- -->369</b>For TriBe Members</h6></div></div><div class="fabric_tag_container px-2 py-1" style="border:1px solid #737373;background:white;margin-top:;margin-bottom:"><div class="tag_label_plp" style="color:#737373">100% COTTON</div></div></div></div></a></div><div class="plp-product-card" id="testProductcard_4"><a aria-current="false" class="col-sm-4 col-xs-6 px-2" href="/p/women-certified-troublemakers-tjl-regular-graphic-printed-t-shirt"><div class="productCardBox"><div class="productCardImg false"><div class="productImg" style="width:100%;padding-top:135%;position:relative;background:rgb(245, 247, 247)"><img alt="Shop Women's Black Certified Troublemakers Graphic Printed T-shirt-Front" class="productImgTag" decoding="async" height="100%" loading="lazy" src="https://images.bewakoof.com/t640/women-s-black-certified-troublemakers-graphic-printed-t-shirt-621368-1721651273-1.jpg" title="Women's Black Certified Troublemakers Graphic Printed T-shirt-Front Bewakoof" width="100%"/></div><div class="productStatusBox"></div><div class="bottomTag"></div><div class="lmtd-text-cntr d-flex align-items-center cursor-p false"><div class="pdt-r-wrap d-flex align-items-center bgclr-shade8 undefined"><i class="icon_star_filled clr-p-yellow"></i><span class="clr-shade-3">4.5</span></div></div></div><div class="productCardDetail pdt-card-h" style="min-height:"><div class="d-flex"><div class="productNaming bkf-ellipsis"><h3 class="brand-name undefined">bewakoof x tom &amp; jerry</h3><h2 class="clr-shade4 h3-p-name undefined false">Women's Black Certified Troublemakers Graphic Printed T-shirt</h2></div><div class="wishListProduct-v2"><img alt="wishlist" class="wishlist-icon-animate" src="https://images.bewakoof.com/web/Wishlist.svg"/></div></div><div class="productPriceBox d-flex align-items-end false"><div class="discountedPriceText clr-p-black false"><span>₹</span>299</div><div class="actualPriceText clr-shade5">₹<!-- -->1099</div><span class="sellingFastBox"></span></div><div class="d-flex align-items-center justify-content-between loyalty-stock-wrap"><div class="loyaltyPriceBox" style="width:unset"><h6><b>₹<!-- -->279</b>For TriBe Members</h6></div></div><div class="fabric_tag_container px-2 py-1" style="border:1px solid #737373;background:white;margin-top:;margin-bottom:"><div class="tag_label_plp" style="color:#737373">100% COTTON</div></div></div></div></a></div><div class="plp-product-card" id="testProductcard_5"><a aria-current="false" class="col-sm-4 col-xs-6 px-2" href="/p/hod-iconic-half-sleeve-t-shirt"><div class="productCardBox"><div class="productCardImg false"><div class="productImg" style="width:100%;padding-top:135%;position:relative;background:rgb(247, 246, 249)"><img alt="Shop Men's Black House Of The Dragon Iconic Graphic Printed T-shirt-Front" class="productImgTag" decoding="async" height="100%" loading="lazy" src="https://images.bewakoof.com/t640/men-s-black-house-of-the-dragon-iconic-graphic-printed-t-shirt-519411-1715257899-1.jpg" title="Men's Black House Of The Dragon Iconic Graphic Printed T-shirt-Front Bewakoof" width="100%"/></div><div class="productStatusBox"></div><div class="bottomTag"></div></div><div class="productCardDetail pdt-card-h" style="min-height:"><div class="d-flex"><div class="productNaming bkf-ellipsis"><h3 class="brand-name undefined">bewakoof x house of the dragon</h3><h2 class="clr-shade4 h3-p-name undefined false">Men's Black House Of The Dragon Iconic Graphic Printed T-shirt</h2></div><div class="wishListProduct-v2"><img alt="wishlist" class="wishlist-icon-animate" src="https://images.bewakoof.com/web/Wishlist.svg"/></div></div><div class="productPriceBox d-flex align-items-end false"><div class="discountedPriceText clr-p-black false"><span>₹</span>399</div><div class="actualPriceText clr-shade5">₹<!-- -->999</div><span class="sellingFastBox"></span></div><div class="d-flex align-items-center justify-content-between loyalty-stock-wrap"><div class="loyaltyPriceBox" style="width:unset"><h6><b>₹<!-- -->369</b>For TriBe Members</h6></div></div><div class="fabric_tag_container px-2 py-1" style="border:1px solid #737373;background:white;margin-top:;margin-bottom:"><div class="tag_label_plp" style="color:#737373">100% COTTON</div></div></div></div></a></div><div class="plp-product-card" id="testProductcard_6"><a aria-current="false" class="col-sm-4 col-xs-6 px-2" href="/p/mens-black-eternity-graphic-printed-t-shirt"><div class="productCardBox"><div class="productCardImg false"><div class="productImg" style="width:100%;padding-top:135%;position:relative;background:rgb(249, 248, 248)"><img alt="Shop Men's Black Eternity Graphic Printed T-shirt-Front" class="productImgTag" decoding="async" height="100%" loading="lazy" src="https://images.bewakoof.com/t640/men-s-black-eternity-graphic-printed-t-shirt-596133-1706598517-1.jpg" title="Men's Black Eternity Graphic Printed T-shirt-Front Bewakoof" width="100%"/></div><div class="productStatusBox"></div><div class="bottomTag"></div></div><div class="productCardDetail pdt-card-h" style="min-height:"><div class="d-flex"><div class="productNaming bkf-ellipsis"><h3 class="brand-name undefined">Bewakoof®</h3><h2 class="clr-shade4 h3-p-name undefined false">Men's Black Eternity Graphic Printed T-shirt</h2></div><div class="wishListProduct-v2"><img alt="wishlist" class="wishlist-icon-animate" src="https://images.bewakoof.com/web/Wishlist.svg"/></div></div><div class="productPriceBox d-flex align-items-end false"><div class="discountedPriceText clr-p-black false"><span>₹</span>399</div><div class="actualPriceText clr-shade5">₹<!-- -->1099</div><span class="sellingFastBox"></span></div><div class="d-flex align-items-center justify-content-between loyalty-stock-wrap"><div class="loyaltyPriceBox" style="width:unset"><h6><b>₹<!-- -->369</b>For TriBe Members</h6></div></div><div class="fabric_tag_container px-2 py-1" style="border:1px solid #737373;background:white;margin-top:;margin-bottom:"><div class="tag_label_plp" style="color:#737373">100% COTTON</div></div></div></div></a></div><div class="plp-product-card" id="testProductcard_7"><a aria-current="false" class="col-sm-4 col-xs-6 px-2" href="/p/no-we-in-food-boyfriend-t-shirt-women-black"><div class="productCardBox"><div class="productCardImg false"><div class="productImg" style="width:100%;padding-top:135%;position:relative;background:rgb(247, 246, 245)"><img alt="Shop Women's Black No We in Food Graphic Printed Boyfriend T-shirt-Front" class="productImgTag" decoding="async" height="100%" loading="lazy" src="https://images.bewakoof.com/t640/women-s-black-no-we-in-food-graphic-printed-boyfriend-t-shirt-483824-1715257660-1.jpg" title="Women's Black No We in Food Graphic Printed Boyfriend T-shirt-Front Bewakoof" width="100%"/></div><div class="productStatusBox"></div><div class="bottomTag"></div><div class="lmtd-text-cntr d-flex align-items-center cursor-p false"><div class="pdt-r-wrap d-flex align-items-center bgclr-shade8 undefined"><i class="icon_star_filled clr-p-yellow"></i><span class="clr-shade-3">4.6</span></div></div></div><div class="productCardDetail pdt-card-h" style="min-height:"><div class="d-flex"><div class="productNaming bkf-ellipsis"><h3 class="brand-name undefined">Bewakoof®</h3><h2 class="clr-shade4 h3-p-name undefined false">Women's Black No We in Food Graphic Printed Boyfriend T-shirt</h2></div><div class="wishListProduct-v2"><img alt="wishlist" class="wishlist-icon-animate" src="https://images.bewakoof.com/web/Wishlist.svg"/></div></div><div class="productPriceBox d-flex align-items-end false"><div class="discountedPriceText clr-p-black false"><span>₹</span>399</div><div class="actualPriceText clr-shade5">₹<!-- -->999</div><span class="sellingFastBox"></span></div><div class="d-flex align-items-center justify-content-between loyalty-stock-wrap"><div class="loyaltyPriceBox" style="width:unset"><h6><b>₹<!-- -->369</b>For TriBe Members</h6></div></div><div class="fabric_tag_container px-2 py-1" style="border:1px solid #737373;background:white;margin-top:;margin-bottom:"><div class="tag_label_plp" style="color:#737373">100% COTTON</div></div></div></div></a></div><div class="plp-product-card" id="testProductcard_8"><a aria-current="false" class="col-sm-4 col-xs-6 px-2" href="/p/womens-black-bts-astro-jin-graphic-printed-oversized-t-shirt"><div class="productCardBox"><div class="productCardImg false"><div class="productImg" style="width:100%;padding-top:135%;position:relative;background:rgb(247, 248, 245)"><img alt="Shop Women's Black BTS Astro (JIN) Graphic Printed Oversized T-shirt-Front" class="productImgTag" decoding="async" height="100%" loading="lazy" src="https://images.bewakoof.com/t640/women-s-black-bts-astro-jin-graphic-printed-oversized-t-shirt-556479-1715258093-1.jpg" title="Women's Black BTS Astro (JIN) Graphic Printed Oversized T-shirt-Front Bewakoof" width="100%"/></div><div class="productStatusBox"></div><div class="bottomTag"></div><div class="lmtd-text-cntr d-flex align-items-center cursor-p false"><div class="pdt-r-wrap d-flex align-items-center bgclr-shade8 undefined"><i class="icon_star_filled clr-p-yellow"></i><span class="clr-shade-3">4.6</span></div></div></div><div class="productCardDetail pdt-card-h" style="min-height:"><div class="d-flex"><div class="productNaming bkf-ellipsis"><h3 class="brand-name undefined">Bewakoof®</h3><h2 class="clr-shade4 h3-p-name undefined false">Women's Black BTS Astro (JIN) Graphic Printed Oversized T-shirt</h2></div><div class="wishListProduct-v2"><img alt="wishlist" class="wishlist-icon-animate" src="https://images.bewakoof.com/web/Wishlist.svg"/></div></div><div class="productPriceBox d-flex align-items-end false"><div class="discountedPriceText clr-p-black false"><span>₹</span>399</div><div class="actualPriceText clr-shade5">₹<!-- -->1299</div><span class="sellingFastBox"></span></div><div class="d-flex align-items-center justify-content-between loyalty-stock-wrap"><div class="loyaltyPriceBox" style="width:unset"><h6><b>₹<!-- -->369</b>For TriBe Members</h6></div></div><div class="fabric_tag_container px-2 py-1" style="border:1px solid #737373;background:white;margin-top:;margin-bottom:"><div class="tag_label_plp" style="color:#737373">100% COTTON</div></div></div></div></a></div><div class="plp-product-card" id="testProductcard_9"><a aria-current="false" class="col-sm-4 col-xs-6 px-2" href="/p/hang-loose-relax-half-sleeve-t-shirt"><div class="productCardBox"><div class="productCardImg false"><div class="" style="width:100%;padding-top:135%;position:relative;background:rgb(248, 249, 245)"><img alt="Shop Men's Black Relax T-shirt-Front" class="productImgTag" decoding="async" height="100%" loading="lazy" src="https://images.bewakoof.com/t640/men-s-black-relax-t-shirt-387407-1715257669-1.jpg" title="Men's Black Relax T-shirt-Front Bewakoof" width="100%"/></div><div class="productStatusBox"></div><div class="bottomTag"></div><div class="lmtd-text-cntr d-flex align-items-center cursor-p false"><div class="pdt-r-wrap d-flex align-items-center bgclr-shade8 undefined"><i class="icon_star_filled clr-p-yellow"></i><span class="clr-shade-3">4.3</span></div></div></div><div class="productCardDetail pdt-card-h" style="min-height:"><div class="d-flex"><div class="productNaming bkf-ellipsis"><h3 class="brand-name undefined">Bewakoof®</h3><h2 class="clr-shade4 h3-p-name undefined false">Men's Black Relax T-shirt</h2></div><div class="wishListProduct-v2"><img alt="wishlist" class="wishlist-icon-animate" src="https://images.bewakoof.com/web/Wishlist.svg"/></div></div><div class="productPriceBox d-flex align-items-end false"><div class="discountedPriceText clr-p-black false"><span>₹</span>399</div><div class="actualPriceText clr-shade5">₹<!-- -->1099</div><span class="sellingFastBox"></span></div><div class="d-flex align-items-center justify-content-between loyalty-stock-wrap"><div class="loyaltyPriceBox" style="width:unset"><h6><b>₹<!-- -->369</b>For TriBe Members</h6></div></div><div class="fabric_tag_container px-2 py-1" style="border:1px solid #737373;background:white;margin-top:;margin-bottom:"><div class="tag_label_plp" style="color:#737373">100% COTTON</div></div></div></div></a></div><div class="plp-product-card" id="testProductcard_10"><a aria-current="false" class="col-sm-4 col-xs-6 px-2" href="/p/womens-pink-garfields-icecream-graphic-printed-oversized-t-shirt"><div class="productCardBox"><div class="productCardImg false"><div class="productImg" style="width:100%;padding-top:135%;position:relative;background:rgb(248, 246, 246)"><img alt="Shop Women's Pink Garfield's Icecream Graphic Printed Oversized T-shirt-Front" class="productImgTag" decoding="async" height="100%" loading="lazy" src="https://images.bewakoof.com/t640/women-s-pink-garfield-s-icecream-graphic-printed-oversized-t-shirt-585729-1680539360-1.jpg" title="Women's Pink Garfield's Icecream Graphic Printed Oversized T-shirt-Front Bewakoof" width="100%"/></div><div class="productStatusBox"></div><div class="bottomTag"></div><div class="lmtd-text-cntr d-flex align-items-center cursor-p false"><div class="pdt-r-wrap d-flex align-items-center bgclr-shade8 undefined"><i class="icon_star_filled clr-p-yellow"></i><span class="clr-shade-3">4.3</span></div></div></div><div class="productCardDetail pdt-card-h" style="min-height:"><div class="d-flex"><div class="productNaming bkf-ellipsis"><h3 class="brand-name undefined">bewakoof x garfield</h3><h2 class="clr-shade4 h3-p-name undefined false">Women's Pink Garfield's Icecream Graphic Printed Oversized T-shirt</h2></div><div class="wishListProduct-v2"><img alt="wishlist" class="wishlist-icon-animate" src="https://images.bewakoof.com/web/Wishlist.svg"/></div></div><div class="productPriceBox d-flex align-items-end false"><div class="discountedPriceText clr-p-black false"><span>₹</span>379</div><div class="actualPriceText clr-shade5">₹<!-- -->1499</div><span class="sellingFastBox"></span></div><div class="d-flex align-items-center justify-content-between loyalty-stock-wrap"><div class="loyaltyPriceBox" style="width:unset"><h6><b>₹<!-- -->349</b>For TriBe Members</h6></div></div><div class="fabric_tag_container px-2 py-1" style="border:1px solid #737373;background:white;margin-top:;margin-bottom:"><div class="tag_label_plp" style="color:#737373">100% COTTON</div></div></div></div></a></div></div></div><div></div></div></div></div><div class="container padding0 false"></div><div class="container"><div class="categoryFooterContainer d-flex"><div class="categoryFaqAndDesc d-flex flex-column"></div></div></div></div></div><div class="countryListWrapper"></div><div class="footerToBottom footerForMobile" style="content-visibility:auto"><div class="footerDiv"><div class="container"><div class="row noMg footerLogo"><div class="col-xs-12 noPdSm" style="max-height:52px;line-height:52px;overflow-y:hidden"><a href="/" style="max-height:52px;line-height:52px;overflow-y:hidden;display:inline-block" title="Online Lifestyle Brand - Bewakoof.com"><i class="icon_bewakoof_logo bewakoofLogo" style="max-height:52px;line-height:52px;overflow-y:hidden"></i></a><br/><br/></div></div><section class="col-xs-12 noPdSm"><div class="col-sm-6 col-md-3 noPdSm footerMenuSec"><span class="footerTitle">CUSTOMER SERVICE</span><ul><li><a href="https://www.bewakoof.com/contact-us">Contact Us</a></li><li><a href="https://www.bewakoof.com/myaccount/orders">Track Order</a></li><li><a href="https://www.bewakoof.com/myaccount/orders?status=returned">Return Order</a></li><li><a href="https://www.bewakoof.com/contact-us">Cancel Order</a></li></ul></div><div class="col-sm-6 col-md-3 noPdSm footerMenuSec"><span class="footerTitle">COMPANY</span><ul><li><a href="https://www.bewakoof.com/about-us/our-story">About Us</a></li><li><a href="https://www.bewakoof.com/careers">We're Hiring</a></li><li><a href="https://www.bewakoof.com/terms-and-conditions">Terms &amp; Conditions</a></li><li><a href="https://www.bewakoof.com/privacy-policy-and-disclaimer">Privacy Policy</a></li><li><a href="https://www.bewakoof.com/blog">Blog</a></li></ul></div><div class="col-sm-6 col-md-3 connectWithUs noPdSm footerMenuSec"><span class="footerTitle">CONNECT WITH US</span><div class="col-xs-12 noPd"><div class="socialIcoMobile"><div class="fbInsta"><a class="whiteText" href="https://www.facebook.com/bewakoofcom" target="_blank"><i class="icon_facebook"></i><span class="hidden-xs">4.7M<!-- --> People Like this</span></a></div><div class="fbInsta"><a class="whiteText" href="https://www.instagram.com/bewakoofofficial/" target="_blank"><i class="icon_instagram_new"></i><span class="hidden-xs">1M<!-- --> Followers</span></a></div></div><div><a href="https://twitter.com/bewakoof" target="_blank"><i class="icon_twitter"></i></a><a href="https://www.pinterest.com/bewakoof/" target="_blank"><i class="icon_pinterest"></i></a><a href="https://www.snapchat.com/add/bewakoof_tv" target="_blank"><i class="icon_snapchat"></i></a><a href="https://itunes.apple.com/in/app/bewakoof/id1100190514?mt=8" target="_blank"><i class="icon_apple"></i></a><a href="https://play.google.com/store/apps/details?id=com.bewakoof.bewakoof&amp;hl=en" target="_blank"><i class="iconAndroid"></i></a></div></div></div><div class="col-md-3 col-sm-6 noPdSm hidden-xs"><span class="footerTitle">KEEP UP TO DATE</span><form name="subscriptionForm" role="form"><input class="form-control subscription col-xs-7" placeholder="Enter Email Id" required="" type="email" value=""/><input class="subscribeButton col-xs-5" type="submit" value="SUBSCRIBE"/></form><div class="errorHolder"></div></div></section><section class="col-xs-12 noPdSm paymentGatewaysFooterBar"><br class="hidden-xs"/><br class="hidden-xs"/><div class="col-md-3 col-sm-6 noPdSm tNC hidden-xs"><ul><li><a href="https://www.bewakoof.com/contact-us/refund-or-return"><i class="icon_return_order"></i>    15 Days return policy*</a></li><li><a href="https://www.bewakoof.com/contact-us/order-delivery-payment"><i class="icon_cod"></i>    Cash on delivery*</a></li></ul></div><div class="col-md-3 col-sm-6 noPdSm noPdXs"><ul><li><span class="footerTitle">DOWNLOAD THE APP</span><div class="downloadAppIcon"><a href="https://play.google.com/store/apps/details?id=com.bewakoof.bewakoof&amp;hl=en" target="_blank"><img alt="android app" class="hidden-xs" src="https://images.bewakoof.com/web/app_android_v1.png" title="android app" width="100px"/><img alt="android app" class="visible-xs" src="https://images.bewakoof.com/web/android-2x.png" title="android app" width="24px"/></a><a href="https://itunes.apple.com/in/app/bewakoof/id1100190514?mt=8" target="_blank"><img alt="ios app" class="hidden-xs" src="https://images.bewakoof.com/web/app_ios_v1.png" title="ios app" width="100px"/><img alt="ios app" class="visible-xs" src="https://images.bewakoof.com/web/apple-2x.png" title="ios app" width="24px"/></a></div></li></ul></div><div class="col-md-6 col-sm-12 noPdSm hidden-xs"><br class="visible-xs"/><br class="visible-xs"/><span class="footerTitle">100% Secure Payment</span><img alt="secure payments" class="paymentImg" src="https://images.bewakoof.com/web/secure-payments-image.png" title="secure payments"/></div></section><section class="col-xs-12 noPdSm footCategoryList"><div class="footerContainer clearfix" style="margin:30px 0px"><ul class="col-sm-3 footCategoryMobile"><a href="/men-clothing"><h4 class="fcWhite">Men's Clothing</h4></a><li><a class="seperate-li" href="/top-wear-for-men" title="Top Wear for Men Online India - Bewakoof">Top Wear</a></li><li><a class="" href="/men-new-arrivals-collection" title="Buy latest clothes for Men Online India - Bewakoof">Men's New Arrivals</a></li><li><a class="" href="/men-t-shirts" title="Mens T-Shirts Online India - Bewakoof">Men's T-Shirts</a></li><li><a class="" href="/men-hoodies-sweatshirts" title="Mens Hoodies &amp; SweatShirts Online India - Bewakoof">Men's Hoodies &amp; Sweatshirts</a></li><li><a class="" href="/oversized-t-shirts-for-men" title="Oversized T-Shirts for Men - Bewakoof">Oversized T-Shirts for Men</a></li><li><a class="" href="/men-full-sleeve-t-shirts" title="Long Sleeve T-Shirts for Men Online India - Bewakoof">Men's Long Sleeve T-shirts</a></li><li><a class="" href="/half-sleeve-t-shirts-for-men" title="Mens Half Sleeve T-Shirts - Bewakoof">Men's Half Sleeve T-Shirts</a></li><li><a class="" href="/men-printed-tshirts" title="Printed T-Shirts for Men Online India - Bewakoof">Men's Printed T-shirts</a></li><li><a class="" href="/men-plain-t-shirts" title="Plain T-Shirts for Men Online India - Bewakoof">Men's Plain T-shirts</a></li><li><a class="" href="/men-crochet-shirts" title="Crochet Shirts for Men Online India - Bewakoof">Men's Crochet Shirts</a></li><li><a class="" href="/men-vests" title="Gym Vests for Men Online India - Bewakoof">Men's Vests</a></li><li><a class="" href="/polo-t-shirts-for-men" title="Polo Neck T-Shirts - Bewakoof">Men's Polo T-Shirts</a></li><li><a class="" href="/sleeveless-t-shirts-for-men" title="Sleeveless T-Shirts - Bewakoof">Men's Sleeveless T-Shirts</a></li><li><a class="" href="/men-kurtas" title="Kurtas for Men - Bewakoof">Men's Kurtas</a></li><li><a class="" href="/mens-combo-t-shirt" title="Combo T-Shirts for Men - Bewakoof">Men's Combo T-Shirts</a></li><li><a class="" href="/men-shirts" title="Buy Casual Shirts for Men Online India - Bewakoof">Men's Shirts</a></li><li><a class="" href="/men-nightwear" title="Buy Nightwear for Men Online">Men's Nightwear</a></li><li><a class="" href="/plus-size-store-for-men" title="Plus Size Store for Men - Bewakoof">Men's Plus Size Store</a></li><li><a class="seperate-li" href="/men-bottom-wear-collection" title="Bottom Wear for Men Online India - Bewakoof">Bottom Wear</a></li><li><a class="" href="/men-pajamas" title="Pajamas for men Online India - Bewakoof">Men's Pajamas</a></li><li><a class="" href="/men-boxer-shorts" title="Boxer Shorts for men Online India - Bewakoof">Men's Boxer Shorts</a></li><li><a class="" href="/men-shorts" title="Shorts for men Online India - Bewakoof">Men's Shorts</a></li><li><a class="" href="/men-joggers" title="Buy Jogger pants for men Online India - Bewakoof">Men's Jogger</a></li><li><a class="" href="/cargo-joggers-for-men" title="Buy Cargo Joggers for men Online India - Bewakoof">Men's Cargo Joggers</a></li><li><a class="" href="/track-pants-for-men" title="Buy Track pants for men Online India - Bewakoof">Men's Track Pants</a></li><li><a class="" href="/mens-denim" title="Buy Jeans for men Online India - Bewakoof">Men's Jeans</a></li><li><a class="" href="/men-bell-bottom-jeans" title="Buy Bell Bottom Jeans for men Online India - Bewakoof">Men's Bell Bottom Jeans</a></li><li><a class="" href="/men-pants" title="Pants for Men Online India - Bewakoof">Men's Trousers &amp; Pants</a></li><li class="seperate-li"><a>Featured</a></li><li><a href="/men-flip-flops" title="Buy Slippers for Men Online India">Men's Flip Flops</a></li><li><a href="/men-sliders" title="Buy Sliders for Men Online India">Men's Sliders</a></li><li><a href="/marvel-merchandise" title="Buy Marvel Merchandise India Online">Marvel T-Shirts</a></li><li><a href="/disney-merchandise" title="Buy Disney Merchandise India">Disney T-Shirts</a></li><li><a href="/avengers-merchandise" title="Buy Avengers Merchandise India Online">Avengers T-Shirts</a></li><li><a href="/star-wars-merchandise" title="Buy Star Wars Merchandise India Online">Star Wars T-Shirts</a></li><li><a href="/batman-merchandise" title="Buy Batman Merchandise India Online">Batman T-Shirts</a></li><li><a href="/superman-merchandise" title="Buy Superman Merchandise India Online">Superman T-Shirts</a></li><li><a href="/joker-merchandise" title="Buy Joker Merchandise India Online">Joker T-Shirts</a></li></ul><ul class="col-sm-3 footCategoryMobile"><a href="/women-clothing"><h4 class="fcWhite">Women's Clothing</h4></a><li><a class="seperate-li" href="/top-wear-for-women" title="Top Wear for Women Online India - Bewakoof.com">Women's Top Wear</a></li><li><a class="" href="/women-new-arrivals-collection" title="Buy Latest Clothes for Women Online India - Bewakoof.com">Women's New Arrivals</a></li><li><a class="" href="/women-t-shirts" title="Buy T Shirts for Women Online India - Bewakoof.com">Women's T-Shirts</a></li><li><a class="" href="/fashion-tops" title="Buy Fashion Tops for Women Online India - Bewakoof.com">Women's Fashion Tops</a></li><li><a class="" href="/women-hoodies-sweatshirts" title="Buy Hoodies &amp; Sweatshirts for Women Online India - Bewakoof.com">Women's Hoodies &amp; Sweatshirts</a></li><li><a class="" href="/women-dresses" title="Buy T Shirt Dresses for Women Online India - Bewakoof.com">Women's Dresses</a></li><li><a class="" href="/women-3-4-sleeve-t-shirts" title="Buy 3 4 T-Shirts Online India - Bewakoof.com">Women's 3/4 Sleeve T-Shirts</a></li><li><a class="" href="/women-kurtas" title="Buy Kurtis for Women Online">Women's Kurtis</a></li><li><a class="" href="/womens-combo-t-shirt" title="Buy Combo T-Shirts for Women Online">Women's Combo T-Shirts</a></li><li><a class="" href="/women-nightwear" title="Buy Nightwear for Women Online">Women's Nightwear</a></li><li><a class="" href="/plus-size-store-for-women" title="Buy Plus Size Tops for Women Online">Women's Plus Size Store</a></li><li><a class="seperate-li" href="/bottom-wear-for-women" title="Buy Bottom Wear for Women Online India - Bewakoof.com">Women's Bottom Wear</a></li><li><a class="" href="/women-co-ord-sets" title="Buy Co-ord Sets for Women Online India - Bewakoof.com">Women's Co-ord Sets</a></li><li><a class="" href="/women-pajamas" title="Buy Pajamas for Women Online India - Bewakoof.com">Women's Pajamas</a></li><li><a class="" href="/women-boxer-shorts" title="Buy Boxers for Women Online India - Bewakoof.com">Women's Boxer Shorts</a></li><li><a class="" href="/womens-denims" title="Buy Jeans for Women Online India - Bewakoof.com">Women's Jeans</a></li><li><a class="" href="/women-wide-leg-jeans" title="Buy Wide Leg Jeans for Women Online India - Bewakoof.com">Women's Wide Leg Jeans</a></li><li><a class="" href="/jeggings-for-women" title="Buy Jeggings for Women Online India - Bewakoof.com">Women's Jeggings</a></li><li><a class="" href="/women-joggers-sweatpants" title="Buy Joggers for Women Online India - Bewakoof.com">Women's Joggers</a></li><li><a class="" href="/women-pants" title="Pants for Women Online India - Bewakoof">Women's Trousers &amp; Pants</a></li><li><a class="" href="/cargo-pants-for-women" title="Cargo Pants for Women Online India - Bewakoof">Women's Cargo Pants</a></li><li><a class="" href="/track-pants-for-women" title="Buy Track Pants for Women Online India - Bewakoof.com">Women's Track Pants</a></li><li><a class="" href="/women-shorts" title="Buy Shorts for Women Online India - Bewakoof.com">Women's Shorts</a></li><li><a class="seperate-li" href="/bags" title="Bags for Men &amp; Women">BAGS</a></li><li><a class="" href="/laptop-bags" title="Buy Laptop Bags for Men &amp; Women">Laptop Bags</a></li><li><a class="" href="/small-backpacks" title="Buy Mini Bags for Men &amp; Women">Small Backpacks</a></li><li class="seperate-li"><a>Featured</a></li><li><a href="/women-sliders" title="Buy Sliders for Women Clothing Online India">Women's Slides</a></li><li><a href="/women-flip-flops" title="Buy Slippers for Women India">Women's Flip Flops</a></li></ul><ul class="col-sm-3 footCategoryMobile"><a href="/mobile-covers-india"><h4 class="fcWhite">Mobile Covers</h4></a><li><p style="cursor:default" title="Shop by brands">Brands</p></li><li><a href="/mobile-covers-india/apple-cases-back-covers" title="Apple">Apple</a></li><li><a href="/mobile-covers-india/realme-cases-back-covers" title="Realme">Realme</a></li><li><a href="/mobile-covers-india/samsung-cases-back-covers" title="Samsung">Samsung</a></li><li><a href="/mobile-covers-india/xiaomi-cases-back-covers" title="Xiaomi">Xiaomi</a></li><li><a href="/mobile-covers-india/oneplus-cases-back-covers" title="Oneplus">Oneplus</a></li><li><a href="/mobile-covers-india/vivo-cases-back-covers" title="Vivo">Vivo</a></li><li><a href="/mobile-covers-india/oppo-cases-back-covers" title="Oppo">Oppo</a></li><li><a href="/mobile-covers-india/poco-cases-back-covers" title="Poco">Poco</a></li></ul><ul class="col-xs-12 col-sm-3 footerExtraLinks"><h4 class="col-sm-12 footCategoryMobile fcWhite"><a class="success" href="/fanbook-testimonial-reviews"> <!-- -->Fanbook</a></h4><h4 class="col-sm-12 footCategoryMobile fcWhite"><a class="success" href="/campaign/delights-coupons-discounts-offers-sale"> <!-- -->Offers</a></h4><h4 class="col-sm-12 footCategoryMobile fcWhite"><a class="success" href="/sitemap"> <!-- -->Sitemap</a></h4></ul><div class="col-md-3 col-sm-6 noPdSm tNC tcnForMobile visible-xs"><ul><li><a href="https://www.bewakoof.com/contact-us/refund-or-return"><i class="icon_return_order"></i>    15 Days return policy*</a></li><li><a href="https://www.bewakoof.com/contact-us/order-delivery-payment"><i class="icon_cod"></i>    Cash on delivery*</a></li></ul></div><div class="footerAboutUs"></div></div></section></div></div></div></div></div>
<script>
            window.__PRELOADED_STATE__ = {"whatsapp":{"whatsapp_updates":true},"loyalty":{"planSelected":false,"tribe_data":undefined,"cancelAutoRenewalRes":undefined},"refer":{"referral_code":null,"pageData":null},"ratingReducer":{"rate":0,"rating":undefined,"feedback":undefined},"orderReducer":{"order":undefined,"returnOrders":undefined,"orderStatus":undefined,"orderSuccessData":undefined},"router":{"location":null},"auth":{"idle":true,"newUser":{"message":false},"login":undefined,"loginError":undefined,"logout":false,"isLoggedIn":false,"openauthModal":false,"openforgotpasswordModal":false,"openotpModal":false,"forgot":false,"emailSent":false,"otp":undefined,"startResendTimer":undefined,"emailVerification":{"isEmailVerified":false,"haveOTPAttempts":true,"otpErrorMsg":undefined},"otpMobile":undefined,"haveOTPAttempts":true,"regMissCreds":undefined,"open_missing_login_info_collector_wizard":false,"tokens":[],"loginFlow":false,"otpErrorMsg":undefined,"loginCreatives":undefined,"registerVerifyOtp":undefined,"registerVerifyOtpError":undefined},"plussize":{"plussize":undefined},"feedbackReducer":{"submit_rating":undefined,"feedback_questions":undefined,"save_feedback":undefined},"deliveryfeedback":{"saveDeliveryFeedback":undefined},"feed":{"saveBShots":undefined},"gamerewards":{"gameRewardsDetails":undefined,"spinReward":undefined,"saveGameRewards":undefined},"appObject":{"deal":null,"footer_links":{"value":{"mobile_covers":{"link":"mobile-covers-india","title":"Mobile Covers & Cases","text":"Mobile Covers","brandsList":[{"title":"Shop by brands","text":"Brands","class":"seperate-li"},{"link":"mobile-covers-india\u002Fapple-cases-back-covers","title":"Apple","text":"Apple"},{"link":"mobile-covers-india\u002Frealme-cases-back-covers","title":"Realme","text":"Realme"},{"link":"mobile-covers-india\u002Fsamsung-cases-back-covers","title":"Samsung","text":"Samsung"},{"link":"mobile-covers-india\u002Fxiaomi-cases-back-covers","title":"Xiaomi","text":"Xiaomi"},{"link":"mobile-covers-india\u002Foneplus-cases-back-covers","title":"Oneplus","text":"Oneplus"},{"link":"mobile-covers-india\u002Fvivo-cases-back-covers","title":"Vivo","text":"Vivo"},{"link":"mobile-covers-india\u002Foppo-cases-back-covers","title":"Oppo","text":"Oppo"},{"link":"mobile-covers-india\u002Fpoco-cases-back-covers","title":"Poco","text":"Poco"}]},"men_fashion":{"link":"men-clothing","is_category_or_collection":7,"title":"Online Shopping for Men India - Bewakoof","text":"Men's Clothing","list":[{"link":"top-wear-for-men","is_category_or_collection":7,"title":"Top Wear for Men Online India - Bewakoof","text":"Top Wear","class":"seperate-li"},{"link":"men-new-arrivals-collection","is_category_or_collection":7,"title":"Buy latest clothes for Men Online India - Bewakoof","text":"Men's New Arrivals"},{"link":"men-t-shirts","is_category_or_collection":7,"title":"Mens T-Shirts Online India - Bewakoof","text":"Men's T-Shirts"},{"link":"men-hoodies-sweatshirts","is_category_or_collection":7,"title":"Mens Hoodies & SweatShirts Online India - Bewakoof","text":"Men's Hoodies & Sweatshirts"},{"link":"oversized-t-shirts-for-men","is_category_or_collection":7,"title":"Oversized T-Shirts for Men - Bewakoof","text":"Oversized T-Shirts for Men"},{"link":"men-full-sleeve-t-shirts","is_category_or_collection":7,"title":"Long Sleeve T-Shirts for Men Online India - Bewakoof","text":"Men's Long Sleeve T-shirts"},{"link":"half-sleeve-t-shirts-for-men","is_category_or_collection":7,"title":"Mens Half Sleeve T-Shirts - Bewakoof","text":"Men's Half Sleeve T-Shirts"},{"link":"men-printed-tshirts","is_category_or_collection":7,"title":"Printed T-Shirts for Men Online India - Bewakoof","text":"Men's Printed T-shirts"},{"link":"men-plain-t-shirts","is_category_or_collection":7,"title":"Plain T-Shirts for Men Online India - Bewakoof","text":"Men's Plain T-shirts"},{"link":"men-crochet-shirts","is_category_or_collection":7,"title":"Crochet Shirts for Men Online India - Bewakoof","text":"Men's Crochet Shirts"},{"link":"men-vests","is_category_or_collection":7,"title":"Gym Vests for Men Online India - Bewakoof","text":"Men's Vests"},{"link":"polo-t-shirts-for-men","is_category_or_collection":7,"title":"Polo Neck T-Shirts - Bewakoof","text":"Men's Polo T-Shirts"},{"link":"sleeveless-t-shirts-for-men","is_category_or_collection":7,"title":"Sleeveless T-Shirts - Bewakoof","text":"Men's Sleeveless T-Shirts"},{"link":"men-kurtas","is_category_or_collection":7,"title":"Kurtas for Men - Bewakoof","text":"Men's Kurtas"},{"link":"mens-combo-t-shirt","is_category_or_collection":7,"title":"Combo T-Shirts for Men - Bewakoof","text":"Men's Combo T-Shirts"},{"link":"men-shirts","is_category_or_collection":7,"title":"Buy Casual Shirts for Men Online India - Bewakoof","text":"Men's Shirts"},{"link":"men-nightwear","is_category_or_collection":7,"title":"Buy Nightwear for Men Online","text":"Men's Nightwear"},{"link":"plus-size-store-for-men","is_category_or_collection":7,"title":"Plus Size Store for Men - Bewakoof","text":"Men's Plus Size Store"},{"link":"men-bottom-wear-collection","is_category_or_collection":7,"title":"Bottom Wear for Men Online India - Bewakoof","text":"Bottom Wear","class":"seperate-li"},{"link":"men-pajamas","is_category_or_collection":7,"title":"Pajamas for men Online India - Bewakoof","text":"Men's Pajamas"},{"link":"men-boxer-shorts","is_category_or_collection":7,"title":"Boxer Shorts for men Online India - Bewakoof","text":"Men's Boxer Shorts"},{"link":"men-shorts","is_category_or_collection":7,"title":"Shorts for men Online India - Bewakoof","text":"Men's Shorts"},{"link":"men-joggers","is_category_or_collection":7,"title":"Buy Jogger pants for men Online India - Bewakoof","text":"Men's Jogger"},{"link":"cargo-joggers-for-men","is_category_or_collection":7,"title":"Buy Cargo Joggers for men Online India - Bewakoof","text":"Men's Cargo Joggers"},{"link":"track-pants-for-men","is_category_or_collection":7,"title":"Buy Track pants for men Online India - Bewakoof","text":"Men's Track Pants"},{"link":"mens-denim","is_category_or_collection":7,"title":"Buy Jeans for men Online India - Bewakoof","text":"Men's Jeans"},{"link":"men-bell-bottom-jeans","is_category_or_collection":7,"title":"Buy Bell Bottom Jeans for men Online India - Bewakoof","text":"Men's Bell Bottom Jeans"},{"link":"men-pants","is_category_or_collection":7,"title":"Pants for Men Online India - Bewakoof","text":"Men's Trousers & Pants"}],"featured":{"text":"Featured","class":"seperate-li","is_category_or_collection":2,"list":[{"link":"men-flip-flops","is_category_or_collection":7,"title":"Buy Slippers for Men Online India","text":"Men's Flip Flops"},{"link":"men-sliders","is_category_or_collection":7,"title":"Buy Sliders for Men Online India","text":"Men's Sliders"},{"link":"marvel-merchandise","is_category_or_collection":7,"title":"Buy Marvel Merchandise India Online","text":"Marvel T-Shirts"},{"link":"disney-merchandise","is_category_or_collection":7,"title":"Buy Disney Merchandise India","text":"Disney T-Shirts"},{"link":"avengers-merchandise","is_category_or_collection":7,"title":"Buy Avengers Merchandise India Online","text":"Avengers T-Shirts"},{"link":"star-wars-merchandise","is_category_or_collection":7,"title":"Buy Star Wars Merchandise India Online","text":"Star Wars T-Shirts"},{"link":"batman-merchandise","is_category_or_collection":7,"title":"Buy Batman Merchandise India Online","text":"Batman T-Shirts"},{"link":"superman-merchandise","is_category_or_collection":7,"title":"Buy Superman Merchandise India Online","text":"Superman T-Shirts"},{"link":"joker-merchandise","is_category_or_collection":7,"title":"Buy Joker Merchandise India Online","text":"Joker T-Shirts"}]}},"women_fashion":{"link":"women-clothing","is_category_or_collection":7,"title":"Online Fashion Shopping for Women India - Bewakoof.com","text":"Women's Clothing","list":[{"link":"top-wear-for-women","is_category_or_collection":7,"title":"Top Wear for Women Online India - Bewakoof.com","text":"Women's Top Wear","class":"seperate-li"},{"link":"women-new-arrivals-collection","is_category_or_collection":7,"title":"Buy Latest Clothes for Women Online India - Bewakoof.com","text":"Women's New Arrivals"},{"link":"women-t-shirts","is_category_or_collection":7,"title":"Buy T Shirts for Women Online India - Bewakoof.com","text":"Women's T-Shirts"},{"link":"fashion-tops","is_category_or_collection":7,"title":"Buy Fashion Tops for Women Online India - Bewakoof.com","text":"Women's Fashion Tops"},{"link":"women-hoodies-sweatshirts","is_category_or_collection":7,"title":"Buy Hoodies & Sweatshirts for Women Online India - Bewakoof.com","text":"Women's Hoodies & Sweatshirts"},{"link":"women-dresses","is_category_or_collection":7,"title":"Buy T Shirt Dresses for Women Online India - Bewakoof.com","text":"Women's Dresses"},{"link":"women-3-4-sleeve-t-shirts","is_category_or_collection":7,"title":"Buy 3 4 T-Shirts Online India - Bewakoof.com","text":"Women's 3\u002F4 Sleeve T-Shirts"},{"link":"women-kurtas","is_category_or_collection":7,"title":"Buy Kurtis for Women Online","text":"Women's Kurtis"},{"link":"womens-combo-t-shirt","is_category_or_collection":7,"title":"Buy Combo T-Shirts for Women Online","text":"Women's Combo T-Shirts"},{"link":"women-nightwear","is_category_or_collection":7,"title":"Buy Nightwear for Women Online","text":"Women's Nightwear"},{"link":"plus-size-store-for-women","is_category_or_collection":7,"title":"Buy Plus Size Tops for Women Online","text":"Women's Plus Size Store"},{"link":"bottom-wear-for-women","is_category_or_collection":7,"title":"Buy Bottom Wear for Women Online India - Bewakoof.com","text":"Women's Bottom Wear","class":"seperate-li"},{"link":"women-co-ord-sets","is_category_or_collection":7,"title":"Buy Co-ord Sets for Women Online India - Bewakoof.com","text":"Women's Co-ord Sets"},{"link":"women-pajamas","is_category_or_collection":7,"title":"Buy Pajamas for Women Online India - Bewakoof.com","text":"Women's Pajamas"},{"link":"women-boxer-shorts","is_category_or_collection":7,"title":"Buy Boxers for Women Online India - Bewakoof.com","text":"Women's Boxer Shorts"},{"link":"womens-denims","is_category_or_collection":7,"title":"Buy Jeans for Women Online India - Bewakoof.com","text":"Women's Jeans"},{"link":"women-wide-leg-jeans","is_category_or_collection":7,"title":"Buy Wide Leg Jeans for Women Online India - Bewakoof.com","text":"Women's Wide Leg Jeans"},{"link":"jeggings-for-women","is_category_or_collection":7,"title":"Buy Jeggings for Women Online India - Bewakoof.com","text":"Women's Jeggings"},{"link":"women-joggers-sweatpants","is_category_or_collection":7,"title":"Buy Joggers for Women Online India - Bewakoof.com","text":"Women's Joggers"},{"link":"women-pants","is_category_or_collection":7,"title":"Pants for Women Online India - Bewakoof","text":"Women's Trousers & Pants"},{"link":"cargo-pants-for-women","is_category_or_collection":7,"title":"Cargo Pants for Women Online India - Bewakoof","text":"Women's Cargo Pants"},{"link":"track-pants-for-women","is_category_or_collection":7,"title":"Buy Track Pants for Women Online India - Bewakoof.com","text":"Women's Track Pants"},{"link":"women-shorts","is_category_or_collection":7,"title":"Buy Shorts for Women Online India - Bewakoof.com","text":"Women's Shorts"},{"link":"bags","is_category_or_collection":7,"title":"Bags for Men & Women","text":"BAGS","class":"seperate-li"},{"link":"laptop-bags","is_category_or_collection":7,"title":"Buy Laptop Bags for Men & Women","text":"Laptop Bags"},{"link":"small-backpacks","is_category_or_collection":7,"title":"Buy Mini Bags for Men & Women","text":"Small Backpacks"}],"featured":{"text":"Featured","class":"seperate-li","is_category_or_collection":2,"list":[{"link":"women-sliders","is_category_or_collection":7,"title":"Buy Sliders for Women Clothing Online India","text":"Women's Slides"},{"link":"women-flip-flops","is_category_or_collection":7,"title":"Buy Slippers for Women India","text":"Women's Flip Flops"}]}},"others":[{"link":"fanbook-testimonial-reviews","is_category_or_collection":6,"text":"Fanbook","tile":"Fanbook"},{"link":"campaign\u002Fdelights-coupons-discounts-offers-sale","is_category_or_collection":3,"text":"Offers","tile":"Offers"},{"link":"sitemap","is_category_or_collection":7,"text":"Sitemap","tile":"Sitemap"}]},"updated_at":1722419162},"new_mobile_menu":{"value":[{"title":"SHOP IN","children":[{"title":"Men","url":"campaign\u002Fthe-yellow-friday-sale-for-men","shopify_url":"\u002Fcollections\u002Fmens-fashion-shop-men-clothing-online-in-india-bewakoof","shopify_img":"https:\u002F\u002Ftmrw-bk-store.myshopify.com\u002Fcdn\u002Fshop\u002Ffiles\u002Fpicture_12.png?v=1689316181","shopify_category_page_url":"\u002Fpages\u002Fcategories?cat=Men&subCat=Topwear","page":true,"object_type":"shop-men","isCategoryRedirection":true,"category_page_url":"categories?category=men","icon_image":"Circle-icon-men--1--1684748735.png","image":"","navigateToHome":"categories","right_imgs":[{"src":"","url":"campaign\u002Fthe-yellow-friday-sale-for-men"}],"children":[{"title":"Topwear","url":"top-wear-for-men","children":[{"title":"T-Shirts","image":"bewakoof-men-top-wear-icon-3-1622010306.png","url":"men-t-shirts"},{"title":"Printed T-Shirts","image":"bewakoof-men-top-wear-icon-3-1622010306.png","url":"men-printed-tshirts"},{"title":"Oversized T-shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-420X420-10-1646915134.jpg","url":"oversized-t-shirts-for-men"},{"title":"Classic Fit T-shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-420X420-10-1646915134.jpg","url":"classic-t-shirt-for-men"},{"title":"Plain T-Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-420X420-6-1646915132.jpg","url":"men-plain-t-shirts"},{"title":"Half Sleeve T-Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-420X420-4-1646915131.jpg","url":"half-sleeve-t-shirts-for-men"},{"title":"Polo T-Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-420X420-8-1646915133.jpg","url":"polo-t-shirts-for-men"},{"title":"Vests","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-420X420-1-1646915130.jpg","url":"men-vests"},{"title":"Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-Shirts-420X420-1638440741.jpg","url":"men-shirts"},{"title":"Co-ord Sets","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FcoOrd-men-bottom-nav-1653982469.jpg","url":"men-co-ord-sets"},{"title":"Full Sleeve T-Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-420X420-7-1646915132.jpg","url":"men-full-sleeve-t-shirts"},{"title":"Plus Size Topwear","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-Plus-size--T-shirts-420X420-1642656920.jpg","url":"plus-size-store-for-men?category=t-shirt_kurta_vest_sweatshirt_shirt_jacket_co-ordinates_kurta_set_t-shirt_%26_set_kurta__set"},{"title":"Customize T-shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FByou-bottom-nav-again-1642148933.jpg","url":"custom-tshirts?gender=men"},{"title":"Sweatshirts & Hoodies","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FTOD-Refresh-topwear-bottom-navigation-0020-bottom-navigation-box-1634893908.jpg","url":"men-hoodies-sweatshirts"},{"title":"Jackets","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fjacket-sid-1644323908.jpg","url":"men-jackets"},{"title":"Sweaters","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FTOD-Refresh-topwear-bottom-navigation-0002-White-Color-Block-Flat-Knit-Sweater-1634893902.jpg","url":"men-sweaters"},{"title":"All Topwear","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FView-All-1604050368.png","url":"top-wear-for-men"}]},{"title":"Bottomwear","url":"men-bottom-wear-collection","children":[{"title":"Joggers","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-Joggers-420X420-1638440737.jpg","url":"men-joggers"},{"title":"Jeans","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fbottom-nav-bootm-wear--0008-jeans-1634894718.jpg","url":"mens-denim"},{"title":"Baggy Jeans","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fbottom-nav-bootm-wear--0008-jeans-1634894718.jpg","url":"baggy-jeans-for-men"},{"title":"Pajamas","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-Pyjama-420X420-1638440741.jpg","url":"men-pajamas"},{"title":"Cargos","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FNewBottomNav-Icon-Cargo-1691488402.jpg","url":"cargos-for-men"},{"title":"Cargo Pants","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FNewBottomNav-Icon-Cargo-1691488402.jpg","url":"cargo-pants-for-men"},{"title":"Trousers & Pants","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-Casual-Pants-420X420-1638440735.jpg","url":"men-pants"},{"title":"Parachute Pants","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FcoOrd-men-bottom-nav-1653982469.jpg","url":"parachute-pants-for-men"},{"title":"Co-ord Sets","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FcoOrd-men-bottom-nav-1653982469.jpg","url":"men-co-ord-sets"},{"title":"Shorts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-420X420-2-1646915130.jpg","url":"men-shorts"},{"title":"Boxers","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-420X420-3-1646915130.jpg","url":"men-boxer-shorts"},{"title":"Combos","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FNewBottomNav-March2023-Bottomwear-BoxersCOMBO-1683787302.jpg","url":"combos?gender=men&category=boxer"},{"title":"Plus Size Bottomwear","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-Plus-size---Joggers-420X420-1642656918.jpg","url":"plus-size-store-for-men?category=jeans_joggers_pyjama_trousers_track__pant_boxer_casual__pants"},{"title":"All Bottomwear","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FView-All-1604050368.png","url":"men-bottom-wear-collection"}]},{"title":"Top Sellers","url":"top-wear-for-men","children":[{"title":"Top 40 T-Shirts","image":"bewakoof-men-top-wear-icon-3-1622010306.png","url":"topselling-mens-tshirt"},{"title":"Top 20 Cargos","image":"bewakoof-men-top-wear-icon-3-1622010306.png","url":"topselling-mens-cargo"},{"title":"Top 20 Jeans","image":"bewakoof-men-top-wear-icon-3-1622010306.png","url":"topselling-mens-denim"},{"title":"Top 20 Joggers","image":"bewakoof-men-top-wear-icon-3-1622010306.png","url":"topselling-mens-joggers"},{"title":"Top 20 Shirts","image":"bewakoof-men-top-wear-icon-3-1622010306.png","url":"topselling-mens-shirts"}]},{"title":"Winterwear","url":"winter-wear-for-men","children":[{"title":"Sweatshirts & Hoodies","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FHoodies-1635838081.jpg","url":"men-hoodies-sweatshirts"},{"title":"Jackets","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fjacket-sid-1644323908.jpg","url":"men-jackets"},{"title":"Sweaters","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FSweaters-1635838082.jpg","url":"men-sweaters"},{"title":"Joggers","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fbottom-nav-bootm-wear--0006-joggers-1635838124.jpg","url":"men-joggers"},{"title":"Plus Size","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FFull-Sleeves-1635838080.jpg","url":"plus-size-store-for-men?category=hoodies_sweatshirt_jacket"}]},{"title":"Footwear","url":"men-footwear","children":[{"title":"Bewakoof Sneakers","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fcasual-shoes-nav-box-1648121717.jpg","url":"sneakers-for-men?manufacturer_brand=bewakoof®&sort=new"},{"title":"Sliders","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Ftod-refresh-accessories-bottom-navigation-0006-slider-1634892551.jpg","url":"men-sliders"},{"title":"Casual Shoes","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fcasual-shoes-nav-box-1648121717.jpg","url":"men-casual-shoes"}]},{"title":"Accessories","children":[{"title":"Mobile covers","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002F10-12-2021-Bottom-nav-designer-back-covers-1639122391.jpg","url":"mobile-covers-india","is_new":"NEW"},{"title":"Backpacks","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Ftod-refresh-accessories-bottom-navigation-0004-Small-Backpack-1635838175.jpg","url":"bags"},{"title":"Sunglasses","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fbottom-navigation-cap--1637934867.jpg","url":"sunglasses?gender=men","is_new":"NEW"},{"title":"Sling bags","url":"sling-and-tote-bags","is_new":"NEW"},{"title":"Caps","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fbottom-navigation-cap--1637934867.jpg","url":"caps","is_new":"NEW"},{"title":"Mobile Card-holder","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fbottom-navigation-cap--1637934867.jpg","url":"mobile-wallet","is_new":"NEW"}]},{"title":"Plus Size","url":"plus-size-store-for-men","children":[{"title":"T-shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FNewBottomNav-Jan-2024-420x420-Plus-size-Men-1719392328.jpg","url":"plus-size-store-for-men?category=t-shirt"},{"title":"Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FNewBottomNav-Jan-2024-420x420-Plus-size-Topwear-men-1719392328.jpg","url":"plus-size-store-for-men?category=shirt"},{"title":"Jackets","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-Plus-Size---Jackets-420X420-1642656917.jpg","url":"plus-size-store-for-men?category=jacket"},{"title":"Sweatshirts & Hoodies","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid--Plus-size--Hoodies---Sweatshirts-420X420-1642656917.jpg","url":"plus-size-store-for-men?category=hoodies_sweatshirt"},{"title":"Bottomwear","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-Plus-size---Joggers-420X420-1642656918.jpg","url":"plus-size-store-for-men?category=joggers_jeans_pyjama_trousers_track__pant_casual__pants"},{"title":"Jeans","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fbottom-nav-bootm-wear--0008-jeans-1634894718.jpg","url":"plus-size-store-for-men?category=jeans"}]},{"title":"Innerwear & Loungewear ","url":"","children":[{"title":"Vests","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FTOD-Refresh-topwear-bottom-navigation-0005-minion--1634893903.jpg","url":"men-vests"},{"title":"Pajamas","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-Pyjama-420X420-1638440741.jpg","url":"men-pajamas"},{"title":"Boxers","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fbottom-nav-bootm-wear--0011-boxers-1634894719.jpg","url":"men-boxer-shorts"}]}],"specials":[{"title":"SPECIALS","children":[{"title":"Be-legendary","image":"bewakoof12-circleNav-168x168-legendary-1723547609.png","url":"campaign\u002Fled-endary-men"},{"title":"Bewakoof Special Deadpool & Wolverine","image":"Circle-Nav-168x168--8--1721396461.png","url":"deadpool-wolverine-merchandise"},{"title":"Savings Zone","image":"Circle-Nav-168x168--7--1719507523.png","url":"clearance-store?gender=men"},{"title":"Bewakoof Sneakers","image":"Circle-Nav-168x168-sneaker-1718779684.png","url":"sneakers-for-men?manufacturer_brand=bewakoof®&sort=new"},{"title":"Customise with Google Ai","image":"Circle-Nav-168x168-googleai-1718944672.png","url":"ai-canvas"},{"title":"Bewakoof Air: New Summer Drip","image":"Circle-Nav-168x168-AIR-1715355117.png","url":"bewakoof-air?gender=men"},{"title":"Bwkf X One piece","image":"Circle-Nav-168x168-One-Piece-1710143641.png","url":"one-piece-merchandise?gender=men"},{"title":"Bwkf X FRIENDS","image":"Circle-Nav-168x168-COTM-1704012730.png","url":"friends-merchandise?gender=men"},{"title":"Disney Villans","image":"DisneyVillains-168x168-1702822672.png","url":"disney-villains?gender=men"},{"title":"Bwkf X Ishaan Khatter","image":"Circle-Nab-336x336-IK--1--1721816722.png","url":"campaign\u002FIshan-Khatter"},{"title":"Bwkf X Harry potter","image":"MayCOTM-office-168x168-HarryPotter-1701350799.png","url":"harry-potter-merchandise?gender=men_unisex"},{"title":"Bwkf X Mickey Mouse","image":"Circle-cotm--168x168-1698769567.png","url":"mickey-mouse-merchandise?gender=unisex_men"},{"title":"Bewakoof Heavy duty","image":"circle-Icon-HD-168x168-1698328094.png","url":"bewakoof-heavy-duty?gender=men"},{"title":"Bwkf x Naruto","image":"circle-Naruto-168--3--1697690303.png","url":"naruto-merchandise?gender=men"},{"title":"Bwkf x Pima","image":"circle-icon-pima-168x168-1695825476.png","url":"bewakoof-american-pima"},{"title":"Bwkf x Minions","image":"Circle-minion-168x168--1--1695406784.png","url":"minions-merchandise?gender=men"},{"title":"Bwkf x Rick & Morty","image":"Circle-rick-morty-nav-168x168-1694693461.png","url":"rick-and-morty-merchandise?gender=men_unisex"},{"title":"Bwkf x TNMT","image":"circle-icon-tmnt--3--1694693460.png","url":"teenage-mutant-ninja-turtles-merchandise?gender=men_unisex"},{"title":"Bwkf x Garfield","image":"Circle-icon-garfield-1682010304.png","url":"garfield-merchandise?gender=unisex_men"},{"title":"The Official Merch Store","image":"merch-store-icon-1650380159.png","url":"campaign\u002Fofficial-collaborations"},{"title":"Anime Collection","image":"circlenav-animeFLASHOUT-168x168-1675432697.png","url":"anime-collection?gender=men_unisex"},{"title":"The Batman Collection","image":"batman-icon-1652639811.png","url":"batman-merchandise?gender=men_unisex"},{"title":"Vote for Designs","image":"1-1663225167.png","url":"vote"},{"title":"Customize T-shirts","image":"me-shirt-icon--1656050998.png","url":"custom-tshirts?gender=men_unisex"},{"title":"Plus Size Store","image":"bewakoof-icon-specials-7-1622012421.png","url":"plus-size-store-for-men"}]}]},{"title":"Women","url":"","shopify_url":"\u002Fcollections\u002Fmens-fashion-shop-men-clothing-online-in-india-bewakoof","shopify_img":"https:\u002F\u002Ftmrw-bk-store.myshopify.com\u002Fcdn\u002Fshop\u002Ffiles\u002Fpicture_1.png?v=1683702749","shopify_category_page_url":"\u002Fpages\u002Fcategories?cat=Women&subCat=Topwear","object_type":"shop-women","isCategoryRedirection":true,"category_page_url":"categories?category=women","icon_image":"Circle-icon-women--1--1684748736.png","page":true,"image":"","navigateToHome":"categories","right_imgs":[{"src":"","url":""}],"children":[{"title":"Topwear","url":"top-wear-for-women","children":[{"title":"T-Shirts","image":"bewakoof-men-top-wear-icon-3-1622010306.png","url":"women-t-shirts"},{"title":"Printed T-Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FBottom-nav-7-1646932671.jpg","url":"women-printed-t-shirts"},{"title":"Boyfriend T-Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-420X420-1-1646982384.jpg","url":"women-boyfriend-tshirts"},{"title":"Oversized T-Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-420X420-1-1646982384.jpg","url":"oversized-t-shirts-for-women"},{"title":"Classic Fit T-Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-420X420-1-1646982384.jpg","url":"classic-t-shirt-for-women"},{"title":"Half Sleeves T-Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FBottom-nav-6-1646932671.jpg","url":"half-sleeve-t-shirts-for-women"},{"title":"Plain T-Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FBottom-nav-2-1646932669.jpg","url":"women-plain-t-shirts"},{"title":"Full Sleeve T-Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-420X420-1-1646982384.jpg","url":"women-full-sleeves-t-shirts"},{"title":"Fashion Tops","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FBottom-Nav-Fashion-Tops-Women-1638441042.jpg","url":"fashion-tops"},{"title":"Co-ord Sets","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fwomen-s-green-black-color-block-co-ord-sets-515343-1656664006-1-1660360778.jpg","url":"women-co-ord-sets"},{"title":"Dresses","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FBottom-nav-8-1646932672.jpg","url":"women-dresses"},{"title":"Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FPrinted-Shirt-1634896295.jpg","url":"women-shirts"},{"title":"Plus Size Topwear","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-Top-wear-420X420-1638865328.jpg","url":"plus-size-store-for-women?category=t-shirt_sweatshirt_hoodies_jacket_kurta_co-ordinates_top"},{"title":"Customize T-shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FByou-bottom-nav-again-1642148933.jpg","url":"custom-tshirts?gender=women"},{"title":"Sweatshirts & Hoodies","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FSweatshirt-1-1634895368.jpg","url":"women-hoodies-sweatshirts"},{"title":"Jackets","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fjacket-fatima-1644323907.jpg","url":"women-jackets"},{"title":"Sweaters","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FSweatshirt-1634895368.jpg","url":"women-sweaters"},{"title":"All Topwear","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FView-All-1604050368.png","url":"top-wear-for-women"}]},{"title":"Bottomwear","url":"bottom-wear-for-women","children":[{"title":"Joggers","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fbottom-nav-bootm-wear--0005-joggers-women-1634894810.jpg","url":"women-joggers-sweatpants"},{"title":"Jeans","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fbottom-nav-bootm-wear--0007-jeans-women-1634894811.jpg","url":"womens-denims"},{"title":"Baggy Jeans","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fbottom-nav-bootm-wear--0007-jeans-women-1634894811.jpg","url":"baggy-jeans-for-women"},{"title":"Parachute pants","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FNewBottomNav-Parachute-Pants-1694077402.jpg","url":"parachute-pants-for-women"},{"title":"Cargos","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Funnamed--2--1694175213.jpg","url":"cargos-for-women"},{"title":"Cargo Pants","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Funnamed--2--1694175213.jpg","url":"cargo-pants-for-women"},{"title":"Co-ord Sets","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fwomen-s-green-black-color-block-co-ord-sets-515343-1656664006-1-1660360778.jpg","url":"women-co-ord-sets"},{"title":"Pajamas","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FBottom-nav-5-1646932670.jpg","url":"women-pajamas"},{"title":"Trousers & Pants","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FBottom-Nav-Trousers-Women-1638535094.jpg","url":"women-pants"},{"title":"Shorts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FBottom-nav-4-1646932670.jpg","url":"women-shorts"},{"title":"Plus Size Bottomwear","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-Bottom-wear-420X420-1638865324.jpg","url":"plus-size-store-for-women?category=casual__pants_joggers_jeans_boxer__shorts_trousers_pyjama_track__pant"},{"title":"All Bottomwear","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FView-All-1604050368.png","url":"bottom-wear-for-women"}]},{"title":"Top Sellers","url":"top-wear-for-women","children":[{"title":"Top 30 T-Shirts","image":"bewakoof-men-top-wear-icon-3-1622010306.png","url":"topselling-womens-tshirt"},{"title":"Top 20 Bottoms","image":"bewakoof-men-top-wear-icon-3-1622010306.png","url":"topselling-womens-bottomwear"}]},{"title":"Winterwear","url":"winter-wear-for-women","children":[{"title":"Jackets","image":"Bewakoof-Homepage-TopWear-Women-Icon-Hoodies-13-1622014271.png","url":"women-jackets"},{"title":"Sweatshirts & Hoodies","image":"Bewakoof-Homepage-TopWear-Women-Icon-Hoodies-12-1622014270.png","url":"women-hoodies-sweatshirts"},{"title":"Sweaters","image":"Bewakoof-Homepage-TopWear-Women-Icon-Sweaters-14-1622014276.png","url":"women-sweaters"},{"title":"Joggers","image":"Jogger-1622015072.png","url":"women-joggers-sweatpants"},{"title":"Plus Size","image":"Category-Grid-Sweatshirts-420X420-1638865326.jpg","url":"plus-size-store-for-women?category=hoodies_jacket_sweatshirt"}]},{"title":"Footwear","url":"women-footwear","children":[{"title":"Casual Shoes","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fnew-bottom-nav-Clogs-1667481692-1669887094.jpg","url":"casual-shoes-for-women"},{"title":"Sliders","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Ftod-refresh-accessories-bottom-navigation-0006-slider-1634892551.jpg","url":"women-sliders"},{"title":"Sneakers","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fnew-bottom-nav-Clogs-1667481692-1669887094.jpg","url":"women-sneakers"}]},{"title":"Accessories","children":[{"title":"Mobile Covers","image":"10-12-2021-Bottom-nav-designer-back-covers-1639122391.jpg","url":"mobile-covers-india"},{"title":"Bags & Backpacks","image":"tod-refresh-accessories-bottom-navigation-0004-Small-Backpack-1635838450.jpg","url":"bags"},{"title":"Sling bags","url":"sling-and-tote-bags","is_new":"NEW"},{"title":"Sunglasses","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fbottom-navigation-cap--1637934867.jpg","url":"sunglasses?gender=women","is_new":"NEW"},{"title":"Caps","image":"bottom-navigation-cap--1637934867.jpg","url":"caps"},{"title":"Mobile Card-holder","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fbottom-navigation-cap--1637934867.jpg","url":"mobile-wallet","is_new":"NEW"}]},{"title":"Plus Size","url":"plus-size-store-for-women","children":[{"title":"Topwear","image":"Category-Grid-Top-wear-420X420-1638865328.jpg","url":"plus-size-store-for-women?category=t-shirt_sweatshirt_hoodies_jacket_kurta_co-ordinates_t-shirt__%26__pyjama__set_top"},{"title":"Sweatshirts & hoodies","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FNewBottomNav-2-1700128926.jpg","url":"plus-size-store-for-women?category=hoodies_sweatshirt"},{"title":"Jackets","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FNewBottomNav-1-1700128926.jpg","url":"plus-size-store-for-women?category=jacket"},{"title":"Bottomwear","image":"Category-Grid-Bottom-wear-420X420-1638865324.jpg","url":"plus-size-store-for-women?category=casual__pants_joggers_jeans_boxer__shorts_trousers_pyjama_track__pant"},{"title":"Dresses","image":"Category-Grid-Plus-Size-Dresses-420X420-1643692240.jpg","url":"plus-size-store-for-women?category=dress"}]},{"title":"Loungewear","url":"women-nightwear","children":[{"title":"Shorts","image":"bottom-nav-bootm-wear--0000-shorts-women-1634894809.jpg","url":"women-shorts"},{"title":"Pajamas","image":"bottom-nav-bootm-wear--0000-shorts-women-1634894809.jpg","url":"women-pajamas"}]}],"specials":[{"title":"SPECIALS","children":[{"title":"Be-legendary","image":"bewakoof12-circleNav-168x168-legendary-1723547609.png","url":"campaign\u002FLeg-endary-for-women"},{"title":"Savings Zone","image":"Circle-Nav-168x168--7--1719507523.png","url":"clearance-store?gender=women"},{"title":"Customise with Google Ai","image":"Circle-Nav-168x168-googleai-1718944672.png","url":"ai-canvas"},{"title":"Bewakoof Air: New Summer Drip","image":"Circle-Nav-168x168-AIR-1715355117.png","url":"bewakoof-air?gender=women"},{"title":"Bwkf X One piece","image":"Circle-Nav-168x168-One-Piece-1710143641.png","url":"one-piece-merchandise?gender=women"},{"title":"Bwkf X FRIENDS","image":"Circle-Nav-168x168-COTM-1704012730.png","url":"friends-merchandise?gender=women"},{"title":"Bwkf X Rashmika Mandanna","image":"Circle-Nab-336x336-RM--1--1721816722.png","url":"campaign\u002FRashmika_Mandanna"},{"title":"Bwkf X Harry potter","image":"MayCOTM-office-168x168-HarryPotter-1701350799.png","url":"harry-potter-merchandise?gender=unisex_women"},{"title":"Bwkf X Mickey Mouse","image":"Circle-cotm--168x168-1698769567.png","url":"mickey-mouse-merchandise?gender=unisex_women"},{"title":"Bewakoof Heavy duty","image":"circle-Icon-HD-168x168-1698328094.png","url":"bewakoof-heavy-duty?gender=women"},{"title":"Bwkf x Naruto","image":"circle-Naruto-168--3--1697690303.png","url":"naruto-merchandise?gender=women_unisex"},{"title":"Bwkf x Minions","image":"Circle-minion-168x168--1--1695406784.png","url":"minions-merchandise?gender=women"},{"title":"Bwkf x Rick & Morty","image":"Circle-rick-morty-nav-168x168-1694693461.png","url":"rick-and-morty-merchandise?gender=women_unisex"},{"title":"Bwkf x TNMT","image":"circle-icon-tmnt--3--1694693460.png","url":"teenage-mutant-ninja-turtles-merchandise?gender=women_unisex"},{"title":"Bwkf x Garfield","image":"Circle-icon-garfield-1682010304.png","url":"garfield-merchandise?gender=unisex_women"},{"title":"The Official Merch Store","image":"merch-store-icon-1650380159.png","url":"campaign\u002Fofficial-collaborations"},{"title":"Vote for Designs","image":"1-1663225167.png","url":"vote"},{"title":"Customize T-shirts","image":"me-shirt-icon--1656050998.png","url":"custom-tshirts?gender=women_unisex"},{"title":"Plus Size Store","image":"bewakoof-icon-specials-7-1622012421.png","url":"plus-size-store-for-women"}]}]},{"title":"Savings Zone","object_type":"Savings Zone","url":"clearance-store","icon_image":"Circle-Nav-168x168--7--1719507523.png","iswebview":true,"exclude":"desktop","shopify_url":"\u002Fcollections\u002Fcustom-tshirts","shopify_img":"https:\u002F\u002Ftmrw-bk-store.myshopify.com\u002Fcdn\u002Fshop\u002Ffiles\u002Fpicture_11.png?v=1683794605","login_required":false,"appNavigation":{"screen":"common_webview"}},{"title":"Customise your own T-Shirt","object_type":"custom-tshirts","url":"custom-tshirts","icon_image":"Circle-icon-customisation--1--1684748736.png","iswebview":true,"exclude":"desktop","shopify_url":"\u002Fcollections\u002Fcustom-tshirts","shopify_img":"https:\u002F\u002Ftmrw-bk-store.myshopify.com\u002Fcdn\u002Fshop\u002Ffiles\u002Fpicture_11.png?v=1683794605","login_required":false,"appNavigation":{"screen":"common_webview"}},{"title":"Mobile Covers","object_type":"mobile covers","exclude":"ios,android,mobile_site","is_mobile_cover":true,"image":"landing-page-mobile-box-1558174497.jpg","shopify_url":"\u002F","shopify_img":"https:\u002F\u002Ftmrw-bk-store.myshopify.com\u002Fcdn\u002Fshop\u002Fcollections\u002Fimage__3_4.png?v=1683881120","right_imgs":[{"src":"bewakoof-online-fashion-COTM-mobile-cover-navigation-box-desktop-1612275399.jpg","url":"mobile-covers-india"}],"url":"mobile-covers-india","children":[{"title":"POPULAR","children":[{"title":"Nothing","url":"mobile-covers-india\u002Fnothing-cases-back-covers","page":true,"children":[{"title":"Nothing Phone 1","url":"nothing-phone-1-back-covers-cases","params":{"qf":false}}]},{"title":"Xiaomi","url":"mobile-covers-india\u002Fxiaomi-cases-back-covers","page":true,"children":[{"title":"Xiaomi Redmi Note 12 Pro Plus 5G","url":"xiaomi-redmi-note-12-pro-plus-5g-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Redmi Note 10 Pro 5G","url":"xiaomi-redmi-note-12-pro-5g-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Redmi Note 12 5G","url":"xiaomi-redmi-note-12-5g-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Redmi Note 11 Pro 5G","url":"redmi-note-11-pro-5g-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Redmi Note 11t 5G","url":"xiaomi-redmi-note-11t-5g-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Redmi 10 Prime","url":"xiaomi-redmi-10-prime-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Redmi Note 10 T","url":"xiaomi-redmi-note-10t-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Redmi 9 Power 3D","url":"xiaomi-redmi-9-power-3d-mobile-covers","params":{"qf":false}},{"title":"Xiaomi Redmi Note 10 Pro","url":"xiaomi-redmi-note-10-pro-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Redmi Note 10 Pro Max","url":"xiaomi-redmi-note-10-pro-max-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Redmi 9","url":"xiaomi-redmi-9-back-covers-cases","params":{"qf":false}},{"title":"Redmi 9 Power","url":"xiaomi-redmi-9-power-back-cover-cases","params":{"qf":false}},{"title":"Redmi 9A","url":"xiaomi-redmi-9a-back-covers-cases","params":{"qf":false}},{"title":"Redmi Note 9 Pro Max","url":"xiaomi-redmi-note-9-pro-max-back-covers-cases","params":{"qf":false}},{"title":"Redmi Note 9 Pro","url":"xiaomi-redmi-note-9-pro-back-covers-cases ","params":{"qf":false}},{"title":"Redmi Note 8 Pro","url":"xiaomi-redmi-note-8-pro-back-covers-cases","params":{"qf":false}},{"title":"Redmi Note 8","url":"xiaomi-redmi-note-8-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Redmi K20 Pro","url":"xiaomi-redmi-k-20-pro-back-covers-cases","params":{"qf":false}},{"title":"Redmi Note 6 Pro","url":"xiaomi-redmi-note-6-pro-back-covers-cases","params":{"qf":false}},{"title":"Mi 12 Pro 5G","url":"xiaomi-mi-12-pro-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Mi 10i 5G","url":"xiaomi-mi-10i-5g-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Mi 11 Ultra","url":"mi-11-ultra-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Mi 11 Lite NE 5G","url":"mi-11-lite-ne-5g-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Mi 11i","url":"xiaomi-mi-11i-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Mi 11i HyperCharge","url":"mi-11i-hypercharge-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Mi 11T Pro 5G","url":"xiaomi-mi-11t-pro-5g-back-covers-cases","params":{"qf":false}},{"title":"Redmi Note 7 Pro","url":"xiaomi-redmi-note-7-pro-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Redmi Note 5 Pro","url":"xiaomi-redmi-note-5-pro-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Mi 11X","url":"xiaomi-mi-11x-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Mi 10T","url":"xiaomi-mi-10t-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Poco C3","url":"xiaomi-poco-c3-back-covers-cases","params":{"qf":false}},{"title":"Redmi Note 10","url":"xiaomi-redmi-note-10-back-covers-cases","params":{"qf":false}},{"title":"Mi Note 10 pro","url":"xiaomi-mi-note-10-pro-back-covers-cases","params":{"qf":false}}]},{"title":"Google Pixel","url":"google-pixel-6a-back-covers-cases","page":true,"children":[{"title":"Google Pixel 6A","url":"google-pixel-6a-back-covers-cases","params":{"qf":false}}]},{"title":"Oneplus","url":"mobile-covers-india\u002Foneplus-cases-back-covers","page":true,"children":[{"title":"OnePlus 12R 5G","url":"one-plus-12r-mobile-covers","params":{"qf":false}},{"title":"OnePlus 12","url":"oneplus-12-back-covers-cases","params":{"qf":false}},{"title":"OnePlus Nord Ce4 5G","url":"oneplus-nord-ce4-5g-mobile-covers-cases","params":{"qf":false}},{"title":"OnePlus Nord CE 3 5G","url":"oneplus-nord-ce-3-5g-back-covers-cases","params":{"qf":false}},{"title":"OnePlus Nord 3 5G","url":"oneplus-nord-3-5g-back-covers-cases","params":{"qf":false}},{"title":"OnePlus Nord CE 3 Lite 5G","url":"oneplus-nord-ce-3-lite-5g-back-covers-cases","params":{"qf":false}},{"title":"OnePlus 11R 5G","url":"oneplus-11r-5g-back-covers-cases","params":{"qf":false}},{"title":"OnePlus Nord N20 SE","url":"oneplus-nord-n20-se-back-covers-cases","params":{"qf":false}},{"title":"OnePlus Nord 2T 5G","url":"oneplus-nord-2t-5g-back-covers-cases","params":{"qf":false}},{"title":"OnePlus Nord CE2 Lite 5G","url":"oneplus-nord-ce-2-lite-5g-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"OnePlus Nord2 5G","url":"oneplus-nord2-5g-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"OnePlus 10 R","url":"oneplus-10r-back-covers-cases","params":{"qf":false}},{"title":"Oneplus Nord N20","url":"one-plus-nord-n20-back-covers-cases","params":{"qf":false}},{"title":"Oneplus Nord CE2 5G","url":"oneplus-nord-ce-2-5g-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Oneplus 10 Pro","url":"oneplus-10-pro-back-covers-cases","params":{"qf":false}},{"title":"Oneplus Nord CE 5G","url":"oneplus-nord-ce-5g-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Oneplus Nord 2","url":"oneplus-nord-2-back-covers-cases","params":{"qf":false}},{"title":"OnePlus 9 Glass Covers","url":"oneplus-9-glass-back-covers-cases","params":{"qf":false}},{"title":"OnePlus 9R","url":"oneplus-9r-back-covers-cases","params":{"qf":false}},{"title":"OnePlus 9 Pro","url":"oneplus-9-pro-back-covers-cases","params":{"qf":false}},{"title":"OnePlus 9","url":"oneplus-9-back-covers-cases","params":{"qf":false}},{"title":"OnePlus 8T","url":"oneplus-8t-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"OnePlus 8 Pro","url":"oneplus-8-pro-back-covers-cases","params":{"qf":false}},{"title":"Oneplus Nord","url":"oneplus-nord-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"OnePlus 8","url":"oneplus-8-back-covers-cases","params":{"qf":false}},{"title":"OnePlus 7T Pro","url":"oneplus-7t-pro-back-covers-cases","params":{"qf":false}},{"title":"Oneplus 7T","url":"oneplus-7t-back-covers-cases","params":{"qf":false}},{"title":"Oneplus 7","url":"oneplus-7-back-covers-cases","params":{"qf":false}},{"title":"Oneplus 6T","url":"oneplus-6t-back-covers-cases","params":{"qf":false}},{"title":"Oneplus 6","url":"oneplus-6-back-covers-cases","params":{"qf":false}},{"title":"OnePlus Nord CE 2 Lite","url":"oneplus-nord-ce-2-lite-5g-back-covers-cases","params":{"qf":false}},{"title":"OnePlus Nord CE 3 Lite","url":"oneplus-nord-ce-3-lite-5g-back-covers-cases","params":{"qf":false}},{"title":"Oneplus Nord CE","url":"oneplus-nord-ce-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"OnePlus 7 Pro","url":"oneplus-7-pro-back-covers-cases","params":{"qf":false}}]},{"title":"Apple","url":"mobile-covers-india\u002Fapple-cases-back-covers","page":true,"children":[{"title":"iPhone 15 Pro max","url":"iphone-15-pro-max-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone 15 Pro","url":"iphone-15-pro-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone 15 Plus","url":"iphone-15-plus-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone 15","url":"iphone-15-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone 14 Pro Max","url":"iphone-14-pro-max-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone 14 Pro","url":"iphone-14-pro-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone 14 Plus","url":"iphone-14-plus-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone 14","url":"iphone-14-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone SE 2022","url":"iphone-se-2022-back-covers-cases","params":{"qf":false}},{"title":"iPhone 13 Pro Max","url":"iphone-13-pro-max-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone 13 Pro","url":"iphone-13-pro-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone 13 Mini","url":"iphone-13-mini-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone 13","url":"iphone-13-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone 12 Pro","url":"iphone-12-pro-back-covers-cases","params":{"qf":false}},{"title":"iPhone 12 Pro Max","url":"iphone-12-pro-max-back-covers-cases","params":{"qf":false}},{"title":"iPhone 12 Mini","url":"iphone-12-mini-back-covers-cases","params":{"qf":false}},{"title":"iPhone 12","url":"iphone-12-back-covers-cases","params":{"qf":false}},{"title":"iPhone SE 2020","url":"iphone-se-2020-back-covers-cases","params":{"qf":false}},{"title":"iPhone 11 Pro Max","url":"iphone-11-pro-max-back-covers-cases","params":{"qf":false}},{"title":"iPhone 11 Pro","url":"iphone-11-pro-back-covers-cases","params":{"qf":false}},{"title":"iPhone 11","url":"iphone-11-back-covers-cases","params":{"qf":false}},{"title":"iPhone XS Max","url":"iphone-xs-max-back-covers-cases","params":{"qf":false}},{"title":"iPhone XS","url":"iphone-xs-back-covers-cases","params":{"qf":false}},{"title":"iPhone XR","url":"iphone-xr-back-covers-cases","params":{"qf":false}}]},{"title":"Samsung","url":"mobile-covers-india\u002Fsamsung-cases-back-covers","page":true,"children":[{"title":"Samsung Galaxy A55 5G Covers","url":"samsung-galaxy-a55-5g-mobile-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A35 5G Covers","url":"samsung-galaxy-a35-5g-mobile-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S24 Ultra 5G Mobile Covers","url":"samsung-galaxy-s24-ultra-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S24 5G Mobile Covers","url":"samsung-galaxy-s24-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy Z Fold4 5G Mobile Covers","url":"samsung-galaxy-z-fold4-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy Z Flip4 5G Mobile Covers","url":"samsung-galaxy-z-flip4-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy M14 5G","url":"samsung-galaxy-m14-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S23 Ultra 5G","url":"samsung-galaxy-s23-ultra-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S23 Plus 5G","url":"samsung-galaxy-s23-plus-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S23 5G","url":"samsung-galaxy-s23-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A54 5G","url":"samsung-galaxy-a54-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A34 5G","url":"samsung-galaxy-a34-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy M13","url":"samsung-galaxy-m13-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy Note 20 Ultra","url":"samsung-galaxy-note-20-ultra-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy M33 5G","url":"samsung-galaxy-m33-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A33 5G","url":"samsung-galaxy-a33-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A23","url":"samsung-galaxy-a23-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A73 5G","url":"samsung-galaxy-a73-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A13","url":"samsung-galaxy-a13-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy M53 5G","url":"samsung-galaxy-m53-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy M31S","url":"samsung-galaxy-m31s-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Samsung Galaxy A53 5G","url":"samsung-galaxy-a53-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S22 Ultra 5G","url":"samsung-galaxy-s22-ultra-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S22 Plus 5G","url":"samsung-galaxy-s22-plus-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy M52 5G","url":"samsung-galaxy-m52-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S21 fe 5G","url":"samsung-galaxy-s21-fe-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S21 Plus","url":"samsung-galaxy-s21-plus-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S21","url":"samsung-galaxy-s21-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy Note 20","url":"samsung-galaxy-note-20-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S22 5G","url":"samsung-galaxy-s22-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A51 3D","url":"samsung-galaxy-a51-3d-mobile-covers","params":{"qf":false}},{"title":"Samsung Galaxy S20","url":"samsung-galaxy-s20-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S10 Plus","url":"samsung-galaxy-s10-plus-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S10 Lite","url":"samsung-galaxy-s10-lite-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S10","url":"samsung-galaxy-s10-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A52s","url":"samsung-galaxy-a52s-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A50","url":"samsung-galaxy-a50-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A22 5G","url":"samsung-galaxy-a22-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A22","url":"samsung-galaxy-a22-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A32","url":"samsung-galaxy-a32-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A52","url":"samsung-galaxy-a52-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A12","url":"samsung-galaxy-a12-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy F62","url":"samsung-galaxy-f62-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S20 FE","url":"samsung-galaxy-s20-fe-back-cover-cases","params":{"qf":false}},{"title":"Samsung Galaxy Note 10 lite","url":"samsung-galaxy-note-10-lite-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy M51","url":"samsung-galaxy-m51-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A51","url":"samsung-galaxy-a51-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Samsung Galaxy A30","url":"samsung-galaxy-a30-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy M31","url":"samsung-galaxy-m31-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy M30s","url":"samsung-galaxy-m30s-back-covers-cases","params":{"qf":false}},{"title":"Samsung A50","url":"samsung-a50-back-covers-cases","params":{"qf":false}}]},{"title":"Realme","url":"mobile-covers-india\u002Frealme-cases-back-covers","page":true,"children":[{"title":"Realme 12 Pro+ 5G","url":"realme-12-pro-plus-5g-mobile-covers-cases","params":{"qf":false}},{"title":"Realme 12 Pro 5G","url":"realme-12-pro-5g-mobile-covers-cases","params":{"qf":false}},{"title":"Realme 11 Pro+ 5G","url":"realme-11-pro-plus-5g-back-covers-cases","params":{"qf":false}},{"title":"Realme 11 Pro 5G","url":"realme-11-pro-5g-back-covers-cases","params":{"qf":false}},{"title":"Realme 10 Pro+ 5G","url":"realme-10-pro-plus-5g-back-covers-cases","params":{"qf":false}},{"title":"Realme 10 Pro 5G","url":"realme-10-pro-5g-back-covers-cases","params":{"qf":false}},{"title":"Realme 8 5G","url":"realme-8-5g-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Realme 9 Pro 5G","url":"realme-9-pro-5g-back-covers-cases","params":{"qf":false}},{"title":"Realme C11","url":"realme-c11-back-covers-cases","params":{"qf":false}},{"title":"Realme 8","url":"realme-8-back-covers-cases","params":{"qf":false}},{"title":"Realme 7 Pro","url":"realme-7-pro-back-covers-cases","params":{"qf":false}},{"title":"Realme 3 Pro","url":"realme-3-pro-back-covers-cases","params":{"qf":false}}]},{"title":"Vivo","url":"mobile-covers-india\u002Fvivo-cases-back-covers","page":true,"children":[{"title":"Vivo V30 Pro 5G Covers","url":"vivo-v30-pro-5g-mobile-covers-cases","params":{"qf":false}},{"title":"Vivo V30 5G Covers","url":"vivo-v30-5g-mobile-covers-cases","params":{"qf":false}},{"title":"Vivo T3X 5G Covers","url":"vivo-t3x-5g-mobile-covers-cases","params":{"qf":false}},{"title":"Vivo Y100 Mobile Covers","url":"vivo-y100-back-covers-cases","params":{"qf":false}},{"title":"Vivo V27 Pro 5G","url":"vivo-v27-pro-5g-back-covers-cases","params":{"qf":false}},{"title":"Vivo V27 5G Mobile Covers","url":"vivo-v27-5g-back-covers-cases","params":{"qf":false}},{"title":"Vivo V25 Pro","url":"vivo-v25-pro-back-covers-cases","params":{"qf":false}},{"title":"Vivo IQOO9 5G","url":"vivo-iqoo9-5g-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Vivo V23e 5G Mobile Covers","url":"vivo-v23e-5g-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Vivo Y51 2020","url":"vivo-y51-2020-back-covers-cases","params":{"qf":false}},{"title":"Vivo V23 Pro 5G","url":"vivo-v23-pro-5g-back-covers-cases","params":{"qf":false}},{"title":"Vivo V23 Pro 5G","url":"vivo-v23-pro-5g-back-covers-cases","params":{"qf":false}},{"title":"Vivo Y12s Mobile Covers","url":"vivo-y12-s-back-covers-cases","params":{"qf":false}},{"title":"Vivo Y73","url":"vivo-y73-back-covers-cases","params":{"qf":false}},{"title":"Vivo X60","url":"vivo-x60-back-covers-cases","params":{"qf":false}},{"title":"Vivo Y20 Mobile Covers","url":"vivo-y20-back-covers-cases","params":{"qf":false}},{"title":"Vivo V19","url":"vivo-v19-back-covers-cases","params":{"qf":false}},{"title":"Vivo S1","url":"vivo-s1-back-covers-cases","params":{"qf":false}},{"title":"Vivo V23e 5G","url":"vivo-v23e-5g-back-covers-cases","params":{"qf":false}}]},{"title":"Oppo","url":"mobile-covers-india\u002Foppo-cases-back-covers","page":true,"children":[{"title":"Oppo F25 Pro 5G Covers","url":"oppo-f25-pro-5g-mobile-covers-cases","params":{"qf":false}},{"title":"Oppo Reno11 5G Covers","url":"oppo-reno11-5g-mobile-covers-cases","params":{"qf":false}},{"title":"Oppo F21s Pro","url":"oppo-f21s-pro-back-covers-cases","params":{"qf":false}},{"title":"Oppo F21s Pro 5G","url":"oppo-f21s-pro-5g-back-covers-cases","params":{"qf":false}},{"title":"Oppo F19 Pro Plus","url":"oppo-f19-pro-back-covers-cases","params":{"qf":false}},{"title":"Oppo F19 Pro","url":"oppo-f19-pro-back-covers-cases","params":{"qf":false}},{"title":"Oppo Reno6 5G","url":"oppo-reno6-5g-back-covers-cases","params":{"qf":false}},{"title":"Oppo Reno7 5G","url":"oppo-reno7-5g-back-covers-cases","params":{"qf":false}},{"title":"Oppo Reno7 Pro 5G","url":"oppo-reno7-pro-5g-back-covers-cases","params":{"qf":false}},{"title":"Oppo A57 4G","url":"oppo-a57-4g-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Oppo A54","url":"oppo-a54-back-covers-cases","params":{"qf":false}},{"title":"Oppo A53","url":"oppo-a53-back-covers-cases","params":{"qf":false}},{"title":"Oppo A5 2020","url":"oppo-a5-2020-back-covers-cases","params":{"qf":false}},{"title":"Oppo A5","url":"oppo-a5-2020-back-covers-cases","params":{"qf":false}},{"title":"Oppo A3s","url":"oppo-a3s-back-covers-cases","params":{"qf":false}},{"title":"Oppo Reno8 5G","url":"oppo-reno8-5g-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Oppo F11 Pro","url":"oppo-f11-pro-back-covers-cases","params":{"qf":false}}]},{"title":"Moto","url":"mobile-covers-india\u002Fmoto-cases-back-covers","page":true,"children":[{"title":"Moto G7 Power","url":"moto-g7-power-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Moto G7","url":"moto-g7-back-covers-cases","is_new":"NEW","params":{"qf":false}}]},{"title":"Poco","url":"mobile-covers-india\u002Fpoco-cases-back-covers","page":true,"children":[{"title":"Poco X6 Pro 5G Covers","url":"poco-x6-pro-5g-mobile-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Poco X6 5G Covers","url":"poco-x6-5g-mobile-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Poco F5 5G Mobile Covers","url":"poco-f5-5g-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Poco X5 Pro 5G Mobile Covers","url":"poco-x5-pro-5g-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Poco M4 5G Mobile Covers","url":"poco-m4-5g-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Poco M5 Mobile Covers","url":"poco-m5-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Poco X4 Pro 5G Mobile Covers","url":"poco-x4-pro-5g-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Xiaomi POCO M2 reloaded Mobile Covers","url":"xiaomi-poco-m2-reloaded-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Xiaomi Poco M4 Pro 5G Mobile Covers","url":"xiaomi-poco-m4-pro-5g-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Xiaomi Poco X3 Pro Mobile Covers","url":"xiaomi-poco-x3-pro-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Xiaomi Poco F3 GT Mobile Covers","url":"xiaomi-poco-f3-gt-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Poco C3 Mobile Covers","url":"xiaomi-poco-c3-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Poco X3 Mobile Covers","url":"xiaomi-poco-x3-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Xiaomi Poco M2 Pro Mobile Covers","url":"xiaomi-poco-m2-pro-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Poco M5","url":"poco-m5-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Poco M2 Pro","url":"xiaomi-poco-m2-pro-back-covers-cases","params":{"qf":false}},{"title":"Poco X3 Pro","url":"xiaomi-poco-x3-pro-back-covers-cases","params":{"qf":false}},{"title":"Poco M2 Reloaded","url":"xiaomi-poco-m2-reloaded-back-covers-cases","params":{"qf":false}},{"title":"Poco X3","url":"xiaomi-poco-x3-back-covers-cases","params":{"qf":false}},{"title":"Poco F3 GT","url":"xiaomi-poco-f3-gt-back-covers-cases","params":{"qf":false}}]}]}]}]},{"title":"MY PROFILE","highlight":true,"is_login":true,"exclude":"","children":[{"title":"My Account","url":"myaccount","navigateToHome":"profile","shopify_url":"\u002Faccount","shopify_img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-hamburger-account.png","appNavigation":{"screen":"my_account","headerTitle":"My Account"}},{"title":"My Orders","url":"myaccount\u002Forders","iswebview":true,"shopify_url":"\u002Forders","shopify_img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-hamburger-profile.png","appNavigation":{"screen":"my_account","headerTitle":"My Orders"}},{"title":"My Wallet","url":"myaccount\u002Fwallet","iswebview":true,"shopify_url":"\u002Faccount\u002Fwallet","shopify_img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-hamburger-wallet.png","appNavigation":{"screen":"my_account","headerTitle":"My Wallet"}},{"title":"My Wishlist","url":"wishlist","shopify_url":"\u002Fwishlist","shopify_img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-hamburger-wishlist.png","appNavigation":{"screen":"wishlist","headerTitle":"My Wishlist"}}]},{"title":"CONTACT US","highlight":true,"children":[{"title":"Help & Support","url":"contact-us","exclude":"ios,android","login_required":true},{"title":"Feedback & Suggestions","url":"contact-us\u002Ffeedback\u002Fgive-us-feedback","shopify_url":"\u002Fpages\u002Ffeedback-suggestions","iswebview":true,"appNavigation":{"screen":"common_webview","headerTitle":"Feedback & Suggestions"}},{"title":"Become a Seller","url":"campaign\u002Fbpartner","shopify_url":"\u002Fpages\u002Fbpartner","exclude":"","iswebview":true,"appNavigation":{"screen":"campaign"}}]},{"title":"ABOUT US","highlight":true,"children":[{"title":"Our Story","url":"about-us\u002Four-story","iswebview":true,"shopify_url":"\u002Fpages\u002Fabout-us","appNavigation":{"screen":"common_webview","headerTitle":"Our Story"}},{"title":"Fanbook","url":"fanbook-testimonial-reviews","iswebview":true,"shopify_url":"\u002Fpages\u002Ffanpage","appNavigation":{"screen":"common_webview","headerTitle":"Fanbook"}},{"title":"Blog","url":"https:\u002F\u002Fwww.bewakoof.com\u002Fblog\u002F","iswebview":true,"appNavigation":{"screen":"common_webview","headerTitle":"Blog"},"enabled":false},{"title":"Rate the App","url":"rate_the_app","shopify_url":"rate_the_app","appNavigation":{"screen":"rate_the_app","headerTitle":"Rate the App"},"enabled":false}]},{"children":[{"title":"Login","url":"login","shopify_url":"\u002Faccount\u002Flogin","is_login":false},{"title":"Logout","url":"logout","shopify_url":"\u002Flogout","is_login":true,"appNavigation":{"screen":"logout","headerTitle":"Logout"}}]},{"header_objects":[{"displayName":"MEN","url":"men-clothing","name":"shop-men"},{"displayName":"WOMEN","url":"women-clothing","name":"shop-women"},{"displayName":"MOBILE COVERS","name":"mobile covers","url":"mobile-covers-india"}],"exclude":"ios,android"}],"updated_at":1723621957},"no_result_found":{"value":{"men":{"text":"Men","list":[{"link":"top-wear-for-men","text":"Topwear"},{"link":"men-bottom-wear-collection","text":"Bottomwear"},{"link":"footwear","text":"Footwear"},{"link":"bestsellers-for-men","text":"Bestsellers"}]},"women":{"text":"Women","list":[{"link":"top-wear-for-women","text":"Topwear"},{"link":"bottom-wear-for-women","text":"Bottomwear"},{"link":"bestsellers-for-women","text":"Bestsellers"}]},"mobile_covers":{"text":"Mobile Covers","list":[{"link":"mobile-covers-india","text":"All Mobile Covers"}]}},"updated_at":1534160829},"brand_description":{"value":{"apple":"\u003Ch2\u003EBecause when youve got an iPhone, youve gotta treat it like an iPhone!\u003C\u002Fh2\u003E\n  \u003Cbr\u003E\n  \u003Cp\u003EWhos your best friend? No need to tell us, because everyone knows its not some person, its actually your iPhone! Why? Well, because its an iPhone! And because the phone is as amazing as it is, youve got to protect it in the best way possible. No, we dont only mean super protective iPhone mobile cases, but also iPhone cases that add an edge to your style. Know what we are talking about? No? Well, take a look at the iPhone mobile covers available on the Bewakoof&#174; store and pick your favourites today. We wont tell you to hurry, because you will wanting to flaunt these iPhone phone covers to everyone! \u003C\u002Fp\u003E\n  \u003Cbr\u003E\n  \u003Ch2\u003ESmartphone style? Check! Only with Bewakoof&#174;s range of iPhone cases!\u003C\u002Fh2\u003E\n  \u003Cbr\u003E\n  \u003Cp\u003EWhether you have been looking for cases for iPhone 5 or iPhone 6 covers, weve got something for every iPhone fan! Cool and durable, these matte finish \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Back Covers Online India'\u003Ephone cases\u003C\u002Fa\u003E are just what you need to your collection of iPhone accessories. Made of polycarbonate, these iPhone cases will make sure your phone remains protected from all kinds of accidents. Dont waste time, start investing in an iPhone cover for yourself and raise style standards for everyone around you! Time to make your iPhone happy!\u003C\u002Fp\u003E","samsung":"\u003Ch2\u003EStay stylish with Samsung!\u003C\u002Fh2\u003E\n  \u003Cbr\u003E\n  \u003Cp\u003EThere you have it, your brand new Samsung phone. Its sleek, shiny and all you ever wanted. You swear to protect it with all your life, because your phone is your new best friend. But what kind of best friend would you be if you didnt protect your phone? Theres no need to panic! What you need is a sturdy Samsung cover.  A precious phone requires a precious \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy mobile phone covers Online India'\u003Emobile case\u003C\u002Fa\u003E, so why dont you drop by our Bewakoof&#174; site? Doesnt matter which Samsung phone you have, we have Samsung covers for every model! These Samsung cases will not only protect your phone, but also provide it with a matte finish. Gone are the days where you waste time searching for the perfect Samsung phone case in a shop. Now all you have to do is go online, go to our Bewakoof&#174; site and buy the Samsung cover you love the most!\u003C\u002Fp\u003E\n  \u003Cbr\u003E\n  \u003Ch3\u003EStart a trend with our Samsung phone covers!\u003C\u002Fh3\u003E\n  \u003Cbr\u003E\n  \u003Cp\u003ECovers here, covers there, covers everywhere! Samsung covers are all over the place, which confuses you a lot. Which cover do you pick? The answer is simple! If youre looking for a cover that isnt common, Bewakoof&#174; is the site to be at. Our designs are original and complete trendsetters! So dont waste time! Grab a Samsung phone cover to unleash your cool fashion sense!\u003C\u002Fp\u003E","xiaomi":"\u003Ch2\u003EBe exquisite with Xiaomi!\u003C\u002Fh2\u003E\n  \u003Cbr\u003E\n  \u003Cp\u003ENothing says special more than a Xiaomi phone. A phone that you dont want to keep on the corner of a table, because if it falls youre absolutely screwed! You wouldnt want your screen cracked would you? Your smartphone is the most important thing to you and you must protect it with all youve got. And if all youve got doesnt involve a Xiaomi phone cover, then your phone is in danger! Time to grab a Xiaomi phone case to ensure that no harm comes to your phone! Weve got a whole new variety of Xiaomi covers up for grabs! Whether you love smoking weed, pretty flowers or quirky animals, weve got covers for them all! Explore your personality with a \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Phone Cases Online India'\u003Emobile covers\u003C\u002Fa\u003E that celebrates you the way you are!\u003C\u002Fp\u003E\n  \u003Cbr\u003E\n  \u003Ch2\u003EPhone covers at Bewakoof&#174; are the best!\u003C\u002Fh2\u003E\n  \u003Cbr\u003E\n  \u003Cp\u003EOur Bewakoof&#174; store provides you with covers that will make all your friends jealous! Our unique collection of Xiaomi Phone covers will make your phone a superstar! With our Bollywood inspired and Marvel superheroes-inspired covers, your phone will always stay trendy! Also, our matte Xiaomi covers give your phone a lovely texture that makes you want to hold your phone forever. Theres no wrong time to buy a cover, so grab a Xiaomi cases from Bewakoof&#174; today!\u003C\u002Fp\u003E","huawei":"\u003Ch2\u003EA phone should show off your personality!\u003C\u002Fh2\u003E\n  \u003Cbr\u003E\n  \u003Cp\u003EDo you look at your phone and think, Where have you been all my life? Your phone is the best thing that ever happened to you and you want to spoil it with gifts. Something that makes your phone look good and takes care of it as well as you would. What could you buy out there that fits this description? A Huawei phone cover, thats for sure! Phone covers are all you need when it comes to decorating your phone. You need something that shows off your personality and fashion sense. Huawei covers will definitely dress your phone up and make it look good, but heres the issue. Where do you find good Huawei covers? Dont be silly, at Bewakoof&#174; of course! Our online store has a wide range of Huawei coversthat are sure to make your phone shine like a star on its way to stardom!\u003C\u002Fp\u003E\n  \u003Cbr\u003E\n  \u003Ch3\u003ECome be Bewakoof&#174; with us!\u003C\u002Fh3\u003E\n  \u003Cbr\u003E\n  \u003Cp\u003EBeen searching for Huawei phone coversbut its all been in vain? Dont worry! At Bewakoof&#174;, we have Huawei coversthat will make your phone look good and feel good too! How you ask? Well, weve got a collection of covers that are always on trend and they all have matte finish! So dont worry too much about finding the right cover. Youll find what you need right here!\u003C\u002Fp\u003E","oneplus":"\u003Ch2\u003EShop OnePlus Phone Back Cases & Covers Online in India\u003C\u002Fh2\u003E\n  \u003Cbr\u003E\n  \u003Cp\u003EWe understand that your smartphone is more than just a device; it's an extension of your personality. That's why we've curated an extensive range of OnePlus back covers that not only safeguard your phone but also reflect your unique style. Whether you're looking for something bold and eye-catching or sleek and minimalistic, our OnePlus Covers collection has something for everyone.\u003C\u002Fp\u003E\n  \u003Cbr\u003E\n  \u003Cp\u003EOur OnePlus mobile cases are crafted with the highest quality materials to ensure durability and longevity. Each cover is designed to provide robust protection against everyday wear and tear, keeping your phone safe from scratches, drops, and bumps. The precise cutouts and snug fit of our covers ensure that all buttons, ports, and features remain easily accessible, so you never have to compromise on functionality for style.\u003C\u002Fp\u003E\n  \u003Cbr\u003E\n  \u003Cp\u003EWe believe that great design should be accessible to everyone. That's why our OnePlus back covers are available at competitive prices, making it easy for you to find a cover that fits your budget without sacrificing quality or aesthetics. Plus, with frequent discounts and special offers, you can get even more value for your money. Our user-friendly website makes it easy to browse through our collection, compare different designs, and find the perfect cover for your OnePlus model.\u003C\u002Fp\u003E\n  \u003Cbr\u003E\n  \u003Ch2\u003EWhy Choose Bewakoof for OnePlus Covers & Cases?\u003C\u002Fh2\u003E\n  \u003Cbr\u003E\n  \u003Ch3\u003EWide Range of Designs\u003C\u002Fh3\u003E\n  \u003Cbr\u003E\n\u003Cp\u003EAt Bewakoof, we understand that everyone has a unique style. That's why we offer a wide range of OnePlus covers and cases to suit every taste. Whether you prefer minimalist designs, bold patterns, or quirky prints, our extensive collection ensures you'll find something that resonates with your personality.\u003C\u002Fp\u003E\n  \u003Cbr\u003E\n\u003Ch3\u003EHigh-Quality Materials\u003C\u002Fh3\u003E\n  \u003Cbr\u003E\n\u003Cp\u003EQuality is at the heart of everything we do at Bewakoof. Our OnePlus mobile covers and cases are made from durable materials that provide excellent protection for your device.\u003C\u002Fp\u003E\n  \u003Cbr\u003E\n \u003Cp\u003EWhether it's a hard case made from tough polycarbonate or a flexible silicone cover, you can trust that your OnePlus is safeguarded against everyday wear and tear. Our covers are designed to be long-lasting, ensuring your phone stays protected for longer.\u003C\u002Fp\u003E\n  \u003Cbr\u003E\n\u003Ch3\u003EAffordable Prices\u003C\u002Fh3\u003E\n  \u003Cbr\u003E\n\u003Cp\u003EWe believe that great style and quality shouldn't come with a hefty price tag. At Bewakoof, we offer OnePlus cases and cases at competitive prices, making it easy for you to find something that fits your budget.\u003C\u002Fp\u003E\n  \u003Cbr\u003E\n\u003Cp\u003EPlus, with frequent discounts and special offers, you can get even more value for your money. Our pricing strategy ensures that you don't have to compromise on quality or style to stay within your budget.\u003C\u002Fp\u003E\n  \u003Cbr\u003E\n\u003Ch3\u003EExclusive Designs\u003C\u002Fh3\u003E\n  \u003Cbr\u003E\n\u003C\u002Fh3\u003E\n\u003Cp\u003EAt Bewakoof, we collaborate with talented designers to bring you exclusive designs that you won't find anywhere else. Our covers feature unique artwork, pop culture references, and trendy patterns that let you express your individuality.\u003C\u002Fp\u003E\n  \u003Cbr\u003E\n \u003Cp\u003EWhether youre a fan of minimalist aesthetics or bold graphics, our exclusive designs ensure your OnePlus stands out from the crowd.\u003C\u002Fp\u003E\n  \u003Cbr\u003E\n\u003Ch3\u003EPerfect Fit and Functionality\u003C\u002Fh3\u003E\n  \u003Cbr\u003E\n\u003Cp\u003EOur OnePlus phone covers and cases are meticulously designed to fit your device perfectly. Each cover is tailored to ensure that all buttons, ports, and features are easily accessible without removing the case.\u003C\u002Fp\u003E\n  \u003Cbr\u003E\n\u003Cp\u003EThis attention to detail ensures that your phone remains fully functional while being protected. The precise cutouts and snug fit provide a seamless user experience, enhancing the overall usability of your device.\u003C\u002Fp\u003E\n  \u003Cbr\u003E\n\u003Ch3\u003ESecure and Fast Shipping\u003C\u002Fh3\u003E\n  \u003Cbr\u003E\n\u003Cp\u003EWhen you shop at Bewakoof, you can expect secure and fast shipping. We partner with reliable courier services to ensure that your order reaches you in a timely manner.\u003C\u002Fp\u003E\n  \u003Cbr\u003E\n\u003Cp\u003EOur efficient packaging protects your OnePlus cover during transit, so it arrives in perfect condition. Track your order online and stay updated on its progress from our warehouse to your doorstep.\u003C\u002Fp\u003E\n  \u003Cbr\u003E\n\u003Ch2\u003EFrequently Asked Questions\u003C\u002Fh2\u003E\n  \u003Cbr\u003E\n\u003Ch3\u003EHow do I know if the OnePlus mobile cover will fit my phone model?\u003C\u002Fh3\u003E\n  \u003Cbr\u003E\n\u003Cp\u003EEach OnePlus cover listed on Bewakoof.com specifies the compatible models in the product description. Make sure to check this information before making a purchase to ensure a perfect fit for your device.\u003C\u002Fp\u003E\n  \u003Cbr\u003E\n\u003Ch3\u003EAre the printed designs on the covers durable?\u003C\u002Fh3\u003E\n  \u003Cbr\u003E\n\u003Cp\u003EYes, the printed designs on our OnePlus covers are made with high-quality printing techniques that ensure durability. They are resistant to fading and scratching, so your cover will look great for a long time.\u003C\u002Fp\u003E\n  \u003Cbr\u003E\n\u003C\u002Fp\u003E\n  \u003Ch3\u003EDo you offer any discounts on OnePlus covers?\u003C\u002Fh3\u003E\n  \u003Cbr\u003E\n\u003C\u002Fh3\u003E\n\u003Cp\u003EYes, Bewakoof frequently offers discounts and special promotions on OnePlus covers. Keep an eye on our website and subscribe to our newsletter to stay updated on the latest deals and offers.\u003C\u002Fp\u003E\n  \u003Cbr\u003E\n\u003Ch3\u003EHow do I clean and maintain my OnePlus cover?\u003C\u002Fh3\u003E\n  \u003Cbr\u003E\n\u003Cp\u003ECleaning your OnePlus cover is simple. For silicone and TPU covers, use a damp cloth with mild soap to wipe away dirt and grime. For hard cases, you can use a microfiber cloth to clean the surface. Avoid using harsh chemicals or abrasive materials, as they can damage the cover's design and material.\u003C\u002Fp\u003E\n  \u003Cbr\u003E\n \u003Ch3\u003EDo the oneplus phone case provide protection against drops and impacts?\u003C\u002Fh3\u003E\n  \u003Cbr\u003E\n\u003Cp\u003E\u003Cp\u003EAbsolutely. Our OnePlus covers are designed to offer robust protection against drops, impacts, and everyday wear and tear. We use high-quality materials that absorb shock and provide a secure grip, ensuring your device stays safe.\u003C\u002Fp\u003E\n  \u003Cbr\u003E\n\u003Ch3\u003ECan I personalize or customize my OnePlus cover?\u003C\u002Fh3\u003E\n  \u003Cbr\u003E\n \u003Cp\u003E\u003Cp\u003E\u003Cp\u003ECurrently, we offer a wide range of pre-designed covers to suit various tastes and styles. While we do not offer customization services at the moment, our diverse collection ensures that you can find a design that resonates with your personality.\u003C\u002Fp\u003E\n  \u003Cbr\u003E\n \u003Ch3\u003EWhat should I do if my OnePlus cover doesnt fit properly?\u003C\u002Fh3\u003E\n  \u003Cbr\u003E\n\u003Cp\u003EIf your OnePlus cover doesnt fit properly, please contact our customer support team. We will assist you in resolving the issue, whether it involves exchanging the cover for the correct size or providing a refund.\u003C\u002Fp\u003E\n  \u003Cbr\u003E\n\u003Ch3\u003EAre the design on the cover resistant to fading and scratching?\u003C\u002Fh3\u003E\n  \u003Cbr\u003E\n \u003Cp\u003EYes, the designs on our OnePlus covers are created using high-quality printing techniques that ensure durability. They are resistant to fading and scratching, so your cover will maintain its vibrant look over time.\u003C\u002Fp\u003E","oppo":"\u003Ch2\u003EBecause these phone cases deserve to cover your smartphone!\u003C\u002Fh2\u003E\n  \u003Cbr\u003E\n  \u003Cp\u003EWhats sleek, shiny, and smart? An Oppo smartphone! And youd want to protect your precious phone with something thats equally amazing, wouldnt you? Thats why we have the best range of Oppo mobile covers for you on our online store. These \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Cases Online'\u003Ephone cases\u003C\u002Fa\u003E are everything you need to flash your phone with maximum style. Get yourself an Oppo phone cover from our collection, snap it onto your phone and see how well it works for you. If youve been looking to add a wow factor to your already amazing Oppo phone, these mobile covers will do it for you! Snag your favourites from the line-up today!\u003C\u002Fp\u003E\n  \u003Cbr\u003E\n  \u003Ch3\u003ELooking for Oppo phone cases? Bewakoof&#174;s the way to go!\u003C\u002Fh3\u003E\n  \u003Cbr\u003E\n  \u003Cp\u003EAre you a Bollywood buff or are superheroes more your style? Do you like artsy stuff or are you all about that dope? Well, no matter what you are into, our Oppo covers have it all! At Bewakoof&#174;, weve got the best line-up of Oppo phone covers for you to choose from. And no, these cases wont compromise on your phones protection! Made of sturdy polycarbonate, these matte finish Oppo phone cases will definitely protect your phone from unwanted accidents. Think you need to get your hands on one? Of course you do, so start shopping!\u003C\u002Fp\u003E","vivo":"\u003Ch2\u003EWhats cooler than a Vivo?!\u003C\u002Fh2\u003E\n  \u003Cbr\u003E\n  \u003Cp\u003ELets face it, nothing in this world is as cool as your Vivo phone. Its got the right amount of swag and class combined, making it a phone that never goes out of style! A phone like this deserves nothing but the best accessories. The best earphones, the best charger and most importantly, the best Vivo phone cover! When your phone looks that good, you should strive for something even better! A plain phone doesnt describe you like a Vivo cover would. You need something that will represent your character. Do you have a good sense of humor? Try Bewakoof&#174;s pun covers! Do you worship weed? Weve got loads of weed covers for you! Want ,a href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Best Phone Cases Online'\u003Ephone covers\u003C\u002Fa\u003E that are as cute as you are? Weve got cute Vivo covers too! Whatever it is youre looking for, youll find it on Bewakoof&#174;s online store in no time!\u003C\u002Fp\u003E\n  \u003Cbr\u003E\n  \u003Ch3\u003ENot only will your phone look good, it will feel good!\u003C\u002Fh3\u003E\n  \u003Cbr\u003E\n  \u003Cp\u003EBewakoof&#174; does have really funky Vivo covers to choose from, but the best part is that all these Vivo covers have matte finish. They'll feel so good in your hand that you will never want to let go! If you want a phone that feels just as good as it looks, then youre looking for a Bewakoof&#174; Vivo cover!\u003C\u002Fp\u003E","realme":"\u003Ch2\u003EYour new Realme smartphone deserves so much better!\u003C\u002Fh2\u003E\n  \u003Cbr\u003E\n  \u003Cp\u003EYouve got yourself an Realme mobile phone, and you know youre smart enough to make sure your smartphone is perfectly protected! No matter how careful you are, those damned phones somehow manage to fall and damage themselves. We feel your pain! Its also so difficult to find the kind of Realme mobile cover that is stylish and still dependable, so weve got you a stylish collection of \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy printed back cover online India'\u003Emobile covers\u003C\u002Fa\u003E that youll never see anywhere else! Our online store has it all  prints, artwork, plain colors, you name it!\u003C\u002Fp\u003E\n  \u003Cbr\u003E\n  \u003Ch2\u003EStep out of the mainstream with Realme phone covers!\u003C\u002Fh2\u003E\n  \u003Cbr\u003E\n  \u003Cp\u003EIf you find yourself wishing that you could get awesome phone covers for your awesome Realme phone, were just the website for you! No more traveling to obscure places to get your hands on a good and sturdy Realme mobile cover, because weve got the best range of matte finish phone covers at Bewakoof&#174;! We believe in quality without compromising on trend, so your Realme mobile phone is going to be the eye candy wherever you are! Dont worry, weve got the most diverse set of Realme phone covers, and youre sure to find the right match for your Realme smartphone!\u003C\u002Fp\u003E","default":"\u003Ch2\u003EMobile Covers &amp; Cases By Bewakoof&#174;\u003C\u002Fh2\u003E\u003Cbr\u003E\u003Cp\u003EBewakoof&#174; offers an exclusive range of stylish and trendy phone covers and cases. Bewakoof&#174; has a wide variety of designs to choose from, so you can find the perfect cover or case to show off your personality. All of our covers and cases are made of high-quality materials that offer protection to your phone. So whether you&apos;re looking for a funky cover to show off your personality or a case to protect your phone from scratches and bumps, Bewakoof&#174; has you covered!\u003C\u002Fp\u003E\u003Cbr\u003E\u003Ch2\u003EMobile Covers for Women\u003C\u002Fh2\u003E\u003Cbr\u003E\u003Cp\u003EShop Stylish \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fgirlish-phone-covers'\u003Emobile covers for women\u003C\u002Fa\u003E from Bewakoof&#174; and make a statement! Our collection of Mobile Covers for Women is designed with function and fashion in mind. These lightweight back covers come in a variety of colors and designs to match any outfit, from neutral tones to bright, vibrant colors. Protect your phone while looking great with our Mobile Covers for Women &ndash; they provide protection against dirt, dust and scratches, as well as protection from drops and bumps. So don&rsquo;t settle for anything less &ndash; shop now for Mobile Covers for Women from Bewakoof&#174; and stay stylish all day!\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003EGet the perfect Mobile Cover that reflects your personality and style! Shop Now at Bewakoof&#174;! With our wide range of stylish and rugged Mobile Covers for Women, you can find the perfect mobile cover that reflects your personality and style. Choose from a variety of colors and designs to match any outfit or mood. Whether you&rsquo;re looking to make a statement or just want to protect your phone, our Mobile Covers for Women are a perfect choice.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Ch2\u003EMobile Covers for Men\u003C\u002Fh2\u003E\u003Cbr\u003E\u003Cp\u003ETired of using the same boring mobile cover? Then why not update your style with one of our trendy mobile covers for men from Bewakoof&#174;! All our back covers are designed to protect your phone and feature vibrant, stylish designs that will make you stand out in the crowd. Whether you&apos;re looking for something subtle or eye-catching, you&apos;re sure to find something that fits your style in our collection of mobile covers for men.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Ch2\u003EMobile covers on Bewakoof&#174;\u003C\u002Fh2\u003E\u003Cbr\u003E\u003Cp\u003EBewakoof&#174; is an online store that offers a wide range of phone cases. Bewakoof&#174; was founded in 2012 with the aim of providing high-quality and stylish mobile accessories at an affordable price. Bewakoof&#174; has since grown to become one of the leading online retailers for mobile covers and cases in India.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003EBewakoof&#174; offers a wide variety of designs and colours to choose from, so you can find the perfect cover or case for your phone.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Ch2\u003EWhy choose Bewakoof&#174; for your phone covers or cases?\u003C\u002Fh2\u003E\u003Cbr\u003E\u003Cp\u003EThere are several reasons why you should choose Bewakoof&#174; for your phone case needs. Firstly, the company offers a wide range of designs and colours to choose from. Secondly, Bewakoof&#174; covers and cases are made from high-quality materials, so you can be sure your phone is well protected. And finally, Bewakoof&#174; offers great value for money &ndash; you won&rsquo;t find better quality back covers and cases at a better price anywhere else.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Ch2\u003EWhat are some of the most popular phone covers and case designs on Bewakoof&#174;?\u003C\u002Fh2\u003E\u003Cbr\u003E\u003Cp\u003ESome of the most popular mobile back covers designs from Bewakoof&#174; include the following:\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cul\u003E    \u003Cli\u003E\u003Cstrong\u003EMarble\u003C\u002Fstrong\u003E: This is a sleek and stylish design that is perfect for those who want to add a touch of class to their phone.\u003C\u002Fli\u003E\u003Cbr\u003E    \u003Cli\u003E\u003Cstrong\u003EQuotes\u003C\u002Fstrong\u003E: This is a great design for those who want to express themselves with their phone cover or case. You can choose from a wide range of quotes, or even add your own personal message.\u003C\u002Fli\u003E\u003Cbr\u003E    \u003Cli\u003E\u003Cstrong\u003EFunky Designs\u003C\u002Fstrong\u003E: This is a great design for those who want to add some fun and personality to their phone. The covers are made of high-quality silicone and are available in a range of fun and are available in a range of fun and funky designs.\u003C\u002Fli\u003E\u003Cbr\u003E    \u003Cli\u003E\u003Cstrong\u003EPop Culture\u003C\u002Fstrong\u003E: \u003Cstrong\u003ETrendy mobile covers\u003C\u002Fstrong\u003E that are in hype amongst the youth and are stylish. They often have the latest designs and patterns.\u003C\u002Fli\u003E\u003Cbr\u003E    \u003Cli\u003E\u003Cstrong\u003ESporty\u003C\u002Fstrong\u003E: Sporty mobile covers are those designed for people who lead an active lifestyle. They often have designs that reflect this, such as sports teams or athletes.\u003C\u002Fli\u003E\u003Cbr\u003E    \u003Cli\u003E\u003Cstrong\u003EPlain\u003C\u002Fstrong\u003E: Plain mobile covers are those which do not have any patterns or designs. They are often available in a variety of solid colours.\u003C\u002Fli\u003E\u003Cbr\u003E    \u003Cli\u003E\u003Cstrong\u003EAbstract\u003C\u002Fstrong\u003E: Abstract mobile covers are those which feature abstract designs or patterns. These can be geometric, floral, or anything else that is not easily identifiable.\u003C\u002Fli\u003E\u003Cbr\u003E    \u003Cli\u003E\u003Cstrong\u003EPatterned\u003C\u002Fstrong\u003E: Patterned mobile covers are those which feature repeating patterns. These can be geometric or any other type of design.\u003C\u002Fli\u003E\u003Cbr\u003E    \u003Cli\u003E\u003Cstrong\u003EFloral\u003C\u002Fstrong\u003E: Floral mobile covers are those which feature flower designs. These can be real or artificial flowers and often have a soft look.\u003C\u002Fli\u003E\u003Cbr\u003E    \u003Cli\u003E\u003Cstrong\u003ENature\u003C\u002Fstrong\u003E: Nature mobile covers are those which feature designs inspired by nature. These can include animals, plants, landscapes, or anything else that is found in nature.\u003C\u002Fli\u003E\u003Cbr\u003E    \u003Cli\u003E\u003Cstrong\u003ETypography\u003C\u002Fstrong\u003E: Typography mobile covers are those which feature text as the primary design element. This can be your name, a quote, or anything else that you want to showcase.\u003C\u002Fli\u003E\u003Cbr\u003E    \u003Cli\u003E\u003Cstrong\u003EArt\u003C\u002Fstrong\u003E: Art mobile covers are those which feature artwork as the primary design element. This can be a painting, photograph, or any other type of art that you want to showcase.\u003C\u002Fli\u003E\u003Cbr\u003E    \u003Cli\u003E\u003Cstrong\u003EVintage\u003C\u002Fstrong\u003E: Vintage mobile covers are those which feature designs from a specific era. These can include patterns, colours and styles that are associated with a particular time period.\u003C\u002Fli\u003E\u003Cbr\u003E    \u003Cli\u003E\u003Cstrong\u003ERetro\u003C\u002Fstrong\u003E: Retro mobile covers are those which feature designs that are inspired by the past. These can include patterns, colours and styles that are associated with a particular time period.\u003C\u002Fli\u003E\u003Cbr\u003E    \u003Cli\u003E\u003Cstrong\u003EModernistic\u003C\u002Fstrong\u003E: Modern mobile covers are those which feature contemporary designs. These can include clean lines, simple shapes, and muted colours.\u003C\u002Fli\u003E\u003Cbr\u003E    \u003Cli\u003E\u003Cstrong\u003ELuxury\u003C\u002Fstrong\u003E: Luxury mobile covers are those which feature high-end materials and finishes. These can include leather, metal or anything else that gives a cover a luxurious look and feel.\u003C\u002Fli\u003E\u003Cbr\u003E    \u003Cli\u003E\u003Cstrong\u003E3D Designer Covers\u003C\u002Fstrong\u003E: 3D designer covers are one of the most popular types of phone cases on the market. They offer a unique look that can really set your phone apart from the rest.\u003C\u002Fli\u003E\u003Cbr\u003E    \u003Cli\u003E\u003Cstrong\u003ELED Covers\u003C\u002Fstrong\u003E: Bewakoof&#174; has a range of LED covers for your mobile phone. The LED light-up feature is also great for taking Selfies in low light conditions, or for simply finding your phone in the dark. With a Bewakoof&#174; LED cover, your mobile will always stand out from the crowd!\u003C\u002Fli\u003E\u003Cbr\u003E\u003C\u002Ful\u003E\u003Ch2\u003EHow to buy a mobile back cover or case from Bewakoof&#174;?\u003C\u002Fh2\u003E\u003Cbr\u003E\u003Cp\u003EBuying a mobile case from Bewakoof&#174; is easy! Simply browse our range of designs, select the one you like, and add it to your cart. Once you&rsquo;ve made your purchase, we will deliver your back cover or case straight to your door.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Ch2\u003EWhat are the benefits of using mobile phone covers or cases?\u003C\u002Fh2\u003E\u003Cbr\u003E\u003Cul\u003E\u003Cli\u003E\u003Cstrong\u003EAbsolute Protection\u003Cem\u003E&nbsp;&ndash;\u003C\u002Fem\u003E\u003C\u002Fstrong\u003E Accidents are unpredictable, and there is absolutely no way to stop or save your phone from falling. It is pretty evident that every person tends to make faults at least once in their lifetime, so it is better to have a preventable strategy at any moment. A mobile cover must be purchased of better quality just like the Bewakoof&#174;&apos;s mobile cases\u003Cstrong\u003E&nbsp;\u003C\u002Fstrong\u003Eto conserve it from any external damage such as drops, dirt, dust, etc. \u003Cstrong\u003EStylish Mobile covers&nbsp;\u003C\u002Fstrong\u003Ealso help by securing the mobile from scratches. It acts as a safe home, maintaining the phone as considerably as possible.&nbsp;\u003C\u002Fli\u003E\u003Cbr\u003E    \u003Cli\u003E\u003Cstrong\u003EAesthetic Appearance\u003Cem\u003E&nbsp;&ndash;&nbsp;\u003C\u002Fem\u003E\u003C\u002Fstrong\u003EWho doesn&apos;t like aesthetic looks? Mobile covers take the smartphone&apos;s aesthetics to an extraordinary level. \u003Cstrong\u003EMobile cases&nbsp;\u003C\u002Fstrong\u003Ehave dual advantages here; it makes sure to keep the phone fully safe and secure and give the best appearance. Bewakoof&#174;&apos;s covers will surely make your phone look better than ever as the unique designs give a particular essence to the phones.&nbsp;\u003C\u002Fli\u003E\u003Cbr\u003E    \u003Cli\u003E\u003Cstrong\u003EPersonalization\u003Cem\u003E-\u003C\u002Fem\u003E\u003C\u002Fstrong\u003E Are you someone who is a fan of their design and tastes? Having a smartphone without a mobile cover ultimately means restricting yourself to one look until you change the phone itself. We have mobile cases in different models, colors, and designs for more versatility and unique appearances. One must purchase these if they are a huge fan of color coordinating the phone with the dress code they wear and look unique and different each time they go out. Moreover, there are many services available where you can even personalize the \u003Cstrong\u003Emobile back covers\u003C\u002Fstrong\u003E according to your taste and terms like color, picture, design, etc.\u003C\u002Fli\u003E\u003Cbr\u003E    \u003Cli\u003E\u003Cstrong\u003EBoosts Functionality\u003Cem\u003E&nbsp;-&nbsp;\u003C\u002Fem\u003E\u003C\u002Fstrong\u003EThe days are gone when phone covers were only used to protect the device. Even though the primary purpose is to protect the phone from several external damages, the style quotient comes as an added benefit here. Bewakoof&#174; has amped up the covers by including cardholding slots, which enhances the functioning of the cover.\u003C\u002Fli\u003E\u003Cbr\u003E    \u003Cli\u003E\u003Cstrong\u003EAdditional reselling value \u003Cem\u003E-&nbsp;\u003C\u002Fem\u003E\u003C\u002Fstrong\u003EWhen you are guessing about upgrading your phone, then you would get more deals for your phone if you tend to keep it safeguarded with a mobile cover, making sure that your phone is as new as you bought it. So while reselling, your phone will be defended from all kinds of damages, scratches, and dust particles that might get into your phone.\u003C\u002Fli\u003E\u003Cbr\u003E    \u003Cli\u003E\u003Cstrong\u003EPocket-Friendly\u003Cem\u003E&nbsp;-&nbsp;\u003C\u002Fem\u003E\u003C\u002Fstrong\u003ENowadays, phones are much more used than telephones and not just for calling but also for various purposes. Smartphones nowadays come with edged glasses, glass bodies, and dual camera lenses, and they are not just ordinary devices but much more than that. The advanced technologies and multiple purposes of phones often come with a heavy price tag, so it might not hurt to spend a little more to protect your mobile if any accident occurs. If you are looking for budget-friendly \u003Cstrong\u003Eprinted mobile covers\u003C\u002Fstrong\u003E, you are at the right place, so what are you waiting for? Go and buy yours now!!\u003C\u002Fli\u003E\u003Cbr\u003E\u003C\u002Ful\u003E\u003Ch2\u003EHow To Choose The Perfect Mobile Case For Your Phone?\u003C\u002Fh2\u003E\u003Cbr\u003E\u003Cp\u003EWhen choosing a phone cover or case, it&rsquo;s important to consider your needs and preferences. Firstly, decide what type of material you would like your cover or case to be made from. Bewakoof&#174; offers covers and cases made from hard plastic, soft silicone or even glass.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003ESecondly, think about the design you would like. Bewakoof&#174; offers a wide range of designs to choose from, so you can find the perfect one to suit your personality and style.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003EAnd finally, consider the price. Bewakoof&#174; offers great value for money, so you can be sure you&rsquo;re getting a high-quality cover or case at a great price.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Ch2\u003EWhat Are The Different Types of Mobile Covers available at Bewakoof&#174;?\u003C\u002Fh2\u003E\u003Cbr\u003E\u003Cp\u003EThe types of mobile covers available at Bewakoof&#174; are hardcovers, glass covers and 3D designer covers are some of the options that you can choose from. Each type of cover has its own set of features and benefits. \u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E\u003Cstrong\u003EHard Covers\u003C\u002Fstrong\u003E: Bewakoof&#174; has a wide variety of hardcovers for your phone. We have cases for all popular phone models including \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india\u002Fapple-cases-back-covers' title='Buy iPhone Cases Online'\u003EiPhone\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india\u002Fsamsung-cases-back-covers' title='Buy Samsung covers Online'\u003ESamsung\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india\u002Fxiaomi-cases-back-covers' title='Buy Xiaomi Covers Online'\u003EXiaomi\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india\u002Foneplus-cases-back-covers' title='Buy OnePlus Covers Online'\u003EOnePlus\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india\u002Frealme-cases-back-covers' title='Buy Realme Covers Online'\u003ERealme\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india\u002Foppo-cases-back-covers' title='Buy Oppo Covers Online'\u003EOppo\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india\u002Fvivo-cases-back-covers' title='Buy Vivo Covers Online'\u003EVivo\u003C\u002Fa\u003E and more. Our hardcovers are made of durable materials that will protect your phone from scratches, bumps, and drops. You can choose from a variety of designs and colours to find the perfect case for your style. \u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E\u003Cstrong\u003EGlass Covers\u003C\u002Fstrong\u003E: \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002F'\u003EBewakoof&#174;\u003C\u002Fa\u003E is one of the leading online stores for glass covers and cases for your mobile phones. We offer a wide range of glass covers and cases for all popular phone models at unbeatable prices. Our glass covers and cases are made from high-quality tempered glass and offer perfect protection to your phone from scratches, bumps and drops. They are also very easy to install and remove. So, if you are looking for a durable, stylish, and affordable glass cover or case for your mobile phone, then Bewakoof&#174; is the right place for you. \u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E\u003Cstrong\u003ESilicon Covers\u003C\u002Fstrong\u003E: Silicon covers are one of the most popular \u003Cstrong\u003Ephone cases\u003C\u002Fstrong\u003E on the market today. They are known for their durability and ability to protect your phone from scratches and other damage. Bewakoof&#174; offers a variety of silicon covers to choose from, in a variety of colours and designs. Whether you&apos;re looking for a plain case or something with a bit more personality, Bewakoof&#174; has you covered. Silicon covers are made from a durable material that is designed to withstand everyday wear and tear. They are also scratch resistant, so you can rest assured that your phone will look as good as new for many years to come. In addition to protection, silicon covers also add a bit of style to your phone. With so many colours and designs to choose from, you can find a case that reflects your personal taste. Whether you prefer a sleek and simple design or something more fun and funkier, Bewakoof&#174; has the perfect silicon cover for you. So what are you waiting for? Head over to Bewakoof&#174; today and check out our selection of silicon covers! You won&apos;t be disappointed.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003EMobile covers are one of the most versatile products with multipurpose uses. Bewakoof&#174; has a great collection of covers in many different models and designs which include Official Collaborations like \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title=Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise' title=DC Comics Merchandise Online'\u003EDC\u003C\u002Fa\u003E &amp; more along with simple aesthetic designs for travelers, foodies, music lovers, and so on. Explore these ranges and shop your favorites on Bewakoof&#17bsp;\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E\u003Cstrong\u003EPopular Categories:\u003C\u002Fstrong\u003E\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E\u003Cbr \u002F\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india'\u003E\u003Cspan style='font-weight: 400;'\u003EMobile Covers\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Foversized-t-shirts-for-men'\u003E\u003Cspan style='font-weight: 400;'\u003EOversized T-Shirts For Men\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcustom-tshirts'\u003E\u003Cspan style='font-weight: 400;'\u003ECustom T-Shirts\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmen-t-shirts'\u003E\u003Cspan style='font-weight: 400;'\u003ET-Shirt For Men\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmen-hoodies-sweatshirts'\u003E\u003Cspan style='font-weight: 400;'\u003EHoodies For Men\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fanime-collection'\u003E\u003Cspan style='font-weight: 400;'\u003EAnime T- Shirt\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmen-printed-tshirts'\u003E\u003Cspan style='font-weight: 400;'\u003EPrinted T-Shirts For Men\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmen-flip-flops'\u003E\u003Cspan style='font-weight: 400;'\u003ESliders\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmen-shirts'\u003E\u003Cspan style='font-weight: 400;'\u003EShirts For Men\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmen-full-sleeve-t-shirts'\u003E\u003Cspan style='font-weight: 400;'\u003EFull Sleeve T-Shirt For Men\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmen-co-ord-sets'\u003E\u003Cspan style='font-weight: 400;'\u003ECoord Set Men\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Foversized-t-shirts-for-women'\u003E\u003Cspan style='font-weight: 400;'\u003EOversized Shirts For Women\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmen-joggers'\u003E\u003Cspan style='font-weight: 400;'\u003EJoggers For Men\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fwomen-t-shirts'\u003E\u003Cspan style='font-weight: 400;'\u003ET-Shirts For Women\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcasual-shoes'\u003E\u003Cspan style='font-weight: 400;'\u003EShoes\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmens-denim'\u003E\u003Cspan style='font-weight: 400;'\u003EJeans For Men\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmen-jackets'\u003E\u003Cspan style='font-weight: 400;'\u003EJacket For Men\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fwomen-boyfriend-tshirts'\u003E\u003Cspan style='font-weight: 400;'\u003EBoyfriend T-Shirt\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcouple-t-shirts'\u003E\u003Cspan style='font-weight: 400;'\u003ECouple T-Shirt\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmen-sliders'\u003E\u003Cspan style='font-weight: 400;'\u003ESlides For Men\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fwomen-hoodies-sweatshirts'\u003E\u003Cspan style='font-weight: 400;'\u003ESweatshirt For Women\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmen-shorts'\u003E\u003Cspan style='font-weight: 400;'\u003EShorts For Men\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmen-plain-t-shirts'\u003E\u003Cspan style='font-weight: 400;'\u003EPlain T-Shirts For Men\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fwomens-denims'\u003E\u003Cspan style='font-weight: 400;'\u003EJeans For Women\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fclogs'\u003E\u003Cspan style='font-weight: 400;'\u003EClogs For Men\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fwomen-sliders'\u003E\u003Cspan style='font-weight: 400;'\u003ESlippers For Women\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fwomen-full-sleeves-t-shirts'\u003E\u003Cspan style='font-weight: 400;'\u003EFull Sleeve T-Shirt For Women\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmen-sweaters'\u003E\u003Cspan style='font-weight: 400;'\u003ESweater For Men\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fwomen-co-ord-sets'\u003E\u003Cspan style='font-weight: 400;'\u003ECoord Set Women\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003Cspan style='font-weight: 400;'\u003E | \u003C\u002Fspan\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmen-pants'\u003E\u003Cspan style='font-weight: 400;'\u003ETrousers For Men\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E\u003Cstrong\u003ERelated Categories:\u003C\u002Fstrong\u003E\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E\u003Cbr \u002F\u003E\u003Cp\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fiphone-15-back-covers-cases'\u003EiPhone 15 Back Cover\u003C\u002Fa\u003E | \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fiphone-13-back-covers-cases'\u003EiPhone 13 Back Cover\u003C\u002Fa\u003E | \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fiphone-14-back-covers-cases'\u003EiPhone 14 Back Cover\u003C\u002Fa\u003E | \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fanime-phone-cases'\u003EAnime Phone Cover\u003C\u002Fa\u003E | \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fsamsung-galaxy-s23-5g-back-covers-cases'\u003ESamsung Galaxy s23 Back Cover\u003C\u002Fa\u003E | \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Foneplus-11r-5g-back-covers-cases'\u003EOnePlus 11R Back Cover\u003C\u002Fa\u003E | \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fiphone-15-plus-back-covers-cases'\u003EiPhone 15 Plus Back Cover\u003C\u002Fa\u003E | \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fiphone-15-pro-back-covers-cases'\u003EiPhone 15 Pro Back Cover\u003C\u002Fa\u003E | \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fiphone-11-back-covers-cases'\u003EiPhone 11 Back Cover\u003C\u002Fa\u003E | \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fiphone-12-back-covers-cases'\u003EiPhone 12 Back Cover\u003C\u002Fa\u003E | \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fiphone-14-plus-back-covers-cases'\u003EiPhone 14 Plus Back Cover\u003C\u002Fa\u003E | \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fsamsung-galaxy-s21-fe-5g-back-covers-cases'\u003ESamsung Galaxy S21 FE Back Cover\u003C\u002Fa\u003E | \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fsamsung-galaxy-a34-5g-back-covers-cases'\u003ESamsung Galaxy A34 Back Cover\u003C\u002Fa\u003E | \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fiphone-12-mini-back-covers-cases'\u003EiPhone 12 Mini Back Cover\u003C\u002Fa\u003E | \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Foneplus-nord-ce-3-5g-back-covers-cases'\u003EOnePlus Nord CE 3 Back Cover\u003C\u002Fa\u003E | \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Foneplus-nord-ce-3-lite-5g-back-covers-cases'\u003EOnePlus Nord CE 3 Lite Back Cover\u003C\u002Fa\u003E | \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fiphone-xr-back-covers-cases'\u003EiPhone XR Back Cover\u003C\u002Fa\u003E | \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fiphone-14-pro-back-covers-cases'\u003EiPhone 14 Pro Back Cover\u003C\u002Fa\u003E | \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fsamsung-galaxy-a14-5g-back-covers-cases'\u003ESamsung Galaxy A14 Back Cover\u003C\u002Fa\u003E | \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Foneplus-nord-2-back-covers-cases'\u003EOnePlus Nord 2 Back Cover\u003C\u002Fa\u003E | \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fsamsung-galaxy-s20-fe-back-cover-cases'\u003ESamsung Galaxy S20 FE Cover\u003C\u002Fa\u003E | \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fiphone-13-pro-back-covers-cases'\u003EiPhone 13 Pro Back Cover\u003C\u002Fa\u003E | \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fsamsung-galaxy-s22-5g-back-covers-cases'\u003ESamsung S22 5G Back Cover\u003C\u002Fa\u003E | \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fsamsung-galaxy-s23-ultra-5g-back-covers-cases'\u003ESamsung S23 Ultra Back Covers\u003C\u002Fa\u003E | \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Foneplus-nord-back-covers-cases'\u003EOnePlus Nord Back Cover\u003C\u002Fa\u003E | \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Foneplus-nord-2t-5g-back-covers-cases'\u003EOnePlus Nord 2T 5G Back Cover\u003C\u002Fa\u003E | \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fnothing-phone-1-back-covers-cases'\u003ENothing Phone 1 Cover\u003C\u002Fa\u003E\u003C\u002Fp\u003E"},"updated_at":1719492413},"referral_program":{"value":{"tribe_referrer_amount":125,"non_tribe_referrer_amount":100,"referee_amount":100,"max_referral_amount":5000,"max_referrals":50,"qualifying_amount_for_referral":299},"updated_at":1620896358},"loyalty_program":{"value":{"heading":"Get the TriBe Membership &","title":"Never Pay Full Price Again","description":"Select a plan below -","checked":true,"image":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Flogo-tribe-black.png","image_member":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Flogo-tribe-white.png","image_small":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Flogo-tribe-black-1565083628.png","statements":["Member Only Discounts","Priority Support & Early Access to Collections."],"loyalty_products":[{"h":"3 Months TriBe Membership","sh":"Membership valid till 3 months","btn":"BUY NOW","product_size_id":557307,"name":"3 months","price":"199"},{"h":"12 Months TriBe Membership","sh":"Membership valid till a year.","btn":"BUY NOW","product_size_id":431056,"name":"12 months","price":"299"}]},"updated_at":1718706250},"loyalty_program_v2":{"value":{"heading":"Get the TriBe Membership &","title":"Never Pay Full Price Again","description":"Become a TriBe Member now!","checked":true,"image":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Flogo-tribe-black.png","image_member":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Flogo-tribe-white.png","image_small":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Flogo-tribe-black-1565083628.png","statements":{"heading":"TriBe Benefits","body":[{"heading":"Member Only Discounts","body":"Save on every purchase! Enjoy special prices on a wide range of product categories"},{"heading":"Priority Support","body":"Get all your queries resolved on a priority basis, only for TriBe members"},{"heading":"Early Access to Collections","body":"Grab the latest products and exclusive collections before everyone else"}]},"cart_data":{"heading":"Save more with TriBe Membership on every order","body":"Currently, TriBe membership is only available on PREPAID purchases."},"note":"Your new membership plan will start once your current membership ends","free_product":{},"renew_membership_button":{"url":"tribe","text":"Renew Membership"},"loyalty_products":[{"id":557307,"h":"3 Months TriBe Membership","sh":"Membership valid till 3 months.","btn":"BUY NOW","renew_btn":"RENEW NOW","product_size_id":557307,"name":"3 months","price":"&#8377; 199"}]},"updated_at":1718706179},"loyalty_program_v3":{"value":{"title":[{"text":"Bewakoof Tri","style":{"color":"white","fontFamily":"montserrat-bold"}},{"text":"Be","style":{"color":"black","fontFamily":"montserrat-bold","backgroundColor":"#fdd835"}}],"logo_url":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FTribe-logo-1603774847.png","sub_heading":{"sub_heading_text":"Join TriBe to enjoy","sub_heading_style":{"fontFamily":"montserrat-regular","fontSize":"11px","color":"rgba(255, 255, 255, 0.7)"},"benefits":[["Guaranteed Savings","Free Shipping","Early Access"]],"benefit_style":{"fontFamily":"montserrat","fontSize":"11px","color":"white"}},"background_image_url":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fline-tribe-component-1603774846.png","products":[{"product_size_id":557307,"name":"3 Months","price":199,"old_price":299,"checked":true,"cta_text":"Get 3 Months TriBe","style":{"backgroundColor":"#fdd835","color":"white","fontFamily":"montserrat-bold"},"tags":{"text":"Popular","style":{"backgroundColor":"#1da25b","color":"white"}}}],"cta_details":{"backgroundColor":"#42a2a2","color":"white"},"auto_renewal_details":{"text":"Your Membership now gets automatically renewed on the last day of active plan.","image_url":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Frefresh-1-copy-2-2x-1621349564.png","cancel_text":"Cancel anytime","know_more_text":"Know more"},"about_auto_renewal":{"header":"About Auto-Renewal","values":[{"image_url":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fgroup-17-2x-1621360784.png","text":"Currently available only on purchase of TriBe Membership via \u003Cstrong\u003EUPI payment\u003C\u002Fstrong\u003E"},{"image_url":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Ftick-mark-2x-1621360754.png","text":"Account will be charged on the last day of your active plan"},{"image_url":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fgroup-16-2x-1621360723.png","text":"Renewed plan will be same as the latest active plan and cannot be changed"},{"image_url":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fcancel-2-2x-1621360686.png","text":"Cancel auto-renewal \u003Cstrong\u003Eanytime\u003C\u002Fstrong\u003E from your TriBe Membership page"}]},"tribe_flow_data":{"join_tribe":{"heading":"Join Bewakoof TriBe for just","sub_heading":"We want you to never miss out on best deals.","only":"only","amount":199,"button_txt":"Join Tribe","arrow_img":"https:\u002F\u002Fimages.bewakoof.com\u002Ftribe\u002FArrow.svg","close_img":"https:\u002F\u002Fimages.bewakoof.com\u002Ftribe\u002FXCircle.svg"},"cart_popup":{"know_more":"KNOW MORE","know_more_action":"\u002Ftribe","plan_select":"Select Your Plan","sub_txt":"You get the discounted price for items in your bag when you check out with Tribe Membership","btn_txt":"Swipe to Add","background_img":"https:\u002F\u002Fimages.bewakoof.com\u002Ftribe\u002FyellowBackground.svg","arrow_img":"https:\u002F\u002Fimages.bewakoof.com\u002Ftribe\u002FCaretRight.svg","pdp_head_question":"You know what's awesome?","pdp_head_answer":"You get the discounted price for items in your bag when you check out with Tribe Membership"},"awesome_nudge":{"awesome_txt":"Awesome!","heading":"You made a great decision","sub_heading":"Your Tribe Membership has been added to the bag","btn_txt":"continue shopping","btn_img":"https:\u002F\u002Fimages.bewakoof.com\u002Ftribe\u002Fcontinue_shopping_btn.png","background_img":"https:\u002F\u002Fimages.bewakoof.com\u002Ftribe\u002FtribeAwesomeBack.png","awesome_gif":"https:\u002F\u002Fimages.bewakoof.com\u002Ftribe\u002FtribeAwesomeGif.gif"},"tribe_added":{"heading":"You have already added TriBe to your bag","sub_heading":"Checkout with TriBe Plan and we will make sure you get the discounts","icon":"https:\u002F\u002Fimages.bewakoof.com\u002Ftribe\u002FtribeMember.svg"},"tribe_toggle":{"tribe_logo":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Ftxt-tribe-logo-v1.png","toggle_on":"https:\u002F\u002Fimages.bewakoof.com\u002Ftribe\u002Ftoggle_active.png","toggle_off":"https:\u002F\u002Fimages.bewakoof.com\u002Ftribe\u002Ftoggle_inactive.png","members":"Exclusive","non_members":"Prices OFF"},"tap_to_see":{"tap_txt":"Tap to see Tribe Prices","background_img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Ftap-to-see-bg-v1.png"},"product_offer":{"offer_txt":"\u003Cp\u003ETri\u003Cspan\u003EBe\u003C\u002Fspan\u003E\u003C\u002Fp\u003E Price","offer_sub_txt":"Add TriBe to cart to claim discount","offer_button_txt":"Get TriBe","offer_arrow_icon":"https:\u002F\u002Fimages.bewakoof.com\u002Ftribe\u002FArrow.svg"},"tribe_saving":{"heading":"Wohoo! you are saving extra on this item with TriBe","ragular_price":"Regular Price","saving_icon":"https:\u002F\u002Fimages.bewakoof.com\u002Ftribe\u002FtribeSaving.svg"},"tribe_added_nudge":{"header_title":"Tri\u003Cspan\u003EBe\u003C\u002Fspan\u003E","header_subtitle":"for plan months","thanks_header":"Awesome ! Let the savings begin","thanks_subheader":"TriBe has been added to your bag","icon_close":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-mb-f-cross.svg","icon_check_bubble":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-check-bubble.svg","partition_img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-tribe-partition.svg"}},"payment_trust":{"display_config":{"pdp":{"show_mobile":false,"show_desktop":false},"plp":{"show_mobile":false,"show_desktop":false,"row_count":3},"cart":{"show_mobile":true,"show_desktop":true}},"image_desktop":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fpayment-trust-banner-desktop.svg","image_mobile":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FPayment-trust-banner.svg","custom_image_desktop":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-desktop-payment-trust-banner-v1.png","custom_image_mobile":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-web-cart-payment-trust-banner-v1.png"}},"updated_at":1723034445},"loyalty_page":{"value":{"lazyLoad":"true,","offset":100,"metaTitle":"Bewakoof TriBe Membership Offer | Never Pay Full Price - Bewakoof","metaDescription":"Become a TriBe Member and Get member only discount, priority customer support, exclusive collections and early access to our exclusive products. Free Shipping, COD Available.","store_images":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002F","topBanner":{"heading":"Introducing","desktop":"logo-tribe-white.png","mobile":"logo-tribe-white.png","subHeading":"We promise that you will never pay full price and stay trendy.","button":"JOIN TODAY","alt":"Tribe Logo"},"secondBanner":{"desktop":"tribe-revised-1569866376.jpg","mobile":"tribe-revised-1569866376.jpg","alt":"Tribe Logo"},"pickaplan":{"heading":"Pick A Plan"},"whySection":{"desktop":"group-5-2x-1564994888.png","mobile":"group-5-2x-1564994888.png","alt":"Tribe Logo"},"whySectionold":{"heading":"Why join our TriBe?","reasons":[{"text":"Member Special Pricing","desktop":"special-price-icon-1564489815.png","mobile":"special-price-icon-1564489815.png","title":"Color Of The Month Banner - Color palette","alt":"Color Of The Month Banner - Color palette at Bewakoof.com"},{"text":"Priority Shipping & Support","desktop":"shipment-icon-1564489815.png","mobile":"shipment-icon-1564489815.png","title":"Color Of The Month Banner - Color palette","alt":"Color Of The Month Banner - Color palette at Bewakoof.com"},{"text":"Exclusive Collections & Early Access","desktop":"shopping-bag-icon-1564489816.png","mobile":"shopping-bag-icon-1564489816.png","title":"Color Of The Month Banner - Color palette","alt":"Color Of The Month Banner - Color palette at Bewakoof.com"}]},"memberOnly":{"heading":"Member Only Discounts","desktop":"special-price-icon-1564489815.png","mobile":"special-price-icon-1564489815.png","alt":"Tribe Logo"},"savings":{"heading":"TriBe savings","desktop":"price-comp--1564480272.gif","mobile":"price-comp--1564480272.gif","alt":"Tribe Logo"},"offersBox":null,"otherBenefitsBox":{"desktop":"plus-sign-2x.png","mobile":"plus-sign-2x.png","alt":"Tribe Logo","heading":"Other Benefits","pointers":["Free Shipping on All Orders","Exclusive Collections & Early Access"]},"faqs":{"heading":"Frequently Asked Questions","list":[{"question":"How do I become a TriBe member?","answer":"Joining the TriBe is simple. Follow the link given below and simply add your TriBe membership plan to your cart. Proceed to make your payment online. Your TriBe membership will be activated once your payment is successful. You will receive a welcome email confirming your membership.\u003Cbr\u002F\u003E\u003Cbr\u002F\u003E\u003Ca href='\u002Ftribe'\u003EJoin the TriBe\u003C\u002Fa\u003E"},{"question":"Can I upgrade my TriBe Membership plan?","answer":"Currently we do not have an upgrade option but you can simply renew your TriBe membership for a longer term at the time of renewal."},{"question":"Can I cancel my TriBe membership?","answer":"You can opt out of the TriBe any time. However, please note that we do not offer any refunds on the TriBe membership itself."},{"question":"What is the free shipping benefit available with the Tribe membership?","answer":"You'll get free shipping on each & every order you place with us as an exclusive benefit with your Tribe membership. Awesome, right?"},{"question":"How do I get the TriBe member prices on products?","answer":"Once you are a TriBe member the special pricing is automatically applied to your bag. Please ensure that you are logged in from the registered member account."},{"question":"Can I use COD as a TriBe member?","answer":"Yes, you can use COD to purchase your favourite products unless otherwise indicated.\u003Cbr\u002F\u003E\u003Cbr\u002F\u003EPlease note that while purchasing the TriBe membership itself you will need to make your payment online and COD will not be applicable on that particular order."},{"question":"Can I use other promo codes with my TriBe membership?","answer":"Our team will communicate special promo codes for members as and when they are available."},{"question":"Will my TriBe membership auto renew?","answer":"No, currently we do not have an auto renew option for our TriBe memberships."},{"question":"Do I need to save my card details with Bewakoof to become a TriBe member?","answer":"No, you do not need to save a card with us to become a TriBe member. However, please note that you will have to pay online while purchasing the TriBe membership itself. Subsequent orders can be paid online or as COD."}]}},"updated_at":1610595946},"campaign_offers":null,"disclaimer":{"value":{"html":"\u003Cdiv style='line-height: normal; background: #ffecd3; border: 1px solid #ffd9a6; border-radius: 4px; padding: 10px; position: relative; float: left; font-size: 10px; margin-bottom: 10;'\u003E\u003Cimg style='float: left; width: 20px; margin-right: 6px;' src='https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fwarning-2x.png' \u002F\u003E\u003Cdiv style='float: left; font-family: montserrat-bold, sans-serif; width: 90%;margin: 0;'\u003E\u003Ch6 style='margin: 0;font-size: 10px;'\u003ECaution:\u003C\u002Fh6\u003E\u003Cp style='font-family: montserrat, sans-serif; margin: 0; padding-top: 5px;'\u003EBewakoof.com employees will never ask for your credentials like \u003Cstrong style='font-family: montserrat-bold, sans-serif;'\u003EBewakoof password, OTP, Credit\u002FDebit card number\u003C\u002Fstrong\u003E and \u003Cstrong style='font-family: montserrat-bold, sans-serif;'\u003ECVV\u003C\u002Fstrong\u003E or any other confidential information. \u003Cstrong style='font-family: montserrat-bold, sans-serif;'\u003E\u003Cbr \u002F\u003EPlease do not share these details with anyone.\u003C\u002Fstrong\u003E\u003C\u002Fp\u003E\u003C\u002Fdiv\u003E\u003C\u002Fdiv\u003E"},"updated_at":1566391662},"facebook_likes":{"value":{"count":"4.7M"},"updated_at":1577442275},"instagram_count":{"value":{"count":"1M"},"updated_at":1577442361},"coin_filters_urls":{"value":{"title":"Only show products with Bewakoof Coins applicable","filters":{"filter":null},"tooltip":"\u003Cdiv\u003E\u003Ch3 style='margin-bottom:10px'\u003ERedeem Bewakoof Coins\u003C\u002Fh3\u003E\u003Chr style='background-color: #fdd835; border: 0.5px solid #fdd835; width: 105px; float :left; display: block; margin:0; box-shadow: none'\u003E\u003Cbr\u002F\u003E\u003Cspan style='font-family: montserrat; color: rgba(0, 0, 0, 0.8); line-height: 14px; letter-spacing: 0.16px; font-size: 11px; margin-bottom:10px;'\u003EEnable this option to only see products on which you can redeem your Bewakoof Coins.\u003C\u002Fspan\u003E\u003Cbr\u002F\u003E\u003Cbr\u002F\u003E\u003Cspan style='font-family: montserrat; color: rgba(0, 0, 0, 0.8); line-height: 14px; letter-spacing: 0.16px; font-size: 11px; margin-top: 14px;'\u003ELook for the\u003Cimg src='https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fb-coin-gold-3x.png' alt='info' style='width:16px; vertical-align:bottom;'\u003E on the products to identify which products are eligible for Bewakoof Coins redemption.\u003C\u002Fspan\u003E\u003C\u002Fdiv\u003E","web_tooltip":"\u003Cdiv\u003E\u003Cspan style='font-family: montserrat; color: rgba(0, 0, 0, 0.8); line-height: 14px; letter-spacing: 0.16px; font-size: 11px; margin-bottom:10px;'\u003EEnable this option to only see products on which you can redeem your Bewakoof Coins.\u003C\u002Fspan\u003E\u003Cbr\u002F\u003E\u003Cbr\u002F\u003E\u003Cspan style='font-family: montserrat; color: rgba(0, 0, 0, 0.8); line-height: 14px; letter-spacing: 0.16px; font-size: 11px; margin-top: 14px;'\u003ELook for the\u003Cimg src='https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fb-coin-gold-3x.png' alt='info' style='width:16px; vertical-align:bottom;'\u003E on the products to identify which products are eligible for Bewakoof Coins redemption.\u003C\u002Fspan\u003E\u003C\u002Fdiv\u003E","conditions":{"whitelisted_urls":[],"blacklisted_urls":["design-of-the-day","factory-outlet-men","factory-outlet-women","the-factory-outlet","lucky-size","last-sizes-left-for-women","last-sizes-left-for-men","bewakoof-coins-collection","bewakoof-coins-collection-for-men","bewakoof-coins-collection-for-women","men-small-t-shirts","men-medium-t-shirts","men-large-t-shirts","men-xl-t-shirts","men-xxl-t-shirts","men-3xl-t-shirts","official-collaborations-collection\u002Fgender-men","official-collaborations-collection\u002Fgender-women","women-small-t-shirts","women-medium-t-shirts","women-large-t-shirts","women-xl-t-shirts","women-xxl-t-shirts","women-3xl-t-shirts"],"default_enabled":true,"min_wallet_amount":1,"max_wallet_amount":1000,"min_product_length":3}},"updated_at":1604134586},"communications":{"value":{"bewakoof_coins":{"icon":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fb-coin-gold-3x.png","title":"What are Bewakoof coins?","sub_title":"Bewakoof Coins can be used while shopping on non-discounted products only.","button":{"txt":"Continue Shopping","url":"https:\u002F\u002Fwww.bewakoof.com"}},"whatsapp_toggle":{"text":"I want to receive order updates on Whatsapp","information_text":"Allow us to send updates via WhatsApp for order related communications. \u003Cbr\u002F\u003E \u003Cb\u003EWe do not use WhatsApp for promotional purposes\u003C\u002Fb\u003E","enabled":true}},"updated_at":1596630191},"mobile_covers":{"value":{"title":"Mobile Covers","object_type":"mobile covers","exclude":"","is_mobile_cover":true,"image":"landing-page-mobile-box-1558174497.jpg","right_imgs":[{"src":"mobile-cover-dropdown-box-1558161466.jpg","url":"mobile-covers-india"}],"url":"mobile-covers-india","children":[{"title":"POPULAR","children":[{"title":"Xiaomi","url":"mobile-covers-india\u002Fxiaomi-cases-back-covers","is_new":"NEW","page":true,"children":[{"title":"Xiaomi Poco M2 Pro","url":"xiaomi-poco-m2-pro-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Xiaomi Redmi 8A Dual","url":"xiaomi-redmi-8a-dual-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Xiaomi Redmi 9 Prime","url":"xiaomi-redmi-9-prime-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Xiaomi Redmi 9A","url":"xiaomi-redmi-9a-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Xiaomi Redmi Note 9","url":"xiaomi-redmi-note-9-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Xiaomi Redmi Note 9 Pro Max","url":"xiaomi-redmi-note-9-pro-max-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Xiaomi Redmi Note 9 Pro","url":"xiaomi-redmi-note-9-pro-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Xiaomi Poco X2","url":"xiaomi-poco-x2-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Xiaomi Redmi Note 8 Pro","url":"xiaomi-redmi-note-8-pro-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Redmi Note 8","url":"xiaomi-redmi-note-8-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Redmi 8A","url":"xiaomi-redmi-8a-back-covers-cases","params":{"qf":false}},{"title":"Mi A3","url":"xiaomi-mi-a3-back-covers-cases","params":{"qf":false}},{"title":"Redmi Note 7s","url":"xiaomi-redmi-note-7-s-back-covers-cases","params":{"qf":false}},{"title":"Redmi Note 7 Pro","url":"xiaomi-redmi-note-7-pro-back-covers-cases","params":{"qf":false}},{"title":"Redmi Note 6 Pro","url":"xiaomi-redmi-note-6-pro-back-covers-cases","params":{"qf":false}},{"title":"Poco F1","url":"xiaomi-poco-f1-back-covers-cases","params":{"qf":false}},{"title":"Redmi 6 Pro","url":"xiaomi-redmi-6-pro-back-covers-cases","params":{"qf":false}},{"title":"Redmi Note 5","url":"xiaomi-redmi-note-5-back-covers-cases","params":{"qf":false}}]},{"title":"Oneplus","url":"mobile-covers-india\u002Foneplus-cases-back-covers","is_new":"NEW","page":true,"children":[{"title":"OnePlus 8T","url":"oneplus-8t-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Oneplus 8 Pro","url":"oneplus-8-pro-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Oneplus Nord","url":"oneplus-nord-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Oneplus 8","url":"oneplus-8-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Oneplus 7T Pro","url":"oneplus-7t-pro-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Oneplus 7T","url":"oneplus-7t-back-covers-cases","params":{"qf":false}},{"title":"Oneplus 6","url":"oneplus-6-back-covers-cases","params":{"qf":false}}]},{"title":"Apple","url":"mobile-covers-india\u002Fapple-cases-back-covers","is_new":"NEW","page":true,"children":[{"title":"iPhone 12","url":"iphone-12-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone 12 Mini","url":"iphone-12-mini-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone 12 Pro Max","url":"iphone-12-pro-max-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone 11 Pro","url":"iphone-11-pro-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone 11 Pro Max","url":"iphone-11-pro-max-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone SE 2020","url":"iphone-se-2020-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone 11","url":"iphone-11-back-covers-cases","params":{"qf":false}},{"title":"iPhone XS MAX","url":"iphone-xs-max-back-covers-cases","params":{"qf":false}},{"title":"iPhone XS","url":"iphone-xs-back-covers-cases","params":{"qf":false}},{"title":"iPhone XR","url":"iphone-xr-back-covers-cases","params":{"qf":false}}]},{"title":"Samsung","url":"mobile-covers-india\u002Fsamsung-cases-back-covers","is_new":"NEW","page":true,"children":[{"title":"Samsung Galaxy F41","url":"samsung-galaxy-f41-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Samsung Galaxy M51","url":"samsung-galaxy-m51-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Samsung Galaxy M01","url":"samsung-galaxy-m01-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Samsung Galaxy M11","url":"samsung-galaxy-m11-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Samsung Galaxy A21s","url":"samsung-galaxy-a21s-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Samsung Galaxy A31","url":"samsung-galaxy-a31-back-cover-cases","is_new":"NEW","params":{"qf":false}},{"title":"Samsung Galaxy A71","url":"samsung-galaxy-a71-back-cover-cases","is_new":"NEW","params":{"qf":false}},{"title":"Samsung Galaxy Note 10 Lite","url":"samsung-galaxy-note-10-lite-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Samsung Galaxy M31S","url":"samsung-galaxy-m31s-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Samsung Galaxy A30","url":"samsung-galaxy-a30-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Samsung Galaxy A51","url":"samsung-galaxy-a51-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Samsung Galaxy A70","url":"samsung-galaxy-a70-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Samsung Galaxy M31","url":"samsung-galaxy-m31-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Samsung Galaxy M30s","url":"samsung-galaxy-m30s-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A10","url":"samsung-galaxy-a10-back-covers-cases","params":{"qf":false}},{"title":"Galaxy A50","url":"samsung-a50-back-covers-cases","params":{"qf":false}},{"title":"Galaxy M20","url":"samsung-galaxy-m20-back-covers-cases","params":{"qf":false}}]},{"title":"Realme","url":"mobile-covers-india\u002Frealme-cases-back-covers","is_new":"NEW","page":true,"children":[{"title":"Realme 7","url":"realme-7-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Realme 7 PRO","url":"realme-7-pro-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Realme 6i","url":"realme-6i-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Realme X2","url":"realme-x2-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Realme 6 Pro","url":"realme-6-pro-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Realme 6","url":"realme-6-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Realme XT","url":"realme-xt-back-covers-cases","params":{"qf":false}},{"title":"Realme 5 Pro","url":"realme-5-pro-back-covers-cases","params":{"qf":false}},{"title":"Realme 5","url":"realme-5-back-covers-cases","params":{"qf":false}},{"title":"Realme 3 Pro","url":"realme-3-pro-back-covers-cases","params":{"qf":false}},{"title":"Realme X","url":"realme-x-back-covers-cases","params":{"qf":false}}]},{"title":"Vivo","url":"mobile-covers-india\u002Fvivo-cases-back-covers","is_new":"NEW","page":true,"children":[{"title":"Vivo V19","url":"vivo-v19-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Vivo Y50","url":"vivo-y50-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Vivo S1 Pro","url":"vivo-s1-pro-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Vivo V17","url":"vivo-v17-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Vivo V9","url":"vivo-v9-back-covers-cases","params":{"qf":false}},{"title":"Vivo Z1x","url":"vivo-z1x-back-covers-cases","params":{"qf":false}},{"title":"Vivo S1","url":"vivo-s1-back-covers-cases","params":{"qf":false}},{"title":"Vivo Y91","url":"vivo-y91-back-covers-cases","params":{"qf":false}},{"title":"Vivo z1 Pro","url":"vivo-z-1-pro-back-covers-cases","params":{"qf":false}},{"title":"Vivo Y17","url":"vivo-y-17-back-covers-cases","params":{"qf":false}},{"title":"Vivo Y91i","url":"vivo-y91i-back-covers-cases","params":{"qf":false}},{"title":"Vivo V15","url":"vivo-v15-back-covers-cases","params":{"qf":false}},{"title":"Vivo V5","url":"vivo-v5-back-cover-cases","params":{"qf":false}},{"title":"Vivo V15 Pro","url":"vivo-v15-pro-back-covers-cases","params":{"qf":false}}]}]},{"title":"OTHER BRANDS","children":[{"title":"Oppo","url":"mobile-covers-india\u002Foppo-cases-back-covers","is_new":"NEW","page":true,"children":[{"title":"Oppo F15","url":"oppo-f15-back-cover-cases","is_new":"NEW","params":{"qf":false}},{"title":"Oppo A9 2020","url":"oppo-a9-2020-back-covers-cases","params":{"qf":false}},{"title":"Oppo A5 2020","url":"oppo-a5-2020-back-covers-cases","params":{"qf":false}},{"title":"Oppo Reno2","url":"oppo-reno-2-back-covers-cases","params":{"qf":false}},{"title":"Oppo F11","url":"oppo-f-11-back-covers-cases","params":{"qf":false}},{"title":"Oppo A7","url":"oppo-a7-back-covers-cases","params":{"qf":false}},{"title":"Oppo A5S","url":"oppo-a5s-back-covers-cases","params":{"qf":false}},{"title":"Oppo A3S","url":"oppo-a3s-back-covers-cases","params":{"qf":false}},{"title":"Oppo F11 Pro","url":"oppo-f11-pro-back-covers-cases","params":{"qf":false}}]}]}]},"updated_at":1617202444},"international_config":{"preferred_location":"IN","is_international_user":false,"all_countries":{"countries":{"IN":{"country":"India","logo":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Findia-flag-round-1639566913.png","flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-india-sm.png","pdp_flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-pdp-india.png","global_flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Findia-flag-truck-1639566913.png","code":"IN","phone_code":"+91"},"AE":{"country":"UAE","logo":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fuae-flag-round-1639566914.png","flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fuae-flag-truck-1639566914.png","pdp_flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-pdp-uae.png","global_flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Findia-flag-truck-1639566913.png","code":"AE","phone_code":"+971"},"US":{"country":"USA","logo":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fusa-flag-round.png","flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FUS.png","pdp_flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-pdp-usa.png","global_flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Findia-flag-truck-1639566913.png","code":"US","phone_code":"+1"},"CA":{"country":"Canada","logo":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fcanada-flag-round.png","flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FCANADA.png","pdp_flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-pdp-canada.png","global_flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Findia-flag-truck-1639566913.png","code":"CA","phone_code":"+1"},"TH":{"country":"Thailand","logo":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fthailand-flag-round.png","flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FCANADA.png","pdp_flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-pdp-thailand.png","global_flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Findia-flag-truck-1639566913.png","code":"TH","phone_code":"+66"},"MY":{"country":"Malaysia","logo":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fmalaysia-flag-round.png","flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FCANADA.png","pdp_flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-pdp-malaysia.png","global_flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Findia-flag-truck-1639566913.png","code":"MY","phone_code":"+60"},"AU":{"country":"Australia","logo":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Faustrialia-flag-round.png","flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FCANADA.png","pdp_flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-pdp-australia.png","global_flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Findia-flag-truck-1639566913.png","code":"AU","phone_code":"+61"},"OM":{"country":"Oman","logo":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Foman-flag-round.png","flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fuae-flag-truck-1639566914.png","pdp_flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-pdp-oman.png","global_flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Findia-flag-truck-1639566913.png","code":"OM","phone_code":"+968"},"QA":{"country":"Qatar","logo":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fqatar-flag-round.png","flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fuae-flag-truck-1639566914.png","pdp_flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-pdp-qatar.png","global_flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Findia-flag-truck-1639566913.png","code":"QA","phone_code":"+974"},"SA":{"country":"Saudi Arabia","logo":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fsaudi-arabia-flag-round.png","flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fuae-flag-truck-1639566914.png","pdp_flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-pdp-saudi-arabia.png","global_flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Findia-flag-truck-1639566913.png","code":"SA","phone_code":"+966"},"SG":{"country":"Singapore","logo":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fsingapore-flag-round.png","flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fuae-flag-truck-1639566914.png","pdp_flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-pdp-singapore.png","global_flag":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Findia-flag-truck-1639566913.png","code":"SG","phone_code":"+65"}},"popupData":{"popupIcon":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fonline-shopping-1632488124.svg","popupTitle":"I'm shopping for delivery in"},"otherCountryData":{"text":"Looks like we don't deliver to your country, yet. Tell us where you'd want Bewakoof to reach :)","thanksMsg":"Thanks for the feedback! We hope to serve you soon :)"},"deliveryNudge":{"allow_country_change":true,"cta":"Change","backgroundColor":"#e8f3e5"},"login_banner":{"IN":{"mobile_site":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Frm-login-mobile-v2.jpg","desktop":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fgroup-19-1617704502.png","app":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Frm-login-mobile-v1.jpg"},"AE":{"mobile_site":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Flogin-banner-revised-l1-1631021843.jpg","desktop":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fgroup-19-1617704502.png","app":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Flogin-banner-revised-l1-1631021843.jpg"}},"shipping_strip":{"url":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fmob-banner-global-shipping.jpg","height":32,"enabled":false}}},"bottom_navigation":{"value":{"tabs":[{"imageSrc":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fhome-3x-1635760383.png","defaultImg":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-home-tab-default-v1.svg","activeImg":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-web-home-tab-selected-v1.svg","tabTitle":"Home","trackingTag":"home_bn","href":"\u002F"},{"imageSrc":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fcategories-3x-1635760335.png","defaultImg":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-web-tab-category-default-v1.svg","activeImg":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-web-tab-category-selected-v1.svg","tabTitle":"Categories","trackingTag":"categories_bn","href":"\u002Fcategories"},{"imageSrc":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FExplore-selected-Artboard-10-1637645044.png","defaultImg":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-web-tab-explore-default-v1.svg","activeImg":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-web-tab-explore-selected-v1.svg","tabTitle":"Explore","trackingTag":"explore_bn","href":"\u002Fexplore"},{"imageSrc":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FProfile-icon-1635926346.png","defaultImg":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-web-tab-profile-default-v1.svg","activeImg":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-web-tab-profile-selected-v1.svg","tabTitle":"Profile","trackingTag":"account_bn","href":"\u002Fmyaccount"}],"RNTabs":[{"imageSrc":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002F005-home-2x-1598588800.png","tabTitle":"Home","trackingTag":"home_bn","href":"\u002F","isLoginRequired":false,"hideRNMainHeader":false,"platforms":["ios","android"],"key":"home","bottom_nav_bg":"#FFF","selected":{"color":"#000","opacity":1,"imgSrc":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-bwkf-tab-home-blue.png","fontColor":"#000"},"non_selected":{"color":"#000","opacity":0.5,"imgSrc":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-bwkf-tab-home.png","fontColor":"#808080"},"url":"","isWebView":true},{"imageSrc":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002F006-menu-2x-1598588827.png","tabTitle":"Categories","trackingTag":"categories_bn","href":"\u002Fcategories","isLoginRequired":false,"hideRNMainHeader":false,"platforms":["ios","android"],"key":"categories","bottom_nav_bg":"#FFF","selected":{"color":"#000","opacity":1,"imgSrc":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-bwkf-tab-categories-blue.png","fontColor":"#000"},"non_selected":{"color":"#000","opacity":0.5,"imgSrc":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-bwkf-tab-categories.png","fontColor":"#808080"},"url":"categories","isWebView":true},{"imageSrc":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002F004-heart-2x-1598588623.png","tabTitle":"Wishlist","trackingTag":"wishlist_bn","href":"\u002Fwishlist"},{"imageSrc":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002F009-user-2x-1598588872.png","tabTitle":"Profile","trackingTag":"account_bn","href":"\u002Fmyaccount","isLoginRequired":true,"hideRNMainHeader":false,"platforms":["ios","android"],"key":"profile","bottom_nav_bg":"#FFF","selected":{"color":"#000","opacity":1,"imgSrc":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-bwkf-tab-profile-blue.png","fontColor":"#000"},"non_selected":{"color":"#000","opacity":0.5,"imgSrc":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-bwkf-tab-profile.png","fontColor":"#808080"},"url":"myaccount","isWebView":true}],"BShotsTabs":[{"imageSrc":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fbshots-nav-home-unselected-1633698423.png","selectedimageSrc":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fbshots-nav-home-selected-1633698729.png","tabTitle":"Home","key":"home","trackingTag":"home_bn","isSelected":true,"href":"\u002Fbshots","bottom_nav_bg":"#1f0926","selected":{"color":"#FFF","opacity":1},"non_selected":{"color":"#7e7e7e","opacity":1}},{"imageSrc":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fbshots-nav-shop-unselected-1633701083.png","selectedimageSrc":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fbshots-nav-shop-selected-1633700959.png","tabTitle":"Shop","trackingTag":"shop_bn","key":"shop","href":"\u002Fshop\u002Fcampaign\u002Fbshots-shop","bottom_nav_bg":"white","selected":{"color":"#1f0926","opacity":1},"non_selected":{"color":"#7e7e7e","opacity":1}},{"imageSrc":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fbshots-nav-profile-unselected-1633698834.png","selectedimageSrc":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fbshots-nav-profile-selected-1633698608.png","tabTitle":"Account","key":"account","trackingTag":"account_bn","href":"\u002Fmyaccount","isLoginRequire":true,"bottom_nav_bg":"white","selected":{"color":"#1f0926","opacity":1},"non_selected":{"color":"#7e7e7e","opacity":1}}],"version":"v1"},"updated_at":1718091293},"flash_sale":{"value":{"flash_sale_widget":{"enabled":true,"urls":["flash-sale"],"widget_product_ids":[545573,417959,493240,364956,512926,467455,493175,479819,536331,536336,536347],"mobile":[{"components":[{"name":"FlashSaleWidget","props":{"style":"::host{\n\n}\n::host img{\npadding:0;\n}","enabled":true,"bgImage":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fflash-sale-widget-03-1685944946.png","timerBgImage":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-web-f-sale-deal-tag.png","height":231,"width":360,"flashSaleImg":"","discountImg":"","exploreTitle":"","exploreTitleColor":"Black","exploreLink":"","startTime":"2023-04-20T09:31:17.615Z","endTime":"2024-06-23T06:30:00.615Z","timerTextColor":"#FFFFFF","timerTextShadow":"1px 1px 0 green","saleTitle":"Discounted prices valid only for","saleTitleColor":"#000000","saleSubTitle":"*No returns applicable","saleSubTitleColor":"#000000","makeStickyOnScroll":true,"minimizeOnScroll":false,"stickyBgColor":"#f1f1f1 !important","stickyTimerColor":"#FFFFFF","stickyTimerTextShadow":"1px 1px 0 #ffffff"}}]}],"desktop":[{"components":[{"name":"FlashSaleWidget","props":{"style":"::host{\n\n}\n::host img{\nwidth:100%;padding:0;\n}","enabled":true,"bgImage":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fflash-sale-widget-03-1685944946.png","height":400,"width":1440,"flashSaleImg":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-web-f-sale-logo.png","discountImg":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-web-f-s-sale-logo.png","exploreTitle":"","exploreTitleColor":"black","exploreLink":"","timerBgImage":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-web-f-sale-deal-tag.png","startTime":"2023-04-20T09:31:17.615Z","endTime":"2024-06-23T06:30:00.615Z","timerTextColor":"#fffff","timerTextShadow":"1px 1px 0 yellow","saleTitle":"Discounted prices valid only for","saleTitleColor":"#ffffff","saleSubTitle":"*No returns applicable","saleSubTitleColor":"#ffffff","makeStickyOnScroll":true,"minimizeOnScroll":false}}]}],"app":[]},"flash_sale_data":{"startTime":"2023-04-20T09:31:17.615Z","endTime":"2024-06-23T06:30:00.615Z","show_timer":true,"show_flash_tag":true,"category_page":{"title":"Flash Sale Price","show_timer":true,"timer_title":"Ends in"},"pdp_page":{"title":"Flash Sale Price Ends In","flash_icon":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002Fic-pdp-flash-timer-logo.png","show_timer":true,"timer_title":"Ends in"},"cart_page":{"title":"Flash Sale Price","show_timer":true,"timer_title":"Ends in"}}},"updated_at":1719209703},"aicanvas":{"value":{"images":["https:\u002F\u002Fimages.bewakoof.com\u002Fcanvas\u002Faicanvas-01.png","https:\u002F\u002Fimages.bewakoof.com\u002Fcanvas\u002Faicanvas-02.png","https:\u002F\u002Fimages.bewakoof.com\u002Fcanvas\u002Faicanvas-03.png","https:\u002F\u002Fimages.bewakoof.com\u002Fcanvas\u002Faicanvas-04.png"],"product_mapping":{"men":{"regular":596648,"oversized":620625},"women":{"regular":605545,"oversized":625974,"boyfriend":627995}},"styleHeading":[{"heading":"Background","value":"background"},{"heading":"Color Palette","value":"color_palette"}],"background":[{"title":"No Background","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FNo-Background.webp","index":1},{"title":"Mountainous","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FMountainous.webp","index":2},{"title":"Forest","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FForest.webp","index":3},{"title":"Beach","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FBeach.webp","index":4},{"title":"Desert","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FDesert.webp","index":5},{"title":"Underwater Coral Reef","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FUnderwater-Coral-Reef.webp","index":6},{"title":"City Skyline","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FCity-Skyline.webp","index":7},{"title":"Oldtown","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FOldtown.webp","index":8},{"title":"Futuristic","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FFuturistic.webp","index":9},{"title":"Park","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FPark.webp","index":10},{"title":"Ancient ruins","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FAncient-ruins.webp","index":11},{"title":"Sunny countryside","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FSunny-countryside.webp","index":12},{"title":"Tropical Island","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FTropical-Island.webp","index":13}],"color_palette":[{"title":"No Color","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FNo-color.webp","index":1},{"title":"Black and White","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FBlack---White.webp","index":2},{"title":"Bright and Bold","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FBright---Bold.webp","index":3},{"title":"Cool Blues and Greens","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FCool-Blues---Greens.webp","index":4},{"title":"Desert and Hues","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FDesert-Hues.webp","index":5},{"title":"Earth Tones","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FEarth-Tones.webp","index":6},{"title":"Gold Silver and Bronze","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FGold--Silver---Bronze.webp","index":7},{"title":"Natural Greens","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FNatural-Greens.webp","index":8},{"title":"Neon and Vibrant","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FNeon-and-Vibrant.webp","index":9},{"title":"Ocean Blues","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FOcean-Blues.webp","index":10},{"title":"Pastel Tones","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FPastel-Tones.webp","index":11},{"title":"Rainbow Spectrum","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FRainbow-Spectrum.webp","index":12},{"title":"Primary Colors (Red, Yellow, Blue)","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FRed--yellow--blue.webp","index":13},{"title":"Sunset Shades","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FSunset-Shades.webp","index":14},{"title":"Warm Red & Oranges","img":"https:\u002F\u002Fimages.bewakoof.com\u002Fweb\u002FWarm-Red---Oranges.webp","index":15}],"user_limit":40,"acknowledgementText":"I understand that this AI Model might make mistakes and deliver inaccurate results. I take responsibility for the results generated, and confirm that it is an original image that does not violate the rights of any person, organization or entity.","promptPlaceholder":["Giraffe lounging on a beach chair with sunglasses and a coconut drink","Astronaut baking cookies in outer space"],"loaderQoutes":["A T-shirt is your chance to shout your quirks - without saying a word &#128523;","Your T-shirt is your personal billboard - keep it witty &#128540;","Let your T-shirt do the talking, so you can focus on better things &#128526;","With our custom T-shirts, make your wardrobe as unique as yourself &#129392;"],"promptTitle":"Enter Your Image Description Here","aiStylesTitle":"Add AI Effects","pdpTnC":["As the product is custom printed, the order cannot be returned, exchanged or canceled.","Only pre-paid orders will be accepted.","Images generated by the AI Model might be inaccurate","The customer takes responsibility for the images generated and used via prompts entered by them","The customer confirms that it is an original image that does not violate the rights of any person, organization or entity and does not contain images that violate the rights of children."],"x-user-emails":["mohammed.s@bewakoof.com","maheshkumaran112@gmail.com","manjunathts@gmail.com","anurag.g@bewakoof.com","anurock.pin2@gmail.com","sahil.m@bewakoof.com","aamir.a@bewakoof.com"],"x-user-limit":5000},"updated_at":1724178337},"pdp_attributes":{"value":{"backend_attributes_flag":"true","attributes":{"t-shirt":{"design":"Design","fit":"Fit","sleeve_length":"Sleeve Length","neck":"Neck","material":"Material","occasion":"Occasion","sleeve_style":"Sleeve Style","bottom_hem":"Hemline","fabric_care":"Wash Care","pack_of":"Pack Of"},"shirt":{"design":"Design","fit":"Fit","sleeve_length":"Sleeve Length","neck":"Neck","material":"Material","occasion":"Occasion","sleeve_style":"Sleeve Style","bottom_hem":"Hemline","fabric_care":"Wash Care","pack_of":"Pack Of"},"hoodies":{"design":"Design","fit":"Fit","sleeve_length":"Sleeve Length","neck":"Neck","material":"Material","occasion":"Occasion","sleeve_style":"Sleeve Style","bottom_hem":"Hemline","fabric_care":"Wash Care","pack_of":"Pack Of"},"top":{"design":"Design","fit":"Fit","sleeve_length":"Sleeve Length","neck":"Neck","material":"Material","occasion":"Occasion","sleeve_style":"Sleeve Style","bottom_hem":"Hemline","fabric_care":"Wash Care","pack_of":"Pack Of"},"jacket":{"design":"Design","fit":"Fit","sleeve_length":"Sleeve Length","neck":"Neck","material":"Material","occasion":"Occasion","sleeve_style":"Sleeve Style","bottom_hem":"Hemline","fabric_care":"Wash Care","pack_of":"Pack Of"},"sweatshirt":{"design":"Design","fit":"Fit","sleeve_length":"Sleeve Length","neck":"Neck","material":"Material","occasion":"Occasion","sleeve_style":"Sleeve Style","bottom_hem":"Hemline","fabric_care":"Wash Care","pack_of":"Pack Of"},"sweater":{"design":"Design","fit":"Fit","sleeve_length":"Sleeve Length","neck":"Neck","material":"Material","occasion":"Occasion","sleeve_style":"Sleeve Style","bottom_hem":"Hemline","fabric_care":"Wash Care","pack_of":"Pack Of"},"vest":{"design":"Design","fit":"Fit","sleeve_length":"Sleeve Length","neck":"Neck","material":"Material","occasion":"Occasion","sleeve_style":"Sleeve Style","bottom_hem":"Hemline","fabric_care":"Wash Care"},"kurtas":{"design":"Design","fit":"Fit","sleeve_length":"Sleeve Length","neck":"Neck","material":"Material","occasion":"Occasion","sleeve_style":"Sleeve Style","bottom_hem":"Hemline","fabric_care":"Wash Care"},"henleys":{"design":"Design","fit":"Fit","sleeve_length":"Sleeve Length","neck":"Neck","material":"Material","occasion":"Occasion","sleeve_style":"Sleeve Style","bottom_hem":"Hemline","fabric_care":"Wash Care"},"cargos":{"design":"Design","fit":"Fit","distress":"Distress","material":"Material","occasion":"Occasion","waist":"Waist Band","closure":"Closure","length":"Length","fabric_care":"Wash Care","pack_of":"Pack Of"},"joggers":{"design":"Design","fit":"Fit","distress":"Distress","material":"Material","occasion":"Occasion","waist":"Waist Band","closure":"Closure","length":"Length","fabric_care":"Wash Care","pack_of":"Pack Of"},"pyjama":{"design":"Design","fit":"Fit","distress":"Distress","material":"Material","occasion":"Occasion","waist":"Waist Band","closure":"Closure","length":"Length","fabric_care":"Wash Care","pack_of":"Pack Of"},"jeans":{"design":"Design","fit":"Fit","distress":"Distress","material":"Material","occasion":"Occasion","waist":"Waist Band","closure":"Closure","length":"Length","fabric_care":"Wash Care","pack_of":"Pack Of"},"shorts":{"design":"Design","fit":"Fit","distress":"Distress","material":"Material","occasion":"Occasion","waist":"Waist Band","closure":"Closure","length":"Length","fabric_care":"Wash Care","pack_of":"Pack Of"},"boxer":{"design":"Design","fit":"Fit","distress":"Distress","material":"Material","occasion":"Occasion","waist":"Waist Band","closure":"Closure","length":"Length","fabric_care":"Wash Care","pack_of":"Pack Of"},"trousers":{"design":"Design","fit":"Fit","distress":"Distress","material":"Material","occasion":"Occasion","waist":"Waist Band","closure":"Closure","length":"Length","fabric_care":"Wash Care","pack_of":"Pack Of"},"track_pant":{"design":"Design","fit":"Fit","distress":"Distress","material":"Material","occasion":"Occasion","waist":"Waist Band","closure":"Closure","length":"Length","fabric_care":"Wash Care","pack_of":"Pack Of"},"casual_pants":{"design":"Design","fit":"Fit","distress":"Distress","material":"Material","occasion":"Occasion","waist":"Waist Band","closure":"Closure","length":"Length","fabric_care":"Wash Care","pack_of":"Pack Of"},"pant":{"design":"Design","fit":"Fit","distress":"Distress","material":"Material","occasion":"Occasion","waist":"Waist Band","closure":"Closure","length":"Length","fabric_care":"Wash Care","pack_of":"Pack Of"},"flip_flops_&_sliders":{"design":"Design","fit":"Fit","fastening":"Fastening","material":"Material","occasion":"Occasion","ankle_height":"Ankle Height","toe_shape":"Toe Shape","insole":"Insole","sole_material":"Sole Material","fabric_care":"Wash Care"},"sliders":{"design":"Design","fit":"Fit","fastening":"Fastening","material":"Material","occasion":"Occasion","ankle_height":"Ankle Height","toe_shape":"Toe Shape","insole":"Insole","sole_material":"Sole Material","fabric_care":"Wash Care"},"clogs":{"design":"Design","fit":"Fit","fastening":"Fastening","material":"Material","occasion":"Occasion","ankle_height":"Ankle Height","toe_shape":"Toe Shape","insole":"Insole","sole_material":"Sole Material","fabric_care":"Wash Care"},"casual_shoes":{"design":"Design","fit":"Fit","fastening":"Fastening","material":"Material","occasion":"Occasion","ankle_height":"Ankle Height","toe_shape":"Toe Shape","insole":"Insole","sole_material":"Sole Material","fabric_care":"Wash Care"},"caps":{"design":"Design","material":"Material","occasion":"Occasion","fabric_care":"Wash Care"},"hat":{"design":"Design","material":"Material","occasion":"Occasion","fabric_care":"Wash Care"},"backpack":{"design":"Design","material":"Material","closure":"Closure","laptop_sleeve":"Laptop Sleeve","laptop_compatible_size":"Laptop Compatible Size","fabric_care":"Wash Care"},"sling_bag":{"design":"Design","material":"Material","closure":"Closure","laptop_sleeve":"Laptop Sleeve","laptop_compatible_size":"Laptop Compatible Size","fabric_care":"Wash Care"},"fanny_bag":{"design":"Design","material":"Material","closure":"Closure","laptop_sleeve":"Laptop Sleeve","laptop_compatible_size":"Laptop Compatible Size","fabric_care":"Wash Care"}}},"updated_at":1721025155},"faq_plp":{"value":{"faq_header":"Frequently asked questions","show_item_list":false,"data":[{"url":"men-loose-t-shirts","faq":[{"question":"What sizes are available for men's loose t-shirts at Bewakoof.com?","answer":"We offer a wide range of sizes for our men's loose t-shirts. Please refer to our size chart to find your perfect fit."},{"question":"Can I return or exchange a loose t-shirt if it doesn't fit?","answer":"Absolutely! We have a hassle-free return and exchange policy. If your loose t-shirt doesn't fit, you can easily return or exchange it as per our policy guidelines."},{"question":"Do you offer different colors and designs in men's loose t-shirts?","answer":"Yes, we offer a variety of colors and designs, including plain t-shirts for men, printed loose t-shirts, and more. Explore our collection to find your favorites."},{"question":"Are the loose t-shirts suitable for all seasons?","answer":"Our loose cotton t-shirts are made from breathable fabric, making them suitable for all seasons. Layer them up for cooler weather or wear them as is during warmer months."},{"question":"How should I wash my loose t-shirt to maintain its quality?","answer":"To maintain the quality of your loose t-shirt, wash it in cold water with similar colors and tumble dry on low. Avoid using bleach and do not dry clean. For specific care instructions, always check the label on your garment."},{"question":"Are there any offers or discounts available when buying men's loose t-shirts?","answer":"Yes, we often run offers and discounts on our products. Keep an eye on our website or sign up for our newsletter to stay updated on the latest deals for men's loose t-shirts and more."},{"question":"Is it possible to track my order after purchasing a loose t-shirt?","answer":"Absolutely! Once you've made a purchase, you will receive an order confirmation with a tracking number. You can use this number to track your order's progress until it arrives at your doorstep."},{"question":"Does Bewakoof.com offer loose t-shirts for men in sustainable or eco-friendly materials?","answer":"We are committed to sustainability and offer a selection of loose t-shirts for men made from eco-friendly materials. Look for our sustainable range to shop with an environmental conscience."},{"question":"How often does Bewakoof.com update its collection of men's loose t-shirts?","answer":"Our collection is constantly updated to ensure you have access to the latest trends and styles. Check back often to see new arrivals and seasonal updates to our range of men's loose t-shirts."}]},{"url":"custom-tshirts","faq":[{"question":"Can I create custom t-shirts on Bewakoof?","answer":"Yes, you can! We provide a platform where you can design your own t-shirts. Simply upload your design, choose your preferred t-shirt style and color, and well take care of the rest."},{"question":"Can I choose from pre-designed t-shirts?","answer":"Absolutely! We have a wide range of pre-designed t-shirts available for you to choose from. Our designs cater to various tastes and preferences, ensuring theres something for everyone."},{"question":"What is the difference between screen printing and digital printing?","answer":"Screen printing involves creating a stencil and using it to apply layers of ink on the t-shirt, making it ideal for bulk orders with fewer colors. Digital printing, on the other hand, uses a printer to directly apply ink onto the fabric, which is perfect for detailed designs with multiple colors and smaller orders."},{"question":"How durable are the prints on your t-shirts?","answer":"Our prints are highly durable and designed to withstand regular wear and washing. We use high-quality inks and advanced printing techniques to ensure the designs remain vibrant and intact over time."},{"question":"Are there any additional charges for custom t-shirt printing?","answer":"The cost of custom t-shirt printing depends on the complexity of the design, the number of colors used, and the quantity ordered. You can get an instant quote on our website by uploading your design and specifying your requirements."},{"question":"How do I know my t-shirt size?","answer":"We provide a detailed size chart for each t-shirt style on our website. You can refer to this chart to find the perfect fit. If youre still unsure, you can contact our customer support team for assistance."},{"question":"What file formats do you accept for custom t-shirt designs?","answer":"We accept various file formats including JPEG, PNG, and PDF. Ensure that the design is high resolution for the best printing results."},{"question":"Can I use copyrighted images for my custom t-shirt design?","answer":"No, we do not print designs that infringe on copyright laws. Please ensure that any images or designs you upload are either your own creations or you have the necessary permissions to use them."}]},{"url":"men-gym-joggers","faq":[{"question":"What materials are used in Bewakoof's men's track pants?","answer":"Our men's gym jogger pants are made from high-quality, moisture-wicking fabrics that ensure comfort and durability."},{"question":"How do I find the right size for my men gym joggers?","answer":"We provide a detailed size chart on our website to help you find the perfect fit. If you have any questions, our customer service team is always ready to assist."},{"question":"Are there any special care instructions for gym joggers?","answer":"To maintain the quality of your men's gym track pants, we recommend washing them in cold water and avoiding the use of bleach. Always check the care label for specific instructions."},{"question":"Are Bewakoof's men's gym joggers suitable for all types of workouts?","answer":"Yes, our gym joggers for men are designed to be versatile and suitable for various types of workouts, including running, weightlifting, yoga, and more. Their ergonomic design and moisture-wicking fabric make them ideal for any physical activity."},{"question":"Do Bewakoof's gym joggers for gents have pockets?","answer":"Yes, our gym joggers men come with convenient pockets to securely hold your essentials such as keys, phone, and wallet while you're on the go."}]},{"url":"white-pants-for-men","faq":[{"question":"Can I return or exchange my white pants for men if they don't fit?","answer":"Yes, we offer easy returns and exchanges. Please refer to our return policy for more information."},{"question":"How should I care for my men white pants to keep them looking new?","answer":"To maintain the pristine look of your white pants, wash them separately in cold water, use a mild detergent, and avoid bleach. Air drying is recommended to prevent shrinkage and maintain shape."},{"question":"Can white trousers be worn for formal occasions?","answer":"Absolutely! Men's white trousers can be styled for formal occasions by pairing them with a crisp shirt, blazer, and dress shoes. They offer a sophisticated and fresh look, especially suitable for summer events."},{"question":"Are there different fits available for white pants for men?","answer":"Yes, we offer various fits including slim fit, regular fit, and relaxed fit to cater to different style preferences and body types."},{"question":"What tops go well with white trousers?","answer":"White trousers for men are versatile and can be paired with a variety of tops including t-shirts, polos, button-down shirts, and sweaters. For a balanced look, consider pairing them with tops in contrasting colors."},{"question":"Is there a difference between white pants and white jeans?","answer":"Yes, white pants generally refer to trousers made from materials like cotton or linen, suitable for both casual and formal wear. White jeans are made from denim and are typically more casual."},{"question":"Can I wear white pants for men to the office?","answer":"Yes, white pants can be office-appropriate when styled correctly. Pair them with a formal shirt and blazer for a polished, professional look."}]},{"url":"men-cotton-joggers","faq":[{"question":"Do Bewakoof's cotton joggers have pockets?","answer":"Yes, our cotton joggers for men come with multiple pockets, providing ample space for your essentials."},{"question":"Are there any discounts available on cotton joggers?","answer":"Yes, we frequently offer discounts and promotions on our cotton joggers. Keep an eye on our website and subscribe to our newsletter to stay updated on the latest and offers and deals."},{"question":"How can I ensure I order the right size?","answer":"We provide a detailed size guide on our website to help you choose the perfect fit. Additionally, you can refer to customer reviews for insights on sizing."},{"question":"Are there any special care instructions for cotton joggers?","answer":"To maintain the quality and longevity of your cotton joggers for gents, we recommend washing them in cold water, using mild detergent, and avoiding bleach. Tumble dry on low heat or air dry for best results."}]},{"url":"black-jackets-for-men","faq":[{"question":"Are black jackets for men available in different sizes?","answer":"Yes, Bewakoof offers black jackets for men in a range of sizes to ensure a perfect fit for everyone."},{"question":"Can I return or exchange a black jacket if it doesn't fit?","answer":"Absolutely. Bewakoof has a hassle-free return and exchange policy. If your black jacket doesn't fit, you can easily return or exchange it."},{"question":"How do I care for my black jacket?","answer":"To maintain the quality of your black jacket, follow the care instructions provided on the label. Generally, it's best to wash it in cold water and avoid using bleach."},{"question":"What materials are used in your black jacket for men?","answer":"Our black jackets for men are made from a variety of high-quality materials, including cotton, polyester, leather, and blends. Each material is chosen for its durability, comfort, and style to ensure you get the best possible jacket."},{"question":"How can I find the right size for my black jacket?","answer":"To find the right size for your black jacket, refer to our detailed size guide available on the product page. The guide includes measurements for chest, waist, and length to help you choose the perfect fit. If youre still unsure, our customer service team is always ready to assist you."},{"question":"Do you offer seasonal collections for black jackets?","answer":"Yes, Bewakoof updates its collection seasonally to include the latest trends and styles. Whether it's winter, spring, summer, or fall, you'll find a variety of black jackets suited for each season."}]},{"url":"women-bell-bottom-jeans","faq":[{"question":"What sizes of bell bottom jeans are available for women?","answer":"We offer a wide range of sizes for our ladies bell bottom jeans to ensure a perfect fit for everyone. You can find detailed size information on each product page to help you choose the right size."},{"question":"Are there any discounts or offers available on bell bottom jeans?","answer":"Yes, we frequently offer discounts and promotions on our products, including bell bottom pants. Keep an eye on our website and subscribe to our newsletter to stay updated on the latest offers."},{"question":"What materials are used in your bell bottom jeans?","answer":"Our bell bottom jeans are made from high-quality denim to ensure comfort and durability. Each product page provides detailed information about the fabric and care instructions."},{"question":"How do I know if the jeans will fit me well?","answer":"We provide a comprehensive size guide on each product page to help you choose the right fit."}]},{"url":"hoodies-for-men","faq":[{"question":"How do I find the right size for my hoodie?","answer":"Use our detailed size guide available on the product page to find the perfect fit. Measure your chest, waist, and length to ensure you select the right size."},{"question":"Are the hoodies at Bewakoof made from high-quality materials?","answer":"Yes, we use premium materials like cotton and fleece to ensure our hoodies are comfortable, durable, and stylish."},{"question":"What types of men's hoodies are available at Bewakoof?","answer":"We offer a variety of hoodies for men, including pullover and zip-up styles, as well as graphic and plain designs. There's something for every preference and style."},{"question":"What is the return policy for hoodies purchased online?","answer":"We have a hassle-free return policy to ensure customer satisfaction. If you're not happy with your purchase, you can return the product within a specified period. Please refer to our return policy page for detailed information on how to initiate a return."},{"question":"Are there any special care instructions for maintaining the quality of my hoodie?","answer":"Yes, to maintain the quality and longevity of your hoodie, we recommend following the care instructions provided on the label. Generally, it is advisable to wash hoodies in cold water and avoid using harsh detergents. Tumble dry on low heat or air dry to prevent shrinking and maintain the fabric's integrity."},{"question":"What are the different styles of sweatshirts and hoodies available for men?","answer":"We offer a variety of hoodie styles including pullover hoodies, zip-up hoodies, graphic hoodies, and plain hoodies. Each style caters to different preferences and occasions, ensuring there's something for everyone."},{"question":"Are your men's hoodies suitable for all seasons?","answer":"Yes, our men's hoodies are designed to be versatile. We offer lightweight cotton hoodies that are perfect for spring and summer, as well as heavier fleece hoodies that provide warmth during fall and winter."},{"question":"Do you offer hoodies in plus sizes?","answer":"Yes, we offer men's hoodies in a wide range of sizes, including plus sizes. Our size chart can help you find the perfect fit, ensuring comfort and style for everyone."},{"question":"Are there any care tips to prevent my hoodie from shrinking?","answer":"To prevent your hoodie from shrinking, wash it in cold water and avoid using high heat when drying. Tumble dry on low heat or air dry to maintain the fabric's integrity and fit."},{"question":"Can I exchange my hoodie if it doesn't fit?","answer":"Yes, we offer an easy exchange process if your hoodie doesn't fit. Please refer to our exchange policy on the website for detailed instructions on how to initiate an exchange."}]},{"url":"half-sleeve-tops-for-women","faq":[{"question":"What types of half sleeve tops for women are available at Bewakoof?","answer":"We offer a variety of half sleeve tops, including basic tees, graphic tees, and printed tops. Each style is designed to provide comfort and style."},{"question":"Can I return or exchange the tops if they don't fit?","answer":"Yes, we offer a hassle-free return and exchange policy. Please refer to our terms and conditions for more details."},{"question":"Are there any discounts available on half sleeves tops?","answer":"We regularly offer discounts and promotions. Check our website or sign up for our newsletter to stay updated on the latest offers."},{"question":"What materials are used in the half sleeve tops?","answer":"Our half sleeve tops are made from high-quality materials such as cotton, polyester, and blends that ensure comfort, durability, and easy maintenance."},{"question":"How should I care for my half sleeve tops?","answer":"We recommend washing your half sleeves top in cold water and drying them on a low setting or air drying to maintain their quality and longevity."},{"question":"Are the colors of the tops true to the pictures on the website?","answer":"We strive to ensure that the colors of our tops are accurately represented in the photos. However, there may be slight variations due to different screen settings and lighting conditions."}]},{"url":"clogs","faq":[{"question":"What sizes are available for clogs for women & men at Bewakoof?","answer":"We offer a wide range of sizes to cater to different foot sizes. You can find detailed size charts on our product pages to help you choose the right fit."},{"question":"Are the men's clogs at Bewakoof suitable for outdoor wear?","answer":"Yes, our clogs are designed to be durable and versatile, making them suitable for both indoor and outdoor wear."},{"question":"How can I ensure the clogs I buy online will fit properly?","answer":"To ensure a proper fit, refer to our size charts and consider the material and design of the clogs. If you have any questions, our customer service team is always ready to assist you."},{"question":"What materials are used in Bewakoof's clogs?","answer":"Our clogs are made from a variety of high-quality materials, including leather, synthetic, and rubber, to ensure comfort and durability."},{"question":"Can I return or exchange my men's clogs if they don't fit?","answer":"Yes, Bewakoof offers a hassle-free return and exchange policy. If your clogs don't fit, you can easily return or exchange them within the specified period."},{"question":"How do I care for my clogs?","answer":"To maintain the quality of your men's clogs, clean them regularly with a damp cloth and mild soap. Avoid soaking them in water and let them air dry naturally."}]},{"url":"women-bootcut-jeans","faq":[{"question":"What are bootcut jeans?","answer":"Bootcut jeans are a style of jeans that fit snugly through the thigh and flare out slightly from the knee down, making them ideal for pairing with boots."},{"question":"Why should I buy bootcut jeans for women from Bewakoof?","answer":"Bewakoof offers a wide range of stylish and affordable bootcut jeans. With features like free shipping and easy returns, shopping online with us is convenient and hassle-free."},{"question":"What sizes are available for women's bootcut jeans?","answer":"We offer a wide range of sizes to cater to different body types. You can find detailed size charts on our website to help you choose the perfect size."},{"question":"How can I care for my bootcut jeans to ensure they last longer?","answer":"To extend the life of your women's bootcut jeans, wash them inside out in cold water and avoid using harsh detergents. Hang them to dry instead of using a dryer to prevent shrinkage and maintain their shape."},{"question":"How do I find the right size of bootcut jeans for me?","answer":"Use the size chart available on Bewakoof to find your perfect fit. Measure waist, hips, and inseam, and compare your measurements with the chart to choose the right size."},{"question":"What materials are used in Bewakoof's bootcut jeans?","answer":"Our bootcut jeans are made from high-quality denim that includes a blend of cotton, polyester, and a small percentage of elastane for added stretch and comfort."}]},{"url":"demon-slayer-merchandise","faq":[{"question":"Is the Demon Slayer merchandise at Bewakoof official?","answer":"Yes, all our merchandise is officially licensed and sourced from authorized manufacturers."},{"question":"Do you offer free shipping on merchandise collections?","answer":"Yes, we offer free shipping on all orders, ensuring you get your favorite items delivered to your doorstep at no extra cost."},{"question":"Can I find limited edition Demon Slayer items at Bewakoof?","answer":"Yes, we regularly offer limited edition Demon Slayer merchandise, so be sure to check our website frequently to secure these exclusive products."},{"question":"How can I ensure the quality of the Prints on Demon Slayer T-Shirt I purchase?","answer":"By shopping at Bewakoof, you can be confident in the quality and authenticity of our products. Additionally, reading customer reviews and checking ratings can help you make informed decisions."}]},{"url":"windcheaters-for-men","faq":[{"question":"What are windcheater jackets?","answer":"Windcheater jackets are lightweight, water-resistant outerwear designed to protect against wind and light rain. They're perfect for outdoor activities and casual wear."},{"question":"Why should I buy a windcheater jacket?","answer":"A windcheater jacket for men is versatile and practical. It provides protection from the elements while being lightweight and easy to carry. Ideal for unpredictable weather, it's a great addition to any wardrobe."},{"question":"How do I choose the right size windcheater jacket online?","answer":"To choose the right size, refer to our size guide available on each product page. Measure your chest, waist, and hips, and compare them with our size chart to find the best fit. If you're between sizes, we recommend choosing the larger size for a more comfortable fit."},{"question":"How do I care for my windcheater jacket for men?","answer":"To keep your windcheater jacket in good condition, machine wash it in cold water on a gentle cycle. Avoid using bleach or fabric softeners, and hang it to dry. Do not iron or dry clean."},{"question":"Do you offer men's windcheater jackets online in different colors and styles?","answer":"Yes, we offer a wide range of windcheater jackets in various colors and styles. Browse our collection to find the perfect jacket that suits your style and needs."},{"question":"Are Bewakoof's windcheater jackets suitable for heavy rain?","answer":"While our windcheater jackets are water-resistant and can handle light rain, they are not designed for heavy rain. For heavy rain, we recommend using a dedicated raincoat or waterproof jacket."},{"question":"Can I wear a men windcheater jacket in winter?","answer":"Windcheater jackets are primarily designed for wind protection and light rain. They can be layered with warmer clothing for added insulation, but for extremely cold weather, a heavier winter jacket would be more appropriate."},{"question":"Do you offer windcheater jackets with hoods?","answer":"Yes, many of our windcheater jackets come with attached hoods for extra protection against the elements. You can filter your search on our website to find jackets with hoods."}]},{"url":"one-plus-12r-mobile-covers","faq":[{"question":"What types of OnePlus 12R 5G covers are available at Bewakoof?","answer":"Bewakoof offers a wide range of back covers for the OnePlus 12R 5G, including hard cases, printed covers, transparent cases, and even official licensed merchandise covers."},{"question":"Are the OnePlus 12R 5G covers compatible with wireless charging?","answer":"Yes! All our back covers are designed to be wireless-charging compatible. Experience the ease of wireless charging while keeping your stylish case on. Our solution allows you to charge your device effortlessly, eliminating the need to remove protective covers. Perfect for those seeking convenience and style in their tech accessories."},{"question":"How do I purchase a OnePlus 12R 5G back cover from us?","answer":"Purchasing OnePlus 12R 5G back covers from Bewakoof is a breeze. Simply browse our collection online, select your favourite design, add it to your cart, and proceed to purchase. You'll receive your cover in no time!"},{"question":"Can I return or exchange my OnePlus 12R 5G case if I'm not satisfied?","answer":"Absolutely! We have a hassle-free return and exchange policy. If you're not happy with your purchase, contact our customer support within the stipulated time, and we'll guide you through the process."},{"question":"How can I ensure the case fits my OnePlus 12R 5G phone?","answer":"All you need to do is select a cover designed for the OnePlus 12R 5G from our website, and you can be confident that it will fit your phone perfectly. No need to worry about compatibility issues."}]},{"url":"iqoo-z7-pro-back-covers-cases","faq":[{"question":"What is the best material for a phone cover?","answer":"The best material depends on your needs. Silicone and thermoplastic offer excellent durability, while glass covers provide a premium look."},{"question":"Do I need a cover with an extended warranty?","answer":"Yes, an extended warranty can save you from expensive repairs, offering peace of mind."},{"question":"Are transparent covers as protective as opaque ones?","answer":"Generally, yes. Transparent covers can offer the same level of protection while allowing the original design of your phone to shine through."}]},{"url":"samsung-galaxy-s24-plus-back-covers-cases","faq":[{"question":"Are the Samsung Galaxy S24 Plus 5G covers from Bewakoof.com compatible with wireless charging?","answer":"Yes, our Samsung Galaxy S24 Plus 5G covers are designed to be thin and allow for seamless wireless charging. You can power up your phone without any interference from the cover."},{"question":"Can I return a cover if it doesn't fit my Samsung Galaxy S24 Plus properly?","answer":"At Bewakoof, we offer a hassle-free return policy. If the cover doesn't fit properly, you can return it within the stipulated time frame as per our return policy."},{"question":"Do the covers protect the camera bump of the Samsung Galaxy S24 Plus?","answer":"Yes, our Samsung Galaxy S24 Plus 5G covers are engineered to protect not only the back of your phone but also the camera bump. The raised edges ensure that the lenses do not come into contact with any surface when placed down."},{"question":"How often should I clean my phone cover?","answer":"We recommend cleaning your Samsung Galaxy S24 Plus 5G Cases when you clean your phone. A quick wipe down with a damp cloth helps keep your cover looking clean and new."},{"question":"Are there any covers available that show off the design of my Samsung Galaxy S24 Plus?","answer":"Yes, we have transparent or clear cases that show off the design of your Samsung Galaxy S24 Plus. They are great for showcasing the phone's aesthetics while providing basic protection."},{"question":"Do the Samsung Galaxy S24 Plus 5G covers come with a warranty?","answer":"Our Samsung Galaxy S24 Plus 5G Cases come with a standard warranty, but we also stand by our products. If you encounter any issues due to manufacturing defects, reach out to our customer service team for assistance."},{"question":"Are there heavy-duty cases available for the Samsung Galaxy S24 Plus?","answer":"Absolutely! We offer heavy-duty cases for those who need extra protection. These cases have multiple layers, including shock-absorbent materials and reinforced corners to protect against drops and impacts."},{"question":"Will a case from Bewakoof.com make my Samsung Galaxy S24 Plus much bulkier?","answer":"Our cases are designed to be slim and fit comfortably in your hand and pocket. They offer protection without adding unnecessary bulk to your device."},{"question":"How do I know which Samsung Galaxy S24 Plus cover to choose?","answer":"Consider your lifestyle, the level of protection you need, your personal style, and the functionality you require. Our collection caters to various preferences, so take your time and choose the one that suits you best."}]},{"url":"men-regular-fit-jeans","faq":[{"question":"What are men's regular fit jeans?","answer":"Regular fit jeans are designed to provide a comfortable, relaxed fit through the thigh and seat, with a straight leg opening. They offer a classic look that suits various body types and styles."},{"question":"How do I choose the right size for regular fit jeans for men?","answer":"To find the perfect size, refer to the size chart provided on our website. Measure your waist and hips, and compare the measurements to the chart to ensure a proper fit. If you're between sizes, consider the fit you preferslightly looser or more fitted."},{"question":"How can I style regular fit jeans for men for different occasions?","answer":"Regular fit jeans are incredibly versatile. For a casual look, pair them with a t-shirt and sneakers. For a smart casual outfit, combine them with a button-down shirt and loafers. The key is to choose complementary pieces that match the occasion and your personal style."},{"question":"What is the difference between regular fit jeans and slim fit jeans?","answer":"Regular fit jeans provide a comfortable, relaxed fit through the thigh and seat, with a straight leg opening. Slim fit jeans, on the other hand, are more tapered and fitted through the legs, offering a more streamlined silhouette. Regular fit jeans are ideal for those who prefer a bit more room and comfort, while slim fit jeans are suitable for a more modern, tailored look."},{"question":"Are regular fit jeans suitable for all body types?","answer":"Yes, regular fit jeans are versatile and can suit a variety of body types. They offer a balanced fit that provides comfort and style without being too tight or too loose. This makes them a great option for men with different builds and preferences."},{"question":"How often should I wash my regular jeans?","answer":"To maintain the quality and longevity of your regular fit jeans, it's recommended to wash them every 4-6 wears. This helps preserve the fabric and color. Spot clean any stains in between washes to keep them looking fresh."},{"question":"Are there seasonal collections for men's regular fit jeans?","answer":"Yes, Bewakoof frequently updates its collection to reflect seasonal trends and styles. Keep an eye on our website for new arrivals and seasonal collections that include regular fit jeans in different washes, colors, and designs."}]},{"url":"collar-tops-for-women","faq":[{"question":"What types of collar tops for ladies are available at Bewakoof?","answer":"Bewakoof offers a variety of collar tops, including casual, formal, and trendy designs to suit different occasions and styles."},{"question":"How can I buy collar neck tops for girls online at Bewakoof?","answer":"Simply browse our collection, select your preferred tops, add them to your cart, and proceed to checkout. We offer secure payment options and fast shipping."},{"question":"Can I return a women's collar top if it doesn't fit?","answer":"Yes, Bewakoof has an easy return policy. If your collar top doesn't fit, you can return it within the specified period for an exchange or refund."},{"question":"What sizes are available for collar tops for women at Bewakoof?","answer":"Bewakoof offers a wide range of sizes for collar tops, ensuring a perfect fit for every body type. Our size chart can help you find the right size."},{"question":"What materials are used for collar neck tops at Bewakoof?","answer":"Our collar tops are made from high-quality materials, including cotton, polyester, and blends, ensuring comfort and durability. Each product description provides detailed information about the fabric used."}]},{"url":"sleeveless-tops-for-women","faq":[{"question":"What sizes are available for sleeveless tops for women at Bewakoof?","answer":"Bewakoof offers sleeveless tops in a range of sizes, from XS to XXL, ensuring a perfect fit for every body type."},{"question":"How can I ensure the best fit when buying sleeveless tops for girls online?","answer":"To ensure the best fit, refer to our detailed size chart available on each product page. Additionally, you can read customer reviews for insights on sizing and fit."},{"question":"Are there any discounts available for sleeveless tops?","answer":"Yes, Bewakoof frequently offers discounts and promotions on sleeveless tops. Keep an eye on our website and subscribe to our newsletter for the latest deals."},{"question":"What is the return policy for sleeveless tops purchased online?","answer":"Bewakoof has a hassle-free return policy. If you are not satisfied with your sleeveless top, you can return the item within the specified period for a refund or exchange."},{"question":"Can I track my order after purchasing ladies sleeveless tops online?","answer":"Yes, once your order is shipped, you will receive a tracking number via e-mail. You can use this number to track the status of your delivery on our website or through the courier's tracking system."},{"question":"Are sleeveless tops suitable for all seasons?","answer":"Sleeveless tops are incredibly versatile and can be worn in all seasons. In warmer months, they are perfect on their own, and in cooler months, they can be easily layered under jackets, cardigans, or blazers for added warmth and style."},{"question":"Do you offer international shipping for sleeveless tops?","answer":"Currently, Bewakoof offers shipping within India. Please check our shipping policy page for the most updated information regarding international shipping options."},{"question":"How often do you update your collection of sleeveless tops?","answer":"Bewakoof regularly updates its collection to bring you the latest trends and styles. We recommend checking our website frequently or subscribing to our newsletter to stay informed about new arrivals and exclusive offers."}]},{"url":"brown-shirts-for-men","faq":[{"question":"What sizes are available for brown shirts for men at Bewakoof.com?","answer":"We offer a wide range of sizes for brown shirts, from small to XXL, ensuring a perfect fit for every customer."},{"question":"How can I style a brown shirt for men for a formal occasion?","answer":"For a formal look, pair your brown shirt with tailored trousers and dress shoes. You can also add a blazer for an extra touch of sophistication."},{"question":"What materials are used in the brown shirts for men at Bewakoof.com?","answer":"Our brown shirts for men are made from high-quality materials such as cotton, linen, and blends that ensure comfort, durability, and a great fit."},{"question":"How do I know which size to buy?","answer":"We provide a detailed size guide on our website to help you choose the right size. Additionally, you can refer to customer reviews for insights on fit and sizes."},{"question":"Can I return or exchange a brown shirt if it doesn't fit?","answer":"Yes, Bewakoof.com offers easy returns and exchanges. If you're not satisfied with the fit, you can initiate a return or exchange within the specified period."},{"question":"Are there any care instructions for brown shirts?","answer":"Yes, each brown shirt comes with specific care instructions. Generally, we recommend machine washing in cold water and avoiding bleach to maintain the quality and color of the shirt."},{"question":"Do you offer any customization options for brown shirts?","answer":"Currently, we do not offer customization options for brown shirts. However, we do provide a wide variety of styles and designs to choose from."},{"question":"Can I track my order once it has been placed?","answer":"Yes, once your order is shipped, you will receive a tracking number via e-mail or SMS, allowing you to monitor the status of your delivery."}]},{"url":"men-boxer-shorts","faq":[{"question":"What types of boxers for men are available on Bewakoof?","answer":"We offer a wide range of boxers, including printed, cool boxer shorts, and cotton shorts for men. Our collection features fun and quirky designs that cater to various tastes and preferences."},{"question":"How do I choose the right size for my boxers?","answer":"To choose the right size, please refer to our size guide available on each product page. If you are unsure, measure your waist and compare it to the measurements listed in the guide to find your perfect fit."},{"question":"Can I buy boxers for men online on Bewakoof?","answer":"Yes, you can easily buy boxers online on Bewakoof. Our user-friendly website allows you to browse through different styles and designs, add them to your cart, and proceed to checkout seamlessly."},{"question":"Are the boxer shorts for men comfortable for everyday wear?","answer":"Absolutely! Our men's boxers are made from high-quality cotton and other comfortable materials to ensure maximum comfort for everyday wear. They are designed to provide a relaxed fit and breathability."},{"question":"Do you offer discounts or promotions on boxers?","answer":"We frequently offer discounts and promotions on our boxers for men. Keep an eye on our website and subscribe to our newsletter to stay updated on the latest deals and offers."},{"question":"What is the return policy for boxers purchased online?","answer":"We have a hassle-free return policy. If you are not satisfied with your purchase, you can return the boxers for men within a specified period. Please refer to our return policy page for detailed information on the return process and conditions."},{"question":"Are the prints on the men's boxers durable?","answer":"Yes, the prints on our boxers are designed to be long-lasting. We use high-quality printing techniques to ensure that the designs do not fade easily, even after multiple washes."},{"question":"How can I track my order once I've purchased boxers online?","answer":"Once you place your order, you will receive a confirmation email with a tracking number. You can use this tracking number on our website or the couriers website to monitor the status of your delivery."}]},{"url":"winterwear-for-men","faq":[{"question":"What types of winterwear for men are available at Bewakoof.com?","answer":"Bewakoof offers a wide range of winterwear for men, including jackets, hoodies, sweaters, and thermal wear."},{"question":"How can I ensure I choose the right size for my men's winter clothes?","answer":"Bewakoof provides detailed size guides and product descriptions to help you select the right size. Additionally, our customer service team is available to assist you with any sizing queries."},{"question":"Are there any discounts available on winter wear for men?","answer":"Yes, we frequently offer discounts and promotions on winter wear for men. Keep an eye on our website for the latest deals and offers."},{"question":"Are there any care instructions for winter wear for men?","answer":"Yes, each product comes with specific care instructions to help you maintain the quality and longevity of your warm clothes for men. Generally, it is advisable to follow the washing and drying guidelines provided on the product label."},{"question":"Can I cancel my order after placing it?","answer":"Yes, you can cancel your order before it is shipped. To cancel your order, log into your account, go to the 'My Orders' section, and select the order you wish to cancel. If the order has already been shipped, you can refuse delivery or return it once received."},{"question":"Do you offer plus-size winterwear for men?","answer":"Yes, Bewakoof offers plus-size winterwear for men. Our winter clothes for men come in a wide range of sizes, from XS to XXXL. We believe in providing stylish and comfortable options for all body types."}]},{"url":"sleeveless-t-shirts-for-men","faq":[{"question":"Are there any discounts available for men sleeveless t-shirts?","answer":"Yes, Bewakoof.com regularly offers discounts and promotions. Keep an eye on our website for the latest deals and offers."},{"question":"How can I style sleeveless t shirt for men for different occasions?","answer":"Sleeveless t-shirts for men can be styled in various ways. Pair them with shorts and sneakers for a casual look, or with workout shorts for gym sessions. For a more edgy outfit, try matching graphic sleeveless t-shirts with distressed jeans and boots."},{"question":"What is the return policy for sleeveless t-shirts purchased online?","answer":"Bewakoof offers a hassle-free return policy. If you're not satisfied with your purchase, you can return it within the specified period for an exchange or refund. Please refer to our returns policy on the website for more details."},{"question":"How do I know what size to order?","answer":"Bewakoof provides a detailed size chart for all our sleeveless t-shirts for men. You can refer to the chart and measure yourself to ensure you select the right size. If you have any doubts, our customer service team is always ready to assist you."},{"question":"How can I track my order online?","answer":"Once your order is dispatched, you will receive a tracking number via email. You can use this number to track your order on our website."},{"question":"Are there any care instructions for sleeveless t-shirts for men?","answer":"Yes, to ensure the longevity of your sleeveless t-shirts, we recommend washing them in cold water and avoiding bleach. It's best to dry them in the shade to prevent any color fading."},{"question":"Can I cancel or modify my order after placing it?","answer":"Yes, you can cancel or modify your order within a specified time frame after placing it. Please refer to our cancellation policy on the website for more details or contact our customer service team for assistance."},{"question":"How often do you update your online sleeveless t-shirt collection?","answer":"We regularly update our men's sleeveless t-shirt collection to include the latest trends and styles. Be sure to check our website frequently or subscribe to our newsletter for updates."}]},{"url":"men-clothing","faq":[{"question":"What types of mens clothing can I find at Bewakoof?","answer":"At Bewakoof, you can find a wide variety of men's clothing, including graphic tees, joggers, blazers, chinos, and more. Our collection is updated regularly to include the latest trends."},{"question":"Why should I buy clothes for men online from Bewakoof?","answer":"Shopping online at Bewakoof is convenient, offers a wider variety of styles, and provides access to exclusive deals and discounts. Plus, our detailed product descriptions and size guides ensure you find the perfect fit."},{"question":"Are Bewakoofs men's clothes affordable?","answer":"Yes, Bewakoof offers high-quality mens clothes at affordable prices. We believe that fashion should be accessible to everyone, and we regularly offer sales and promotions to provide the best value for your money."},{"question":"How can I ensure the right fit when buying mens clothes online?","answer":"Bewakoof provides detailed size guides and product descriptions to help you choose the right fit. Additionally, our customer service team is always available to assist you with any sizing questions or concerns."},{"question":"How long does delivery take when I shop online at Bewakoof?","answer":"Bewakoof offers fast and reliable delivery services. The delivery time may vary depending on your location, but we strive to ensure that you receive your order as quickly as possible. You can track your order status through our website."},{"question":"Can I return or exchange items if they dont fit or meet my expectations?","answer":"Yes, Bewakoof has a hassle-free return and exchange policy. If youre not satisfied with your men's wear, you can return or exchange the items within the specified period. Please refer to our return policy on the website for more details."},{"question":"How often do you update your men clothing collection?","answer":"We regularly update our men clothing collection to include the latest trends and styles. New arrivals are added frequently, so be sure to check our website often to stay updated."},{"question":"What are the washing and care instructions for Bewakoofs mens clothing?","answer":"Each product comes with specific washing and care instructions on the label. Generally, we recommend washing clothes in cold water, using mild detergent, and avoiding direct sunlight to maintain the quality and longevity of the fabric."}]},{"url":"brown-t-shirts-for-men","faq":[{"question":"What sizes are available for brown t-shirts at Bewakoof?","answer":"Bewakoof offers brown t-shirts in a wide range of sizes, from XS to XXL, ensuring a perfect fit for everyone."},{"question":"Are there any discounts available for men's brown t-shirts?","answer":"Yes, Bewakoof frequently offers discounts and deals on brown t-shirts. Keep an eye on our website and app for the latest offers."},{"question":"What materials are used in Bewakoof's brown tees?","answer":"Bewakoof's brown t-shirts are made from high-quality, breathable fabrics such as cotton and cotton blends, ensuring comfort and durability."},{"question":"How do I care for my brown t-shirt to ensure it lasts longer?","answer":"To maintain the quality of your brown t-shirt, we recommend washing it in cold water, using a mild detergent, and avoiding bleach. It's best to air dry or tumble dry on a low setting to prevent shrinkage."},{"question":"Can I return or exchange my brown t-shirt if it doesn't fit?","answer":"Yes, Bewakoof offers a hassle-free return and exchange policy. If your brown t-shirt doesn't fit or you are not satisfied with it, you can easily return or exchange it within the specified return period."},{"question":"How long does delivery take for brown t-shirts ordered online?","answer":"Delivery times vary based on your location. Typically, orders are delivered within 3-7 business days. You can track your order through our website or app to get real-time updates on your delivery status."},{"question":"Are there different styles of men's brown t-shirts available at Bewakoof?","answer":"Yes, Bewakoof offers a variety of styles including basic brown t-shirts, graphic tees, V-necks, and more. Our collection is regularly updated to include the latest trends and designs."},{"question":"Is there a loyalty program or membership for regular shoppers?","answer":"Yes, Bewakoof has a Tribe Membership program that offers exclusive discounts, early access to new collections, and other benefits for regular shoppers."}]},{"url":"realme-11-pro-plus-5g-back-covers-cases","faq":[{"question":"What materials are used in Realme 11 Pro Plus Back Covers?","answer":"Our Realme 11 Pro Plus Back Covers are made from high-quality materials such as hard plastic, silicone, and TPU, ensuring durability and protection for your phone."},{"question":"How do I know if a back cover will fit my Realme 11 Pro Plus?","answer":"All our back covers are specifically designed for the Realme 11 Pro Plus, ensuring a perfect fit and easy access to all ports, buttons, and features."},{"question":"Can I find designer Realme 11 Pro Plus Covers on Bewakoof.com?","answer":"Yes, we offer a wide range of designer covers featuring unique and trendy designs to suit different tastes and preferences."},{"question":"How do I care for my Realme 11 Pro Plus Back Cover?","answer":"To keep your back cover in pristine condition, clean it regularly with a damp cloth and avoid using harsh chemicals. Also, keep it away from extreme temperatures to prevent warping or cracking."},{"question":"Are the prices of Realme 11 Pro Plus Back Covers affordable at Bewakoof?","answer":"Absolutely! We believe in providing value for money, and our Realme 11 Pro Plus Back Covers are competitively priced without compromising on quality."},{"question":"How can I buy a Realme 11 Pro Plus Back Cover online at Bewakoof.com?","answer":"Shopping on Bewakoof is simple and convenient. Just browse our collection of Realme 11 Pro Plus Back Covers, select your favorite design, add it to your cart, and proceed to checkout. We offer secure payment options and quick delivery."},{"question":"What should I consider when choosing a Realme 11 Pro Plus Back Cover?","answer":"Consider your lifestyle, the level of protection you need, and any additional functionalities you might want, such as kickstands or card slots, when choosing a back cover."},{"question":"Can I return or exchange my Realme 11 Pro Plus Back Cover if Im not satisfied?","answer":"Yes, we have a hassle-free return and exchange policy. If you're not satisfied with your purchase, you can return or exchange it within the specified period as per our return policy."},{"question":"Do you offer any discounts or promotions on Realme 11 Pro Plus Back Covers?","answer":"We frequently offer discounts and promotions on our products. Keep an eye on our website and subscribe to our newsletter to stay updated on the latest offers."},{"question":"How can I contact customer service for any queries regarding my order?","answer":"You can reach our customer service team through the contact information provided on our website. We are always here to assist you with any queries or concerns regarding your order."}]},{"url":"pink-t-shirts-for-women","faq":[{"question":"What sizes are available for pink t-shirts for women at Bewakoof.com?","answer":"We offer a wide range of sizes for pink t-shirts for women, from XS to XXL, to ensure a perfect fit for everyone."},{"question":"Are there different shades of pink available?","answer":"Yes, our collection includes various shades of pink, from soft pastels to vibrant hues, allowing you to choose the one that best suits your style."},{"question":"How do I care for my pink t-shirt for women to ensure it lasts?","answer":"To maintain the quality of your pink t-shirt, we recommend washing it in cold water with similar colors and avoiding the use of bleach."},{"question":"Can I return or exchange my pink t-shirt if it doesn't fit?","answer":"Absolutely! Bewakoof offers a hassle-free return and exchange policy. If your pink t-shirt doesn't fit, you can easily return or exchange it within the specified return period. Please refer to our return policy page for detailed instructions."},{"question":"Do you offer any discounts on ladies pink t-shirts for women?","answer":"Yes, Bewakoof frequently offers discounts and promotions on our collection of pink t-shirts for women. Keep an eye on our website and subscribe to our newsletter to stay updated on the latest deals and offers."},{"question":"How long does shipping take for online orders?","answer":"Shipping times may vary based on your location. However, we strive to deliver your order as quickly as possible. You can check the estimated delivery time during the checkout process. We also provide tracking information so you can monitor your order's progress."},{"question":"Are the pink t-shirts at Bewakoof made from sustainable materials?","answer":"At Bewakoof, we are committed to sustainability. Many of our pink t-shirts are made from eco-friendly materials. We continuously strive to improve our practices and offer more sustainable fashion choices."}]},{"url":"oneplus-nord-ce-3-5g-back-covers-cases","faq":[{"question":"What materials are used in OnePlus Nord CE 3 phone covers at Bewakoof.com?","answer":"We offer a variety of materials including silicone, TPU, and hard plastic. Each material is chosen for its durability and protective qualities, ensuring your OnePlus Nord CE 3 remains safe and stylish."},{"question":"How do I choose the right OnePlus Nord CE 3 back cover?","answer":"Consider the level of protection you need, the material that feels best in your hand, and a design that reflects your personal style. Our product descriptions and customer reviews can also help guide your decision."},{"question":"Can I return or exchange my OnePlus Nord CE 3 5g back cover?","answer":"Yes, Bewakoof.com offers a hassle-free return and exchange policy. If youre not satisfied with your purchase, you can return or exchange it within the specified return period."},{"question":"How long does delivery take?","answer":"Delivery times vary depending on your location, but we strive to deliver all orders within 3-7 business days. You will receive a tracking number once your order is shipped, so you can monitor its progress."},{"question":"Are there any discounts available for OnePlus Nord CE 3 back covers?","answer":"Yes, we frequently offer exclusive deals and discounts. Keep an eye on our website and subscribe to our newsletter to stay updated on the latest offers."},{"question":"Is it safe to shop OnePlus Nord CE 3 back cover online at Bewakoof.com?","answer":"Absolutely. We use secure payment methods to ensure that your personal and payment information is protected. Your privacy and security are our top priorities."},{"question":"How do I clean my OnePlus Nord CE 3 back cover?","answer":"Cleaning your back cover is easy. For silicone and TPU covers, you can use a damp cloth with mild soap to wipe away any dirt or stains. For hard plastic covers, a soft, dry cloth usually does the trick. Avoid using harsh chemicals or abrasive materials to prevent damage."},{"question":"How can I track my order?","answer":"Once your order is shipped, you will receive a tracking number via e-mail. You can use this number to track your order on our website or through the courier services tracking portal."},{"question":"Are there any special care instructions for the back covers and cases?","answer":"To ensure the longevity of your OnePlus Nord CE 3 5g back cover, avoid exposing it to extreme temperatures, direct sunlight for extended periods, and harsh chemicals. Regular cleaning with mild soap and water will help maintain its appearance and durability."},{"question":"Do the back covers affect wireless charging?","answer":"Most of our OnePlus Nord CE 3 back covers are designed to be compatible with wireless charging. However, it's always a good idea to check the product description or consult our customer support team if you have specific concerns about wireless charging compatibility."},{"question":"How can I stay updated on new arrivals and promotions?","answer":"To stay updated on new arrivals, promotions, and exclusive discounts, subscribe to our newsletter and follow us on social media. This way, youll be the first to know about our latest launches and special offers."},{"question":"Is there a warranty on the OnePlus Nord CE 3 mobile covers?","answer":"While our back covers are made from high-quality materials designed to last, we do not offer a formal warranty. However, if you encounter any issues with your purchase, our customer support team is here to help resolve them."}]},{"url":"samsung-galaxy-s23-ultra-5g-back-covers-cases","faq":[{"question":"Why should I buy a Samsung S23 Ultra back cover from Bewakoof.com?","answer":"Bewakoof.com offers high-quality, durable back covers that are designed to perfectly fit your Samsung S23 Ultra. Our covers come in a variety of materials and designs to suit your style and needs. Plus, we provide competitive pricing, fast shipping, and excellent customer service."},{"question":"What types of back covers are available for the Samsung S23 Ultra?","answer":"We offer a wide range of back covers, including hard plastic covers, silicone and rubber covers, and leather and fabric covers. Each type offers unique benefits, from robust protection to sleek aesthetics."},{"question":"How do I choose the right Samsung S23 Ultra back cover?","answer":"Consider your lifestyle and usage when selecting a back cover. If you need superior protection, hard plastic or silicone covers are ideal. For a more elegant look, leather or fabric covers are great choices. Also, look for additional features like kickstands or card holders that can add convenience."},{"question":"Are there any special features in the back covers available at Bewakoof.com?","answer":"Yes, some of our back covers come with extra features such as kickstands for hands-free viewing and card holders for added convenience. These features enhance the functionality of your Samsung S23 Ultra."},{"question":"How can I trust the quality of the back covers from Bewakoof.com?","answer":"Our back covers are crafted with high-quality materials to ensure durability and a perfect fit. We have received numerous positive reviews and high ratings from satisfied customers, which you can read on our website to make an informed decision."},{"question":"Can I find unique and trendy designs for my Samsung S23 Ultra back cover at Bewakoof.com?","answer":"Absolutely! We offer a wide variety of designs, from minimalist and professional to fun and vibrant. Our collection is regularly updated to include the latest trends and styles, ensuring that you can find a back cover that perfectly matches your personality and preferences."},{"question":"Are there any discounts or offers available on Samsung S23 Ultra back covers?","answer":"Yes, we frequently run discounts on our products. Keep an eye on our website and subscribe to our newsletter to stay updated on the latest offers and deals."}]},{"url":"purple-t-shirts-for-women","faq":[{"question":"What sizes are available for purple t-shirts for women at Bewakoof.com?","answer":"We offer a wide range of sizes for our purple t-shirts for women, from XS to XXL, ensuring that you find the perfect fit for your body type."},{"question":"How do I care for my purple t-shirt for women to maintain its color and quality?","answer":"To maintain the color and quality of your purple t-shirt, we recommend washing it inside out in cold water with similar colors. Avoid using bleach and tumble dry on low heat or air dry."},{"question":"Can I return or exchange my purple t-shirt if it doesn't fit?","answer":"Yes, we have an easy return and exchange policy. If your purple t-shirt doesn't fit or meet your expectations, you can return or exchange it within the specified period. Please refer to our return policy on the website for more details."},{"question":"Are there any ongoing discounts or promotions on purple t-shirts for women?","answer":"We frequently offer discounts and promotions on our products. Keep an eye on our website and subscribe to our newsletter to stay updated on the latest offers and deals."},{"question":"How long does it take to deliver a women's purple t-shirt after placing an order?","answer":"Delivery times may vary based on your location. Typically, orders are processed and shipped within 24-48 hours, and you can expect delivery within 3-7 business days. You can track your order status through our website for real-time updates."},{"question":"Are the purple t-shirts for women made from sustainable materials?","answer":"At Bewakoof.com, we are committed to sustainability. Many of our purple t-shirts for women are made from eco-friendly materials, and we continuously strive to incorporate more sustainable practices in our production process. Check the product descriptions for specific details on materials used."},{"question":"Can I find exclusive designs in the purple t-shirts collection?","answer":"Yes, we offer exclusive designs that you won't find anywhere else. Our team of designers works hard to bring you unique, trendy, and fashionable purple t-shirts that stand out from the crowd."},{"question":"How can I be sure of the color accuracy of the purple t-shirts online?","answer":"We ensure that our product images are as accurate as possible by using high-quality photography and color calibration. However, slight variations may occur due to different screen settings. If you have any concerns, our customer service team is here to help."},{"question":"Do you offer any customization options for women's purple t-shirts?","answer":"Currently, we do not offer customization options for our purple t-shirts. However, we are always looking to expand our services, so stay tuned for future updates."}]},{"url":"vivo-v27-5g-back-covers-cases","faq":[{"question":"What materials are the Vivo V27 5g back covers made of?","answer":"Our Vivo V27 back covers are made from high-quality materials such as hard plastic, soft silicone, and TPU (thermoplastic polyurethane). Each material offers different levels of protection and flexibility to suit your needs."},{"question":"How do I know if the back cover will fit my Vivo V27 5g?","answer":"All our Vivo V27 cases are specifically designed to fit the Vivo V27 model perfectly. They come with precise cutouts for all ports, buttons, and the camera, ensuring a snug and secure fit."},{"question":"Can I return or exchange the back cover if I'm not satisfied?","answer":"Yes, we have a hassle-free return and exchange policy. If you're not satisfied with your purchase, you can return or exchange the back cover within a specified period, provided it is in its original condition."},{"question":"How long does it take to deliver the back cover?","answer":"Delivery times may vary depending on your location. Typically, orders are processed and shipped within 1-2 business days, and you can expect to receive your order within 5-7 business days."},{"question":"Are there any discounts available on Vivo V27 back covers?","answer":"We often run promotions and discounts on our website. Be sure to check our 'Offers' section or subscribe to our newsletter to stay updated on the latest deals and discounts."},{"question":"What materials are used in Bewakoof's Vivo V27 5g back cover?","answer":"Our Vivo V27 back cases are made from a variety of materials including hard plastic, silicone, TPU (thermoplastic polyurethane), and eco-friendly materials such as biodegradable and recycled plastics. Each material offers different levels of protection and style to suit your preferences."},{"question":"How do I choose the right cover for my Vivo V27?","answer":"Choosing the right cover depends on your needs and preferences. If you need robust protection, consider a hard plastic or rugged cover. For a stylish look, our printed designs are perfect. If you want functionality, look for wallet covers or those with kickstands. Assess your daily usage and select a cover that best meets your requirements."},{"question":"Are the covers easy to install and remove?","answer":"Yes, all our Vivo V27 5g back covers are designed for easy installation and removal. They fit snugly around your phone, providing protection without making it difficult to attach or detach the cover."},{"question":"Do the covers affect the phone's functionality?","answer":"No, our covers are precisely designed to ensure that all buttons, ports, and features of the Vivo V27 remain fully accessible. You can charge your phone, use the camera, and access all functions without removing the cover."},{"question":"Can I clean my Vivo V27 5g back case?","answer":"Yes, you can clean your back cover with a soft, damp cloth. For tougher stains, a mild soap solution can be used. Avoid using harsh chemicals or abrasive materials to prevent damage to the cover."},{"question":"Can I return or exchange my back cover if Im not satisfied?","answer":"Yes, we have a hassle-free return and exchange policy. If you are not satisfied with your Vivo cover, you can return or exchange it within the specified period. Please refer to our return policy for more details."}]},{"url":"women-crop-tops","faq":[{"question":"What types of crop tops are available at Bewakoof?","answer":"At Bewakoof, we offer a variety of crop tops, including casual crop tops, party wear crop tops, and athletic crop tops. Each type is designed to suit different occasions and preferences, ensuring that you find the perfect fit for your style."},{"question":"How can I style a women's crop top?","answer":"Crop tops can be styled in numerous ways. You can pair them with high-waisted jeans for a casual look, match them with skirts for a more feminine outfit, or layer them with jackets for added dimension. The versatility of crop tops allows you to create multiple stylish ensembles."},{"question":"Why should I shop for crop tops online at Bewakoof?","answer":"Shopping online at Bewakoof.com offers several benefits, including a wide variety of styles, exclusive online deals, and the convenience of browsing from home. Our detailed product descriptions, high-quality images, and customer reviews help you make informed decisions."},{"question":"Are the crop tops for girls at Bewakoof affordable?","answer":"Yes, at Bewakoof.com, we strive to offer high-quality crop tops at affordable prices. We believe that fashion should be accessible to everyone, and we frequently have promotions and sales to provide even more value to our customers."},{"question":"What makes Bewakoof's crop tops unique?","answer":"Our crop tops feature unique designs that reflect the latest fashion trends. From bold prints to minimalist styles, our collection caters to diverse tastes and preferences. We continuously update our inventory to ensure that you always have access to the freshest and most stylish crop tops."},{"question":"How is the customer service at Bewakoof.com?","answer":"Customer satisfaction is our top priority. Our dedicated customer service team is available to assist you with any queries or concerns. We offer a seamless shopping experience with easy navigation, secure payment options, fast shipping, and hassle-free returns, ensuring that you shop with confidence."},{"question":"How do I choose the right size for a crop top for women?","answer":"Each product page on Bewakoof includes a detailed size guide to help you choose the right fit. We recommend checking the measurements and comparing them with your own to ensure a comfortable and flattering fit. If you have any questions, our customer service team is always ready to help."},{"question":"Can I return a women's crop top if it doesn't fit?","answer":"Yes, we offer hassle-free returns at Bewakoof.com. If a crop top doesn't fit or meet your expectations, you can return it within the specified return period. Please refer to our return policy for detailed instructions and conditions."},{"question":"What materials are used in Bewakoof's crop tops?","answer":"We use high-quality materials like cotton, jersey, and polyester blends to ensure comfort and durability. Each product page provides specific details about the fabric used."},{"question":"How should I care for my women's crop top?","answer":"To maintain the quality of your crop top, we recommend washing it in cold water and avoiding bleach. Tumble dry on low heat or hang dry to prevent shrinking and preserve the fabric."},{"question":"Can I return or exchange a crop top if it doesn't fit?","answer":"Absolutely! We have a hassle-free return and exchange policy. If your crop top doesn't fit, you can return or exchange it within 15 days of delivery. Please ensure the item is unused and in its original packaging."},{"question":"Are there crop tops suitable for different occasions?","answer":"Our collection includes women crop tops for various occasions, from casual outings to parties and workouts. Browse our categories to find the perfect style for any event."}]},{"url":"men-white-jeans","faq":[{"question":"How do I choose the right size for men's white jeans?","answer":"Use our detailed size guide available on each product page to find the perfect fit. If youre unsure, our customer support team is always ready to assist you."},{"question":"Can I return or exchange my men's white jeans if they don't fit?","answer":"Yes, Bewakoof.com offers an easy and hassle-free return and exchange policy. If your white jeans don't fit or meet your expectations, you can return or exchange them within the specified period. Please refer to our return policy for more details."},{"question":"Are there any care instructions for maintaining men's white jeans?","answer":"To keep your white jeans looking fresh and new, wash them in cold water with similar colors. Avoid using bleach and opt for a gentle detergent. It's best to air dry them to prevent any damage from heat."},{"question":"Do you offer any discounts on men's white jeans?","answer":"Yes, Bewakoof frequently offers discounts and promotions on various products, including men's white jeans. Keep an eye on our website or sign up for our newsletter to stay updated on the latest deals."},{"question":"What payment methods are accepted on Bewakoof.com?","answer":"We accept a variety of payment methods, including credit\u002Fdebit cards, net banking, UPI, and popular digital wallets. Our secure payment gateway ensures that your transactions are safe and protected."},{"question":"How long does delivery take for men's white jeans?","answer":"Delivery times may vary based on your location. Typically, orders are delivered within 3-7 business days. You can track your order through our website to get real-time updates on your delivery status."}]},{"url":"orange-t-shirts-for-men","faq":[{"question":"What types of orange t-shirts for men do you offer?","answer":"We offer a variety of orange t-shirts for men, including solid colors, graphic prints, and color block designs. You can find options like regular fit, loose fit, and oversized t-shirts to suit your style preferences."},{"question":"How can I buy an orange t-shirt for men online?","answer":"You can easily buy an orange t-shirt for men online by visiting our orange t-shirts for men section. Browse through our collection, select your preferred style and size, and add it to your cart. Proceed to checkout to complete your purchase."},{"question":"Do you offer different sizes for men's orange t-shirts?","answer":"Yes, we offer men's orange t-shirts in various sizes ranging from S to 3XL. You can refer to our size guide on the product page to ensure you choose the right fit for you."},{"question":"Are there any special offers or discounts available when buying orange t-shirts?","answer":"Yes, we frequently offer special deals and discounts on our products. Check the product page or our offers section for any ongoing promotions that you can take advantage of."},{"question":"Can I return or exchange a men's orange t-shirt if it doesn't fit?","answer":"Absolutely! We have a hassle-free return and exchange policy. If your orange t-shirt doesnt fit or if you are not satisfied with your purchase, you can return or exchange it within 30 days. For more details, please visit our returns policy page."},{"question":"What is the best way to style an orange t-shirt for a casual look?","answer":"For a casual yet stylish look, you can pair your orange t-shirt with denim jeans or shorts. Adding a pair of sneakers and a casual jacket can complete the laid-back look."},{"question":"Do you offer free shipping on orange t-shirts?","answer":"Yes, we offer free shipping on all orders. You can enjoy shopping without worrying about additional shipping costs."},{"question":"How do I care for my orange t-shirt to keep it looking new?","answer":"To keep your orange t-shirt looking new, we recommend washing it in cold water with similar colors. Avoid using bleach and tumble drying. Instead, air dry the t-shirt to maintain its color and fabric quality."},{"question":"What materials are used in your orange t-shirts for men?","answer":"Our orange t-shirts for men are made from high-quality materials such as 100% cotton and cotton blends. This ensures a comfortable fit and durability, making them perfect for everyday wear."},{"question":"How can I track my order once Ive made a purchase?","answer":"Once you've placed an order, you will receive an email with a tracking number. You can use this tracking number on our websites order tracking page to monitor the status of your delivery."}]},{"url":"brown-pants-for-men","faq":[{"question":"What types of brown trousers for men are available at Bewakoof?","answer":"At Bewakoof, we offer a variety of brown pants for men, including chinos, joggers, and dress pants. Each type is available in different fits and styles to cater to various preferences and occasions."},{"question":"How can I style brown pants for different occasions?","answer":"Men's brown pants are incredibly versatile and can be styled for different occasions. For a casual look, pair them with a t-shirt or casual shirt and sneakers. For a smart-casual look, opt for a polo shirt or lightweight sweater, adding a blazer if needed. For formal occasions, pair brown dress pants with a crisp dress shirt, tie, and polished dress shoes."},{"question":"Why should I shop for men's brown pants at Bewakoof?","answer":"Shopping at Bewakoof.com ensures you get high-quality, stylish men's brown pants at affordable prices. Our user-friendly website, detailed product descriptions, easy returns, and exclusive discounts make shopping with us a convenient and enjoyable experience."},{"question":"How do I know which size to choose?","answer":"We provide detailed size guides and measurements for all our products to help you choose the right size. If you're unsure, you can refer to our size guide or contact our customer support for assistance."},{"question":"Can I return or exchange the brown pants if they don't fit?","answer":"Yes, Bewakoof.com offers easy returns and exchanges. If the brown pants you purchased don't fit or meet your expectations, you can return or exchange them following our simple return policy."},{"question":"Are there any ongoing discounts on men brown pants?","answer":"We frequently offer exclusive discounts and promotions on our products. Be sure to check our website regularly or subscribe to our newsletter to stay updated on the latest deals and offers."},{"question":"Do you offer brown pants for men in plus sizes?","answer":"Yes, Bewakoof offers a range of sizes, including plus sizes, to ensure that every customer can find the perfect fit. You can check the size availability on the product page."},{"question":"Are the colors of the brown trousers true to the images shown online?","answer":"We strive to ensure that our product images accurately represent the colors of our brown pants. However, slight variations in color may occur due to different screen resolutions and lighting conditions."},{"question":"Can I cancel my order after placing it?","answer":"Yes, you can cancel your order within a certain timeframe after placing it. Please refer to our cancellation policy on the website for detailed information on how to cancel your order."},{"question":"Do you offer any loyalty programs or rewards for frequent shoppers?","answer":"Yes, Bewakoof has a loyalty program that rewards our frequent shoppers with points that can be redeemed for discounts on future purchases. Sign up for our newsletter or check our website for more details on how to join and benefit from our loyalty program."},{"question":"What if the brown pants I want are out of stock?","answer":"If the brown trousers you want are out of stock, you can sign up for restock notifications on the product page. We will notify you via email as soon as the item is back in stock."},{"question":"Can I track my order after it has been shipped?","answer":"Yes, once your order has been shipped, you will receive a tracking number via email. You can use this tracking number to check the status of your delivery on our website or through the courier's tracking portal."}]},{"url":"women-white-jeans","faq":[{"question":"What sizes are available for white jeans for women?","answer":"We offer a range of sizes for women's white jeans to cater to different body types. You can find size options from XS to XXL. Please refer to our size guide on the product page to find the perfect fit for you."},{"question":"How do I care for my white jeans?","answer":"To keep your white jeans looking fresh and new, its important to follow proper care instructions. Wash them in cold water with similar colors to prevent any dye transfer. Avoid using bleach, as it can damage the fabric. Air dry your jeans to maintain their shape and avoid excessive heat from the dryer."},{"question":"Can I return or exchange my women's white jeans if they don't fit?","answer":"Yes, Bewakoof.com offers a hassle-free return and exchange policy. If your white jeans dont fit or youre not satisfied with them for any reason, you can return or exchange them within a specified period. Please check our return policy page for detailed information on the process and timeframes."},{"question":"Are there any discounts available on white jeans for women?","answer":"We frequently offer discounts and promotions on women's white jeans. Keep an eye on our website and subscribe to our newsletter to stay updated on the latest offers and deals."},{"question":"How long does delivery take?","answer":"Delivery times may vary depending on your location. Typically, orders are processed and shipped within 1-2 business days, and you can expect delivery within 3-7 business days. You will receive a confirmation e-mail with tracking information once your order has been shipped."},{"question":"What payment methods do you accept?","answer":"We accept a variety of payment methods to make your shopping experience as convenient as possible. You can pay using credit cards, debit cards, net banking, UPI, and popular e-wallets. All transactions are secure and encrypted for your safety."},{"question":"Do you offer international shipping?","answer":"Currently, Bewakoof.com primarily ships within India. However, we are continually expanding and hope to offer international shipping soon. Stay tuned for updates on our shipping policies."},{"question":"Can I track my order?","answer":"Yes, once your order of white jeans is shipped, you will receive a confirmation email with a tracking number. You can use this tracking number to monitor the status of your delivery through our website or the couriers tracking portal."},{"question":"What if my white jeans arrive damaged or defective?","answer":"If your white jeans arrive damaged or defective, please contact our customer service team immediately. We will arrange for a replacement or refund as per our return policy. Your satisfaction is our priority, and we aim to resolve any issues promptly."}]},{"url":"track-pants-for-men","faq":[{"question":"What Are Track Pants?","answer":"Track pants are a versatile piece of clothing designed for comfort and style. They are perfect for workouts, casual wear, and even as part of a trendy streetwear outfit. At Bewakoof, we offer a wide range of men's track pants online, catering to different tastes and preferences."},{"question":"What materials are Bewakoof's track pants for men made from?","answer":"Bewakoof's track pants are made from high-quality materials such as cotton, polyester, and blends that ensure comfort, durability, and breathability. These materials are carefully selected to provide flexibility and support, making them suitable for both casual wear and athletic activities."},{"question":"How do I choose the right size for my men's track pants online?","answer":"Choosing the right size is crucial for comfort and style. Bewakoof provides a detailed size chart on each product page to help you find your perfect fit. Measure your waist, hips, and inseam, and compare these measurements to our size chart for an accurate fit. If you're still unsure, our customer support team is always ready to assist you."},{"question":"Can I return or exchange my track pants for gents if they don't fit?","answer":"Yes, Bewakoof offers a hassle-free return and exchange policy. If your mens track pants don't fit or if you're not satisfied with your purchase, you can return or exchange them within a specified period. Please refer to our return policy on the website for more details."},{"question":"Are there any discounts or offers available on men's track pants online?","answer":"Bewakoof frequently offers discounts and promotional deals on a wide range of products, including men's track pants. Keep an eye on our website and subscribe to our newsletter to stay updated on the latest offers and discounts."},{"question":"How do I care for my track pants to ensure they last long?","answer":"To maintain the quality and longevity of your track pants, follow the care instructions provided on the label. Generally, it's best to wash them in cold water, avoid using harsh detergents, and let them air dry. Avoid ironing directly on prints or embellishments to keep them looking new."},{"question":"What makes Bewakoof's track pants for men different from other brands?","answer":"Bewakoof's track pants stand out due to their exceptional quality, trendy designs, and affordable prices. Our commitment to customer satisfaction and continuous innovation ensures that you get the best value for your money. Additionally, our wide range of options caters to various styles and preferences, making it easy to find the perfect track pants for any occasion."}]},{"url":"men-cotton-jeans","faq":[{"question":"What sizes are available for men's cotton jeans?","answer":"We offer a wide range of sizes to ensure a perfect fit for every customer. Our size guide provides detailed measurements to help you select the right size. If you have any questions, our customer service team is here to assist you."},{"question":"How do I care for my cotton jeans?","answer":"Cotton jeans are easy to maintain. Simply machine wash them in cold water with like colors and tumble dry on low. Avoid using bleach and iron on a low setting if needed. Following these care instructions will help keep your jeans looking great for a long time."},{"question":"Are there any discounts available?","answer":"Yes, Bewakoof.com frequently offers exclusive discounts and deals on our cotton jeans for gents. Be sure to check our website regularly and sign up for our newsletter to stay updated on the latest promotions."},{"question":"Can I return or exchange my jeans if they don't fit?","answer":"Absolutely! We have a hassle-free return and exchange policy. If your jeans don't fit or you're not satisfied with your purchase, you can return or exchange them within the specified period. Please refer to our return policy on the website for more details."},{"question":"How long does shipping take?","answer":"We strive to deliver your order as quickly as possible. Shipping times may vary based on your location, but we typically process and ship orders within a few business days. You can track your order through our website to stay updated on its status."},{"question":"What makes cotton jeans for men different from other types of jeans?","answer":"Cotton jeans are known for their breathability and comfort due to the natural fibers used in their construction. They are softer and more comfortable than jeans made from synthetic materials, making them ideal for everyday wear."},{"question":"How can I ensure the perfect fit when buying cotton jeans online?","answer":"To ensure the perfect fit, refer to our detailed size guide and read customer reviews. Measure your waist and inseam accurately and compare them with the size chart provided on our website. If you need further assistance, our customer service team is always ready to help."},{"question":"What payment methods are accepted on Bewakoof.com?","answer":"We accept a variety of payment methods including credit\u002Fdebit cards, net banking, and popular digital wallets like Paytm, Google Pay, and more. Our secure payment gateway ensures that your transactions are safe and protected."},{"question":"Are there any special care instructions for maintaining the color of cotton jeans?","answer":"To maintain the color of your cotton jeans, wash them inside out in cold water with like colors. Avoid using harsh detergents and bleach. Line dry them in the shade or tumble dry on low to prevent fading. Following these tips will help keep your jeans looking vibrant for longer."},{"question":"Can I track my order once it has been shipped?","answer":"Yes, once your order has been shipped, you will receive a tracking number via email. You can use this number to track the status of your shipment on our website or through the couriers tracking portal. This allows you to stay updated on the delivery status of your order."},{"question":"What if I receive a defective or damaged product?","answer":"If you receive a defective or damaged product, please contact our customer service team immediately. We will arrange for a replacement or refund as per your preference. Our priority is to ensure that you are completely satisfied with your purchase."},{"question":"Do you offer international shipping?","answer":"Currently, Bewakoof.com primarily serves customers within India. However, we are continually working to expand our reach. Please check our website for updates on international shipping options."},{"question":"How often do you update your collection?","answer":"We regularly update our collection to keep up with the latest trends and customer preferences. New styles and designs are added frequently, so be sure to check our website often to find the latest additions to our cotton jeans for men collection."}]},{"url":"men-floral-shirts","faq":[{"question":"What sizes are available for floral shirts for men at Bewakoof?","answer":"Bewakoof offers floral shirts in a range of sizes, from small to XXL. Detailed size guides are available on each product page to help you find the perfect fit."},{"question":"Can I return or exchange a floral shirt if it doesn't fit?","answer":"Yes, Bewakoof has a hassle-free return and exchange policy. If your men's floral shirt doesn't fit, you can easily return or exchange it within the specified return period."},{"question":"Are the men floral print shirts at Bewakoof made from quality materials?","answer":"Absolutely! Bewakoof prioritizes quality and uses high-quality fabrics to ensure that our floral shirts for men are comfortable, durable, and stylish."},{"question":"How long does shipping take for online orders from Bewakoof?","answer":"Shipping times may vary depending on your location, but Bewakoof strives to deliver your order as quickly as possible. You can check estimated delivery times during the checkout process."},{"question":"Are there any special care instructions for floral shirts?","answer":"Yes, to maintain the quality and longevity of your floral shirts, it's recommended to follow the care instructions provided on the label. Generally, it's best to wash them in cold water, avoid using bleach, and either tumble dry on low heat or air dry."},{"question":"Do you offer any discounts or promotions on floral shirts?","answer":"Bewakoof frequently offers discounts and promotions on various products, including floral printed shirts for men. Keep an eye on our website and subscribe to our newsletter to stay updated on the latest deals and offers."},{"question":"Can I track my order once it has been placed?","answer":"Yes, once your order is shipped, you will receive a tracking number via email. You can use the tracking number to monitor the status and location of your shipment through our website or the courier's tracking system."},{"question":"Are there any style tips available on how to wear men's floral shirts?","answer":"Absolutely! Our blog and product pages often feature style tips and suggestions on how to wear and pair floral shirts for different occasions. You can also check out our social media channels for more inspiration and fashion advice."}]},{"url":"men-balloon-jeans","faq":[{"question":"What are balloon fit jeans for men?","answer":"Balloon fit jeans for men are characterized by their roomy fit around the hips and thighs, tapering down to a narrower ankle. They offer a unique blend of comfort and style."},{"question":"How can I style balloon jeans?","answer":"You can style balloon fit jeans with a simple t-shirt and sneakers for a casual look or a fitted shirt and loafers for a more polished appearance. Accessories like belts and watches can add a sophisticated touch."},{"question":"Why should I buy balloon jeans from Bewakoof.com?","answer":"Bewakoof offers a wide range of sizes and styles, ensuring you find the perfect fit. Our commitment to quality, user-friendly website, and regular discounts make shopping with us a great choice."},{"question":"Are balloon jeans for men comfortable?","answer":"Yes, balloon fit jeans are designed to offer maximum comfort with their roomy fit around the hips and thighs, making them ideal for daily wear."},{"question":"How do I know which size to choose?","answer":"We provide a detailed size chart on our website to help you find the perfect fit. Our customer service team is always ready to assist you with any sizing queries."},{"question":"Are there any care instructions for balloon fit jeans?","answer":"Yes, to maintain the quality and longevity of your balloon fit jeans, we recommend washing them inside out in cold water and avoiding the use of bleach. Tumble dry on low heat or hang to dry for best results."}]},{"url":"half-sleeve-shirts-for-men","faq":[{"question":"What sizes are available for half sleeve shirts for men at Bewakoof?","answer":"At Bewakoof, we offer men half sleeve shirts in a variety of sizes ranging from XS to XXL. Our size guide helps you find the perfect fit for your body type."},{"question":"Can I return or exchange a half sleeves shirt if it doesn't fit?","answer":"Yes, Bewakoof offers a hassle-free return and exchange policy. If your half sleeve shirt doesn't fit, you can easily return or exchange it within the specified return period."},{"question":"Are there any discounts available on mens half sleeve shirts?","answer":"Bewakoof frequently offers discounts and promotions on our collection of half sleeve shirts for men. Keep an eye on our website and sign up for our newsletter to stay updated on the latest deals and offers."},{"question":"How can I be sure of the quality of the half sleeves shirts?","answer":"Bewakoof is committed to providing high-quality products. Our half sleeve shirts are made from premium fabrics that ensure durability and comfort. Customer reviews and detailed product descriptions also help you make an informed purchase."},{"question":"What are the payment options available for buying half sleeve shirt for men online?","answer":"Bewakoof offers a variety of secure payment options, including credit\u002Fdebit cards, net banking, UPI, and popular digital wallets. We ensure that your payment information is protected and transactions are smooth."},{"question":"How long does delivery take for half sleeves shirts?","answer":"Delivery times may vary depending on your location. Typically, orders are processed and shipped within 1-2 business days, and delivery is completed within 3-7 business days. You can track your order through our website or app."},{"question":"Do you offer any styling tips for men's half sleeve shirts?","answer":"Yes, our blog and social media channels frequently feature styling tips and fashion advice on how to wear half sleeve shirts for men. Follow us for the latest trends and inspiration."},{"question":"Can I find exclusive designs on Bewakoof?","answer":"Absolutely! Bewakoof prides itself on offering unique and exclusive designs that you won't find anywhere else. Our in-house design team works tirelessly to bring you the latest trends and innovative styles."},{"question":"What fabrics are used for half sleeve shirts at Bewakoof?","answer":"Bewakoof uses a variety of high-quality fabrics for half sleeve shirts, including cotton, denim, and blends. Each fabric is chosen for its durability and comfort."},{"question":"How do I choose the right size for my half sleeve shirt?","answer":"We provide a detailed size guide on our website to help you find the perfect fit. Measure your chest, waist, and hips, and compare them with our size chart to select the most suitable size."},{"question":"Do you offer customization options for men's half sleeve shirts?","answer":"Currently, Bewakoof does not offer customization options for half sleeve shirts. However, we are continually expanding our offerings and may introduce customization features in the future."},{"question":"What if I receive a damaged or defective shirt?","answer":"If you receive a damaged or defective shirt, please contact our customer service team immediately. We will assist you with the return or exchange process to ensure you receive a perfect product."},{"question":"Are the colors of the shirts true to the pictures on the website?","answer":"We strive to ensure that the colors of our shirts are as accurate as possible to the pictures displayed on our website. However, slight variations may occur due to different screen settings and lighting conditions."},{"question":"How should I care for my men half sleeve shirts to maintain their quality?","answer":"To maintain the quality and longevity of your half sleeve shirts, we recommend following the care instructions provided on the label. Generally, washing in cold water and avoiding direct sunlight for drying will help preserve the fabric and color."}]},{"url":"printed-shirts-for-men","faq":[{"question":"What sizes are available for printed shirts for men on Bewakoof?","answer":"We offer a wide range of sizes to cater to different body types. You can find detailed size charts on our product pages to help you choose the perfect fit for your shirt."},{"question":"Can I return or exchange a printed shirt if it doesn't fit?","answer":"Yes, we offer a hassle-free return and exchange policy. If you're not satisfied with your purchase, you can easily return or exchange it within the specified return period. Our customer service team is available to assist you with the process to ensure a smooth and hassle-free experience."},{"question":"Are there any special offers or discounts available on printed shirts for men?","answer":"Yes, Bewakoof frequently offers special promotions, discounts, and exclusive deals on various products, including printed shirts for men. Be sure to check our website regularly and subscribe to our newsletter to stay updated on the latest offers."},{"question":"Is it safe to shop online at Bewakoof.com?","answer":"Absolutely! We prioritize your security and privacy. Our website uses advanced encryption technologies to ensure that your personal & payment information is safe and secure. We also offer multiple secure payment options for your convenience."},{"question":"Do you offer printed shirts for men for different seasons?","answer":"Yes, our collection includes printed shirts suitable for all seasons. From light and breathable fabrics for summer to more substantial materials for winter, you can find the perfect shirt for any time of the year."},{"question":"How can I stay updated on new arrivals and trends in printed shirts for men?","answer":"To stay updated on new arrivals, trends, and exclusive offers, you can subscribe to our newsletter, follow us on social media, and regularly visit our website. This way, you'll be the first to know about the latest additions to our collection."}]},{"url":"women-sliders","faq":[{"question":"What is slider for women?","answer":"Slider for women is a type of open-toe footwear that is easy to slip on and off. They typically feature a single strap over the foot and are known for their comfort and casual style."},{"question":"Why should I buy sliders for women from Bewakoof?","answer":"At Bewakoof, we offer a wide range of stylish, comfortable, and cute sliders for women. Our collection includes various designs and prints that cater to different tastes, ensuring you find the perfect pair for any casual occasion. Plus, our sliders are made from high-quality materials to provide durability and comfort."},{"question":"How can I shop for slides slippers for women online at Bewakoof.com?","answer":"Shopping for sliders at Bewakoof.com is simple. Visit our sliders for women section, browse through our extensive collection, select your preferred design and size, and add it to your cart. Proceed to checkout, fill in your details, and place your order."},{"question":"Are there any specific style tips for wearing sliders for girls?","answer":"Absolutely! Sliders are incredibly versatile and can be paired with various outfits. For a casual look, you can wear them with shorts or jeans. For a more chic appearance, try pairing them with a summer dress or a skirt."},{"question":"What sizes are available for womens sliders on Bewakoof?","answer":"We offer a wide range of sizes for women sliders to ensure a perfect fit for everyone. You can find detailed size information on each product page to help you choose the right size."},{"question":"How do I care for my Bewakoof women sliders?","answer":"To keep your sliders in good condition, clean them regularly with a damp cloth. Avoid exposing them to excessive moisture or direct sunlight for prolonged periods, as this can cause damage to the material."},{"question":"Can I return or exchange my sliders if they don't fit?","answer":"Yes, we have a hassle-free return and exchange policy. If your women's sliders don't fit or if youre not satisfied with your purchase, you can return or exchange them within the specified period. Please check our return policy on the website for more details."},{"question":"Are there any discounts available for buying sliders for women online?","answer":"Yes, Bewakoof frequently offers discounts and promotions on our products, including sliders for women. Keep an eye on our website or subscribe to our newsletter to stay updated on the latest deals and offers."},{"question":"Is it safe to shop women's sliders online at Bewakoof.com?","answer":"Absolutely! We prioritize your security and privacy. Our website uses secure encryption technology to ensure that your personal and payment information is protected. Shop with confidence knowing that your data is safe with us."},{"question":"Can I gift fancy sliders for women to someone through Bewakoof?","answer":"Yes, you can! Sliders for women make a great gift. Simply enter the recipients address during checkout, and well deliver the sliders directly to them. You can also include a personalized message for an extra special touch."}]},{"url":"cargo-joggers-for-women","faq":[{"question":"What are Women's cargo joggers?","answer":"Women's Cargo joggers are a type of casual pants that combine the comfort of joggers with the utility features of cargo pants, such as multiple pockets and a relaxed fit."},{"question":"Why should I buy ladies cargo joggers from Bewakoof?","answer":"At Bewakoof, we offer a wide range of stylish and comfortable cargo joggers for women. Our collection features various colors and designs to suit your preferences. Plus, we provide high-quality products at competitive prices."},{"question":"How do I shop for cargo joggers online at Bewakoof?","answer":"Shopping for cargo joggers online at Bewakoof is easy. Simply visit our cargo joggers section, browse through the available options, select your preferred style and size, and add it to your cart. Proceed to checkout to complete your purchase."},{"question":"What sizes are available for women's cargo joggers?","answer":"We offer a range of sizes to ensure a comfortable fit for everyone. You can find detailed size information on each product page to help you choose the right size."},{"question":"Can I return or exchange my cargo joggers if they don't fit?","answer":"Yes, we have a hassle-free return and exchange policy. If your cargo joggers don't fit or you are not satisfied with your purchase, you can return or exchange them within the specified return period. Please refer to our return policy for more details."},{"question":"Do you offer any discounts or promotions on cargo joggers for women?","answer":"Yes, we frequently offer discounts and promotions on our products, including cargo joggers. Keep an eye on our website or sign up for our newsletter to stay updated on the latest offers."},{"question":"Are the cargo joggers suitable for different occasions?","answer":"Absolutely! Our cargo joggers are designed to be versatile. Whether you're lounging at home, running errands, or heading out for a casual outing, these joggers provide both comfort and style."},{"question":"What materials are the cargo joggers made from?","answer":"Our cargo joggers are made from high-quality materials such as cotton, polyester, and blends that ensure durability, comfort, and breathability. You can find specific material details on each product page."},{"question":"How do I care for my cargo joggers?","answer":"To keep your cargo joggers in the best condition, we recommend following the care instructions provided on the product label. Generally, machine washing in cold water and avoiding harsh detergents will help maintain their quality."},{"question":"Can I find matching tops or accessories for my women's cargo joggers on Bewakoof?","answer":"Yes, we offer a wide range of tops and accessories that pair perfectly with our cargo joggers. Check out our tops and accessories sections to complete your look."},{"question":"How do I contact customer support if I have more questions?","answer":"If you have any additional questions or need assistance, our customer support team is here to help. You can reach us through the contact information provided on our website or use the live chat feature for immediate assistance."}]},{"url":"men-loose-fit-jeans","faq":[{"question":"What are loose fit jeans?","answer":"Loose-fit jeans are designed to provide more room around the thighs and legs, offering a relaxed and comfortable fit. They are ideal for casual wear and can be styled in various ways to suit different occasions."},{"question":"How do I choose the right size for loose jeans?","answer":"To choose the right size for relaxed fit jeans, start by measuring your waist and inseam accurately. Refer to the size guide provided on Bewakoof.com to match your measurements with the available sizes. If you need additional help, our customer service team is always ready to assist you with sizing queries."},{"question":"Are loose jeans suitable for all body types?","answer":"Yes, loose fit jeans are versatile and can be flattering for all body types. Their relaxed fit provides comfort and freedom of movement, making them a great option for anyone looking for a casual and stylish pair of jeans."},{"question":"How can I style loose-fit jeans for a more formal look?","answer":"To style loose fit jeans for a more formal look, opt for a pair in a dark wash. Pair them with a crisp button-down shirt and a blazer. Finish the look with polished shoes. This combination creates a sophisticated yet relaxed ensemble suitable for semi-formal events or casual office settings."},{"question":"Why should I buy loose fit jeans from Bewakoof?","answer":"Bewakoof offers a wide selection of trendy and high-quality relaxed fit jeans for men. Our jeans are made from durable materials that ensure long-lasting wear. Shopping online with us is convenient and hassle-free, with detailed product descriptions, size guides, and secure payment options."},{"question":"What makes Bewakoof.com different from other online stores?","answer":"We stand out due to our commitment to quality, trendy designs, and customer satisfaction. We offer a diverse range of products, including loose jeans for men, ensuring there's something for everyone."}]},{"url":"white-shirts-for-men","faq":[{"question":"What sizes are available for white shirts for men at Bewakoof.com?","answer":"We offer a wide range of sizes from XS to XXL to accommodate different body types. You can refer to our size chart for precise measurements to find your perfect fit."},{"question":"Are the white shirts for men true to size?","answer":"Yes, our white shirts are designed to be true to size. We recommend checking our size guide for accurate measurements before making a purchase."},{"question":"Can I return or exchange my white shirt if it doesnt fit?","answer":"Absolutely! We have a hassle-free return and exchange policy. If your shirt doesnt fit, you can return or exchange it within the specified period. Please refer to our return policy for more details."},{"question":"What fabrics are the white shirts made from?","answer":"Our white shirts for men are made from high-quality fabrics such as cotton, linen, and blends. Each fabric is selected for its comfort, durability, and style."},{"question":"How do I care for my white shirt to keep it looking new?","answer":"Follow our care tips for washing, drying, ironing, and stain removal to maintain the pristine condition of your white shirt. Proper care ensures longevity and keeps your shirt looking fresh."},{"question":"How long does delivery take?","answer":"Delivery times may vary based on your location. Typically, orders are delivered within 3-7 business days. You can track your order via our website for real-time updates."}]},{"url":"one-piece-merchandise","faq":[{"question":"What types of Garfield T-shirts & Merchandise are available on Bewakoof.com?","answer":"We offer a wide range of Garfield T-shirts and merchandise, including graphic tees, hoodies, and accessories featuring your favorite Garfield designs."},{"question":"Where can I buy One Piece T-Shirts online?","answer":"You can buy a wide range of One Piece T-Shirts online at Bewakoof.com. We offer various designs, including graphic prints and oversized fits."},{"question":"Do you have different styles of One Piece T-Shirts?","answer":"Yes, we have a variety of styles including full sleeve, oversized, and graphic printed T-Shirts. You can explore our diverse range here."},{"question":"Are there One Piece T-Shirts available for both men and women?","answer":"Absolutely! We offer One Piece T-Shirts for both men and women."},{"question":"Can I find oversized One Piece T-Shirts on Bewakoof.com?","answer":"Yes, we have a selection of oversized One Piece T-Shirts. You can find them in various colors and designs."},{"question":"How do I know what size to order for One Piece T-Shirt?","answer":"We provide a detailed size guide on our product pages to help you choose the right fit."},{"question":"What is the price range for One Piece T-Shirts?","answer":"The prices vary depending on the design and style of the T-Shirt. You can find affordable options and premium designs on our website. Browse our collection to see the different price ranges available here."},{"question":"Do you offer any discounts or promotions on One Piece T-Shirts?","answer":"Yes, we frequently have discounts and promotions on our One Piece T-Shirts. Keep an eye out for special deals on our website or sign up for our newsletter to stay updated on the latest offers."},{"question":"What materials are the One Piece T-Shirts made from?","answer":"Our One Piece T-Shirts are made from high-quality cotton and cotton blends, ensuring comfort and durability. Each product page provides specific details about the materials used."},{"question":"How can I care for my One Piece T-Shirt to ensure it lasts long?","answer":"To keep your One Piece T-Shirt in the best condition, we recommend washing it inside out in cold water, using mild detergent, and avoiding bleach. Tumble dry on low or hang dry to maintain the print and fabric quality."}]},{"url":"loose-fit-jeans-for-women","faq":[{"question":"What sizes are available in the loose fit jeans collection for women?","answer":"Our loose fit jeans for women are available in a range of sizes, from XS to XXL, ensuring a perfect fit for everyone."},{"question":"How do I care for my loose fit jeans?","answer":"To maintain the quality of your loose fit jeans, we recommend washing them inside out in cold water with similar colors. Avoid using bleach and tumble dry on low heat or hang them to air dry. This will help preserve the fabric and color of your jeans."},{"question":"Can I return or exchange my loose fit jeans if they don't fit?","answer":"Absolutely! Bewakoof offers easy returns and exchanges. If your loose fit jeans don't fit or meet your expectations, you can return them within the specified return period. Please refer to our return policy on the website for detailed instructions."},{"question":"Are there any special offers available for loose fit jeans?","answer":"Yes, Bewakoof frequently runs promotions and discounts on our collection of loose fit jeans for women. Keep an eye on our website and subscribe to our newsletter to stay updated on the latest offers and exclusive deals."},{"question":"How long does delivery take?","answer":"Delivery times may vary based on your location. Typically, orders are processed and shipped within 1-2 business days, and delivery can take between 3-7 business days. You can track your order through the tracking link provided in your confirmation email."},{"question":"What makes Bewakoof's loose fit jeans unique?","answer":"Bewakoof's loose fit jeans stand out due to their high-quality materials, trendy designs, and exceptional comfort. We focus on creating products that not only look great but also provide a comfortable fit for all-day wear. Our commitment to quality and customer satisfaction makes our jeans a popular choice among shoppers."}]},{"url":"men-crochet-shirts","faq":[{"question":"Are there different designs available for men's crochet shirts on Bewakoof?","answer":"Yes, Bewakoof offers a wide range of designs for men's crochet shirts. You can find various patterns, colors, and styles to suit your personal preferences."},{"question":"What sizes are available for crochet shirts for men on Bewakoof?","answer":"Bewakoof provides crochet shirts for men in a variety of sizes, ranging from small to extra-large, ensuring a perfect fit for everyone."},{"question":"How do I care for my crochet shirt to ensure its longevity?","answer":"To maintain the quality and longevity of your crochet shirt, it is recommended to hand wash it with mild detergent and lay it flat to dry. Avoid wringing or twisting the fabric to prevent damage."},{"question":"Can I return or exchange my crochet shirt if it doesn't fit? ","answer":"Yes, Bewakoof offers a hassle-free return and exchange policy. If your crochet shirt doesn't fit, you can easily return or exchange it within the specified period. Please refer to our return policy for more details."},{"question":"Are there any discounts available for first-time buyers?","answer":"Bewakoof often provides special discounts and offers for first-time buyers. Keep an eye on our website or subscribe to our newsletter to stay updated on the latest deals."}]},{"url":"men-shirts","faq":[{"question":"HOW DO I KNOW MY SIZE WHEN SHOPPING FOR CASUAL SHIRTS ONLINE AT BEWAKOOF.COM?","answer":"You can refer to the size guide provided on each product page, which includes measurements and size recommendations to help you find the perfect fit."},{"question":"IS IT SAFE TO BUY CASUAL SHIRTS FOR MEN ONLINE FROM BEWAKOOF.COM?","answer":"Absolutely. Bewakoof uses secure payment gateways and ensures that your personal and payment information is kept confidential and safe."},{"question":"WHAT KIND OF MEN SHIRTS CAN I FIND WHEN I SHOP AT BEWAKOOF.COM?","answer":"Our online collection ranges from casual to formal, solid to printed, and everything in between. We have a shirt for every personality and occasion. Just browse, select, and buy the styles that suit you best."},{"question":"WHAT SHOULD I LOOK FOR WHEN I BUY A SHIRT ONLINE TO ENSURE IT'S GOOD QUALITY?","answer":"When you shop online, check the product details for information on fabric, fit, and care instructions. We provide detailed descriptions so you can buy with confidence, knowing you're getting top-quality casual shirts for men."},{"question":"ARE THERE ANY BENEFITS TO BUYING MEN'S SHIRTS ONLINE AS A BEWAKOOF TRIBE MEMBER?","answer":"Yes, TriBe members enjoy exclusive benefits when they shop online with us. From special discounts to early access to new launches buy your shirts for men from Bewakoof.com and reap the rewards of being a TriBe member."}]},{"url":"garfield-merchandise","faq":[{"question":"What types of Garfield T-shirts & Merchandise are available on Bewakoof.com?","answer":"We offer a wide range of Garfield T-shirts, Hoodies, Mobile Covers, including graphic prints, oversized fits, and various colors. You can find both men's and women's styles, as well as unisex options."},{"question":"How can I buy a Garfield T-shirt online at Bewakoof.com?","answer":"Purchasing a Garfield T-shirt is easy! Simply browse our selection, choose your favorite design, select your size, and add it to your cart. Proceed to checkout, fill in your shipping details, and complete the payment process. Start shopping here."},{"question":"Are there oversized Garfield T-shirts available?","answer":"Yes, we have several oversized Garfield T-shirts available. For example, you can find options like the Men's Pink Friday Garfield Graphic Printed Oversized T-shirt and the Women's Lavender Rock Garfield Graphic Printed Oversized T-shirt."},{"question":"Do you have Garfield Merchandise for both men and women?","answer":"Absolutely! We have a variety of Garfield T-shirts & Merchandise for both men and women."},{"question":"Are there any special designs or quotes on the Garfield T-shirts?","answer":"Yes, our Garfield T-shirts feature unique designs and quotes. For instance, the Men's Green Whatever Garfield Graphic Printed T-shirt and the unisex \"Do I Look Like I Care?\" T-shirt are some of the popular choices."},{"question":"Can I find Garfield T-shirts in different colors?","answer":"Yes, our Garfield T-shirts come in various colors. From pink and green to classic white and lavender, you can find a wide range of colors to suit your style. Explore our full range of colors by visiting our Garfield T-shirt collection here."},{"question":"What sizes are available for Garfield T-shirts?","answer":"We offer Garfield T-shirts in a variety of sizes, ranging from XS to XXL. To ensure the perfect fit, refer to our size guide available on each product page. If you have any specific size questions, feel free to contact our customer support."},{"question":"How can I be sure of the quality of the Garfield T-shirts on Bewakoof.com?","answer":"We take pride in offering high-quality products. Our Garfield T-shirts are made from premium fabrics that are soft, durable, and comfortable to wear. Customer reviews and ratings on each product page can also provide insights into the quality."},{"question":"What is the return policy for Garfield Merchandise?","answer":"If you're not satisfied with your purchase, you can return the Garfield Merchandise within 15 days of delivery. The item should be unused, and in its original condition with all tags attached. For more details, visit our return policy page."}]},{"url":"men-plain-t-shirts","faq":[{"question":"What type of plain t-shirts for men are available at Bewakoof?","answer":"We offer a wide range of plain t-shirts for men, including crew neck, V-neck, and polo styles. Our collection features various colors and sizes to suit your preferences and needs."},{"question":"Are the plain t-shirts made from high-quality material?","answer":"Yes, our plain t-shirts are crafted from high-quality materials like 100% pure cotton, ensuring a soft and comfortable fit. We prioritize quality to provide you with durable and stylish apparel."},{"question":"How can I find the right size for my plain t-shirt?","answer":"We provide a detailed size chart on our website to help you find the perfect fit. Measure yourself and compare your measurements with our size guide to choose the right size."},{"question":"How do I buy plain t-shirts for men?","answer":"Buying plain t-shirts for men on Bewakoof.com is easy! Browse our collection, select your preferred style, color, and size, and add the items to your cart. Proceed to checkout, fill in your details, and complete the payment process."},{"question":"Do you offer any discounts or promotions on plain t-shirts?","answer":"Yes, we frequently offer discounts and promotions on our men plain t-shirts. Keep an eye on our website and subscribe to our newsletter to stay updated on the latest deals and offers."},{"question":"Is it safe to shop plain t-shirts online from Bewakoof.com?","answer":"Yes, shopping online at Bewakoof.com is completely safe. We use secure payment gateways and encryption to protect your personal and payment information."},{"question":"What payment methods do you accept for online purchases?","answer":"We accept various payment methods, including credit\u002Fdebit cards, net banking, UPI, and popular digital wallets. You can choose the most convenient option for you during checkout."},{"question":"How much time does it take to deliver plain t-shirts after I place an order?","answer":"Delivery times can vary from location to location, but we typically process and ship orders within 1-3 business days. Once shipped, you can expect your plain t-shirt for men to arrive within 5-7 business days. You will also receive a tracking number to monitor your order's progress."},{"question":"Can I track my order after purchasing a plain t-shirt online?","answer":"Yes, once your order is shipped, we will email you a tracking number. You can use this number to track your order's status and estimated delivery time through our delivery partner's website."}]},{"url":"nasa-merchandise","faq":[{"question":"What types of NASA t-shirts can I find at Bewakoof.com?","answer":"At Bewakoof, we offer a wide range of NASA t-shirts for both men and women. Our collection includes graphic printed t-shirts, slogan tees, and mission-specific designs that celebrate various NASA milestones. You can find short-sleeve, long-sleeve, and even hoodie options in our NASA merchandise lineup."},{"question":"How do I choose the right size NASA t-shirt when shopping online?","answer":"To choose the right size, refer to our detailed size chart available on each product page. Measure your chest, waist, and hips, and compare these measurements with the chart to find your perfect fit."},{"question":"Can I buy official NASA merchandise from Bewakoof?","answer":"Yes, you can! Bewakoof offers officially licensed NASA merchandise. Our products are designed to meet quality standards and feature authentic NASA logos and designs."},{"question":"Are there any special care instructions for NASA t-shirts?","answer":"To keep your NASA t-shirts looking their best, we recommend washing them inside out in cold water with similar colors. Avoid using bleach and opt for a gentle cycle. Tumble dry on low heat or hang them to dry."},{"question":"How can I stay updated on new NASA merchandise releases?","answer":"To stay updated on new arrivals and exclusive NASA merchandise, sign up for our newsletter. You can also follow us on our social media channels for the latest updates and special offers."},{"question":"How long does it take to deliver my NASA t-shirt order?","answer":"Delivery times may vary based on your location. Typically, orders are processed and shipped within 1-2 business days. You can expect to receive your order within 5-7 business days after it has been shipped."},{"question":"Can I return or exchange my NASA t-shirt if it doesn't fit?","answer":"Yes, we offer a hassle-free return and exchange policy. If your NASA t-shirt doesn't fit or meet your expectations, you can return or exchange it within 15 days of delivery. Ensure that the item is unworn, unwashed, and in its original condition with all tags attached. Visit our returns and exchanges page for more details on how to initiate the process."},{"question":"Are there any discounts or offers available on NASA merchandise?","answer":"We frequently offer discounts and special promotions on our NASA merchandise. To take advantage of these deals, check our website regularly or subscribe to our newsletter."},{"question":"Can I track my NASA t-shirt order after it has been shipped?","answer":"Yes, once your order has been shipped, you will receive a tracking number via email. You can use this tracking number to monitor the status of your shipment on our website or through the courier's tracking portal."}]},{"url":"oneplus-nord-ce-3-lite-5g-back-covers-cases","faq":[{"question":"How durable are the OnePlus Nord CE 3 Lite covers available on Bewakoof.com?","answer":"\u003Cp\u003EThe OnePlus Nord CE 3 Lite cover we offer are made of impact-resistant, hard plastic which is extremely durable. They are designed to protect your phone from everyday bumps and scratches while maintaining a slim profile.\u003C\u002Fp\u003E"},{"question":"Can I access all buttons and ports with the covers on?","answer":"\u003Cp\u003EYes, all of our OnePlus Nord CE 3 covers are designed to provide easy access to all standard buttons and ports. The covers are crafted to ensure that they do not hinder the usability of your device.\u003C\u002Fp\u003E"},{"question":"Is it safe to buy OnePlus Nord CE 3 Lite cover online on Bewakoof?","answer":"\u003Cp\u003EAbsolutely! Shopping online at Bewakoof is safe and secure. We offer a seamless shopping experience with easy payment options and a hassle-free return policy if you are not satisfied with your purchase.\u003C\u002Fp\u003E"},{"question":"What makes Bewakoof.com a good choice for buying OnePlus Nord CE 3 Lite mobile cover?","answer":"\u003Cp\u003EWe are known for our trendy and affordable products. When you buy OnePlus Nord CE 3 Lite back covers from us, you are choosing from a collection that is not only stylish but also offers great protection for your device. \u003C\u002Fp\u003E"},{"question":"How often does Bewakoof.com update its OnePlus Nord CE 3 Lite cover collection?","answer":"\u003Cp\u003EWe regularly update our collection to ensure that we are offering the latest trends and styles. Keep an eye on our website for new designs and collections that are added frequently.\u003C\u002Fp\u003E"},{"question":"How can I find the perfect OnePlus Nord CE 3 Lite cover for me on Bewakoof.com?","answer":"\u003Cp\u003EYou can easily browse through our extensive collection by using the search and filter features on our website. You can filter by themes, colors, and designs to find a cover that matches your personal style and preferences.\u003C\u002Fp\u003E"},{"question":"Are there any exclusive benefits for members when buying OnePlus Nord CE 3 Lite Cases?","answer":"\u003Cp\u003EYes, if you join our Tribe Membership, you can enjoy exclusive benefits such as additional discounts, early access to sales, and more. It's our way of showing appreciation to our loyal customers.\u003C\u002Fp\u003E"},{"question":"Can I customize my OnePlus Nord CE 3 Lite cover on Bewakoof.com?","answer":"\u003Cp\u003ECurrently, we offer a wide range of pre-designed covers that you can choose from. We do not offer customization options at the moment, but we are always looking to expand our offerings based on customer feedback.\u003C\u002Fp\u003E"},{"question":"How can I take care of my OnePlus Nord CE 3 Lite cover to ensure it lasts long?","answer":"\u003Cp\u003ETo maintain the appearance and integrity of your OnePlus Nord CE 3 Lite cover, we recommend keeping it away from extreme temperatures and direct sunlight. Clean it with a soft, dry cloth to remove dust and avoid using harsh chemicals or abrasive materials.\u003C\u002Fp\u003E"}]},{"url":"xiaomi-redmi-note-12-5g-back-covers-cases","faq":[{"question":"Can I find Redmi Note 12 5G back covers within my budget at Bewakoof.com?","answer":"Absolutely! Our Redmi Note 12 5G covers are competitively priced, and we frequently offer deals and discounts to make our products even more affordable."},{"question":"Is it safe to buy Redmi Note 12 5G back cases online at Bewakoof.com?","answer":"Yes, shopping at Bewakoof.com is safe. We use secure payment methods and ensure that your personal and financial information is protected."},{"question":"What if I'm not satisfied with my Redmi Note 12 5G cover?","answer":"We offer a straightforward return and exchange policy. If you're not satisfied with your purchase, you can return it within the specified period for a refund or exchange."},{"question":"How long will it take to deliver my Redmi Note 12 5G back cover?","answer":"Delivery times can vary based on your location and the availability of the product. Once you place an order, you will be provided with an estimated delivery date. Bewakoof.com strives to deliver products as quickly as possible."},{"question":"Are there any additional charges for shipping when buying a Redmi Note 12 5G back case?","answer":"Shipping charges, if any, will be clearly mentioned at the time of checkout. Sometimes, we offer free shipping promotions, so keep an eye out for those to save on delivery costs."},{"question":"How can I find the right Redmi Note 12 5G back cover for me on Bewakoof.com?","answer":"Shipping charges, if any, will be clearly mentioned at the time of checkout. Sometimes, we offer free shipping promotions, so keep an eye out for those to save on delivery costs."}]},{"url":"sneakers-for-men","faq":[{"question":"How do I find the right size when I buy sneakers for men online?","answer":"We recommend measuring your foot length and comparing it with our size chart available on the product page. This helps ensure you select the right size when you shop online."},{"question":"Can I return or exchange my sneakers if they don't fit?","answer":"Absolutely! We offer easy returns and exchanges. If your sneakers don't fit, you can return or exchange them within the specified return period. Please check our return policy for more details."},{"question":"Are there any special care instructions for maintaining my sneakers?","answer":"Yes, to keep your sneakers for men looking fresh, we suggest cleaning them with a soft brush and mild detergent. Avoid machine washing unless specified. Detailed care instructions are provided with each product."},{"question":"How long does delivery take when I shop for men's sneakers online?","answer":"Delivery times vary based on your location. Typically, it takes 3-7 business days for your sneakers to arrive. You can track your order through the link provided in your confirmation email."},{"question":"What payment methods are accepted when buying sneakers for men online?","answer":"We accept various payment methods, including credit cards, debit cards, net banking, UPI, and popular e-wallets. Choose the option that suits you best at checkout."},{"question":"Are there any benefits to creating an account before I shop for sneakers?","answer":"Creating an account allows you to track your orders, save your favorite items, and enjoy a faster checkout process. Plus, you'll receive updates on exclusive offers and new arrivals."},{"question":"How do I know if the sneakers I want to buy are in stock?","answer":"The availability status is shown on the product page. If a size or color is out of stock, you can sign up for notifications to be alerted when it becomes available again."},{"question":"Are there any special offers for first-time buyers?","answer":"Yes, we often have special promotions for first-time buyers. Keep an eye on our homepage or subscribe to Bewakoof's newsletter to stay updated on the latest offers."},{"question":"How do I track my order once I've purchased men's sneakers online?","answer":"After placing your order, you'll receive a confirmation email with a tracking link. Use that link to monitor the status of your delivery in real time."},{"question":"How often do you update your sneakers collection?","answer":"We regularly update our sneakers collection to bring you the latest trends and styles. Check back often or follow us on social media to stay informed about new arrivals."}]},{"url":"men-pants","faq":[{"question":"What types of trousers for men can I buy on Bewakoof?","answer":"You can buy a variety of men's pants on Bewakoof, including cotton pants and casual pants in various designs and styles to suit your fashion needs."},{"question":"How do I know which size to choose when shopping for men pants online at Bewakoof?","answer":"Bewakoof provides a detailed size chart for all clothing items. Make sure to measure yourself and compare it with the size chart on the product page to find the perfect fit for you."},{"question":"Is it safe to make payments online on Bewakoof?","answer":"Absolutely, making payments on Bewakoof.com is safe. We use secure payment gateways to ensure that your transaction details are protected."},{"question":"How often does Bewakoof update its collection of trousers and pants for men?","answer":"We frequently update our collection with the trendiest designs and styles. Keep an eye on our website or subscribe to our newsletter for the latest updates."},{"question":"Can I find plus-size pants for men on Bewakoof?","answer":"Yes, Bewakoof is inclusive and offers a huge variety of plus-size pants for men. You can find pants in larger sizes, ensuring that there's something for everyone."},{"question":"How can I track my order after purchasing trousers for men on Bewakoof?","answer":"Once your order is placed, you can track it by logging into your account on Bewakoof. There, you'll find the tracking information and updates on the delivery status of your purchase."},{"question":"What materials are the men trousers and pants on Bewakoof made of?","answer":"Trousers for men on Bewakoof are made from a variety of materials, including but not limited to cotton, denim, and synthetic blends. Each product page details the material used, so you can choose according to your preference and comfort."},{"question":"How long does it take for trousers for men to be delivered after I order them online from Bewakoof?","answer":"Delivery times may vary based on your location and the availability of the pants. Generally, we process orders within a few days, and the estimated delivery time will be provided at checkout."}]},{"url":"women-pajamas","faq":[{"question":"What types of women's pyjamas can I buy at Bewakoof.com?","answer":"\u003Cp\u003EAt Bewakoof.com, you can find a variety of women's pajamas that suit your comfort and style. We offer a range of cute Cotton Pyjamas for women with cool prints and quirky designs, perfect for lounging or a cozy night's sleep.\u003C\u002Fp\u003E"},{"question":"Can I find pyjama for women for different seasons on Bewakoof.com?","answer":"\u003Cp\u003EAbsolutely! We cater to all seasons by offering a variety of pyjamas made from different materials. Whether you need something light and breathable for the summer or something warmer for the winter.\u003C\u002Fp\u003E"},{"question":"How do I know which size to choose when buying pyjamas?","answer":"\u003Cp\u003EWe have a detailed size guide available on our product pages. For instance, if you're looking at our Bewakoof Women Pyjama, you'll find a size chart that will help you select the perfect fit based on your measurements.\u003C\u002Fp\u003E"},{"question":"Can I find women's plus-size pajamas on Bewakoof.com? ","answer":"\u003Cp\u003EYes, we believe in catering to all body types. You can find a range of plus-size pajamas that offer both comfort and style. Just filter the size option to 'plus size' when browsing our women's pajamas section.\u003C\u002Fp\u003E"},{"question":"Are there any offers or discounts when buying women's pyjamas online at Bewakoof.com?","answer":"\u003Cp\u003EWe often run promotions and discounts on our products. To stay updated on offers for women's pajamas, make sure to sign up for our newsletter, check our offers page, and follow us on social media.\u003C\u002Fp\u003E"},{"question":"How can I style my Bewakoof's pajama for a casual day out?","answer":"\u003Cp\u003EWhile our women's pajamas are designed for comfort at home, you can certainly style them for a casual day out. \u003C\u002Fp\u003E"},{"question":"Is there a return policy for women's pajamas bought on Bewakoof.com?","answer":"\u003Cp\u003EYes, we have a customer-friendly return policy. If you're not satisfied with your purchase, you can return it within a specific period. For more details, you can visit our contact us page where we provide information on our return and exchange policies.\u003C\u002Fp\u003E"},{"question":"Are the colors of the pyjamas shown on the website accurate?","answer":"\u003Cp\u003EWe strive to display our products as accurately as possible, but screen resolutions and settings can sometimes affect how colors appear online. Rest assured, we make every effort to ensure the colors you see are as close to the actual product as possible.\u003C\u002Fp\u003E"}]},{"url":"black-panther-merchandise","faq":[{"question":"What types of Black Panther T-shirts are available?","answer":"We offer a variety of Black Panther T-shirts, including graphic prints, jerseys, and super loose-fit styles."},{"question":"Can I buy Black Panther T-shirts online?","answer":"Yes, you can shop Black Panther T-shirts online through our website."},{"question":"What sizes are available for Black Panther T-shirts on Bewakoof?","answer":"Bewakoof offers a range of sizes for our Black Panther T-shirts, from small to extra-large, ensuring there's an option for everyone."},{"question":"Can I customize my own Black Panther Merchandise","answer":"If you're looking for personalized Black Panther Merchandise, we also offer custom t-shirt printing services at affordable prices."},{"question":"What is the material of the Black Panther T-shirts?","answer":"Bewakoof's Black Panther T-shirts are made from high-quality, breathable cotton, ensuring comfort and durability."},{"question":"How do I care for my Black Panther T-shirt?","answer":"To keep your Black Panther T-shirt in great condition, we recommend washing it inside out with cold water and tumble drying on low heat. Avoid using bleach or ironing directly on the print."},{"question":"What is the return policy for Black Panther T-shirts?","answer":"We offer a hassle-free return policy. If you're not satisfied with your purchase, you can return the Black Panther T-shirt within 30 days of delivery for a full refund or exchange, provided it is in its original condition."},{"question":"Can I track my order?","answer":"Yes, once your order is shipped, you will receive a tracking number via email, allowing you to monitor the delivery status of your Black Panther T-shirt."}]},{"url":"men-vests","faq":[{"question":"What types of vests for men are available on Bewakoof.com?","answer":"Bewakoof.com offers a variety of men's vests, including gym vest, sleeveless vest, and casual vests suitable for everyday wear. They come in various designs and styles to cater to different preferences."},{"question":"Can I find gym vests for men on Bewakoof.com?","answer":"Yes, you can find a wide range of gym vests for men on Bewakoof.com. These vests are designed to provide comfort and style during your workout sessions."},{"question":"How do I choose the right size for a men's vest?","answer":"To choose the right size for a men's vest, refer to the size guide provided on the product page. Make sure to measure your chest and compare it to the size chart to find the best fit."},{"question":"Can I buy sleeveless vest for men on Bewakoof.com?","answer":"We have a selection of sleeveless vests for gents that are perfect for layering or wearing on their own during warmer weather."},{"question":"Is online shopping for men vests secure on Bewakoof.com?","answer":"Shopping online on Bewakoof.com is secure. We offer a safe shopping experience with secure payment options for purchasing men's vests and other apparel."},{"question":"Does Bewakoof.com offer easy returns or exchanges on men's vest?","answer":"Bewakoof.com has a return and exchange policy in place for men's vests. If you're not satisfied with your purchase, you can return or exchange the product within a specified period, as long as it meets the return criteria detailed on the website."},{"question":"How long does delivery take for men's vests ordered from Bewakoof.com?","answer":"Delivery times for men's vests can vary depending on your location and the availability of the product. Estimated delivery times are provided at checkout and on the product page."},{"question":"Are there any discounts or offers available when buying vest for men?","answer":"We frequently run discounts and offers on our products. To stay updated on the latest deals on men vests and other apparel, it's recommended to check the website regularly or sign up for our newsletter."}]},{"url":"samsung-galaxy-s21-back-covers-cases","faq":[{"question":"What types of Samsung S21 covers are available at Bewakoof.com?","answer":"Bewakoof.com offers a wide range of Samsung S21 covers, including stylish, protective, and durable designs. We have options like silicone cases, hard cases, and back cases to suit different preferences and needs."},{"question":"Are there any unique designs available for Samsung S21 covers at Bewakoof.com?","answer":"We are known for our unique and trendy designs. You can find a variety of unique designs for Samsung S21 back covers that stand out."},{"question":"How can I find the perfect fit for my Samsung Galaxy S21 cover on Bewakoof.com?","answer":"You can easily select the right fit for your Samsung Galaxy S21 cover by browsing through the dedicated section for Samsung S21 covers on Bewakoof.com and checking the compatibility in the product descriptions."},{"question":"Is the Samsung S21 back cover from Bewakoof.com durable? ","answer":"Yes, the covers available on Bewakoof.com are designed to be both stylish and durable, offering protection for your device."},{"question":"How often does Bewakoof.com update its collection of Samsung S21 back covers?","answer":"We frequently update our inventory with new designs and styles. Keep an eye on our website or subscribe to our newsletter for the latest updates on new arrivals for Samsung S21 mobile covers."},{"question":"Are there any discounts or sales on Samsung S21 back covers at Bewakoof.com?","answer":"We often run discounts and sales on our products. To take advantage of current deals on Samsung S21 covers, check out our website's offers section or sign up for our newsletter."},{"question":"How can I get in touch with customer service for questions about Samsung S21 cases on Bewakoof.com?","answer":"For any inquiries regarding Samsung S21 covers, you can reach out to Bewakoof.com's customer service through our Contact Us page or by using the customer support chat option on the website."}]},{"url":"mom-jeans-for-women","faq":[{"question":"What are mom jeans?","answer":"Mom jeans are a style of women's jeans that are characterized by a high waist, relaxed fit through the hips and thighs, and a straight or slightly tapered leg."},{"question":"How do I know my size when shopping for women's mom-fit jeans online?","answer":"To ensure you find the perfect fit when shopping online, refer to the size chart provided on Bewakoof.com, which includes detailed measurements. Additionally, read customer reviews for insights on fit and sizing."},{"question":"Can mom jeans be dressed up for more formal occasions?","answer":"Absolutely! Mom jeans for women can be dressed up by pairing them with a sophisticated blouse, a blazer, and heels. Accessorize with statement jewelry to add a touch of elegance to your ensemble."},{"question":"Are mom jeans suitable for all body types?","answer":"Yes, Our mom jeans for women are suitable for all body types. Their high waist and relaxed fit can flatter various figures. It's all about finding the right size and style that complements your body shape."},{"question":"Is it easy to return or exchange mom jeans if they don't fit right?","answer":"Bewakoof.com offers a straightforward return and exchange policy. If your mom jeans don't fit as expected, you can easily initiate a return or exchange within the specified period as per the website's policy."},{"question":"How do I maintain the quality of my women's mom jeans?","answer":"To maintain the quality of your mom jeans, follow the care instructions provided on the label. This often includes washing them inside out in cold water, avoiding bleach, and either hanging them to dry or using a low heat setting in the dryer."},{"question":"What makes Bewakoof.com a good place to buy mom jeans for women?","answer":"Bewakoof.com offers a wide selection of mom jeans with various styles and sizes to choose from. We provide user-friendly shopping experience, detailed product descriptions, and customer reviews to help you make an informed decision. Additionally, our commitment to sustainability and quality makes us a responsible choice for fashion-forward consumers."}]},{"url":"men-boxer-shorts","faq":[{"question":"What types of men's boxer shorts are available on Bewakoof.com?","answer":"At Bewakoof.com, you can find a wide range of boxers for men, including stylish and comfortable printed and cotton boxer shorts suitable for different preferences."},{"question":"Can I find cool and trendy designs in boxer shorts on Bewakoof.com?","answer":"Yes, Bewakoof.com offers a selection of cool and trendy boxer shorts with various prints and designs that cater to the latest fashion trends."},{"question":"How do I choose the right size of men's boxers?","answer":"You can refer to the size guide available on the product pages. For example, the Bewakoof Men's Solid Regular Fit Poplin Boxers on Amazon include a detailed size chart to help you find the perfect fit."},{"question":"Is it easy to shop for boxers online on Bewakoof.com?","answer":"Yes, shopping for boxers for men online on Bewakoof.com is user-friendly and straightforward. You can browse through a variety of options and select your preferred styles with ease."},{"question":"How do I buy men's boxers online on Bewakoof?","answer":"To buy men's boxers, simply select the boxer shorts for men you like, choose your size, and add them to the cart. Then, proceed to checkout to complete your purchase."},{"question":"Are there any offers or discounts when buying boxers for men on Bewakoof.com?","answer":"Bewakoof.com often runs promotions and discounts. It's best to check the website regularly or sign up for their newsletter to stay updated on the latest deals for men's boxers."},{"question":"What is the return policy for boxer shorts purchased on Bewakoof?","answer":"For information on the return policy for boxer shorts, you can visit the Refund & Returns section on Bewakoof.com. Generally, items can be returned within a specified period if they are unworn, unwashed, and have the original tags intact, but it's important to check the specific terms for your purchase."},{"question":"How long does it take for men's boxer shorts to be delivered after placing an order?","answer":"Delivery times can vary based on your location and the availability of the product. We provide an estimated delivery date at checkout, and you can track your order through your account on the website."},{"question":"How can I get in touch with customer service if I have questions about my order of men's boxers?","answer":"For any inquiries regarding your order of men's boxers, you can contact Bewakoof.com's customer service through their Contact Us page or the customer support options provided on the website. You may also reach out via email or use the chat support feature for a quicker response."},{"question":"Can I find boxers for men in plus sizes on Bewakoof.com?","answer":"Yes, Bewakoof.com offers a range of sizes, including plus sizes for men. You can check the availability of larger sizes in the specific product details or use the size filter while browsing."}]},{"url":"drop-shoulder-t-shirts-for-men","faq":[{"question":"What is a drop shoulder t-shirt?","answer":"A drop shoulder t-shirt features seams that sit lower on the shoulder, giving it a relaxed and casual fit. Its perfect for a laid-back look and can be dressed up or down."},{"question":"How do I style a drop shoulder t-shirt for men?","answer":"You can pair a men's drop shoulder t-shirt with jeans or shorts for a casual look. For a more polished outfit, try it with chinos or layered under a blazer."},{"question":"How can I buy drop shoulder t-shirts online from Bewakoof?","answer":"Simply visit our website, browse through our collection, select your desired drop shoulder t-shirt for men, choose the size and color, and add it to your cart. Proceed to checkout and follow the instructions to complete your purchase."},{"question":"Are off shoulder t-shirts comfortable?","answer":"Yes, our men's off shoulder t-shirts are designed for comfort and style. They are made from soft, breathable fabrics that ensure you stay comfortable all day long."},{"question":"What sizes are available for men's drop shoulder t-shirts at Bewakoof.com?","answer":"Bewakoof.com offers a wide range of sizes for men's drop shoulder t-shirts. Please refer to our size chart to find the perfect fit for you."},{"question":"Can I return or exchange a drop shoulder t-shirt if it doesn't fit?","answer":"Yes, Bewakoof.com has a hassle-free return and exchange policy. If your t-shirt doesn't fit, simply follow our return and exchange procedures within the specified timeframe."},{"question":"Are there different color options available for men's drop shoulder t-shirts at Bewakoof.com?","answer":"Absolutely! We offer a variety of color options for our drop shoulder t-shirts, allowing you to choose the shades that best match your style."},{"question":"How often does Bewakoof update its online collection of drop shoulder t-shirts?","answer":"We regularly update our online collection with fresh styles and designs to ensure you have access to the latest fashion trends. Check back often to buy new arrivals and stay on top of the style game."},{"question":"How do I know which drop shoulder t-shirt design will suit me?","answer":"Consider your personal style preferences and the occasions for which you'll be wearing the t-shirt. Drop shoulder t-shirts for men are versatile, so whether you prefer bold prints or solid colors, you'll find something that suits you at Bewakoof.com."},{"question":"How should I wash my drop shoulder t-shirt for men to maintain its quality?","answer":"For best results, wash your men's drop shoulder t-shirt in cold water with similar colors and tumble dry on low. Avoid using bleach and iron on a low setting if needed. Always read the care label before washing."},{"question":"Is it safe to buy men's drop shoulder t-shirt online at Bewakoof.com?","answer":"Absolutely! Shopping online at Bewakoof.com is completely safe. We use trusted & secure payment gateways and ensure that your personal and financial information is protected at all times."}]},{"url":"summer-t-shirts","faq":[{"question":"What material is best for T-shirt in summer?","answer":"The best materials for summer t-shirts are those that are lightweight, breathable, and moisture-wicking. Cotton is a popular choice because it's soft and breathable. Linen is also a great option as it is very light and has a natural ability to keep you cool. Blends that include materials like rayon or bamboo can also be good for hot weather as they often wick moisture away from the body."},{"question":"What is the coolest shirt to wear in summer?","answer":"T-Shirts made from lightweight and breathable fabrics like cotton, linen, or performance blends designed for heat are the coolest options for summer wear. Look for loose-fitting styles that allow for air circulation to help keep your body cool."},{"question":"What t-shirts are best for hot weather?","answer":"T-shirts that are best for hot weather are typically made from light, breathable fabrics such as cotton, linen, or moisture-wicking synthetics that help to keep sweat away from your skin. Opt for lighter colors that reflect rather than absorb heat."},{"question":"Which fabric t-shirt is best for summer?","answer":"Similar to the best materials for summer t-shirts, the best fabric is one that is breathable and moisture-wicking. Cotton, linen, and certain synthetic blends are ideal for summer t-shirts as they help to keep you cool and dry. T-shirts with mesh panels or moisture-wicking technology are also a good choice for summer activities where you might sweat more."},{"question":"What sizes are available in your summer t-shirt collection?","answer":"Our summer t-shirts come in a variety of sizes ranging from small to extra-large to ensure a perfect fit for everyone."},{"question":"Can I find both casual and smart-casual styles in your collection?","answer":"Absolutely! Our collection includes both casual round neck and graphic tees as well as smart-casual polo t-shirts."},{"question":"Are there different color options available for summer t-shirts?","answer":"Yes, we offer a wide range of colors, including classic shades like black, white, and grey, as well as vibrant hues like blue, maroon, and beige."},{"question":"How do I choose the right summer t-shirt for me?","answer":"Consider the fit, fabric, and style that suit your personal preference and comfort. Our collection has a variety of options to cater to all your summer needs. Don't forget to check out our size chart and product descriptions for additional guidance."},{"question":"Are there any offers or discounts available when purchasing summer t-shirts?","answer":"We often have promotions and discounts available for our customers. Keep an eye on our website or sign up for our newsletter to stay informed about the latest deals."}]},{"url":"blue-t-shirts-for-men","faq":[{"question":"What types of blue t-shirts for men are available at Bewakoof?","answer":"At Bewakoof, we offer a wide range of blue t-shirts for men, including plain, printed, graphic, and slogan tees. You can find options in different sleeve lengths such as half-sleeve and full-sleeve, as well as various neck styles like round neck and V-neck."},{"question":"Can I return or exchange a blue t-shirt if it doesn't fit?","answer":"Absolutely! If your men's blue t-shirt doesn't fit or if you're not satisfied with your purchase, you can easily return or exchange it. Please refer to our return and exchange policy for detailed instructions and conditions."},{"question":"How do I know which size to order for blue t-shirt for men?","answer":"To find the perfect fit, refer to our size guide available on each product page. The guide provides detailed measurements for each size, helping you choose the one that best suits your body type."},{"question":"Do you offer customization options for blue t-shirts?","answer":"Currently, we do not offer customization options for blue t-shirts. However, we have a diverse collection of designs and styles to choose from, ensuring you find something that matches your taste."},{"question":"Is there free shipping available for blue t-shirt for men?","answer":"We offer free shipping on orders above a certain amount. Please check our shipping policy for the latest updates on free shipping thresholds and delivery charges."},{"question":"Do you have blue t-shirts for men in plus sizes?","answer":"Yes, we offer blue t-shirts for men in a range of sizes, including plus sizes. You can find sizes up to 3XL or 4XL depending on the specific product. Be sure to check the size availability on the product page."},{"question":"Are there any care tips for maintaining the print on graphic blue t-shirts?","answer":"To maintain the print on your graphic blue t-shirts, wash them inside out in cold water and avoid using harsh detergents or bleach. Additionally, do not iron directly on the print."},{"question":"How often do you update your collection of blue t-shirts for men?","answer":"We regularly update our collection to bring you the latest trends and styles. New designs and patterns are added frequently, so be sure to check back often or subscribe to our newsletter for updates."}]},{"url":"cargo-joggers-for-men","faq":[{"question":"WHAT TYPES OF MEN'S CARGO JOGGERS ARE AVAILABLE AT BEWAKOOF?","answer":"Bewakoof offers a variety of cargo joggers that include different styles, colors, and fits to cater to diverse preferences. You can find options ranging from slim fit to oversized fit, in solid colors or with unique design elements."},{"question":"ARE THERE ANY STYLING TIPS AVAILABLE FOR HOW TO WEAR MEN'S CARGO JOGGERS?","answer":"Yes, Bewakoof provides a blog with outfit ideas for cargo joggers, helping you learn how to dress them up or down for any occasion."},{"question":"DOES BEWAKOOF OFFER ANY DEALS OR DISCOUNTS ON CARGO JOGGERS?","answer":"Bewakoof often has deals and discounts available. It's best to check the website regularly or sign up for their newsletter to stay updated on current offers on men cargo joggers and other apparel."},{"question":"IS IT SAFE TO BUY CARGO JOGGERS ONLINE AT BEWAKOOF.COM?","answer":"Yes, shopping for cargo joggers for men on Bewakoof.com is safe. We use secure payment gateways to protect your personal and financial information."},{"question":"DOES BEWAKOOF OFFER MEN'S CARGO JOGGERS IN PLUS SIZES?","answer":"Yes, Bewakoof caters to a wide range of sizes, and you can find cargo joggers in plus sizes as well. Check the specific product details for size availability."},{"question":"What are men's cargo joggers?","answer":"Men's cargo joggers are a type of pants that combine the practical elements of cargo pants, such as multiple pockets, with the comfort and style of joggers. They are perfect for casual and outdoor activities."},{"question":"How do I choose the right size for cargo joggers?","answer":"To choose the right size, refer to the size chart available on our website. Measure your waist and hips, and compare the measurements with the chart to find your perfect fit."},{"question":"Can I return or exchange my cargo joggers if they don't fit?","answer":"Yes, Bewakoof.com offers easy returns and exchanges. If your cargo joggers don't fit or meet your expectations, you can return or exchange them within the specified return period. Please refer to our return policy for more details."},{"question":"What materials are used in Bewakoof's men's cargo joggers?","answer":"Our men's cargo joggers are made from high-quality materials such as cotton blends and polyester, ensuring durability, comfort, and a stylish look."},{"question":"How do I care for my cargo joggers?","answer":"To maintain the quality of your cargo joggers, follow the care instructions provided on the label. Generally, it is recommended to wash them in cold water, avoid bleach, and tumble dry on low heat."},{"question":"Can I track my order once it has been placed?","answer":"Yes, once your order is confirmed, you will receive a tracking link via e-mail. You can use this link to monitor the status of your delivery and get real-time updates on your order."}]},{"url":"grey-t-shirts-for-men","faq":[{"question":"What sizes are available for men's grey t-shirts at Bewakoof.com?","answer":"\u003Cp\u003EBewakoof.com offers a wide range of sizes for men's grey t-shirts, ensuring that you'll find the perfect fit for your body type.\u003C\u002Fp\u003E"},{"question":"Are there any special discounts available when shopping for grey t-shirts at Bewakoof.com?","answer":"\u003Cp\u003EYes, We run special promotions and discounts. Stay tuned for exclusive promotions and discounts at Bewakoof by regularly checking our website or subscribing to our newsletter. This way, you'll always be in the loop about the newest offers and can snag your favorite grey t-shirts at the best prices.\u003C\u002Fp\u003E"},{"question":"Can I find both plain and graphic grey t-shirts for men online on Bewakoof.com?","answer":"\u003Cp\u003EYes, our collection includes both plain and graphic grey t-shirts, giving you the freedom to choose based on your personal style preferences.\u003C\u002Fp\u003E"},{"question":"How do you take care of Bewakoof's grey tees for men?","answer":"\u003Cp\u003EWash your grey tee with mild detergent on a gentle cycle; avoid bleach. Tumble dry low and avoid dry cleaning.\u003C\u002Fp\u003E"},{"question":"Why choose Bewakoof for your Men's grey tshirt?","answer":"\u003Cp\u003EBewakoof offers a diverse range of men's grey t-shirts that are known for their quality, comfort, and affordability. Our collection features various styles, from plain to graphic tees, catering to different tastes and occasions. We recognized for our trendy designs and durable fabrics, making it a popular choice for those seeking both style and value.\u003C\u002Fp\u003E"}]},{"url":"baby-tees","faq":[{"question":"What sizes are available for baby tees at bewakoof?","answer":"We offer a range of sizes from extra small to 3xl for our baby tees to ensure a perfect fit for everyone. Please check our size guide for detailed measurements."},{"question":"Can I find different colors and designs in baby tees?","answer":"Absolutely! Our baby tees come in a variety of colors and designs to match your mood and style."},{"question":"How do I care for my baby tee to ensure it lasts long?","answer":"We recommend following the care instructions on the label. Generally, washing in cold water and air drying will help maintain the quality of fabric."},{"question":"Are the baby tees suitable for outdoor activities?","answer":"Yes, our baby tees are designed for both comfort and style, making them suitable for a range of activities, from a casual day out to a relaxing day at home."}]},{"url":"mens-denim","faq":[{"question":"What types of men's jeans can I find on Bewakoof?","answer":"At Bewakoof, you can find a wide range of denim jeans for men, including skinny, slim, straight, and relaxed fits in various washes and colours."},{"question":"Are there any styling tips available to help me pair my denim jeans?","answer":"Absolutely! Our website features style tips and lookbooks to inspire your outfits. Check out our blog and social media channels for the latest styling advice for your new jeans for men."},{"question":"What are the advantages of buying men jeans pants online from Bewakoof.com?","answer":"Shopping jeans for men online from Bewakoof offers you the convenience of shopping from anywhere, anytime. You'll also benefit from a wider selection of styles, sizes, and colours, exclusive online deals, and customer reviews to help inform your purchase."},{"question":"How do I know which size to order online?","answer":"We provide a detailed size guide and product descriptions for each pair of mens jeans to help you find the right fit. Make sure to measure yourself and compare it with our size chart for the best fit."},{"question":"Are there any special offers when I buy men's jeans online at Bewakoof?","answer":"Yes, Bewakoof frequently runs special offers and discounts when you buy jean pants online. Keep an eye on our website or sign up for our newsletter to stay updated on the latest deals and promotions."}]},{"url":"womens-denims","faq":[{"question":"How do I find the right size when ordering women's jeans online?","answer":"\u003Cp\u003ETo ensure a perfect fit when ordering online, consult the size chart provided on our product page. Measure your waist and hips and compare them to the sizing guide. Also, look out for any customer reviews that may give insights into the fit and sizing.\u003C\u002Fp\u003E"},{"question":"What are the benefits of buying ladies jeans online from Bewakoof.com?","answer":"\u003Cp\u003EShopping jeans for women online with us means you get to enjoy a vast selection of styles, competitive prices, exclusive online discounts, a user-friendly shopping experience, and the convenience of having your women jeans delivered right to your doorstep.\u003C\u002Fp\u003E"},{"question":"Are the jeans for women at Bewakoof.com sustainable?","answer":"\u003Cp\u003EYes, we have a range of sustainable denim jeans for women made with eco-friendly materials and processes, reflecting our commitment to responsible fashion.\u003C\u002Fp\u003E"},{"question":"Can I return or exchange jeans for women if they don't fit?","answer":"\u003Cp\u003EAbsolutely! We have a hassle-free return and exchange policy for online purchases. If your jeans pants dont fit, you can easily return or exchange them according to the terms and conditions listed on our website.\u003C\u002Fp\u003E"},{"question":"How often does Bewakoof.com update its online women's jeans collection?","answer":"\u003Cp\u003EWe regularly update our online jeans collection to ensure we're offering the latest trends and styles. Keep an eye on our New Arrivals section for the freshest additions.\u003C\u002Fp\u003E"},{"question":"How do I choose the right style of women's jeans for my body type when shopping online?","answer":"\u003Cp\u003EWhen shopping jeans for women online, consider your body shape and what you feel most comfortable and confident in. High-waisted jeans are great for hourglass figures, while boyfriend jeans for women might suit apple shapes. Skinny jeans are versatile for many body types. Read the product descriptions and style notes for guidance.\u003C\u002Fp\u003E"}]},{"url":"caps","faq":[{"question":"What types of caps for men & women are available at Bewakoof?","answer":"We offer a wide variety of caps and hats for both men & women online, including snapbacks, beanies, baseball caps, and more, available in different colours, patterns, and designs."},{"question":"Can I return a cap if it doesn't fit or if I change my mind?","answer":"Yes, Bewakoof.com has an easy return and refund policy. If the cap doesn't fit or you change your mind, you can return it within a specified period for an exchange or refund."},{"question":"Is there a size guide available to help choose the right cap?","answer":"Yes, Bewakoof provides a detailed size guide for caps to help you choose the size that will fit you best. You can find the size guide on the product page of each cap."},{"question":"How can I find out about the latest caps online and offers at Bewakoof.com?","answer":"To stay updated on the latest caps and offers at Bewakoof.com, you can subscribe to our newsletter, follow us on social media, or regularly check our website. Tribe members also receive notifications about new launches and exclusive deals."},{"question":"How should I clean my Bewakoof cap?","answer":"To clean your Bewakoof men's cap, check the label for specific care instructions. Generally, it's recommended to hand wash caps using mild detergent and cold water to maintain their shape and colour. Let the cap air dry rather than using a dryer."},{"question":"How do I choose the best cap for my face shape?","answer":"Select a cap style that complements your face shape. For example, if you have a round face, a cap with a structured crown can help add angles, while those with a more angular face may benefit from a rounder, softer cap design."}]},{"url":"green-t-shirts-for-women","faq":[{"question":"What sizes are available for green tshirts for women online at Bewakoof.com?","answer":"\u003Cp\u003EWe offer a wide range of sizes for our green t-shirts, ensuring that there is a perfect fit for everyone. Please check the size chart for each product for specific measurements.\u003C\u002Fp\u003E"},{"question":"How should I wash my green t-shirt to maintain its color?","answer":"\u003Cp\u003ETo maintain the vibrant color of your green t-shirt for women, we recommend washing it in cold water with similar colors and avoiding bleach. Tumble dry on low and iron if necessary, but avoid direct heat on the print or design.\u003C\u002Fp\u003E"},{"question":"Can I find a green t-shirt suitable for both office and casual wear online?","answer":"\u003Cp\u003EAbsolutely. Opt for a green t-shirt with a more conservative cut, such as a boat neck or a fitted but not tight silhouette. Solid colors typically transition well between different settings. Make sure to choose a t-shirt made of a higher-quality fabric to ensure it looks appropriate for the office.\u003C\u002Fp\u003E"},{"question":"Can I find graphic or plain green t-shirts for ladies at Bewakoof?","answer":"\u003Cp\u003EYes, our selection includes both graphic and plain green t shirts. You can choose from a range of designs to find the one that best expresses your personal style.\u003C\u002Fp\u003E"},{"question":"Can I return a women green t-shirt online if it doesn't fit?","answer":"\u003Cp\u003EYes, We have a hassle-free return policy. If your green tee doesn't fit, you can return it within the specified period as per our return policy.\u003C\u002Fp\u003E"}]},{"url":"mens-black-t-shirt","faq":[{"question":"What sizes are available for the black t-shirts?","answer":"We offer a perfect blend of style and comfort with our diverse collection, offering sizes from S to 6XL to accommodate every body type. Whether you prefer a classic regular fit or a trendy oversized look, we have the ideal match to elevate your fashion game."},{"question":"Can I return or exchange a t-shirt if it doesn't fit?","answer":"Yes, we have a hassle-free return and exchange policy to make sure you are completely satisfied with your purchase."},{"question":"Are there any special discounts available for shopping at bewakoof?","answer":"Yes, tribe members receive exclusive discounts on our products. Sign up to become a member and enjoy these benefits."},{"question":"What types of neck styles do you offer for black t-shirts?","answer":"We offer a variety of neck styles, including crew or round neck, polo neck, Henley t-shirt, and V-neck t-shirt options."},{"question":"What is the best way to style a black t-shirt?","answer":"Black t-shirts are versatile and can be styled in many ways. Pair your black tees for men with jeans and sneakers for a casual look, or layer it under a jacket with chinos for a more polished outfit. The key is to let the print stand out and be the focal point of your ensemble."},{"question":"Do you offer full-sleeve and half-sleeve black t-shirts?","answer":"Yes, we offer lot of sleeve options from full-sleeve, 3\u002F4 sleeve, half-sleeve and sleeveless that suit your style and the season."},{"question":"How should I wash my black t-shirt to maintain its color and fit?","answer":"For best results, wash your black t-shirt in cold water with similar colors and tumble dry on low. Avoid using bleach and ironing the print to keep it looking great."}]},{"url":"back-printed-t-shirts-for-men","faq":[{"question":"What types of back print T Shirts are available for men on Bewakoof.com?","answer":"We offer a variety of back printed T-shirts for men with different designs and styles that align with unique personal styles."},{"question":"How do I choose the right size for a back print T shirt on Bewakoof.com?","answer":"You can refer to the size chart available on the product page of each T-shirt. Make sure to measure yourself and compare it with the provided measurements to ensure a good fit."},{"question":"Can I find different color options for back print T-shirts on Bewakoof.com?","answer":"Yes, we provide back print T-shirts in various colors. You can browse our selection to find the color that best suits your style."},{"question":"Are there any styling tips for wearing back print T-shirts from Bewakoof.com?","answer":"Yes, Bewakoof.com offers styling tips for wearing men's printed T-shirts. Check out our blog post for stylish outfit ideas."},{"question":"Are the back print T-shirts on Bewakoof.com made of cotton?","answer":"We typically offer T-shirts made of various materials, including cotton. For specific fabric details, check the product description of the back print T-shirt you are interested in."},{"question":"Is there any discount for first-time buyers on back print T-shirts at Bewakoof.com?","answer":"We often run promotions and discounts. For information on current discounts for first-time buyers, please visit our offers page."},{"question":"How should I care for my back print T-shirt to ensure it lasts long?","answer":"For the best care of your back print Tshirt, follow the washing and care instructions provided on the label or the product page on Bewakoof.com."},{"question":"What payment methods are accepted for purchasing back print Tshirt on Bewakoof.com?","answer":"Bewakoof.com generally accepts various payment methods, including credit\u002Fdebit cards, net banking, and digital wallets. Check our website for a complete list of accepted payment options."},{"question":"How do I buy a back print T-shirt for men?","answer":"To buy a back print T-shirt, simply visit our website, choose the T-shirt you like, select your size, and follow the checkout process to complete your purchase."}]},{"url":"white-t-shirts-for-men","faq":[{"question":"How many different types of white t shirts for men available at Bewakoof?","answer":"At Bewakoof, you can find a diverse range of white t-shirts for men, including classic plain t-shirts, printed tees with various graphics and slogans, and different neckline options such as crew necks and V-necks. The collection also features a variety of fits to suit different preferences and body types."},{"question":"How often does Bewakoof update its collection of men's white t-shirts?","answer":"Our collections are frequently updated to ensure that we are always offering the latest trends and styles in men's fashion."},{"question":"Can I return a white t-shirt if it doesn't fit?","answer":"Yes, Bewakoof offers easy returns. If your white t-shirt doesn't fit, you can return it according to our return policy."},{"question":"What sizes are available for men's white t-shirts on Bewakoof?","answer":"We offer a vast range of sizes from small to extra-large that fit for every body size."},{"question":"Are the white t-shirts on Bewakoof made of pure cotton?","answer":"Most of our white t-shirts are made of high-quality cotton or cotton blends to ensure breathability and comfort. You can check the specific fabric details on the product page."},{"question":"Can I find oversized or longline white t-shirts on Bewakoof?","answer":"Yes, we offer a variety of cuts and fits, including oversized and longline white t-shirts for a more contemporary look."},{"question":"How should I wash my white t-shirt to keep it white?","answer":"Wash your white t-shirt in a separate load with a gentle detergent. Avoid bleach and consider using a whitening agent suitable for fabrics if necessary. It's best to air dry your white tee to maintain its shape and quality."}]},{"url":"iphone-15-back-covers-cases","faq":[{"question":"What are the different types of iPhone 15 cover?","answer":"The iPhone 15 cover comes in two main types: hard cover and glass cover. Hard covers are made of plastic or hard rubber material, giving your phone the maximum protection against bumps and scratches. Glass covers are made from tempered glass, offering clarity and protection with a slim profile. Both varieties come in a range of unique designs to choose from, so you can show off your personal style while keeping your phone safe!"},{"question":"How much do iPhone 15 cases cost?","answer":"A good quality iPhone 15 phone cover costs between Rs. 490 to Rs. 1500. We offer a range of covers at different price points to suit your budget. With Bewakoof.com, you can find the perfect iPhone 15 cover thats both stylish and affordable."},{"question":"Will an iPhone 15 cover fit my phone?","answer":"Yes! All of our covers are designed to be compatible with the iPhone 15 model and will provide a snug fit. The covers are also designed for easy access to all ports and buttons, so you can enjoy the full use of your phone. So whether you're looking for a minimalist design or something more eye-catching to reflect your personality, our iPhone 15 covers will have you covered!"},{"question":"What are the benefits of using a iPhone 15 back cover?","answer":"Using an iPhone 15 back cover is a great way to protect your phone from any potential damage. It also adds an extra layer of grip and can make your phone look truly unique with its range of designs and colors."},{"question":"Where can i buy iPhone 15 mobile covers online?","answer":"At Bewakoof.com, we have a wide range of iPhone 15 covers that are sure to fit your phone perfectly, and you can choose from different styles and colors to suit your individual preferences. Plus, all our covers are made from high-quality materials that provide great protection for your device. With our free shipping and easy returns policy, buying a back cover for your iPhone 15 has never been easier!"},{"question":"Does Bewakoof Provide Returns & Exchange on Mobile Covers?","answer":"Yes, at Bewakoof.com, we provide a 15-day return and exchange policy for all our mobile covers. That means you can shop with confidence knowing that you have the option to return a cover that doesnt fit or no longer meets your needs. Plus, our easy returns process makes it simple and stress-free to get your money back or find an item that fits better!"}]},{"url":"cargos-for-men","faq":[{"question":"What type of prints and patterns can be found on cargo pants for men?","answer":"Bewakoof offers a diverse selection of prints and patterns for men's cargo pants, ensuring a style for every preference. From the classic and rugged appeal of camo cargo for the military look to the trendy and laid-back vibe of washed patterns, we also provide options for those who appreciate the bold statement of color-blocked designs and the timeless simplicity of solid colors."},{"question":"What types of fits are available for men's cargo pants on Bewakoof?","answer":"\u003Cp\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com'\u003EBewakoof.com\u003C\u002Fa\u003E offers a wide range of fits for men's cargo pants to suit every style and preference. From relaxed fit, slim fit, regular fit, straight fit to loose fit, we have got you covered. Our cargo pants are designed with the utmost comfort and style in mind, making them the perfect addition to your wardrobe.\u003C\u002Fp\u003E"},{"question":"Do I Get Military Style Cargo Pants on Bewakoof?","answer":"Yes, you can find military-style pants for men on Bewakoof.com. Our collection includes camouflage pattern cargo pants that give a rugged and stylish look, perfect for a military-inspired outfit."},{"question":"What's the return policy for cargo pants at Bewakoof.com?","answer":"At Bewakoof.com, we want you to love your purchase. If our multi-pocket pants for men don't meet your expectations, we offer a 15-day return policy. Simply reach out to our customer support team and we'll guide you through the process."}]},{"url":"jeggings-for-women","faq":[{"question":"What sizes are available for jeggings at Bewakoof?","answer":"We offer a wide range of sizes from 26 to 40 inches for our jeggings collection to ensure that every woman can find her perfect fit. Please refer to our size chart for detailed measurements."},{"question":"Can I return or exchange jeggings if they don't fit?","answer":"Yes, we have an easy return and exchange policy. If your jeggings don't fit, you can return or exchange them according to our policy guidelines."},{"question":"Are there different styles of jeggings available?","answer":"Absolutely! We have a variety of styles including printed jeggings, washed jeggings, and more to suit your fashion preferences."},{"question":"What types of tops can I pair with my jeggings?","answer":"\u003Cp\u003EJeggings are incredibly versatile and can be paired with a wide range of \u003Ca href= 'https:\u002F\u002Fwww.bewakoof.com\u002Fwomen-tops'\u003E women's tops\u003C\u002Fa\u003E. Choose from casual women tees, stylish shirts for women, or even chic tunics for a complete look.\u003C\u002Fp\u003E"}]},{"url":"deadpool-merchandise","faq":[{"question":"What types of Deadpool merchandise are available on bewakoof.com?","answer":"We offers a wide range of Deadpool merchandise including tee shirts, mobile covers, bags, caps, and sliders. Each product features unique designs inspired by the iconic Marvel character."},{"question":"Are the Deadpool mobile covers compatible with my phone?","answer":"\u003Cp\u003EWe provides a selection of Deadpool \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india'mobile covers\u003C\u002Fa\u003E for various phone models. Before making a purchase, kindly verify the product title and description to ensure compatibility with your particular mobile model.\u003C\u002Fp\u003E"},{"question":"How do I know which size to order for Deadpool t shirt?","answer":"We have included a detailed size guide on our. To ensure the best fit, measure yourself according to the guide and compare it to the available sizes before placing your order."},{"question":"Are there any price discounts or offers available on Deadpool merchandise?","answer":"We frequently runs promotions and discounts on their merchandise. Keep an eye on the website for current offers, such as the potential 70% off on select items."},{"question":"What is the quality of the Deadpool merchandise like?","answer":"Our Deadpool merchandise on is made from high-quality materials designed for comfort, durability, and long-lasting wear. Each product undergoes quality checks to ensure customer satisfaction."},{"question":"What is the return policy on Bewakoof?","answer":"\u003Cp\u003EWe has a customer-friendly return policy. If you're not satisfied with your purchase, you can return the merchandise within a specified period for a \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcontact-us\u002Frefund-or-returnre'fund or exchange\u003C\u002Fa\u003E, subject to terms and conditions. Please refer to their return policy for detailed information.\u003C\u002Fp\u003E"},{"question":"How to Avail Discounts on Bewakoof?","answer":"\u003Cp\u003ETo make sure you never miss out on any offers or promotions, regularly check our \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale'\u003Ediscount and coupon\u003C\u002Fa\u003E page. We also highly recommend joining our \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Ftribe'\u003Etribe membership\u003C\u002Fa\u003E program to receive exclusive discounts and benefits that are not available to regular customers.\u003C\u002Fp\u003E"}]},{"url":"flannel-shirts","faq":[{"question":"What are flannel shirts?","answer":"Flannel shirts are a type of collar shirt made from a soft, woven fabric that is often brushed to create a fuzzy texture. They are typically known for their warmth and comfort, making them a popular choice for colder climates."},{"question":"What is the difference between plaid and flannel?","answer":"Plaid and flannel are not the same thing, although they are often used interchangeably. Plaid refers to a pattern of criss-crossed horizontal and vertical lines, while flannel refers to the fabric used to make the shirt. So, you can have a flannel shirt in plaid or any other pattern."},{"question":"Where to buy flannel shirts online?","answer":"If you are looking to add some flannel shirts to your wardrobe, look no further than Bewakoof.com. We have a wide range of flannel shirts for men, with various patterns and colors to choose from. Plus, you can shop conveniently from your own home."},{"question":"What size flannel shirts are available at bewakoof?","answer":"\u003Cp\u003EAt Bewakoof.com, we offer flannel shirts in sizes ranging from small to 5XL. We believe that everyone should be able to find their perfect fit and feel cozy in our brushed \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmen-shirts'\u003Ecotton shirts\u003C\u002Fa\u003E.\u003C\u002Fp\u003E"},{"question":"Why should I choose flannel shirts over other types of shirts?","answer":"Flannel shirts are not only stylish, but they also offer superior warmth and relaxed. The fabric is soft and breathable, making it perfect for both cool and cold weather. Plus, the checkered pattern adds a touch of character to any outfit."},{"question":"Do you offer flannel shirts in a variety of colors and patterns?","answer":"Yes, we do! At Bewakoof.com, we understand that everyone has their own unique style and preferences. That's why we have a wide range of colours and patterns for our flannel shirts. From classic plaid to bold solid designs, there is something for everyone."}]},{"url":"polo-t-shirts-for-men","faq":[{"question":"What is a Polo T-shirt?","answer":"Polo collar t-shirts are a casual yet stylish type of shirt that has gained popularity in recent years. They have a collar with 2-3 buttons on the neckline, giving them a more sophisticated look compared to regular t-shirts. You may also hear them referred to as golf shirts or tennis shirts."},{"question":"Where to Buy Polo Collar T-Shirts?","answer":"Looking to add some stylish polo collar t-shirts to your wardrobe? Look no further than \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002F'\u003EBewakoof.com\u003C\u002Fa\u003E, the ultimate destination for trendy and casual wear. Not only do they offer an extensive selection of stylish polo t-shirts in various styles and colours, but their superior quality, comfortable fit, and affordable pricing make them the ideal choice for savvy shoppers! Whether you're after a classic look or a more contemporary design Bewakoof.com has got you covered!"},{"question":"Do Polo T-Shirts Have Pockets?","answer":"Yes, some polo tshirts do come with pockets! Although not all designs feature this handy addition, you'll find that many collar t-shirts on Bewakoof.com come equipped with a stylish and functional pocket. Perfect for carrying small essentials, or simply adding a touch of flair to your outfit, t-shirts with pockets are a practical and fashionable choice. Whether you're looking for a Striped Polo T-shirt or a collar t-shirt, you'll find a variety of pocketed options to suit your style at Bewakoof.com!"},{"question":"What Size Should I Choose?","answer":"Choosing the right size for your polo t-shirt is crucial for comfort and style. At Bewakoof.com, we've made this process simple with a detailed size guide. Whether you're a fan of a snug fit or prefer you a little looser, we've got sizes ranging from Small to XXL to cater to all body types. Remember, a well-fitted Striped or collar t-shirt doesn't just look great, it feels great too! So, measure yourself accurately, check out our size guide, and make the perfect choice for your new stylish addition!"}]},{"url":"baggy-jeans-for-women","faq":[{"question":"What are baggy jeans for women?","answer":"Baggy jeans for women are a style of jeans that feature a relaxed and loose fit from the waist to the legs. They offer comfort and versatility, making them a popular choice in women's fashion."},{"question":"What makes Bewakoof's baggy jeans special?","answer":"Bewakoof offers a curated collection of baggy jeans for women that prioritize quality, style, and affordability. Our jeans come in various styles, colors, and sizes to suit different preferences."},{"question":"Are baggy jeans for women comfortable to wear all day long?","answer":"Yes, baggy jeans are designed for comfort. The loose fit provides freedom of movement, making them suitable for all-day wear without feeling restricted."},{"question":"Can baggy jeans be dressed up for formal occasions?","answer":"Absolutely! Baggy jeans can be dressed up for formal occasions with the right pairings, such as a tailored blazer and heeled boots. They are versatile and can adapt to various settings."},{"question":"What types of women baggy jeans are available at Bewakoof?","answer":"Bewakoof offers a range of baggy jeans, including Baggy Cargo Jeans, Oversized Baggy Jeans, Relaxed Baggy Jeans, Loose Fit Baggy Jeans, Solid Baggy Jeans, and Washed Baggy Jeans. Each type has its unique style and features."},{"question":"How do I choose the right size for my baggy jeans?","answer":"You can find a size guide on our website to help you select the right size for your baggy jeans. It's essential to measure your waist and hips for an accurate fit."},{"question":"What are the key features of Bewakoof's baggy jeans collection?","answer":"Our baggy jeans are known for their premium quality, trend-driven designs, comfortable fit, multiple size options, affordable prices, and easy maintenance."},{"question":"How can I style female baggy jeans for different occasions?","answer":"Baggy jeans are versatile and can be styled in various ways. We provide style tips and guides on our website to help you create the perfect outfit for any occasion."},{"question":"What are the benefits of shopping for baggy jeans for women online from Bewakoof?","answer":"Shopping online at Bewakoof offers convenience, an extensive collection, secure payment options, quick delivery, easy returns, and access to the latest fashion trends and updates."},{"question":"Can I return or exchange women's baggy jeans if they don't fit correctly?","answer":"\u003Cp\u003EYes, we have a hassle-free return policy that allows you to return or exchange baggy jeans if they don't fit as expected. Please refer to our \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcontact-us\u002Frefund-or-return'\u003Ereturn policy\u003C\u002Fa\u003E for more details.\u003C\u002Fp\u003E"},{"question":"How do I stay updated with the latest baggy jeans trends and Bewakoof's offerings?","answer":"You can stay in the loop with the latest trends and updates by following our blog and social media channels. We regularly share fashion insights and updates."}]},{"url":"gym-t-shirts","faq":[{"question":"What types of gym t-shirts are available on Bewakoof?","answer":"Bewakoof offers a wide range of gym t-shirts for both men and women, including half sleeve t-shirts, full sleeve t-shirts, oversized t-shirts, boyfriend t-shirts, plain t-shirts, printed t-shirts, and tops for women."},{"question":"What sizes are available for gym tees on Bewakoof?","answer":"We offer workout t-shirts in multiple sizes to accommodate various body types. You can refer to our size chart on the product page to choose the size that fits you best."},{"question":"Do your gym t-shirts come in different colors and designs?","answer":"Yes, we have a diverse color palette and an extensive range of designs for our gym t-shirts. Whether you prefer plain, printed, or trendy designs, you'll find options to match your style."},{"question":"What is the return policy for gym t-shirts purchased from Bewakoof?","answer":"\u003Cp\u003EWe have a hassle-free return policy. If you receive a product that doesn't meet your expectations, you can initiate a return within the specified time frame. Please refer to our \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcontact-us\u002Frefund-or-return'\u003EReturns and Refunds policy\u003C\u002Fa\u003E for more details.\u003C\u002Fp\u003E"},{"question":"Are your gym t-shirts available for both men and women?","answer":"Yes, Bewakoof's gym t-shirts are available for both men and women. We have a diverse collection designed to cater to the specific needs and preferences of each gender."},{"question":"How can I style my gym t-shirts from Bewakoof for the best look?","answer":"We offer styling tips on our website to help you make the most of your gym t-shirts. You can layer them, pair them with accessories, and choose the right footwear and bottoms to complete your gym look."},{"question":"Are there any discounts or promotions available for gym t-shirts on Bewakoof?","answer":"Yes, we often run promotions and discounts, allowing you to grab your favorite gym t-shirts at affordable prices. Keep an eye on our website and social media channels for the latest offers."},{"question":"What are the benefits of shopping for gym t-shirts online from Bewakoof?","answer":"When you shop for gym t-shirts on Bewakoof's website, you benefit from the convenience of online shopping, a wide variety of choices, a hassle-free return process, top-notch quality assurance, and regular discounts."}]},{"url":"baggy-jeans","faq":[{"question":"What are baggy jeans, and how are they different from regular jeans?","answer":"Baggy jeans are a style of jeans that feature a relaxed and roomy fit. They are designed to be loose-fitting throughout the legs and typically have a wider leg opening compared to regular jeans, offering more comfort and a distinct fashion statement."},{"question":"Are baggy jeans suitable for both men and women?","answer":"Yes, baggies are a unisex fashion trend and are available for both men and women. At Bewakoof, we offer a wide range of baggy jeans tailored to suit the preferences of all individuals."},{"question":"What makes baggy jeans comfortable to wear?","answer":"The comfort of baggy jeans is primarily due to their loose and relaxed fit. They provide extra room for movement and are often made from soft, breathable fabrics. This combination of factors ensures a comfortable and hassle-free wearing experience."},{"question":"How can I style baggy jeans for a trendy look?","answer":"Baggy jeans can be styled in various ways. You can pair them with fitted tops, tuck in your shirt, or experiment with layering. Adding accessories and selecting the right footwear can also help elevate your outfit and create a stylish look."},{"question":"Are baggy jeans suitable for formal occasions, or are they more for casual wear?","answer":"Baggies are traditionally considered more casual, but they can be styled for a semi-formal or smart-casual look. To achieve a formal appearance, opt for darker colors and pair them with a well-fitted blazer and formal shoes."},{"question":"Do baggy jeans come in different types and designs?","answer":"Yes, it comes in a variety of types and designs. You can find baggy cargo jeans, baggy oversized jeans, relaxed fit jeans, solid colors, and washed finishes, among others. Each style offers a unique look and fit."},{"question":"What sizes are available for baggy jeans at Bewakoof?","answer":"Our baggy jeans are available in a range of sizes to accommodate different body types. We offer a size chart to help you find the perfect fit. Make sure to refer to our size guide for accurate measurements."},{"question":"How do I care for my baggy jeans to ensure they last longer?","answer":"To extend the lifespan of your oversized denim, it's essential to follow the care instructions provided on the product label. Typically, washing them inside out, using cold water, and avoiding excessive heat in the dryer can help maintain the fabric quality and color."},{"question":"Why should I choose Bewakoof for purchasing baggy jeans?","answer":"Bewakoof offers a wide selection of baggy jeans with various styles and designs to choose from. We prioritize quality, affordability, and trendy designs, making us the perfect destination for all your oversized jeans needs."},{"question":"Are baggy jeans in style right now, or is it just a passing trend?","answer":"Baggy jeans have made a strong comeback and are currently a popular fashion trend. Their timeless appeal and comfort factor make them a versatile choice for many fashion enthusiasts, indicating that they are likely here to stay."}]},{"url":"naruto-t-shirts","faq":[{"question":"Are these Naruto T-Shirts officially licensed?","answer":"Yes, all the Naruto T-Shirts available on Bewakoof are officially licensed merchandise. You can shop with confidence, knowing that you're getting authentic products."},{"question":"What sizes are available for Naruto T-Shirts?","answer":"We offer a wide range of sizes to ensure that everyone can find the perfect fit. Sizes typically range from Small to 3XL, but specific availability may vary for each design."},{"question":"Can I return or exchange a Naruto T-Shirt if it doesn't fit?","answer":"Yes, we have a hassle-free return and exchange policy. If the size doesn't fit, you can initiate a return or exchange within the specified time frame. Check our Returns & Exchanges page for more details."},{"question":"How do I care for my Naruto T-Shirt to ensure it lasts longer?","answer":"To maintain the quality and lifespan of your Naruto T-Shirt, we recommend following the care instructions on the product label. Generally, washing in cold water, turning the shirt inside out, and avoiding bleach and high heat when drying can help preserve the print and fabric."},{"question":"Can I find T-Shirts featuring specific characters like Naruto, Sasuke, or Sakura?","answer":"Yes, our collection includes Naruto T-Shirts featuring the main characters like Naruto, Sasuke, Sakura, and others. We also have T-Shirts dedicated to popular side characters and antagonists."},{"question":"Are there any promotions or discounts available for Naruto T-Shirts?","answer":"We regularly offer promotions and discounts on our products, including Naruto T-Shirts. Keep an eye on our website, newsletter, and social media channels to stay updated on the latest deals and offers."},{"question":"Do you have a customer support team to assist with inquiries or issues?","answer":"Yes, we have a dedicated customer support team ready to assist you. If you have any questions or encounter any issues while shopping for Naruto T-Shirts, please feel free to contact our support team. You can find our contact details on the website."}]},{"url":"high-top-sneakers","faq":[{"question":"WHAT ARE HIGH-TOP SNEAKERS, AND WHY ARE THEY POPULAR?","answer":"High top sneakers are a type of shoe with an extended design that covers the ankle. They are popular due to their versatile style, enhanced ankle support, and the ability to make a fashion statement."},{"question":"ARE HIGH TOP SNEAKERS SUITABLE FOR BOTH MEN AND WOMEN?","answer":"Yes, Bewakoof offers high-top sneakers for both men and women, with a wide range of styles and designs to cater to everyone's preferences."},{"question":"HOW DO I CHOOSE THE RIGHT HIGH SHOES SNEAKERS FOR MY OUTFIT?","answer":"Consider the occasion, match the colors with your attire, ensure a proper fit, and follow our style guide for inspiration on how to pair high top shoes with different outfits."},{"question":"WHAT IS THE MAINTENANCE AND CLEANING PROCESS FOR HIGH TOP SNEAKERS?","answer":"Regularly clean off dirt and dust, spot clean stains with a mild detergent, air dry them, use a water repellent spray for protection, and remember to rotate your shoes for longevity."},{"question":"CAN HIGH SNEAKERS BE WORN DURING THE SUMMER SEASON?","answer":"Yes, there are summer-friendly options such as canvas high-tops, pastel-colored designs, and slip-on high-tops that are suitable for warm weather while maintaining the style of high-top shoes."},{"question":"DOES BEWAKOOF OFFER DEALS AND DISCOUNTS ON HIGH-TOP SHOES?","answer":"Yes, Bewakoof often provides unbeatable deals and discounts on high top sneakers and other footwear options. Check our website for the latest promotions and offers."},{"question":"DO HIGH-TOP SHOES PROVIDE ADEQUATE ANKLE SUPPORT FOR SPORTS AND PHYSICAL ACTIVITIES?","answer":"Yes, high-top sneakers are known for their enhanced ankle support, making them a suitable choice for various physical activities, including sports and workouts."},{"question":"WHAT IS THE RETURN AND EXCHANGE POLICY FOR HIGH TOP SNEAKERS AT BEWAKOOF?","answer":"You can refer to our website for detailed information on our return and exchange policy, ensuring a hassle-free experience in case you need to make any adjustments to your purchase."},{"question":"WHAT MAKES HIGH TOP SHOES A PART OF STREETWEAR FASHION?","answer":"High-top sneakers are a staple in streetwear fashion due to their urban and edgy style. They complement streetwear outfits, including baggy pants, hoodies, and statement accessories."}]},{"url":"iphone-15-plus-back-covers-cases","faq":[{"question":"What are the different types of iPhone 15 Plus cover?","answer":"At Bewakoof.com, you can find a wide range of covers for the iPhone 15 Plus. From hard cover cases to glass back cases, there's something for everyone. Hard cover cases are perfect for those who need extra protection against drops and impacts. They also come in a variety of designs and colors, so you can pick one that expresses your unique style. On the other hand, if you want a more luxurious look and feel, then glass back cases are the way to go. These cases provide an attractive finish while also offering superior scratch resistance."},{"question":"How much do iPhone 15 Plus cases cost?","answer":"iPhone 15 Plus cases at Bewakoof.com range from Rs. 490 to Rs. 530, depending on the type of case you select. Hard cover cases are slightly more affordable, while glass back cases cost a bit more. Regardless of your budget, you're sure to find a great option that meets your needs and expresses your style."},{"question":"What are the benefits of using an iPhone 15 Plus back cover?","answer":"A back cover for your iPhone 15 Plus can provide a range of benefits. First, it provides extra protection against scratches and other types of damage. In addition, many cases cme with raised edges, which can help protect your phone if it falls or is dropped. Finally, back covers come in a range of styles and colors, so you can choose one that expresses your own individual sense of style."},{"question":"Where can i buy iPhone 15 Plus mobile covers online?","answer":"You can buy iPhone 15 Plus mobile covers from Bewakoof.com. Bewakoof offers a wide range of stylish and affordable back covers that are made to fit your device perfectly. They also offer fast delivery and excellent customer service, so you can be sure that you'll get the best possible product at an unbeatable price. So if you're looking for a reliable source for your iPhone 15 Plus back cover needs, look no further than Bewakoof.com!"}]},{"url":"iphone-15-pro-back-covers-cases","faq":[{"question":"What are the different types of iPhone 15 Pro cover?","answer":"The iPhone 15 Pro cover comes in two main types: hard cover and glass cover. Hard covers are made of plastic or hard rubber material, giving your phone the maximum protection against bumps and scratches. Glass covers are made from tempered glass, offering clarity and protection with a slim profile. Both varieties come in a range of unique designs to choose from, so you can show off your personal style while keeping your phone safe!"},{"question":"How much do iPhone 15 Pro cases cost?","answer":"A good quality iPhone 15 phone Pro cover costs between Rs. 490 to Rs. 530. We offer a range of covers at different price points to suit your budget. With Bewakoof.com, you can find the perfect iPhone 15 Pro cover thats both stylish and affordable."},{"question":"Will an iPhone 15 Pro cover fit my phone?","answer":"Yes! All of our covers are designed to be compatible with the iPhone 15 Pro model and will provide a snug fit. The covers are also designed for easy access to all ports and buttons, so you can enjoy the full use of your phone. So whether you're looking for a minimalist design or something more eye-catching to reflect your personality, our iPhone 15 Pro covers will have you covered!"},{"question":"What are the benefits of using a iPhone 15 Pro back cover?","answer":"Using an iPhone 15 Pro back cover is a great way to protect your phone from any potential damage. It also adds an extra layer of grip and can make your phone look truly unique with its range of designs and colors."},{"question":"Where can i buy iPhone 15 Pro mobile covers online?","answer":"At Bewakoof.com, we have a wide range of iPhone 15 Pro covers that are sure to fit your phone perfectly, and you can choose from different styles and colors to suit your individual preferences. Plus, all our covers are made from high-quality materials that provide great protection for your device. With our free shipping and easy returns policy, buying a back cover for your iPhone 15 Pro has never been easier!"},{"question":"Does Bewakoof Provide Returns & Exchange on Mobile Covers?","answer":"Yes, at Bewakoof.com, we provide a 15-day return and exchange policy for all our mobile covers. That means you can shop with confidence knowing that you have the option to return a cover that doesnt fit or no longer meets your needs. Plus, our easy returns process makes it simple and stress-free to get your money back or find an item that fits better"}]},{"url":"iphone-15-pro-max-back-covers-cases","faq":[{"question":"What are the different types of iPhone 15 Pro Max cover?","answer":"The iPhone 15 Pro cover comes in two main types: hard cover and glass cover. Hard covers are made of plastic or hard rubber material, giving your phone the maximum protection against bumps and scratches. Glass covers are made from tempered glass, offering clarity and protection with a slim profile. Both varieties come in a range of unique designs to choose from, so you can show off your personal style while keeping your phone safe!"},{"question":"How much do iPhone 15 Pro Max cases cost?","answer":"iPhone 15 Pro Max at Bewakoof.com range from Rs. 490 to Rs. 530, depending on the type of case you select. Hard cover cases are slightly more affordable, while glass back cases cost a bit more. Regardless of your budget, you're sure to find a great option that meets your needs and expresses your style."},{"question":"What are the benefits of using an iPhone 15 Pro Maxback cover?","answer":"A back cover for your iPhone 15 Pro Max can provide a range of benefits. First, it provides extra protection against scratches and other types of damage. In addition, many cases cme with raised edges, which can help protect your phone if it falls or is dropped. Finally, back covers come in a range of styles and colors, so you can choose one that expresses your own individual sense of style."},{"question":"Where can i buy iPhone 15 Pro Max mobile covers online?","answer":"You can buy iPhone 15 Pro Max mobile covers from Bewakoof.com. Bewakoof offers a wide range of stylish and affordable back covers that are made to fit your device perfectly. They also offer fast delivery and excellent customer service, so you can be sure that you'll get the best possible product at an unbeatable price. So if you're looking for a reliable source for your iPhone 15 Pro Max back cover needs, look no further than Bewakoof.com!"}]},{"url":"women-jackets","faq":[{"question":"WHAT TYPES OF WOMEN'S JACKETS ARE AVAILABLE AT BEWAKOOF?","answer":"At Bewakoof, we offer a diverse range of women's jackets to suit various styles and preferences. Our collection includes varsity jackets, denim jackets, puffer jackets, bomber jackets, windcheaters, printed jackets, color block jackets, oversized jackets, full sleeve jackets, and sleeveless jackets, catering to different occasions and weather conditions."},{"question":"HOW DO I CHOOSE THE RIGHT SIZE FOR MY WOMEN'S JACKET?","answer":"To ensure a perfect fit, we recommend referring to our size chart available on the product page. This chart provides detailed measurements and guidance on selecting the appropriate size. If you're still unsure, our customer service team is here to assist you with any sizing queries."},{"question":"ARE THESE JACKETS SUITABLE FOR BOTH CASUAL AND FORMAL OCCASIONS?","answer":"Absolutely! Our collection features a variety of jackets that are versatile enough to be worn for both casual and formal events. From laid-back denim jackets to more sophisticated options, you'll find jackets that suit various occasions in our selection."},{"question":"WHAT ARE THE AVAILABLE COLOR OPTIONS FOR WOMEN'S JACKETS?","answer":"We offer an extensive range of colors to match your individual style. Choose from classic shades like black, blue, grey, and white, or make a statement with vibrant options such as green, pink, and orange. Our color variety ensures there's something for everyone."},{"question":"ARE THESE JACKETS SUITABLE FOR WINTER WEATHER?","answer":"Yes, we offer a selection of jackets, including puffer jackets and oversized jackets, designed to keep you warm during the colder months. These jackets provide both style and functionality, ensuring you stay cozy while looking chic."},{"question":"HOW DO I STYLE THESE JACKETS WITH OTHER CLOTHING ITEMS?","answer":"Our jackets are designed to complement a wide range of outfits. You can easily pair them with T-shirts, oversized T-shirts, joggers, jeans, sliders, and various types of shoes. Mix and match to create trendy and stylish ensembles that reflect your personal style."},{"question":"WHAT MAKES BEWAKOOF'S COLLECTION OF WOMEN'S JACKETS UNIQUE?","answer":"Bewakoof stands out for its trendsetting designs, exceptional quality, and affordable prices. Our jackets for girls are crafted with attention to detail, and we offer a variety of styles and sizes to cater to diverse preferences."},{"question":"ARE THERE JACKETS MADE FROM SUSTAINABLE MATERIALS IN YOUR COLLECTION?","answer":"Yes, we are committed to sustainability, and many of our jackets are crafted from eco-friendly materials. Look for the relevant information on the product pages to make environmentally conscious choices."},{"question":"CAN I RETURN OR EXCHANGE A WOMEN'S JACKET IF IT DOESN'T FIT?","answer":"Yes, we offer a hassle-free return and exchange policy. If the jacket doesn't fit or if you're not satisfied with your purchase, you can initiate a return or exchange within the specified timeframe. Please refer to our Returns and Exchanges page for detailed information."},{"question":"HOW CAN I CONTACT CUSTOMER SUPPORT FOR ASSISTANCE?","answer":"If you have any questions or need assistance, our customer support team is here to help. You can reach out to us through our Contact Us page, where you'll find various ways to get in touch, including email and chat support. Please note that we do not have a Bewakoof customer care number."},{"question":"DO THESE JACKETS COME IN PLUS SIZES?","answer":"Yes, we celebrate diversity and offer a range of sizes to accommodate different body types, including plus sizes. Be sure to check the size chart to find the perfect fit for you."},{"question":"DO YOU OFFER DISCOUNTS OR PROMOTIONS ON JACKETS FOR WOMEN?","answer":"Yes, we frequently offer discounts and promotions on our products, including women's jackets. Be sure to subscribe to our newsletter and follow us on social media to stay informed about our latest deals and offers."}]},{"url":"jumbo-prints-collection","faq":[{"question":"What is the Jumbo Prints Collection by Bewakoof?","answer":"The Jumbo Prints Collection is a unique assortment of oversized t-shirts that feature vibrant and innovative prints. These prints are larger than life, making a bold statement and adding a touch of quirkiness to your wardrobe."},{"question":"What sizes are available in the Jumbo Prints Collection?","answer":"We offer a variety of sizes in the Jumbo Prints Collection, ranging from extra small to 3XL. Whether you prefer a more fitted look or an oversized feel, you'll find the perfect size to suit your style."},{"question":"What kind of designs can I expect in the Jumbo Prints Collection?","answer":"The Jumbo Prints Collection is known for its innovative and vibrant designs. From eye-catching patterns to bold statements, our designs are meant to stand out and make you the center of attention."},{"question":"How do I order a Jumbo Prints t-shirt from Bewakoof?","answer":"Ordering a Jumbo Prints t-shirt is easy! Simply visit our website, browse through the collection, select the designs you love, and choose your preferred size. Add the items to your cart and proceed to the secure checkout process."},{"question":"What payment methods are accepted for Jumbo Prints t-shirts?","answer":"We offer a range of payment options to cater to your preferences. You can pay for your Jumbo Prints t-shirt using credit or debit cards, digital wallets, and even through cash on delivery (COD)."},{"question":"Is there a return or exchange policy for the Jumbo Prints Collection?","answer":"Yes, we have a hassle-free return and exchange policy. If you're not satisfied with your Jumbo Prints t-shirt, you can initiate a return or exchange within the specified time frame. Please refer to our Returns & Exchanges page for more details."},{"question":"How soon will I receive my Jumbo Prints t-shirt after placing the order?","answer":"We strive to ensure prompt delivery of your order. The delivery time may vary based on your location, but we always aim to get your Jumbo Prints t-shirt to you as soon as possible."},{"question":"Can I track the status of my Jumbo Prints t-shirt order?","answer":"Absolutely! Once your order is shipped, you will receive a tracking number. You can use this number to track the status of your order and get real-time updates on its location."},{"question":"How do I take care of my Jumbo Prints t-shirt?","answer":"To ensure the longevity of your Jumbo Prints t-shirt, we recommend following the care instructions provided on the garment's label. Generally, washing your t-shirt inside out in cold water and avoiding harsh detergents will help maintain the print's vibrancy."},{"question":"What sets the Jumbo Prints Collection apart from other t-shirt collections?","answer":"The Jumbo Prints Collection stands out due to its larger-than-life prints, vibrant colors, and commitment to quality and affordability. It's a collection designed to help you express your individuality and make a statement with your fashion choices."}]},{"url":"rayon-shirts","faq":[{"question":"What are rayon shirts?","answer":"Rayon shirts are stylish clothing items made from rayon fabric, a versatile material known for its lightweight, breathable, and comfortable properties. These shirts are designed to offer a perfect blend of fashion and comfort for both men and women."},{"question":"Why should I choose rayon shirts from Bewakoof?","answer":"Bewakoof offers a curated collection of rayon shirts that combine trendy designs, comfort, and affordability. Our shirts are crafted with attention to detail and are perfect for casual wear, making them an ideal addition to your wardrobe."},{"question":"Are rayon shirts suitable for men and women?","answer":"Yes, our collection includes rayon shirts designed for both men and women. The range encompasses a variety of styles, colors, and sizes to cater to diverse preferences."},{"question":"What are the benefits of rayon fabric in shirts?","answer":"Rayon fabric is known for being lightweight, breathable, and comfortable. It drapes well, making it suitable for various styles. Its moisture-wicking properties keep you cool, making rayon shirts a great choice for warmer weather."},{"question":"How do I choose the right size?","answer":"We provide a detailed size chart on our website to help you find the perfect fit. Measure yourself according to our guidelines to ensure you choose the right size for a comfortable and stylish fit."},{"question":"Do you offer different sleeve lengths in rayon shirts?","answer":"Yes, our collection includes rayon shirts with various sleeve lengths, including half-sleeve and full-sleeve options. You can choose based on your personal preference and the occasion."},{"question":"Are there plain and printed options available?","answer":" Absolutely! Our rayon shirts come in a variety of designs, including plain colors and printed patterns. Whether you're looking for a classic look or a vibrant style, we have options for you."},{"question":"Can I wear rayon shirts for formal occasions?","answer":"While rayon shirts are more commonly associated with casual wear, our collection offers a range of designs that can be dressed up for semi-formal events. Pair a solid-color rayon shirt with dress pants and accessories for a sophisticated look."},{"question":"How do I care for my rayon shirt?","answer":"To ensure the longevity of your rayon shirt, we recommend hand washing or using the delicate cycle on your washing machine with cold water. Hang it to dry and iron on a low setting to prevent wrinkles."},{"question":"Do you offer free shipping?","answer":"Yes, we offer free shipping on our rayon shirts and other products. Enjoy the convenience of having your chosen items delivered to your doorstep without any additional shipping fees."},{"question":"What payment methods do you accept?","answer":"We accept various payment methods, including credit cards, debit cards, net banking, and mobile wallets. We aim to provide a seamless shopping experience for our customers."},{"question":"Is cash on delivery (COD) available for rayon shirts?","answer":"Yes, we offer cash on delivery (COD) as a payment option for your rayon shirt purchases. This provides you with flexibility and ease of payment."},{"question":"Can I find rayon shirts in plus sizes?","answer":"Yes, our collection includes a range of sizes to accommodate various body types, including plus sizes. Refer to our size chart to find the perfect fit for you."}]},{"url":"naruto-merchandise","faq":[{"question":"Are the Naruto merchandise products at Bewakoof officially licensed?","answer":"Yes, absolutely! We take pride in offering officially licensed Naruto merchandise. This means that every product you find in our Naruto collection is authorized by the creators, ensuring authenticity and supporting the anime industry."},{"question":"What types of Naruto merchandise do you offer at Bewakoof?","answer":"We offer a diverse range of Naruto merchandise including half sleeve t-shirts, full sleeve t-shirts, vests, oversized t-shirts, hoodies, and sweaters. Each product features unique and eye-catching designs inspired by the Naruto series and its characters."},{"question":"Are the designs in your Naruto collection exclusive to Bewakoof?","answer":"Yes, our Naruto merchandise features exclusive designs crafted by our talented team of artists. You won't find these designs anywhere else, making your Naruto fandom truly one-of-a-kind."},{"question":"How is the quality of the Naruto merchandise at Bewakoof?","answer":"We prioritize quality craftsmanship. Our Naruto merchandise is made from high-quality materials to ensure comfort, durability, and long-lasting vibrant prints. We believe in providing you with merchandise that stands the test of time."},{"question":"Do you have sizes available for all body types?","answer":"Absolutely. We offer a wide range of sizes to cater to various body types. We aim to ensure every fan can enjoy our Naruto merchandise comfortably and confidently."},{"question":"Can I find merchandise featuring specific Naruto characters?","answer":"Yes, you can! Our Naruto merchandise collection includes t-shirts featuring characters like Itachi Uchiha, members of the Akatsuki, Naruto himself, Madara Uchiha, and more. Explore our selection to find your favorite character designs."},{"question":"Do you offer merchandise for both men and women?","answer":"Yes, our Naruto merchandise is designed for fans of all genders. We believe that everyone should have the chance to express their love for the series through our stylish and comfortable apparel."},{"question":"Do you frequently update your Naruto merchandise collection?","answer":"Yes, we are committed to bringing you the latest and most relevant Naruto merchandise. Our collection is updated periodically with new designs and products, so be sure to check back often to discover fresh additions."},{"question":"How can I style my Naruto merchandise to create fashionable looks?","answer":"We love to inspire our customers with creative styling tips! Check out our website's blog section for articles on how to style your Naruto t-shirts, hoodies, and more to create trendy and eye-catching outfits."},{"question":"What are the benefits of shopping Naruto merchandise from Bewakoof?","answer":"Shopping at Bewakoof offers you a range of advantages including affordable prices, exclusive designs, free shipping, and officially licensed products. We are dedicated to providing you with the best shopping experience possible."},{"question":"Can I return or exchange Naruto merchandise if it doesn't fit or I'm not satisfied?","answer":"Yes, we understand that finding the perfect fit is important. We have a hassle-free return and exchange policy to ensure your satisfaction. Please refer to our Returns & Exchanges page on the website for more details."}]},{"url":"rick-and-morty-merchandise","faq":[{"question":"Are the Rick and Morty products on Bewakoof officially licensed?","answer":"Yes, absolutely! We take pride in offering only officially licensed Rick and Morty merchandise. This means that every item you purchase from us is genuine, authentic, and endorsed by the creators of the show."},{"question":"What types of Rick and Morty merchandise do you offer?","answer":"Our Rick and Morty collection is diverse and extensive. We offer a variety of merchandise, including t-shirts (half sleeve, full sleeve, oversized), hoodies, sweaters, and accessoriesall featuring unique designs and iconic moments from the show."},{"question":"How do I choose the right size for my Rick and Morty t-shirt or hoodie?","answer":"To find the perfect fit, we recommend referring to our detailed size chart. This chart provides measurements for each size, ensuring that you choose the size that suits you best. If you're still unsure, our customer support team is here to assist you."},{"question":"Do you offer Rick and Morty merchandise for both men and women?","answer":"Absolutely! Our collection is designed to cater to fans of all genders. We offer a wide range of styles and sizes for both men and women, ensuring that everyone can find something that suits their preferences."},{"question":"Do you have exclusive deals or discounts on Rick and Morty merchandise?","answer":"Yes, we often have exclusive deals and discounts on our Rick and Morty merchandise. Keep an eye on our website for ongoing promotions and special offers that can help you get your favorite products at even better prices."},{"question":"How can I stay updated on new Rick and Morty merchandise arrivals?","answer":"To stay in the loop about new arrivals, promotions, and other exciting updates, we recommend subscribing to our newsletter. You'll receive timely notifications about all things Rick and Morty straight to your inbox."},{"question":"Can I return or exchange my Rick and Morty merchandise if it doesn't fit or if I'm not satisfied?","answer":"Yes, we have a hassle-free return and exchange policy. If you're not satisfied with your purchase or if the size isn't right, you can initiate a return or exchange within the specified time frame. Please refer to our Returns and Exchanges page for detailed instructions."},{"question":"How long does it take for my Rick and Morty merchandise to be delivered?","answer":"The delivery time may vary based on your location and the shipping option you choose during checkout. Typically, we aim to deliver your merchandise within the estimated delivery window provided at the time of purchase."},{"question":"Can I gift Rick and Morty merchandise to someone?","answer":"Absolutely! Our Rick and Morty merchandise makes for fantastic gifts for fans of the show. Simply choose the items you'd like to gift, and during checkout, you can provide the recipient's shipping address."}]},{"url":"jackets","faq":[{"question":"What types of jackets are available at Bewakoof?","answer":"Bewakoof offers a diverse range of jackets to suit various styles and preferences. Our collection includes puffer jackets, bomber jackets, varsity jackets, windcheater jackets, denim jackets, coats, and more. Explore our selection to find the perfect jacket for any occasion."},{"question":"Are the jackets available for both men and women?","answer":"Yes, our jackets are designed to cater to both men and women. We believe in inclusivity and offer a wide range of styles that are suitable for all genders."},{"question":"How can I determine my jacket size?","answer":"To find your perfect fit, refer to our sizing chart available on the product page. Carefully measure yourself and compare the measurements to the chart. If you're still unsure, feel free to contact our customer support for assistance."},{"question":"Can I return or exchange a jacket if it doesn't fit properly?","answer":"Yes, we understand that sizing can sometimes be challenging when shopping online. We offer easy returns and exchanges within the specified time frame. Please refer to our Return Policy for more details on the process."},{"question":"What are the different types of designs available for jackets?","answer":"We offer a variety of design options for our jackets, including solid colors, color block patterns, typography designs, camouflage prints, AOP (All Over Print) designs, washed finishes, graphic prints, and self-design options. Choose a design that resonates with your personal style."},{"question":"Do you offer jackets for different seasons?","answer":"Yes, our collection includes jackets suitable for various seasons. From warm puffer jackets for winter to lightweight windcheater jackets for transitional months, you'll find options to match your needs."},{"question":"How can I take care of my jacket to ensure its longevity?","answer":"Proper care is essential to maintain the quality of your jacket. Always follow the care instructions on the product label. In general, avoid overwashing, spot clean minor stains, and air dry to preserve colors and fabric integrity."},{"question":"Can I wear my jacket with other outfit pieces?","answer":"Absolutely! Jackets are versatile pieces that can be paired with a wide range of clothing items. Consider matching your jacket with t-shirts, tops, joggers, jeans, and even dresses to create stylish ensembles."},{"question":"Are there jackets available in unisex styles?","answer":"Yes, we offer jackets in unisex styles that are designed to suit all genders. Unisex fit jackets provide a universal and inclusive option for everyone."},{"question":"How do I choose the right neck style for my jacket?","answer":"The neck style can greatly influence the overall look of your jacket. Consider the occasion and your personal style preferences. We offer options such as hooded jackets, stand collar jackets, high neck jackets, spread collar jackets, mandarin collar jackets, round neck jackets, and more."},{"question":"Do you offer jackets in plus sizes?","answer":"Yes, we offer a range of sizes to cater to different body types, including plus sizes. Please refer to our sizing chart to find the size that best fits you."},{"question":"How do I place an order for a jacket?","answer":"Placing an order is simple! Just browse our collection, select the jacket you like, choose your size, and add it to your cart. Follow the checkout process, provide your shipping details and payment information, and you're good to go."},{"question":"How can I contact customer support for further assistance?","answer":"For any questions, concerns, or assistance, our customer support team is here to help. You can reach out to us through our Contact Us page or email us at care@bewakoof.com, and we'll be happy to assist you."}]},{"url":"raksha-bandhan-gifts","faq":[{"question":"What types of Raksha Bandhan gifts does Bewakoof offer?","answer":"At Bewakoof, we offer a diverse range of Raksha Bandhan gifts that cater to various preferences and styles. Our collection includes custom T-shirts, oversized T-shirts, dresses, pants, shirts, jackets, and footwear for both men and women. You'll find options ranging from trendy and fashionable to classic and comfortable."},{"question":"Can I personalize Rakhi gifts at Bewakoof?","answer":"Absolutely! We offer the option to personalize your Rakhi gifts by creating custom T-shirts. You can add a special message, a memorable photo, or a unique design to make your gift truly one-of-a-kind and meaningful."},{"question":"Do you offer budget-friendly Rakhi gift options?","answer":"Yes, we believe that love shouldn't be restricted by budget limitations. Our collection includes a variety of budget-friendly Rakhi gift options that allow you to express your affection without overspending."},{"question":"How can I pay for my Rakhi gifts at Bewakoof?","answer":"We offer multiple easy payment options for your convenience. You can use debit\u002Fcredit cards, net banking, UPI, and mobile wallets to complete your purchase securely and effortlessly."},{"question":"Are there any special offers or discounts on Raksha Bandhan gifts?","answer":"Yes, we often have special offers and discounts on our Raksha Bandhan gifts. Keep an eye out for these deals to get great value for your money while selecting the perfect gift for your sibling."},{"question":"How do I track my Rakhi gift order?","answer":"Once your Rakhi gift order is placed, you'll receive a confirmation email with tracking details. You can use these details to track the status of your order and get real-time updates on its delivery."},{"question":"Can I send Rakhi gifts directly to my sibling's address?","answer":"Yes, you can choose to have your Rakhi gift delivered directly to your sibling's address. During the checkout process, you can provide the recipient's address for delivery, making it a convenient option if you're unable to personally deliver the gift."},{"question":"How can I contact Bewakoof's customer support for assistance?","answer":"For any questions or assistance regarding Raksha Bandhan gifts or any other inquiries, our customer support team is here to help. You can reach out to us through the contact information provided on our website, and we'll be happy to assist you."}]},{"url":"women-joggers-sweatpants","faq":[{"question":"What types of joggers for women are available at Bewakoof?","answer":"Bewakoof offers a diverse range of jogging bottoms for women, including those suitable for workouts, casual outings, and even stylish everyday wear. You can find them in various colours and sizes."},{"question":"How can these joggers be styled?","answer":"You can pair these joggers with a printed T-shirt, a denim jacket, and ballet flats for a weekend brunch, or wear them with a structured blazer and heels for a more refined look. They also work great with our women's T-shirt collection."},{"question":"What sizes are available for these joggers?","answer":"At Bewakoof, we understand the importance of perfect fit. Our joggers come in a range of sizes to ensure you find the right one for you."},{"question":"Are there different colours available for women joggers?","answer":"Yes, our joggers are available in various colours. You can choose the one that best suits your style and preference."},{"question":"Are these joggers comfortable for daily wear?","answer":"Absolutely! Our joggers for girls & ladies are made of cotton, known for its comfort and flexibility. They are perfect for gym workouts, jogging, daily chores, or casual outings."},{"question":"Are these joggers affordable?","answer":"Yes, at Bewakoof, we believe style should not come with a hefty price tag. Our joggers are reasonably priced to fit all budgets. "},{"question":"How can I buy these joggers?","answer":"You can buy our women's joggers easily from our online store. Visit 'https:\u002F\u002Fwww.bewakoof.com\u002Fwomen-joggers-sweatpants' to choose from our diverse range."}]},{"url":"men-joggers","faq":[{"question":"What are jogger pants for men?","answer":"Jogger pants for men are a versatile style of bottom wear that combines the comfort of sweatpants with a more tailored and stylish appearance. They are typically made from soft, stretchable, and durable fabrics, featuring an elastic waistband and ankle cuffs. These pants offer a relaxed fit that isn't too tight or baggy, making them suitable for various occasions."},{"question":"What jogger styles are available at Bewakoof?","answer":"We offer a wide range of styles, including denim joggers, sweatpants, and joggers with side panels. We also feature joggers with superhero logos for Batman and Superman fans."},{"question":"How can I style my men's joggers?","answer":"There are numerous ways to style our joggers for men. They can be paired with sweaters, t-shirts or shirts for a casual or smart casual look. For a more playful style, try our joggers featuring superhero logos."},{"question":"What sizes do the joggers for men come in?","answer":"Our joggers for men are designed to fit all customers. Please refer to our size guide for specific measurements."},{"question":"What is the fabric quality of the joggers?","answer":"Our joggers for gents are made from soft, stretchable, and sturdy fabric for maximum comfort whether you're relaxing at home or at the gym."},{"question":"Can I return or exchange mens joggers if they don't fit?","answer":"Yes, we have a return and exchange policy in place. Please refer to our Return Policy section for more details."},{"question":"How often do you update your men's joggers collection?","answer":"We frequently update our collection to keep up with the latest trends and customer demands. Please visit our website regularly to check out our new arrivals."},{"question":"What payment methods do you accept?","answer":"We accept payments through debit and credit cards, net banking, Paytm, and BHIM UPI. You can also pay using wallets like Mobikwik and Freecharge. We also have Cash on Delivery (COD) available for select locations."},{"question":"Are jogger pants for men suitable for athletic activities?","answer":"Yes, our men's jogger pants are designed for comfort and movement, making them suitable for various athletic activities. Their flexible and breathable fabric makes them a popular choice for activities like light workouts, jogging, or yoga."},{"question":"Can I wear jogger pants to a casual hangout with friends?","answer":"Absolutely! Men Jogger pants are perfect for casual hangouts with friends. You can pair them with a simple t-shirt or an oversized t-shirt for a laid-back yet stylish look. Complete the outfit with sneakers or casual shoes."},{"question":"How do I care for my men's jogger pants?","answer":"To maintain the quality of your jogger pants, it's recommended to follow the care instructions provided on the garment's label. Generally, machine wash them in cold water with similar colors, and avoid using harsh detergents or bleach. Hang them to dry or use a low heat setting in the dryer to prevent shrinking."},{"question":"Can I wear jogger pants for men to the office?","answer":"While some workplaces have relaxed dress codes, traditional office settings might not consider jogger pants appropriate. However, if your workplace allows smart-casual attire, you can pair well-fitted men's jogger pants with a button-down shirt and dress shoes to create a more polished look."}]},{"url":"minions-merchandise","faq":[{"question":"What is the Bewakoof Minions Collection?","answer":"The Bewakoof Minions Collection is a curated assortment of trendy apparel and accessories inspired by the beloved Minion characters. From t-shirts and joggers to mobile covers, our collection features unique and playful designs that capture the essence of these mischievous characters."},{"question":"What types of Minions merchandise are available?","answer":"Our Minions Collection offers a variety of merchandise, including Minions t-shirts, joggers, oversized t-shirts, printed t-shirts, and mobile covers. Each item is designed to showcase your love for Minions in a fun and stylish way."},{"question":"Are the Minions t-shirts available for both men and women?","answer":"Absolutely! Our Minions t-shirts are designed to cater to both men and women. We believe that Minion love knows no boundaries, so you'll find a diverse range of sizes and styles to choose from."},{"question":"4. Can I expect high-quality products from the Minions Collection?","answer":"Definitely! At Bewakoof, quality is our priority. All our Minions merchandise is crafted using premium materials to ensure both comfort and durability. Plus, our products are backed by a 100% quality assurance guarantee, so you can shop with confidence."},{"question":"5. Do you offer Cash on Delivery (COD) payment options for Minions merchandise?","answer":"Yes, we do! We understand that convenience matters, which is why we offer Cash on Delivery as a payment option for your Minions merchandise purchases. Choose the payment method that works best for you."},{"question":"6. Is there a Free Shipping option available for Minions merchandise?","answer":"Absolutely! We offer Free Shipping on our Minions merchandise, making your shopping experience even more delightful. Sit back, relax, and let us deliver your favorite Minion goodies right to your doorstep without any extra shipping charges."},{"question":"7. Can I find unique designs in the Minions Collection?","answer":"Certainly! Our Minions Collection features a wide array of unique and fun designs that are sure to stand out from the crowd. Whether you prefer quirky illustrations, iconic quotes, or artistic prints, you'll find something that resonates with your style."},{"question":"Are the Minions joggers comfortable for everyday wear?","answer":"Yes, our Minions joggers are designed with both style and comfort in mind. They're perfect for lounging at home or stepping out for a casual outing. With their playful Minion designs, you'll add a touch of charm to your everyday look."},{"question":"Can I expect a variety of colors in the Minions Collection?","answer":"Absolutely! We understand that personal style varies, so our Minions Collection offers a variety of colors to suit your preferences. Whether you're into vibrant hues or more subtle shades, you'll find options that match your taste."},{"question":"10. How can I contact customer support for further assistance?","answer":"If you have any more questions or need assistance, our friendly customer support team is here to help. You can reach us at care@bewakoof.com with all queries. We do not have a Bewakoof customer care number."}]},{"url":"cargos","faq":[{"question":"1. What types of cargos are available in your collection?","answer":"At Bewakoof, we offer a diverse range of cargos for both men and women. Our collection includes cargo pants, cargo joggers, and cargo shorts, designed to cater to different preferences and occasions."},{"question":"2. Are your cargos available for both men and women?","answer":"Absolutely! We have a dedicated selection of cargos for both men and women. Our designs are tailored to suit the unique styles and needs of each gender."},{"question":"3. How can I choose the right size for my cargos?","answer":"To choose the perfect size, please refer to our detailed size guide provided on the product page. This guide offers measurements and tips to help you find the right fit for your body type."},{"question":"4. Can I return or exchange the cargos if they don't fit well?","answer":"es, we understand that finding the right fit is crucial. We offer a hassle-free return and exchange policy. Please review our Return & Exchange policy on our website for more information on the process."},{"question":"5. What fabrics are used in your cargos?","answer":"Our cargos are crafted using high-quality materials that prioritize both comfort and durability. The specific fabric composition may vary depending on the design. Details about the fabric can be found on each product page."},{"question":"6. Do you offer cargo pants with various pocket styles?","answer":"Yes, our cargo pants come in a variety of pocket styles. From classic cargo pockets to modern variations, our collection offers a range of designs to suit your preferences."},{"question":"7. Are your cargos suitable for different occasions?","answer":"Absolutely! Our cargos are designed to be versatile, making them suitable for various occasions. Whether you're heading to a casual outing, a day of exploration, or a semi-formal event, our collection has options that can be dressed up or down accordingly."},{"question":"8. Can I pair cargos with other items from Bewakoof's collection?","answer":"Definitely! Our cargos can be easily paired with a wide range of tops, t-shirts, shirts, hoodies, and jackets from our collection. Explore the possibilities and create stylish ensembles that reflect your personal style."},{"question":"9. What benefits do I get from shopping at Bewakoof?","answer":"Shopping at Bewakoof comes with several benefits, including affordable prices, free shipping options on eligible orders, and convenient cash on delivery options. Our focus is on providing a seamless shopping experience for our customers."},{"question":"10. How often do you update your cargos collection?","answer":"We strive to keep our collection fresh and up-to-date with the latest trends. We regularly introduce new designs and styles, so be sure to check our website frequently for the latest additions."},{"question":"11. Are the colors of the cargos true to the images displayed on the website?","answer":"While we make every effort to display accurate colors, there may be slight variations due to factors such as screen settings and lighting conditions. We recommend referring to the product images and descriptions for the most accurate representation."},{"question":"12. How can I track my order after purchasing cargos?","answer":"Once your order is confirmed, you will receive a tracking number via email. You can use this tracking number to monitor the progress of your shipment through our logistics partners."}]},{"url":"cargo-pants-for-women","faq":[{"question":"What are cargo pants for women, and why are they popular?","answer":"Women's cargo pants are stylish and functional trousers with multiple pockets on the sides, inspired by military apparel. They have become popular due to their versatile design, which combines fashion with utility. Cargo pants offer ample storage space while providing a chic and casual look suitable for various occasions."},{"question":"What sizes are available in Bewakoof's collection of women's cargo pants?","answer":"Bewakoof offers a wide range of sizes to cater to different body types. Our collection of women's cargo pants typically includes sizes ranging from XS to 3XL. To find your perfect fit, refer to our size chart available on the product page."},{"question":"What fabrics are used in Bewakoof's cargo pants for women?","answer":"At Bewakoof, we prioritize quality and comfort. Our women's cargo pants are crafted from premium fabrics, such as cotton, which provides durability, breathability, and a soft feel against the skin."},{"question":"How do I style cargo trouser pants for different occasions?","answer":"Cargo pants can be styled in various ways depending on the occasion. For a casual look, pair them with a t-shirt or a tank top. To elevate the outfit for a more formal setting, team them up with a blouse or a tucked-in shirt. Accessorize with the right shoes and jewelry to complete your look."},{"question":"Do cargo pants suit all body types?","answer":"Yes, cargo pants can flatter different body types when chosen wisely. High-waisted cargo pants work well for hourglass figures, while straight-cut or tapered styles are generally versatile and complement most body shapes. It's essential to find the right fit and silhouette that suits your body type."},{"question":"Are Bewakoof's cargo pants for girls suitable for outdoor activities?","answer":"Absolutely! Our cargo pants are designed to be both stylish and functional, making them perfect for outdoor activities, travel, and adventures. The multiple pockets offer convenient storage for your essentials, and the durable fabric ensures they can withstand various outdoor conditions."},{"question":"How do I care for my women cargo pants to maintain their quality?","answer":"To ensure the longevity of your cargo pants, follow the care instructions provided on the product label. Machine wash them in cold water with similar colors, avoid using bleach or harsh detergents, and hang them to dry. Iron on a low-temperature setting if necessary."},{"question":"Can I return or exchange cargo pants if they don't fit well?","answer":"Yes, at Bewakoof, we offer easy returns and exchanges. If your cargo pants don't fit as expected or you are not satisfied with your purchase, you can initiate a return or exchange within the specified time frame. Please refer to our return policy for more details."},{"question":"How can I stay updated with Bewakoof's latest collection of cargo pants for women?","answer":"To stay informed about our latest arrivals, promotions, and offers, subscribe to our newsletter. You can also follow us on social media platforms like Instagram, Facebook, and Twitter for updates on new releases and fashion trends."},{"question":"Does Bewakoof offer any discounts on women's cargo pants?","answer":"Yes, Bewakoof regularly offers discounts and promotions on its products, including women's cargo pants. Keep an eye on our website and social media channels for ongoing sales and special offers to get the best deals on your favorite styles."}]},{"url":"cargo-shorts-for-men","faq":[{"question":"What are Men's cargo shorts?","answer":"Cargo shorts for men are a type of shorts characterized by their multiple pockets and relaxed fit. Originally designed for outdoor and utility purposes, cargo shorts have evolved into a fashionable wardrobe staple that offers both style and functionality."},{"question":"What sizes are available for cargo shorts?","answer":"We offer a wide range of sizes to accommodate different body types. Our cargo shorts for men typically come in sizes ranging from XS to XXXL. For accurate sizing information, refer to the size chart on the product page."},{"question":"What are the different styles of cargo shorts available?","answer":"Our collection includes various styles of cargo shorts for men, including classic cargo shorts, slim-fit cargo shorts, camouflage cargo shorts, printed cargo shorts, and denim cargo shorts. Each style offers a unique look to suit your personal taste."},{"question":"Can I wear cargo shorts for different occasions?","answer":"Absolutely! Cargo shorts are versatile and can be styled for various occasions. Pair them with casual t-shirts or tank tops for a relaxed look, or dress them up with button-up shirts and loafers for a more polished appearance."},{"question":"Can I return or exchange cargo shorts if they don't fit?","answer":"Yes, we offer a hassle-free return and exchange policy. If your men cargo shorts don't fit as expected, you can initiate a return or exchange within the specified time frame. Please refer to our Returns & Exchanges page for detailed information."}]},{"url":"cargo-joggers","faq":[{"question":"What are Cargo Joggers?","answer":"Cargo joggers are a stylish and comfortable type of pants that combine the relaxed fit of joggers with the utilitarian design of cargo pants. They feature multiple pockets, an elastic waistband, and a tapered leg, making them a versatile and trendy choice for casual wear."},{"question":"Why should I choose Cargo Joggers from Bewakoof.com?","answer":"Bewakoof.com offers a wide range of high-quality cargo joggers that blend fashion and functionality. Our joggers are designed for comfort, durability, and style, making them a perfect addition to your wardrobe. With various colors and designs available, you can find the perfect pair to match your personal style."},{"question":"What sizes are available for Cargo Joggers?","answer":"We offer cargo joggers in a range of sizes to accommodate different body types. Our size chart provides detailed measurements to help you find the right fit. Sizes typically range from small to XXL, but availability may vary depending on the specific design."},{"question":"How do I choose the right size for Cargo Joggers?","answer":"To choose the right size, refer to our size chart available on the product page. Measure your waist, hips, and inseam according to the provided guidelines. If you're uncertain about your size, you can also contact our customer support for assistance."},{"question":"Are Cargo Joggers suitable for both men and women?","answer":"Yes, cargo joggers are designed to be unisex and can be worn by both men and women. Bewakoof.com offers a diverse selection of cargo joggers that cater to various tastes and preferences."},{"question":"What materials are Cargo Joggers made from?","answer":"Our cargo joggers are crafted from high-quality materials that ensure both comfort and durability. The specific fabric composition may vary depending on the design, but common materials include cotton blends, twill, and stretchy fabrics for ease of movement."},{"question":"How do I care for my Cargo Joggers?","answer":"Caring for your cargo joggers is easy. Most of our joggers are machine washable. Always check the care instructions on the product label to ensure proper maintenance and longevity. Avoid using harsh detergents or bleach that may damage the fabric or color."},{"question":"Can I wear Cargo Joggers for workouts or outdoor activities?","answer":"Absolutely! Cargo joggers offer both style and functionality, making them suitable for various activities, including light workouts, outdoor adventures, or casual outings. Their comfortable fit and multiple pockets make them a convenient choice for staying active or carrying essentials."},{"question":"Can I return or exchange Cargo Joggers if they don't fit?","answer":"Yes, Bewakoof.com offers a hassle-free return and exchange policy. If the cargo joggers don't fit or meet your expectations, you can initiate a return or exchange within the specified timeframe. Be sure to review our return policy on the website for detailed instructions and terms."}]},{"url":"cargo-shorts","faq":[{"question":"What are cargo shorts?","answer":"Cargo shorts are a style of shorts that typically feature multiple spacious pockets on the sides. These pockets not only add a fashionable touch but also provide practical storage space for your essentials."},{"question":"Are cargo shorts only for men?","answer":"No, cargo shorts are not limited to men's fashion. At Bewakoof, we offer a diverse Cargo Shorts Collection for both men and women, ensuring that everyone can enjoy this stylish and functional trend."},{"question":"How can I style cargo shorts?","answer":"Cargo shorts offer versatile styling options. You can pair them with t-shirts, tank tops, or oversized shirts for a casual look. Combine them with sneakers or flip-flops, and you're ready for various occasions."},{"question":"Are cargo shorts suitable for outdoor activities?","answer":"Absolutely! Cargo shorts were initially designed for outdoor activities due to their functional pockets and comfortable fit. They are perfect for light hikes, casual outdoor outings, and even beach trips."},{"question":"What sizes are available in your Cargo Shorts Collection?","answer":"Our Cargo Shorts Collection includes a range of sizes to cater to different body types. We offer sizes from XS to 3XL, ensuring that you find the perfect fit."},{"question":"How do I choose the right size for cargo shorts?","answer":"To choose the right size, refer to our size chart available on the product page. Measure your waist and hips, and compare them to the measurements provided to find your ideal size."},{"question":"What materials are your cargo shorts made of?","answer":"Our cargo shorts are crafted from lightweight and breathable materials, such as cotton, that ensure comfort even on warm days."},{"question":"Can I wear cargo shorts for a night out?","answer":"Absolutely! Cargo shorts can be dressed up with the right accessories and a stylish top, making them suitable for a casual night out with friends."},{"question":"Do cargo shorts come in different colors?","answer":"Yes, our Cargo Shorts Collection features a variety of colors, from classic neutrals like black and khaki to vibrant shades. Choose the color that best suits your style."},{"question":"How do I care for my cargo shorts?","answer":"To ensure the longevity of your cargo shorts, follow the care instructions on the product's label. Typically, machine wash them with similar colors in cold water, and avoid using bleach or harsh detergents."},{"question":"Can I return or exchange cargo shorts if they don't fit?","answer":"Yes, we offer hassle-free returns and exchanges. If the cargo shorts don't fit or meet your expectations, you can initiate a return or exchange within the specified period. Refer to our Return Policy for more details."},{"question":"Are cargo shorts appropriate for formal occasions?","answer":"Cargo shorts are more suitable for casual and relaxed settings. While they may not be the best choice for formal occasions, they're perfect for casual events and outings."},{"question":"Are cargo shorts a trend or a classic style?","answer":"Cargo shorts have transitioned from a purely utilitarian style to a trendy and versatile fashion statement. They continue to remain popular due to their comfort and functional design."},{"question":"How do I place an order for cargo shorts?","answer":"Placing an order for cargo shorts is easy. Visit our website, select the cargo shorts you like, choose the size and color, and add them to your cart. Proceed to checkout, provide your shipping details, and complete the payment process."},{"question":"Can I find matching tops for cargo shorts on Bewakoof?","answer":"Yes, we offer a wide range of tops, including t-shirts, tank tops, and oversized shirts, that can be paired perfectly with cargo shorts to create stylish and coordinated outfits."},{"question":"Are cargo shorts available in plus sizes?","answer":"Yes, our Cargo Shorts Collection includes a variety of sizes, including plus sizes, to ensure that everyone can enjoy this fashionable trend."},{"question":"How often do you update your cargo shorts collection?","answer":"We regularly update our collections to keep up with the latest trends. Visit our website frequently to explore new arrivals and stay on top of the fashion game."},{"question":"Are cargo shorts suitable for travel?","answer":"Absolutely! Cargo shorts' functional pockets make them great for carrying travel essentials. Their comfort and versatility also make them an ideal choice for exploring new destinations."},{"question":"Can I find oversized t-shirts to pair with cargo shorts on Bewakoof?","answer":"Yes, we offer a range of oversized t-shirts that can be paired with cargo shorts for a trendy and comfortable outfit."},{"question":"Why should I choose Bewakoof for cargo shorts?","answer":"Bewakoof is committed to offering high-quality, stylish, and affordable clothing. Our Cargo Shorts Collection reflects these values, ensuring you get the best value for your money."}]},{"url":"short-tops-for-women","faq":[{"question":"What types of short tops for women are available at Bewakoof?","answer":"Bewakoof offers a diverse range of short tops for women, including crop tops, tank tops, printed short tops, plain short tops, oversized tops, tie-dye tops, half sleeve tops, full sleeve tops, and puff sleeve tops. Each style caters to different preferences and occasions, ensuring you find the perfect fit for your wardrobe."},{"question":"How do I choose the right size for my short top?","answer":"To select the right size for your short top, refer to our detailed size chart available on the product page. The chart provides measurements for bust, waist, and hip, helping you choose the size that fits you best. If you have any further questions, feel free to contact our customer support team."},{"question":"Can I find short tops suitable for both casual and formal occasions?","answer":"Absolutely! Bewakoof's collection of short tops is designed to offer versatility, allowing you to find options suitable for various occasions. You can choose from casual styles for everyday wear or opt for more elegant designs to dress up for formal events."},{"question":"How do I care for my new short top?","answer":"Caring for your new short top is easy. Follow the care instructions provided on the garment's label. In general, it's advisable to wash your short tops in cold water with mild detergent. Avoid using bleach or harsh chemicals. To maintain the fabric's quality, consider air drying your short tops instead of using a dryer."},{"question":"Are the short tops made from comfortable materials?","answer":"Yes, at Bewakoof, we prioritize both style and comfort. Our short tops for women are crafted from high-quality materials that are soft, breathable, and comfortable to wear. You can enjoy a stylish look without compromising on comfort."},{"question":"Can I find matching bottom wear to pair with my short tops?","answer":"Absolutely! Bewakoof offers a wide range of bottom wear options, including jeans, joggers, cargo pants, and more, to perfectly complement your female short tops. You can mix and match to create stylish and coordinated outfits."},{"question":"Do you offer plus sizes for short tops for girls?","answer":"Yes, we believe in inclusive fashion, and our collection includes a variety of sizes to cater to different body types. You can find short tops in plus sizes that are just as stylish and trendy as our regular sizes."},{"question":"How can I track my order?","answer":"Once your order is placed, you will receive a confirmation email with a tracking number. You can use this tracking number to monitor the status of your order and get real-time updates on its delivery progress."},{"question":"Can I find other women's clothing items on Bewakoof?","answer":"Yes, Bewakoof offers a wide range of women's clothing beyond short tops. You can explore our collection of T-shirts, dresses, bottoms, activewear, and accessories to enhance your wardrobe and express your unique style."}]},{"url":"parachute-pants","faq":[{"question":"What are parachute pants?","answer":"Parachute pants are a style of pants characterized by their comfortable fit, elasticized cuffs, and distinctive pocket placements. Originally designed for skydivers, these pants have made their mark in the fashion world, offering a blend of utility and style."},{"question":"Why should I choose parachute pants from Bewakoof?","answer":"Bewakoof offers a diverse collection of stylish parachute pants that cater to both men and women. Our range includes various styles, colors, and fits, ensuring there's something for every fashion preference. Plus, our commitment to quality and trendsetting designs sets us apart."},{"question":"Can I find parachute pants for both men and women at Bewakoof?","answer":"Absolutely! Our collection includes parachute pants for both men and women, ensuring that everyone can enjoy the comfort and style these pants offer."},{"question":"What styles of parachute pants are available at Bewakoof?","answer":"We offer a range of styles, including camouflage parachute pants for an adventurous look, baggy parachute pants for a relaxed vibe, basic parachute pants for minimalist chic, and cargo parachute pants for a blend of style and functionality."},{"question":"How do I choose the right size of parachute pants?","answer":"To find the perfect fit, refer to our size charts provided on each product page. Measure your waist, hips, and inseam accurately and compare them with the size chart to select the size that best matches your measurements."},{"question":"Can I return or exchange parachute pants if they don't fit?","answer":"Yes, we offer a hassle-free return and exchange policy. If your parachute pants don't fit as expected, you can initiate a return or exchange within the specified timeframe. Please refer to our Returns and Exchanges policy for more details."},{"question":"How do I care for my parachute pants?","answer":"Caring for your parachute pants is simple. We recommend checking the care instructions provided on the product label. In general, machine wash them in cold water and avoid using bleach. Tumble dry on low heat or air dry to maintain the fabric's quality."},{"question":"How do I place an order for parachute pants?","answer":"Placing an order for parachute pants is easy. Simply browse our collection on the website, select the style and size you prefer, add the item to your cart, and proceed to checkout. Follow the prompts to complete your order."}]},{"url":"cargo-pants","faq":[{"question":"What are cargo pants?","answer":"Cargo pants are a style of pants characterized by their multiple pockets and utilitarian design. They are versatile and comfortable, making them a popular choice for various casual occasions."},{"question":"Do you offer cargo pants for both men and women?","answer":"Absolutely! We offer a wide range of cargo pants for both men and women, designed to cater to different preferences and styles."},{"question":"What types of cargo pants do you have?","answer":"Our collection includes various types of cargo pants, such as Slim Fit Cargo Pants, Oversized Cargo Pants, Loose Fit Cargo Pants, and Relax Fit Cargo Pants. Each type is designed to offer a unique blend of style and comfort."},{"question":"How do I style cargo pants with other garments?","answer":"Cargo pants are incredibly versatile and can be styled with T-Shirts, Oversized T-Shirts, Shirts, Hoodies, jackets, and Casual Shoes. Experiment with different combinations to create your own unique look."},{"question":"Are cargo pants suitable for formal occasions?","answer":"Cargo pants are generally more suited for casual or streetwear looks. However, depending on the specific style and occasion, you might be able to incorporate them into a semi-formal outfit."},{"question":"How do I choose the right size of cargo pants?","answer":"We provide a detailed size guide to help you choose the perfect fit. Measure your waist, hips, and inseam, and then refer to the guide to find the size that matches your measurements."},{"question":"Can I return or exchange cargo pants if they don't fit well?","answer":"Yes, we have a hassle-free return and exchange policy. If your cargo pants don't fit as expected, you can initiate a return or exchange within the specified timeframe."},{"question":"What materials are your cargo pants made of?","answer":"Our cargo pants are crafted from high-quality materials to ensure both comfort and durability. The specific material composition might vary depending on the style and design."},{"question":"How do I care for my cargo pants?","answer":"Caring for your cargo pants is easy. Most of our cargo pants are machine washable. Check the care instructions on the product label for specific details."},{"question":"Do you offer free shipping for cargo pants?","answer":"Yes, we offer free shipping on eligible orders. Make sure to check our shipping policy for more details and any applicable terms."},{"question":"Can I track my cargo pants order?","answer":"Absolutely. Once your order is shipped, you'll receive a tracking number that you can use to monitor the delivery status of your cargo pants."}]},{"url":"parachute-pants-for-women","faq":[{"question":"What are parachute pants for women?","answer":"Parachute pants for women are stylish and functional bottoms made from lightweight and breathable fabric. They are known for their comfortable fit and versatile design, suitable for various occasions and styles."},{"question":"What styles of parachute pants do you offer?","answer":"We offer a diverse range of parachute pants styles for women, including cargo, camouflage, baggy, and basic varieties. Each style caters to different fashion preferences, allowing you to choose the one that best suits your taste."},{"question":"How do I choose the right size?","answer":"To find your perfect fit, refer to our size chart available on the product page. Measure your waist, hips, and inseam, and match the measurements to the chart. If you're still unsure, our customer support team is here to assist you."},{"question":"Can parachute pants be worn in hot weather?","answer":"Absolutely! Our parachute pants are made from lightweight and breathable fabric, making them an excellent choice for hot weather. The fabric allows for optimal air circulation, keeping you cool and comfortable."},{"question":"Are these parachute pants suitable for different occasions?","answer":"Yes, our parachute pants are highly versatile. You can style them for various occasions, from casual streetwear with sneakers to a night out with heels or ankle boots. They adapt well to different settings, giving you the freedom to express your style."},{"question":"How do I care for my parachute pants?","answer":"To care for your parachute pants and ensure their longevity, follow these tips:\u003Cbr\u003E- Machine wash on a gentle cycle using cold water. \u003Cbr\u003E- Avoid overloading pockets with heavy items to prevent stretching. \u003Cbr\u003E- Air-dry your pants instead of using high heat in the dryer. \u003Cbr\u003E- Read and follow the care label instructions for specific guidance."},{"question":"Can I return or exchange parachute pants if they don't fit?","answer":"Yes, we have a hassle-free return and exchange policy. If your parachute pants don't fit as expected, you can initiate a return or exchange within the specified time frame. Please review our Returns & Exchanges policy on our website for more details."},{"question":"Do you offer international shipping?","answer":"Yes, we offer international shipping to several countries. During the checkout process, you can select your country to view the available shipping options and associated costs."},{"question":" Are there any discounts or promotions available for parachute pants?","answer":"We often have special promotions, discounts, and offers on our products, including parachute pants. Keep an eye on our website or subscribe to our newsletter to stay updated on the latest deals."},{"question":"How do I style parachute pants for a trendy look?","answer":"Styling parachute pants is fun and versatile. For a trendy look, you can pair them with a graphic tee and sneakers for a casual vibe. To elevate your style, consider adding accessories like a statement belt, layered necklaces, or a stylish jacket."}]},{"url":"coca-cola-merchandise","faq":[{"question":"What types of Coca Cola merchandise do you offer?","answer":"We offer a wide range of Coca Cola merchandise, with a focus on t-shirts. Our collection includes Coca Cola t-shirts for both men and women, featuring various designs, colors, and styles. From classic red t-shirts to printed options, we have something to suit every taste."},{"question":"Are the Coca Cola t-shirts available in different sizes?","answer":"Yes, we understand that one size doesn't fit all. Our Coca Cola t-shirts are available in a range of sizes to cater to different body types. You can find size options in the product description on each t-shirt page."},{"question":"What materials are used for the Coca Cola t-shirts?","answer":"We use premium-quality fabrics to craft our Coca Cola t-shirts. The materials vary depending on the design, but we ensure that all our t-shirts are comfortable and durable, so you can enjoy them for a long time."},{"question":"Can I find Coca Cola t-shirts for women and men in different designs?","answer":"Absolutely! Our collection includes Coca Cola t-shirts for both women and men, with distinct designs tailored to each gender. You'll find a wide variety of graphics, logos, and prints, making it easy to find a t-shirt that suits your style."},{"question":"Do you offer full-sleeve Coca Cola t-shirts?","answer":"Yes, we offer both half-sleeve and full-sleeve Coca Cola t-shirts. Whether you prefer the casual look of half-sleeves or the added coverage of full-sleeves, we have options to meet your preferences."},{"question":"Can I buy oversized Coca Cola t-shirts?","answer":"Yes, we have a selection of oversized Coca Cola t-shirts for those who love a relaxed and comfortable fit. Our oversized t-shirts are perfect for creating trendy and laid-back outfits."},{"question":"How do I choose the right size for my Coca Cola t-shirt?","answer":"To find the perfect size, we recommend referring to our size chart available on each t-shirt page. It provides measurements for chest, length, and shoulder, allowing you to choose the size that fits you best."},{"question":"Can I return or exchange my Coca Cola t-shirt if it doesn't fit or if I change my mind?","answer":"Yes, we offer a hassle-free return and exchange policy. If the t-shirt doesn't fit or if you change your mind, you can return or exchange it within the specified timeframe. Please refer to our Returns & Exchanges page for more details."},{"question":"How can I stay updated on the latest Coca Cola merchandise and promotions?","answer":"To stay updated on the latest Coca Cola merchandise, promotions, and exclusive offers, you can subscribe to our newsletter. You can also follow us on our social media channels for regular updates and exciting announcements."},{"question":"How secure are my payments when shopping on Bewakoof?","answer":"Your security is our priority. We use secure payment gateways to ensure that your payment information is protected and encrypted during the transaction process. You can shop with confidence on our platform."},{"question":"Do you offer international shipping for Coca Cola merchandise?","answer":"Currently, we only offer shipping in selected countries. However, we are continuously expanding our reach to provide our merchandise to more customers worldwide."},{"question":"Can I track my Coca Cola merchandise order?","answer":"Yes, once your order is processed and shipped, you will receive a tracking number via email. You can use this tracking number to monitor the status and location of your order until it reaches your doorstep."}]},{"url":"bewakoof-supima","faq":[{"question":"What is Supima Cotton?","answer":"Supima Cotton, short for 'Superior Pima,' is a premium variety of cotton known for its extraordinary softness, durability, and superior quality. It is exclusively grown in the southwestern United States and represents only a fraction of the world's cotton production. With its extended fiber length, Supima cotton creates garments that are incredibly soft to the touch and boast exceptional strength."},{"question":"What makes Supima cotton special?","answer":"Supima cotton, short for 'Superior Pima,' is a premium cotton variety grown exclusively in the United States. It constitutes just 1% of the world's cotton supply. Supima cotton's longer, finer fibers make it softer, more breathable, and stronger than regular cotton, providing an unparalleled level of comfort and luxury."},{"question":"What types of t-shirts are available in the Bewakoof® American Pima collection?","answer":"\u003Cp\u003EThe Bewakoof® American Pima collection includes a diverse range of t-shirts for both men and women. For men, there are classic solid colors, trendy prints, and various styles to suit different preferences. Women can explore a selection of chic and stylish&nbsp;\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fwomen-printed-t-shirts'\u003Egraphic tees\u003C\u002Fa\u003E and pastel shades, offering something for every fashion taste.\u003C\u002Fp\u003E"},{"question":"How is Bewakoof® American Pima different from regular t-shirts?","answer":"Bewakoof® American Pima t-shirts stand out from regular t-shirts due to the use of premium Supima cotton. Unlike regular cotton, Supima cotton offers enhanced softness, breathability, and durability. It provides a luxurious feel, superior comfort, and lasting quality that sets it apart from conventional t-shirts."},{"question":"Are Bewakoof® American Pima t-shirts suitable for all-day wear?","answer":"Absolutely! The comfort and breathability of Supima cotton make Bewakoof® American Pima t-shirts ideal for all-day wear. Whether you're running errands, going to work, or simply relaxing at home, these t-shirts will keep you feeling fresh and comfortable throughout the day."},{"question":"Can I find Supima t-shirts for both casual and dressier occasions?","answer":"Yes, Bewakoof® American Pima offers a versatile collection that caters to both casual and dressier occasions. The range includes t-shirts with trendy designs suitable for everyday wear, as well as more sophisticated options that can be dressed up for special events."},{"question":"Are the prices of Bewakoof® American Pima t-shirts affordable?","answer":"Absolutely! Bewakoof.com is committed to providing premium quality products at unbeatable prices. By eliminating middlemen and selling directly to customers, they ensure that Supima t-shirts remain affordable and accessible to all fashion enthusiasts."},{"question":"What are the benefits of Supima cotton's breathability?","answer":"Supima cotton's long and fine fibers create a highly breathable fabric that allows air to circulate freely. This feature keeps you cool and comfortable, making Bewakoof® American Pima t-shirts an excellent choice for warm weather or active lifestyles."},{"question":"How durable are Bewakoof® American Pima t-shirts?","answer":"Supima cotton's inherent strength contributes to the exceptional durability of Bewakoof® American Pima t-shirts. The fibers are resilient, allowing the t-shirts to maintain their shape and color even after multiple washes, ensuring that they stand the test of time."},{"question":"Is there free shipping available for Bewakoof® American Pima products?","answer":"Yes, Bewakoof.com offers free shipping on all orders, making it even more convenient to get your hands on your favorite Supima t-shirts without any additional shipping costs."},{"question":"Can I opt for Cash on Delivery (COD) for Bewakoof® American Pima orders?","answer":"Yes, for your convenience and peace of mind, Bewakoof.com provides Cash on Delivery (COD) as a payment option. With COD, you can pay for your order only when it arrives at your doorstep, ensuring a secure and risk-free transaction."},{"question":"How can I shop the Bewakoof® American Pima collection?","answer":"Shopping the Bewakoof® American Pima collection is easy! Simply visit the website and explore the premium range of Supima cotton t-shirts for men and women. Add your favorite picks to the cart and follow the checkout process to place your order."}]},{"url":"bewakoof-air","faq":[{"question":"What is the Bewakoof&reg; AIR Series?","answer":"The Bewakoof&reg; AIR Series is a collection of clothing designed to meet your new season needs. It features garments made from breathable fabric, providing high ventilation and keeping you cool and fresh throughout the day. The AIR Series offers lightweight and skin-friendly clothing that is soft to the touch, ensuring maximum comfort. With its multi-seasonal versatility, the AIR Series is perfect for all-year-round fashion."},{"question":"What are the key features of the AIR Series?","answer":"\u003Cp\u003EThe AIR Series stands out with its key features:\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E- Breathable Fabric: The garments in the AIR Series are made from breathable materials that allow air circulation, keeping you cool and comfortable.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E- Lightweight: The AIR Series offers featherlight clothing that allows for easy movement and a relaxed fit.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E- Skin-Friendly: The fabric used in the AIR Series is gentle on the skin, providing a soft and comfortable feel.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E- High Ventilation: The garments in the AIR Series ensure optimal airflow, keeping you fresh and sweat-free.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E- Multi-Seasonal: The AIR Series is designed to be versatile, suitable for various seasons and weather conditions.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E- Coziness of the Fabric: Despite being lightweight, the AIR Series provides warmth and comfort.\u003C\u002Fp\u003E"},{"question":"What categories are available in the AIR Series?","answer":"\u003Cp\u003EThe AIR Series offers the following categories of clothing:\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E- T-Shirts: Stylish and comfortable, perfect for everyday wear.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E- Oversized T-Shirts: Relaxed and trendy, offering a modern twist to your wardrobe.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E- Joggers: Functional and stylish, ideal for workouts or casual outings.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E- Shorts: Cool and chic, great for warm weather and outdoor activities.\u003C\u002Fp\u003E\u003Cbr\u003E"},{"question":"Can I find different designs and styles in the AIR Series?","answer":"Yes, the AIR Series offers a variety of designs and styles to suit different preferences. From solid colors to patterns and prints, you'll find options that match your personal style. Whether you prefer minimalist designs or bold statements, the AIR Series has something for everyone."},{"question":"How can I have a convenient online shopping experience with Bewakoof&reg;?","answer":"Bewakoof&reg; strives to provide a convenient and user-friendly online shopping experience. Simply visit our website, browse the AIR Series collection, and select the items you like. Add them to your cart and proceed to the secure checkout. Our website is designed to make the shopping process smooth and hassle-free, ensuring that you have a pleasant experience from start to finish."},{"question":"Are there any offers or discounts available on the AIR Series?","answer":"Yes, Bewakoof&reg; frequently offers great deals and discounts on the AIR Series and other collections. Keep an eye out for our promotions and special offers, allowing you to enjoy fashionable finds at budget-friendly prices. Visit our website regularly or subscribe to our newsletter to stay updated on the latest offers and discounts."},{"question":"Are the prices of the AIR Series budget-friendly?","answer":"Absolutely! At Bewakoof&reg;, we believe that fashion should be accessible to all. The AIR Series is priced competitively, providing you with quality clothing at affordable rates. We strive to offer budget-friendly prices without compromising on style or comfort."},{"question":"How do I take care of my AIR Series garments?","answer":"To ensure the longevity of your AIR Series garments, we recommend following these care instructions. Machine wash your clothes with similar colors, using a gentle detergent. Avoid using bleach or harsh chemicals. For best results, tumble dry on low or hang to dry. By following these instructions, you can maintain the exceptional quality and comfort of your AIR Series items."}]},{"url":"teenage-mutant-ninja-turtles-merchandise","faq":[{"question":"What kind of TMNT merchandise do you offer?","answer":"At Bewakoof&reg;, we offer a wide range of TMNT merchandise, including TMNT T-shirts, clothing, and accessories. Our collection includes oversized T-shirts for men and women, hoodies, dresses, tie-dye T-shirts, boyfriend T-shirts, shorts, vests, and more. We have something for every TMNT fan!"},{"question":"Are your TMNT products of good quality?","answer":"Yes, we prioritize quality in our TMNT merchandise. Our products are crafted using high-quality materials to ensure durability and comfort. We strive to provide you with TMNT apparel that you can enjoy for a long time while proudly displaying your love for the turtles."},{"question":"How can I choose the right size for my TMNT merchandise?","answer":"To select the correct size, we recommend referring to our size guide. It provides detailed measurements and guidance on how to measure yourself accurately. By following the size guide, you can choose the perfect fit for your TMNT apparel and ensure maximum comfort."},{"question":"Can I return or exchange TMNT merchandise if it doesn't fit or if I change my mind?","answer":"Yes, we offer easy returns and exchanges. If your TMNT merchandise doesn't fit properly or if you change your mind, you can initiate a return or exchange within the specified time frame. Please refer to our returns and exchanges policy for more information on the process and any applicable conditions."},{"question":"Do you offer any discounts or special offers on TMNT merchandise?","answer":"Yes, we often provide great offers and discounts on our TMNT merchandise. Stay updated with our website and social media channels to be the first to know about any ongoing promotions, seasonal sales, or exclusive deals. Take advantage of these opportunities to grab your favorite TMNT apparel at discounted prices."},{"question":"How long does shipping take for TMNT merchandise?","answer":"We strive to process and dispatch your TMNT merchandise as quickly as possible. The shipping time may vary depending on your location and the shipping method chosen. Once your order is placed, you will receive a confirmation email with the estimated delivery time. For more specific information, please refer to our shipping policy."},{"question":"Do you ship TMNT merchandise internationally?","answer":"Yes, we offer international shipping for our TMNT merchandise. Wherever you are in the world, you can proudly wear your TMNT apparel and showcase your turtle power. Please note that international shipping times and fees may vary based on your location."},{"question":"Can I find exclusive TMNT designs at Bewakoof&reg;?","answer":"Yes, we offer you exclusive TMNT designs that you won't find anywhere else. Our aim is to offer a diverse range of designs that cater to different styles and preferences. Browse through our collection to discover unique TMNT merchandise that reflects your personal taste."},{"question":"Are the prices of TMNT merchandise budget-friendly?","answer":"Absolutely! We believe that everyone should have the opportunity to express their TMNT fandom without breaking the bank. That's why we offer budget-friendly prices on our TMNT merchandise, ensuring that you can find something within your desired price range. Check out our collection and find affordable TMNT apparel that suits your budget."},{"question":"Can I contact customer support if I have any further questions or concerns?","answer":"Certainly! If you have any additional questions, concerns, or require further assistance regarding our TMNT merchandise, our friendly customer support team is ready to help. You can reach out to us through our contact page, and we'll be more than happy to assist you."}]},{"url":"harem-pants-for-men","faq":[{"question":"What styles of harem pants are available at Bewakoof?","answer":"Bewakoof offers a variety of harem pant styles for men, including solid colors, patterns, with unique designs."},{"question":"Are the harem pants at Bewakoof true to size?","answer":"Bewakoof provides a size chart to help you choose the right size for men's harem pants. It is recommended to refer to the size chart and measurements to ensure an accurate fit."},{"question":"What sizes are available for men's harem pants at Bewakoof?","answer":"Bewakoof offers harem pants in multiple sizes, ranging from small to extra-large. The specific available sizes may vary depending on the product."},{"question":"Is there a return or exchange policy for harem pants purchased from Bewakoof?","answer":" Bewakoof has a return and exchange policy. You can refer to our website for detailed information regarding our policy and any specific conditions for returning or exchanging harem pants."},{"question":"Are the harem pants for men at Bewakoof made of good quality material?","answer":"Bewakoof is known for its commitment to quality. The harem pants for men available at Bewakoof are generally made of good quality materials that ensure durability and comfort."},{"question":"Can I find discounts or promotions on men's harem pants at Bewakoof?","answer":"Bewakoof occasionally offers discounts, promotions, or special offers on its products, including men's harem pants. It's recommended to check our website or subscribe to their newsletter for updates on discounts and offers."},{"question":"How can I place an order for men's harem pants at Bewakoof?","answer":"To place an order for men's harem pants at Bewakoof, you can visit our website, browse the collection, select the desired style and size, add it to your cart, and proceed to checkout."},{"question":"What payment methods are accepted by Bewakoof?","answer":"Bewakoof accepts various payment methods, including debit cards, credit cards, net banking, UPI, and mobile wallets, making it convenient for customers to complete their purchases."},{"question":"How long does it take to receive men's harem pants after placing an order from Bewakoof?","answer":"The delivery time for men's harem pants from Bewakoof may vary depending on your location and the specific product availability. Bewakoof typically provides an estimated delivery time during the checkout process."}]},{"url":"harem-pants","faq":[{"question":"What are harem pants?","answer":"Harem pants are loose-fitting pants that are gathered at the waist and ankles, creating a voluminous and relaxed silhouette."},{"question":"Are harem pants available for both men and women?","answer":"Yes, harem pants are available for both men and women at Bewakoof."},{"question":"What sizes are available for harem pants at Bewakoof?","answer":"Bewakoof offers harem pants in various sizes, ranging from small to extra-large."},{"question":"Are the harem pants at Bewakoof made of good quality material?","answer":"Bewakoof is known for its high-quality products, and our harem pants are made of good quality materials."},{"question":"Can I return or exchange harem pants purchased from Bewakoof?","answer":"Bewakoof has a return and exchange policy. You can check our website for specific details regarding returns and exchanges."},{"question":"Are there different styles and colors available for harem pants at Bewakoof?","answer":"Yes, Bewakoof offers a wide range of styles and colors for harem pants, allowing you to choose according to your preference."},{"question":"How can I place an order for harem pants at Bewakoof?","answer":"To place an order for harem pants at Bewakoof, you can visit our website, select the desired style and size, add it to your cart, and proceed to checkout."},{"question":"What payment methods are accepted by Bewakoof?","answer":"Bewakoof accepts various payment methods, including debit cards, credit cards, net banking, UPI, and mobile wallets."},{"question":"Does Bewakoof offer any discounts or promotions on harem pants?","answer":"Bewakoof occasionally offers discounts and promotions on its products. You can check their website or subscribe to their newsletter for updates on discounts and offers."},{"question":"How long does it take to receive the harem pants after placing the order?","answer":"The delivery time may vary depending on your location. Bewakoof generally provides an estimated delivery time during the checkout process."},{"question":" How are harem pants different from regular pants?","answer":"Harem pants have a distinctive style characterized by their baggy and tapered shape, with a drop crotch and gathered ankles, unlike regular pants that have a more traditional fit."},{"question":"Can harem pants be worn by both men and women?","answer":"Yes, harem pants can be worn by both men and women. They are a versatile style that suits various body types."},{"question":"Are harem pants suitable for all occasions?","answer":"Harem pants are versatile and can be styled for different occasions. They can be dressed up or down, depending on the fabric, pattern, and accessories you choose."},{"question":"What body types do harem pants flatter?","answer":"Harem pants can be flattering for various body types. They tend to suit individuals with a slim or medium build, but it ultimately depends on personal preference and how they are styled."},{"question":"What should I wear with harem pants?","answer":"Harem pants can be paired with a variety of tops, such as fitted t-shirts, tank tops, crop tops, or blouses. It's best to choose a top that balances the loose silhouette of the pants."},{"question":"Are harem pants comfortable to wear?","answer":"Yes, harem pants are generally comfortable to wear due to their loose fit and breathable fabrics. They provide ease of movement and are often favored for casual and relaxed settings."},{"question":"Can harem pants be worn in hot weather?","answer":"Yes, harem pants are suitable for hot weather as they are often made from lightweight and breathable fabrics like cotton or linen, allowing air circulation and keeping you cool."},{"question":"Are harem pants appropriate for formal occasions?","answer":"While harem pants are more commonly associated with casual or bohemian styles, there are dressier versions available that can be suitable for certain formal occasions. It depends on the specific event and how you style them."},{"question":"How do I care for harem pants?","answer":"The care instructions for harem pants may vary depending on the fabric. It's best to check the label or follow the specific care instructions provided by the manufacturer. In general, most harem pants can be machine washed on a gentle cycle or hand washed and air-dried to maintain their quality."}]},{"url":"women-boxer-shorts","faq":[{"question":"What are the benefits of wearing boxer shorts for women?","answer":"Boxer shorts are becoming increasingly popular among women for their comfort and convenience. Wearing boxer shorts for women can provide a range of benefits, such as greater freedom of movement, improved breathability, and enhanced temperature regulation. Additionally, boxer shorts can help to reduce the risk of skin irritation and chafing due to their loose fit. Moreover, boxer shorts are available in a wide variety of styles and colors, allowing women to express their personal style while enjoying the benefits that come with wearing them."},{"question":"Are there any differences between men's and women's boxer shorts?","answer":"\u003Cp\u003EMen&apos;s and women&apos;s boxer shorts are both comfortable and practical undergarments. However, there are some subtle differences between the two that make them suitable for different body types.&nbsp;\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmen-boxer-shorts'\u003E\u003Cstrong\u003EMen&apos;s boxer shorts\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E tend to be slightly longer than women&apos;s boxer shorts, and they also typically have a more relaxed fit. Women&rsquo;s boxer shorts often feature a higher waistline and may contain additional features such as elastic waistbands or drawstrings. Additionally, men&apos;s boxers usually have a fly opening at the front while women&rsquo;s boxers do not.\u003C\u002Fp\u003E"},{"question":"How should women's boxer shorts fit?","answer":"Women's boxer shorts are a comfortable and stylish option for everyday wear. They should be snug enough to stay in place, but not so tight that they pinch or cause discomfort. The waistband should sit securely on the waist, while the legs of the shorts should fit loosely around the thighs and hips. The length of the shorts should be long enough to avoid riding up or bunching when sitting or moving around. When shopping for boxer shorts, it is important to select a size that fits properly and allows for unrestricted movement."},{"question":"Is it possible to return or exchange women's boxers at Bewakoof?","answer":"\u003Cp\u003EYes, it is possible to return or exchange women&apos;s boxers at Bewakoof. We offer a 15-day return and exchange period from the date of purchase for all our products. You can refer to our \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcontact-us\u002Frefund-or-return'\u003E\u003Cstrong\u003Eexchange &amp; return policy\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E for more details on how to proceed with the returns\u002Fexchanges. If you have any other queries, please feel free to contact us!\u003C\u002Fp\u003E"}]},{"url":"teens","faq":[{"question":"What type of clothing do Bewakoof offer for teens?","answer":"We provide a wide selection of the latest trends in teen clothing including t-shirts, shirts, jeans, shorts, Joggers and trousers."},{"question":"Does Bewakoof offer any discounts on kids wear?","answer":"Yes! We have special offers and discounts available for our customers on kidswear purchases from time to time. Check out our website or social media pages to stay updated about such offers!"},{"question":"Are there different sizes available for kid's clothes?","answer":"Yes, we provide multiple size options in all kinds of kids wear including t-shirts, shirts, jeans and more so that your child can find their perfect fit at Bewakoof! "},{"question":"Is free shipping available when I order kids clothing at Bewakoof?","answer":"Yes, we currently offer free shipping on orders above Rs 499 in India!"}]},{"url":"spider-man-phone-covers","faq":[{"question":"What material are Spiderman phone covers made of?","answer":"Spiderman phone covers are made of various materials such as silicone, plastic, rubber, and leather. Each material offers different levels of protection and durability."},{"question":"Where can i buy spiderman mobile covers online?","answer":"You can shop for the best quality spiderman cases from Bewakoof.com."},{"question":"Are Spiderman phone covers affordable?","answer":"Spiderman phone covers are available in a wide range of prices depending on the material, design, and brand. Some are more affordable than others, while some may be more expensive due to their quality and durability. However, overall, Spiderman phone covers are relatively affordable and can be a great way to protect your phone while showcasing your love for the superhero. "},{"question":"Does Bewakoof provide free shipping on Spiderman covers?","answer":"Bewakoof.com provide free shipping on all the orders above Rs.499."}]},{"url":"batman-phone-covers","faq":[{"question":"What type of phone covers does Bewakoof offer?","answer":"At Bewakoof, we offer a variety of Batman-themed phone cases and covers. Our covers are designed to fit snugly on your device and provide superior protection with precision cutouts to ensure full access to all the buttons, ports, and features of the device. "},{"question":"Are Bewakoof's Batman phone covers durable?","answer":"Yes! Our Batman phone covers are made with premium quality materials to ensure maximum protection for your device. Plus, they are designed for durability and long-lasting use so you can be sure that your device is safe and secure wherever you go."},{"question":"Does Bewakoof offer free shipping on orders?","answer":"Yes! Get free shipping on all orders above Rs. 499 at Bewakoof today. Shop our collection of Batman phone covers now and enjoy free shipping on all your orders."},{"question":"What types of designs does Bewakoof offer?","answer":"At Bewakoof, we have a wide range of Batman-themed phone cases and covers. Our designs range from the classic comic book covers to modern illustrations so you can find the perfect cover to suit your style."}]},{"url":"marvel-phone-covers","faq":[{"question":"Where can I buy Marvel Phone Covers?","answer":"You can shop for Marvel phone covers online at Bewakoof's website."},{"question":"What type of designs do the Marvel phone covers feature?","answer":"Our range of superhero designs includes Iron Man, Captain America, Spider-Man and other cool and stylish characters from the Marvel universe."},{"question":"Are your phone cases designed to provide protection?","answer":"Yes! Our cases are designed to withstand impact and keep your device safe from scratches and scuffs while also looking great in style!"},{"question":"How long does shipping take?","answer":"Enjoy fast shipping when you order with Bewakoof - our orders usually arrive within 6-7 days of purchase!"}]},{"url":"couple-phone-covers","faq":[{"question":"What styles of couple phone covers are available at Bewakoof&reg;?","answer":"At Bewakoof&reg;, we offer a wide variety of couple mobile cases and covers that come in various styles from classic designs to creative graphics."},{"question":"Are the couple phone cases made with quality materials?","answer":"Yes, all our couple cases are made with high-quality materials that will keep your devices safe from scratches and dents."},{"question":"What colors and designs do the couple covers come in?","answer":"Our collection of couple covers includes everything from classic designs to bold graphics and bright colors, so you're sure to find the perfect set for you and your partner!"},{"question":"How can I find the perfect combination of phone covers for me and my partner?","answer":"We have a wide variety of couples' phone cover options so you can choose the perfect combination for you both! From subtle and elegant designs to creative graphics, there's something for everyone!"},{"question":"Does Bewakoof&reg; offer free shipping on orders of couple phone cases?","answer":"Yes, we offer free shipping on orders over 499 within India."}]},{"url":"round-neck-t-shirts","faq":[{"question":"Is Bewakoof offering free delivery on orders above 499?","answer":"Yes, Bewakoof is offering free delivery across India on all orders above 499. Enjoy hassle-free shopping from the comfort of your home with Bewakoof."},{"question":"What is the variety of fits available for round neck t-shirts at Bewakoof?","answer":"At Bewakoof, you can choose from a variety of fits for round neck t-shirts, including relaxed fit, regular fit, slim fit, and oversized fit. With so many fits to choose from, you're sure to find something that perfectly fits your body type."},{"question":"Are there any special offers or discounts available on purchasing round neck t shirts from Bewakoof?","answer":"Yes, Bewakoof offers unbeatable prices on round neck t-shirts. Shop now and get ready to look and feel great with our quality t-shirts at a great price. You can also take advantage of additional offers and discounts available on the website. So make sure to check back periodically to grab even better deals!"},{"question":"What fabrics are used for making round neck t-shirts?","answer":"At Bewakoof, we only use high quality fabrics for our round neck t-shirts to ensure lasting wear and maximum comfort. Our t-shirts are crafted with breathable and lightweight fabrics like cotton, polyester, soft terry cotton, and more. With these fabrics you can be sure to stay cool and comfortable all day long!"},{"question":"Does Bewakoof offer international shipping for their products?","answer":"Yes, Bewakoof offers international shipping for their products. You can enjoy hassle-free shopping and get your t-shirts delivered to your doorstep, no matter where you are in the world. So go ahead and stock up on round neck t-shirts today!"}]},{"url":"cotton-t-shirts","faq":[{"question":"What types of cotton t-shirts does Bewakoof offer?","answer":"\u003Cp\u003EBewakoof offers a wide selection of cotton t-shirts for men and women. Our t-shirts come in a variety of colors, sizes, and designs so you can find the perfect one for you. Choose from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmen-plain-t-shirts'\u003Eplain tees\u003C\u002Fa\u003E, graphic tees, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmen-printed-tshirts'\u003Eprinted tees\u003C\u002Fa\u003E, and more! Shop now at Bewakoof.com to find your perfect fit!\u003C\u002Fp\u003E"},{"question":"How do I choose the perfect size for my cotton t-shirt?","answer":"At Bewakoof we make it easy to find the perfect size for your t-shirt. We offer a wide range of sizes, from extra small to 3XL, so you can find the perfect fit for you. Our sizing chart makes it easy to choose the right size for your body type and style preference."},{"question":"How do I care for my cotton tee?","answer":"Caring for your cotton t-shirt is simple and easy. To ensure that your shirt stays in great condition, simply follow these tips: Wash in cold water with like colors and tumble dry on low or air dry. Avoid using fabric softener as this may reduce the soft feel of your cotton t-shirt. Additionally, you should avoid using bleach or harsh detergents as this may cause discoloration or fading. With proper care and maintenance, your cotton t-shirts will stay looking new for a long time!"},{"question":"Are Bewakoofs cotton shirts durable and comfortable?","answer":"At Bewakoof, we take pride in providing our customers with the highest quality cotton t-shirts. Our shirts are designed to provide maximum comfort and long lasting durability. The fabric is soft and lightweight, making them perfect for any season or occasion."},{"question":"Do you have a wide selection of colors and designs in your t-shirts?","answer":"Yes, we offer a wide selection of colors and designs in our t-shirts. From plain tees to graphic tees, printed tees and more, youre sure to find the perfect one for you."},{"question":"Is it possible to style a plain white tee for different occasions?","answer":"Yes, it is possible to style a plain white tee for different occasions. For a casual look, you can pair your white t-shirt with joggers or shorts and sneakers. You can also dress it up by pairing it with jeans and loafers for a more formal look. With the right accessories, you can take your white tee from day to night!"},{"question":"What is the best way to shop for premium quality cotton tees online at Bewakoof?","answer":"At Bewakoof, we make it easy to shop for the best quality cotton tees online. You can browse our selection of t-shirts by size, color, and design to find the perfect one for you. Our website also offers detailed product descriptions and sizing guides so you can be sure that your t-shirt fits perfectly."}]},{"url":"vivo-y20-back-covers-cases","faq":[{"question":"What Vivo Y20 covers are available at Bewakoof?","answer":"At Bewakoof, youll find a variety of Vivo Y20 covers and back covers. Choose from vibrant prints to classic colors that are sure to make a statement. We also provide durable cases for extra protection without sacrificing functionality."},{"question":"What is the quality of Vivo Y20 covers?","answer":"At Bewakoof, we take great pride in providing high-quality phone covers and cases that are designed to last. Our Vivo Y20 covers and back covers feature precise cutouts for easy access to ports and buttons without sacrificing protection. Rest assured that your device is kept safe from any damage or scratches with our durable phone covers and cases."},{"question":"Are the Vivo Y20 back covers at Bewakoof affordable?","answer":"At Bewakoof, we understand that youre looking for great deals on Vivo Y20 back covers. Thats why we provide a wide selection of phone covers and cases at the best prices in India. Enjoy great deals on our products and fast delivery right to your doorstep!"},{"question":"What type of designs are available for Vivo Y20 back covers?","answer":"At Bewakoof, we have all the accessories you need to make sure your Vivo Y20 looks amazing. We provide a wide selection of vivo y20 phone covers and cases with designs ranging from classic colors to vibrant prints. Explore our collection now and find what youre looking for!"},{"question":"Does Bewakoof have any special offers for Vivo Y20 cases?","answer":"At Bewakoof, we understand that youre looking for great deals on Vivo Y20 cases. Thats why we offer a wide selection of phone covers and cases at the best prices in India. Enjoy fast delivery right to your doorstep when you shop with us!"},{"question":"Is there a range of colors and designs to choose from?","answer":"Yes, Bewakoof offers a wide selection of Vivo Y20 covers and back covers with designs ranging from classic colors to vibrant prints. With our products, you can rest assured that your device is kept safe from any damage or scratches while looking trendy and fashionable."},{"question":"Are Vivo Y20 Covers made with durable material?","answer":"Yes, all Vivo Y20 covers and cases at Bewakoof are made with durable material. Our products feature precise cutouts to give you easy access to ports and buttons without sacrificing protection. Rest assured that your device is kept safe from any damage or scratches with our phone covers and cases."},{"question":"Can I access ports and buttons easily when using Vivo Y20 back covers?","answer":"Yes, our Vivo Y20 back covers feature precise cutouts to give you easy access to ports and buttons without sacrificing protection. Rest assured that your device is kept safe from any damage or scratches with our durable phone covers and cases."},{"question":"Does Bewakoof provide free shipping for the ordered product?","answer":"Yes, Bewakoof provides free shipping on all orders above Rs. 500. Shop now at the best prices in India for guaranteed quality products delivered straight to your doorstep."},{"question":"How can I make sure that the quality of my Vivo Y20 cover is guaranteed by Bewakoof?","answer":"At Bewakoof, we take great pride in providing high-quality phone covers and cases that are designed to last. All our Vivo Y20 covers and back covers are tested for quality assurance before being dispatched to the customers."}]},{"url":"oppo-a54-back-covers-cases","faq":[{"question":"Where can I buy Oppo A54 covers and back covers?","answer":"We've got you covered! Bewakoof offers a wide selection of Oppo A54 covers and back covers online. Choose from an array of styles, designs, textures and colours to find the perfect look for your device."},{"question":"What kind of material is used for Oppo A54 Covers?","answer":"Our Oppo A54 covers are made of durable polycarbonate, designed to provide extra protection for your device while also making it look sleek and stylish. They are lightweight, slim and anti-slip so you can carry your phone with ease."},{"question":"What features do the Oppo A54 Covers have?","answer":"Our Oppo A54 covers come with anti-slip rubberized edges for extra grip and protection. The precision cutouts ensure you have easy access to all ports, buttons and camera so you can use your phone without any hassle."},{"question":"Are Oppo A54 Covers from Bewakoof resistant to scratches?","answer":"Yes, all of our Oppo A54 covers from Bewakoof are scratch resistant and will keep your phone looking new no matter how much you use it."},{"question":"How do I know which design of Oppo A54 Cover fits my phone?","answer":"We have designed our Oppo A54 covers to fit all versions of the phone, so you can be sure that your cover will fit perfectly. Our website also has detailed product descriptions and images to help you choose the right one for your device."},{"question":"What are the payment options for buying Oppo A54 Covers at Bewakoof?","answer":"We offer several payment options so you can choose the one that best suits your needs. We accept all major debit and credit cards, as well as net banking, UPI and wallet payments for a hassle-free shopping experience. Enjoy our cash on delivery option too!"},{"question":"Does Bewakoof offer free shipping when purchasing an Oppo A54 Cover or Back Cover?","answer":"Yes, we offer free shipping on all orders over Rs. 499 for Oppo A54 Covers and Back Covers. Shop now and enjoy this great deal!"}]},{"url":"one-piece-dresses","faq":[{"question":"What styles of one piece dresses does Bewakoof offer?","answer":"Bewakoof offers a variety of one piece dresses for women in different styles, including t-shirts, midi and sleeved designs. We also have mini dresses that are perfect for casual occasions."},{"question":"What materials are used to make Bewakoof's one piece dresses?","answer":"Our one piece dresses for girls are made with breathable, lightweight fabrics such as cotton and polyester. We use the best quality materials to ensure that you have a dress that is comfortable and long-lasting."},{"question":"Are one piece dresses for women appropriate for any occasion?","answer":"One piece dresses are perfect for any occasion, from formal events to casual outings. With our wide selection of styles, you can find a dress that is perfect for any occasion."},{"question":"Does Bewakoof offer affordable prices?","answer":"Yes, we offer the best prices for one piece dresses online. We understand that finding an affordable yet fashionable dress can be difficult, which is why we strive to provide you with the best quality dresses at an affordable price."},{"question":"Are Bewakoof's one piece dresses comfortable?","answer":"Yes, our one piece dresses are crafted with breathable fabrics that will keep you feeling cool and fresh all day. We make sure to use the best quality materials to ensure that you have a dress that is durable and will last you a long time."},{"question":"What accessories can I wear with one piece dresses?","answer":"One piece dresses can be accessorized with a variety of items, including statement jewelry, strappy sandals, ankle boots, and blazers. No matter what the occasion, one piece dresses from Bewakoof will help you look and feel your best. Shop for one piece dresses today and get ready to make a statement with your style!"},{"question":"Is it easy to maintain a women's one piece dress?","answer":"Yes, one piece dresses are easy to maintain. Most of our one piece dresses can be machine-washed in cold water and hung to dry. We recommend following the care instructions on the label for best results. With proper care, your dress will look as good as new!"},{"question":"Where can I find Bewakoof's stylish one piece dresses?","answer":"You can find our selection of one piece dresses for women online. We have a range of styles and colors to choose from, so you're sure to find the perfect dress for any occasion. Shop now and get ready to make a statement with your style!"}]},{"url":"holi-collection","faq":[{"question":"What styles of Holi T-Shirts are available?","answer":"At Bewakoof&reg;, we offer a variety of styles for Holi T-Shirts. Our collection includes classic designs, playful prints, and bold colors. Whether youre looking for something simple or something eye-catching, we have it all at the best prices online in India."},{"question":"Where can I find Holi clothing?","answer":"At Bewakoof&reg;, you can find an amazing range of Holi Clothing for men and women. With our collection of stylish and comfortable outfits, youll be sure to find the perfect outfit for this Holi season."},{"question":"What fabrics are used to make Holi Dresses?","answer":"At Bewakoof&reg;, we use high-quality fabrics to make our Holi Dresses. Our collection includes a wide range of fabrics, from cotton and linen to twill and Polyester. With our selection of classic and modern designs, youll be sure to find the perfect dress for your Holi celebrations."},{"question":"Are there any discounts available on the Holi Clothing collection?","answer":"Yes, at Bewakoof&reg; we offer amazing discounts on our Holi Clothing collections. Shop now and get the best prices online in India. With our wide range of styles, sizes, and colors, youre sure to find something perfect for your Holi celebrations. Shop now and save big on your favorite items!"},{"question":"What colors can I choose from for Holi Dresses?","answer":"At Bewakoof&reg;, we have an amazing selection of colors for our Holi Dresses. Our collection includes bright and vibrant hues such as yellows, pinks, blues and purples to classic shades like black, white and red. With our range of styles and colors, youll be sure to find the perfect dress for your Holi celebrations."},{"question":"What size should I order for my Holi Dress?","answer":"At Bewakoof&reg;, we offer a wide range of sizes for our Holi Dresses. Our collection includes regular and plus sizes to make sure that you can find the perfect fit. With our wide range of sizes, youll be sure to find something that fits comfortably and looks stylish."},{"question":"Are the Holi clothing items made with high quality materials?","answer":"Yes, all our Holi clothing items are made with high-quality materials. We use only the best fabrics to ensure that your outfit is comfortable and stylish. Our collection includes a wide range of fabrics, so you can find something perfect for your Holi celebrations."},{"question":"Does Bewakoof&reg; have any couple t shirt designs for Holi?","answer":"Yes, we have a great selection of couple t shirt designs for Holi. Our collection includes playful prints, classic designs, and modern styles. With our range of sizes and materials, youll be sure to find something perfect for your special someone."},{"question":"How can I find the best prices online in India for my Holi outfit?","answer":"At Bewakoof&reg;, we offer amazing prices online in India for our Holi clothing collection. With our range of styles and designs, youll be sure to find something perfect at the best prices. Shop now and get the best deals on your favorite items!"}]},{"url":"oppo-f21s-pro-back-covers-cases","faq":[{"question":"What type of Oppo F21s Pro covers does Bewakoof&reg; offer?","answer":"At Bewakoof&reg;, we offer a wide range of Oppo F21s Pro covers and cases for you to choose from. We have glass covers, back covers, hard covers, ,3D covers and more. All our Oppo F21s Pro covers come in various styles, colors, and designs, so you can pick the perfect one for your device. With our great offers, you can get the best protection for your Oppo F21s Pro without spending a lot of money."},{"question":"Are the Oppo F21s Pro Covers offered by Bewakoof&reg; durable?","answer":"Yes, all the Oppo F21s Pro covers we offer are designed with quality and durability in mind. Our covers are made with high-quality materials, so you can be sure that your device is always protected. With Bewakoof&reg;, you can get the perfect protection for your device without sacrificing quality."},{"question":"What is the delivery time for Oppo Covers?","answer":"At Bewakoof&reg;, we offer fast delivery on all our Oppo covers and cases. You can get your order delivered to your doorstep in no time, so you don't have to wait long for your cover or case."},{"question":"Does Bewakoof&reg; provide glass covers for the Oppo F21s Pro?","answer":"Yes, we do offer glass covers for the Oppo F21s Pro. Our glass covers are designed to provide superior protection while giving your device a unique look. Shop now and get the perfect solution to keep your Oppo F21s Pro safe and secure!"},{"question":"Is there a wide selection of colors and designs for the Oppo F21s Pro Covers at Bewakoof&reg;?","answer":"Yes, we offer a wide selection of colors and designs for Oppo F21s Pro covers at Bewakoof&reg;. Whether you're looking for something subtle or something bold and eye-catching, we have a cover that is perfect for your device."},{"question":"Are there any special offers or discounts available on buying Oppo F21s Pro Covers at Bewakoof&reg;?","answer":"Yes, there are special offers and discounts available on Oppo F21s Pro covers at Bewakoof&reg;. We keep our prices competitive and offer deals throughout the year, so you can get the perfect cover for your device without burning a hole in your pocket."},{"question":"Are Oppo F21s Pro Covers easy to install?","answer":"Yes, Oppo F21s Pro covers are easy to install. The edges of the cover fit snugly onto your device and they come with a simple fitting guide that helps you easily understand how to install them correctly."}]},{"url":"oneplus-nord-n20-se-back-covers-cases","faq":[{"question":"What materials are OnePlus Nord N20 SE Covers made of?","answer":"Our OnePlus Nord N20 SE Covers are made from premium materials such as polycarbonate, TPU, and tempered glass. They provide maximum protection with minimal bulk for your device. The covers come with an anti-slip grip to make sure your phone is secure in your hands. Plus, they are lightweight and comfortable to hold."},{"question":"Are OnePlus Nord N20 SE Covers scratch resistant?","answer":"Yes, our OnePlus Nord N20 SE Covers are scratch resistant. They come with a high-quality, scratch-resistant surface to protect your device from everyday wear and tear. Plus, the covers have an anti-slip grip to ensure your phone stays secure in your hands. So you can rest assured knowing that your device will be safe and protected."},{"question":"How can I choose the best cover for my OnePlus Nord N20 SE?","answer":"At Bewakoof&reg;, you can find a wide selection of OnePlus Nord N20 SE Covers to choose from. Browse through our collection and pick the perfect cover that complements your style. We have cases with intricate designs, bold colors, and more! So go ahead and choose the perfect case or cover that reflects your style and protects your device."},{"question":"Are there any exclusive designer covers available for the OnePlus Nord N20 SE?","answer":"Yes, at Bewakoof&reg;, we have a wide selection of exclusive designer covers for your OnePlus Nord N20 SE. These trendy and fashionable cases come in a variety of designs and colors, so you can find the perfect cover to show off your style. Plus, our covers are made from durable materials that offer maximum protection with minimal bulk. So go ahead and choose the perfect case for your device today!"},{"question":"What type of glass covers are available for my OnePlus Nord N20 SE?","answer":"At Bewakoof&reg;, we offer high-quality glass covers to give your OnePlus Nord N20 SE an extra layer of protection. These glass covers have a scratch-resistant surface to keep your device safe and secure. Plus, they are lightweight and sleek, making them comfortable to hold. So go ahead and choose the perfect glass cover for your device today!"},{"question":"Will a cover add bulk to my phone or make it uncomfortable to hold?","answer":"No, our OnePlus Nord N20 SE covers are designed to be lightweight and slim. They will not add any bulk or make your device uncomfortable to hold. Plus, they have an anti-slip grip to ensure your phone stays secure in your hands. So you can rest assured knowing that your device is safe and protected with a stylish cover."},{"question":"Does Bewakoof&reg; offer fast and reliable shipping for its cases, covers and glass covers for the OnePlus Nord N20 SE?","answer":"Yes, Bewakoof&reg; offers fast and reliable shipping. We understand the importance of protecting your device and want to make sure that you get the product you need quickly and safely."},{"question":"Where can I find the best prices online for cases and covers for my OnePlus Nord N20SE?","answer":"At Bewakoof&reg;, you can find the best prices online for OnePlus Nord N20 SE cases and covers."}]},{"url":"nothing-phone-1-back-covers-cases","faq":[{"question":"What materials are Nothing Phone 1 covers made from?","answer":"Nothing Phone 1 covers are made from strong polycarbonate material that is highly resistant to scratches, bumps, dust, and daily wear and tear. They also come with a snug fit for easy installation on your device. Moreover, the nothing phone 1 back covers are designed to provide an ergonomic grip and easy access to all ports, buttons, and controls. They are lightweight and comfortable to hold."},{"question":"What colors are Nothing Phone 1 covers available in?","answer":"Nothing Phone 1 cases and covers at Bewakoof&reg; come in a variety of colors, styles, and textures. Our collection includes an array of options from full-body covers to back-only covers, including classic black, sleek silver, vibrant blue or pink, and quirky prints. Find the perfect case for your device with our selection of nothing phone 1 cases and covers!"},{"question":"What is the price range for Nothing Phone 1 covers?","answer":"At Bewakoof&reg;, we offer our cases and covers at the best prices in India. We strive to provide the best prices available so that everyone can access quality products at affordable prices. Shop now and enjoy secure payment options for your convenience!"},{"question":"Are Nothing Phone 1 cases durable?","answer":"Yes, our nothing phone 1 cases are designed and constructed from high-quality materials to ensure durability and long-lasting protection for your device. The tough polycarbonate material resists scratches, dust, and daily wear and tear for maximum protection."},{"question":"What is the return\u002Frefund policy for Nothing Phone 1 cases?","answer":"\u003Cp\u003EAt Bewakoof&reg;, we offer a 15 Days Return &amp; Exchange Policy on all our products. If you&rsquo;re not satisfied with your purchase for any reason, you can exchange or return it within 15 days of receiving the order. For more details about our \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcontact-us\u002Frefund-or-return'\u003Ereturn and refund policy\u003C\u002Fa\u003E, please refer to our Terms &amp; Conditions.\u003C\u002Fp\u003E"},{"question":"Where can I buy high quality Nothing Phone 1 covers?","answer":"At Bewakoof&reg;, we offer the best selection of trendy and stylish Nothing Phone (1) cases, back covers, glass covers and covers online in India. Our collection of stylish cases and covers offers the perfect protection for your device while also adding a touch of style and personality. Shop now for nothing phone 1 cases and make sure your device is protected in style!"},{"question":"Does Bewakoof&reg; offer a variety of designs for Nothing Phone 1 covers?","answer":"Yes, our collection of nothing phone 1 cases and covers offers a variety of designs, colors, and textures to choose from. Whether youre looking for something subtle and minimalist or something bold and vibrant, we have the perfect case for you."},{"question":"What type of protection do Nothing Phone Cases provide?","answer":"Nothing phone cases provide ultimate protection against scratches, bumps, dust and daily wear and tear. The tough polycarbonate material ensures maximum durability, while the ergonomic design offers a comfortable grip for easy access to all ports, buttons, and controls."},{"question":"Is it easy to install a cover on my nothing phone 1 device?","answer":"Yes, our nothing phone 1 cases and covers come with a snug fit for easy installation on your device. Simply align the edges of the case to the edges of your device and press firmly to ensure a secure fit."},{"question":"Do nothing phone 1 cases come with ergonomic grips and access to ports, buttons and controls?","answer":"Yes, nothing phone 1 cases at Bewakoof&reg; come with ergonomic grips for a comfortable hold and easy access to all ports, buttons, and controls. Our selection of nothing phone 1 covers also includes back-only options that provide extra grip for easier handling."}]},{"url":"women-shorts","faq":[{"question":"What is the return policy for women's shorts online?","answer":"At Bewakoof, we offer easy and hassle-free returns on all Shorts for women. You can return your purchase within 15 days of delivery, provided the product is unused and in its original packaging."},{"question":"How can I contact customer service for shorts for women online?","answer":"At Bewakoof, we are always available to answer any questions you may have regarding Shorts for women. You can reach out to us via our website or email us at care@bewakoof.com and our customer service team will be happy to help."},{"question":"What sizes are available in shorts for women?","answer":"At Bewakoof, we offer women's shorts in a variety of sizes. Our size guide helps you find the perfect fit for your body type, and our range includes sizes XS to XXXL."},{"question":"Do you offer discounts on women's shorts?","answer":"At Bewakoof, we offer a range of discounts and offers on ladies shorts. We regularly update our online store with new deals and promotions so be sure to check back often for the latest special offers."},{"question":"How do I care for my shorts?","answer":"At Bewakoof, we recommend that women shorts are always washed with cold water and mild detergents. We also suggest not to iron or bleach the Shorts as this can cause discolouration."}]},{"url":"men-shorts","faq":[{"question":"What types of men's shorts can I buy at Bewakoof.com?","answer":"\u003Cp\u003EAt Bewakoof.com, we've got a fantastic range of shorts for men that are perfect for every occasion! Whether you're looking for cotton shorts, denim shorts, gym shorts, or something for a casual day out, we've got you covered.\u003C\u002Fp\u003E"},{"question":"How do I know which size to choose when buying shorts online?","answer":"\u003Cp\u003EWe understand that finding the perfect fit is crucial. That's why we provide a detailed size guide to help you make the best choice for your body type. Just match your measurements with our chart, and you'll be good to go!\u003C\u002Fp\u003E"},{"question":"Can I find the latest trends in men's shorts at Bewakoof.com?","answer":"\u003Cp\u003EAbsolutely! We're all about keeping up with the latest fashion. You'll find all the trendy shirt and shorts outfits right here. Our collection is updated regularly, so you can stay stylish without any hassle.\u003C\u002Fp\u003E"},{"question":"Is it easy to style shorts for men from Bewakoof.com?","answer":"\u003Cp\u003EOh, yes! Styling our men shorts is a breeze. Whether you're pairing them with a hoodie for an athletic look or a casual tee for a day out, we've got style guides to help you look your best. And with a variety of colors and designs, you'll find something that fits your style effortlessly.\u003C\u002Fp\u003E"},{"question":"How can I buy shorts for men online from Bewakoof.com?","answer":"\u003Cp\u003EShopping with us is as easy as pie! Just visit our men's shorts page, choose the shorts that catch your eye, select your size, and add them to the cart. Then, proceed to checkout, and voil, you're all set!\u003C\u002Fp\u003E"}]},{"url":"women-printed-t-shirts","faq":[{"question":"How can I buy a printed T-shirt for women online?","answer":"\u003Cp\u003EAt Bewakoof, you can shop for Printed T-Shirts for Women online. With a wide range of graphic and text prints in eye-catching colors and styles, there&apos;s something to suit every style and occasion. Whether you&apos;re looking for a statement piece or an everyday basic, our Printed T Shirts provide the perfect fit for your wardrobe. Shop for Ladies Printed T Shirts to add a fresh and modern touch to your look, or opt for classic designs for timeless appeal. With styles and sizes ranging from XS-5XL, you&apos;re sure to find the perfect Printed T Shirt to fit your shape and style. Browse our collection today and make a stylish statement!\u003C\u002Fp\u003E"},{"question":"What materials are Printed T-shirts made from?","answer":"\u003Cp\u003EPrinted T Shirts for Women at Bewakoof are crafted using high-quality cotton fabric that is lightweight yet durable. Printed graphics and text on Printed T Shirts are printed with eco-friendly inks, which ensures long lasting wear. Printed T Shirts for Women also feature a comfortable fit that allows you to move freely and stay comfortable all day long. With Printed T Shirts that look great and feel even better, you can make a stylish statement with Printed T Shirts for Women. Shop our collection now!\u003C\u002Fp\u003E"},{"question":"How should I care for Printed T-shirts?","answer":"\u003Cp\u003EWomen's Printed T Shirts require special care in order to keep them looking their best. To ensure Printed T Shirts for Women last longer, we recommend washing them inside out in cold water and avoiding the use of harsh detergents or bleach. Additionally, Printed T Shirts should be air-dried instead of tumble dried to prevent fading and shrinking. Following these simple steps will help Printed T Shirts for Women stay looking good and feeling comfortable for longer. Shop Printed T Shirts for Women now and make a stylish statement!\u003C\u002Fp\u003E"},{"question":"What is the return policy for printed T-shirts for women?","answer":"\u003Cp\u003EAt Bewakoof, Women Printed T Shirts are crafted with quality and care. We offer easy returns and an exchange policy that allows you to return Printed T Shirts for Women if they do not meet your expectations. In order to qualify for a return or exchange, Printed T Shirts must be unused and in their original packaging. Printed T Shirts must be returned within 15 days of delivery, and we will provide you with a full refund or exchange the Printed T Shirt for a different size or color. Our goal is to ensure that Printed T Shirts for Women meet your expectations and provide you with a comfortable fit and stylish look. Shop Printed T Shirts for Women now and make a stylish statement!\u003C\u002Fp\u003E"},{"question":"How can I contact customer service if I have a question about printed T-shirts for women?","answer":"\u003Cp\u003EAt Bewakoof, we are always available to help. If you have any questions about Printed T Shirts for Women or our services, please do not hesitate to contact us. Our customer service team is available seven days a week and can be reached by email at care@bewakoof.com. Alternatively, you can visit us online at Bewakoof.com and chat with a customer service representative in real time. We look forward to hearing from you! Shop Printed T Shirts for Women now!\u003C\u002Fp\u003E"},{"question":"How often does Bewakoof update its Printed T-shirts for women collection?","answer":"\u003Cp\u003EAt Bewakoof, Printed T Shirts for Women are updated regularly with new styles and designs. Our Women's Printed T Shirts collection is always growing, so you can find Printed T Shirts that perfectly match your style and personality. Additionally, our Printed T Shirts for Women feature bold graphics and vibrant colors, giving you the freedom to make a fashion statement that is unique to you. Shop Printed T Shirts for Women now and stay up-to-date with the latest trends!\u003C\u002Fp\u003E"},{"question":"Does Bewakoof offer discounts on Printed T-shirts for women?","answer":"\u003Cp\u003EYes! At Bewakoof, Printed T Shirts for Women are available at great prices without compromising on quality. Additionally, we offer discounts and promotions throughout the year, so you can shop Women's Printed T Shirts with peace of mind. Whether it&apos;s a special occasion or just because, Printed T Shirts for Women are a great choice to make a stylish statement. Shop Printed T Shirts for Women now and don&apos;t miss out on our amazing discounts!\u003C\u002Fp\u003E"},{"question":"Does Bewakoof offer Printed T-shirts for women in plus sizes?","answer":"\u003Cp\u003EYes! At Bewakoof, Printed T Shirts for Women are available in a range of sizes from XS to 5XL to ensure Printed T Shirts fit every body shape. Ladies Printed T Shirts feature a size guide that gives you an accurate measurement of the Printed T Shirt&apos;s dimensions, so you can be sure Printed T Shirts will fit comfortably. Shop Printed T Shirts for Women now and make a stylish statement!\u003C\u002Fp\u003E"}]},{"url":"flats","faq":[{"question":"What types of Flats for Women are available at Bewakoof?","answer":"At Bewakoof, you can find a wide range of Flats for Women to suit your style. Our collection includes classic flat shoes, embellished flat shoes, casual Flats, and more. Also available are flat slippers, with both open and closed-toe designs. We have Flats in an array of colors and prints, so that you can take your pick as per your mood. Bewakoof Flats for Women are designed to keep you comfortable throughout the day, without compromising on style. Get Flats at unbeatable prices and create amazing looks with ease. Head over to Bewakoof now to find the best Flats for Women and step out in style!"},{"question":"Are flat shoes from Bewakoof comfortable to wear?","answer":"Yes, Flats from Bewakoof are designed to ensure maximum comfort and breathability. Our Flats come with a cushioned insole and slip-resistant sole to keep your feet comfortable throughout the day. Flats from Bewakoof are lightweight, stylish, and durable too. So, if youre looking for Flats that will keep your feet feeling great all day long  Bewakoof Flats are the perfect choice!"},{"question":"What are flat slippers?","answer":"Flat slippers are a type of footwear that provides you with an easy, comfortable experience. Flat slippers come in a variety of designs and styles. At Bewakoof, you can find flat slippers with both closed-toe and open-toe designs. Flat slippers are perfect for days when you want to be comfortable and stylish at the same time."},{"question":"Are Flat Slippers from Bewakoof suitable for all occasions?","answer":"Yes, Flats Slippers from Bewakoof can be worn for both casual and formal occasions. If youre looking for a comfortable and stylish option for work, you can opt for closed-toe Flats Slippers. If youre looking for something to wear for a night out or a casual gathering, you can choose open-toe Flats Slippers. So make sure to check out our collection of Flats Slippers today and find the perfect pair for your needs!"},{"question":"What are some Flats for Women trends at Bewakoof?","answer":"At Bewakoof, Flats for Women are available in a wide range of colors and prints. From classic black Flats to multi-colored Flats and floral prints, you can find Flats to match any outfit. We also have Flats in metallic shades and various other trendy prints that are sure to enhance your look. Flats from Bewakoof offer both comfort and style, so make sure to check out our Flats collection and find the perfect Flats for Women!"},{"question":"How much does a pair of Flats for Women cost on Bewakoof?","answer":"At Bewakoof, Flats for Women are available at unbeatable prices. Our Flats range from INR 749\u002F- to INR 999\u002F-, so you can get Flats without breaking the bank. Make sure to check out our Flats collection and get amazing Flats for Women at amazing prices!"},{"question":"Where can I find the size guide for Flats for Women at Bewakoof?","answer":"At Bewakoof, Flats for Women are available in sizes ranging from UK size 3 to UK size 8. To find the Flats that fits you perfectly, make sure to check out our Flats size guide. With the Flats size guide, you can find Flats in the perfect fit for your feet. So, head over to Bewakoof now and find Flats for Women in the best size!"},{"question":"Does Bewakoof offer discounts on Flats for Women purchases?","answer":"Yes, Bewakoof offers discounts on Flats for Women purchases. Make sure to keep an eye out for our promotional offers and discounts to get Flats for Women at great prices. You can also follow us on social media to stay updated about our upcoming offers and discounts. So, head over to Bewakoof now and get Flats for Women at amazing prices!"},{"question":"Where can I find Flats for Women reviews at Bewakoof?","answer":"At Bewakoof, Flats for Women reviews are available on our website. You can read real customer Flats for Women reviews to help you make the best decision. Flats for Women reviews can also provide valuable insights into the quality, comfort, and fit of Flats for Women. So, make sure to check out Flats for Women reviews before you purchase Flats from Bewakoof!"}]},{"url":"men-printed-tshirts","faq":[{"question":"How can I buy a printed T-shirt for men at Bewakoof?","answer":"\u003Cp\u003EAt Bewakoof, we offer a wide range of printed T-shirts for men in various designs and styles. Our collection includes graphic T-shirts with unique and stylish prints that are sure to make you stand out from the crowd. To buy one of our printed T-shirts, simply browse through our selection and select the one that best suits your style. Once you have selected the shirt, complete the checkout process and your order will be shipped to your doorstep in no time! We also offer free shipping for orders above Rs 399\u002F- and easy returns for our customers. So, go ahead and browse through our selection of printed T-shirts for men at Bewakoof today!\u003C\u002Fp\u003E"},{"question":"What is the price of a printed T-shirt for men at Bewakoof?","answer":"\u003Cp\u003EThe price of printed T-shirts for men at Bewakoof ranges from Rs 299\u002F- to Rs 1,399\u002F- depending on the design and style. So, you can choose one that best suits your budget while still looking stylish! We also have regular discounts and offers that you can take advantage of, so don&apos;t forget to check them out! With Bewakoof, you can find the perfect printed T-shirt for men without breaking the bank. So, go ahead and shop with us today!\u003C\u002Fp\u003E"},{"question":"How can I pay for a printed T-shirt for men at Bewakoof?","answer":"\u003Cp\u003EAt Bewakoof, we offer various payment options such as credit\u002Fdebit cards, net banking and wallets like Paytm, Google Pay and PhonePe. We also accept UPI payments to make the checkout process easier for our customers. All these payment options are secure and encrypted so you can be sure that your data is safe while making a purchase. So, go ahead and choose your favourite printed T-shirt for men at Bewakoof with the payment option of your choice! We are sure you&apos;ll love our selection and find something that suits your style and budget.\u003C\u002Fp\u003E"},{"question":"How will I know if my order for a printed T-shirt for men at Bewakoof has been confirmed?","answer":"\u003Cp\u003EOnce you have completed your order, you will receive a confirmation email with all the necessary details such as the order number and estimated delivery date. We also suggest that you keep track of your order by visiting our website or downloading our \u003Ca href='https:\u002F\u002Fplay.google.com\u002Fstore\u002Fapps\u002Fdetails?id=com.bewakoof.bewakoof&hl=en'\u003Emobile shopping app\u003C\u002Fa\u003E for regular updates. In case of any queries, our customer service team is always available to help you out. So, you can rest assured that your order is in safe hands with us at Bewakoof!\u003C\u002Fp\u003E"},{"question":"When will I receive my order for a printed T-shirt for men at Bewakoof?","answer":"\u003Cp\u003EFor orders within India, we usually take 7-8 working days to process and deliver the order. Once your order is shipped, you will receive an email update with a tracking ID which can be used to track your package on our website or mobile app.\u003C\u002Fp\u003E"},{"question":"What is the quality of a printed T-shirt for men at Bewakoof?","answer":"\u003Cp\u003EAt Bewakoof, we understand that quality matters when it comes to clothing. That is why we take great care in selecting the best materials for our products and use high-quality printing techniques to ensure that our printed T-shirts for men are of superior quality. Our products are also manufactured with eco-friendly processes and adhere to stringent quality standards. So, you can be sure that when you buy a printed T-shirt for men at Bewakoof, you are getting nothing but the best!\u003C\u002Fp\u003E"},{"question":"What is the return policy for a printed T-shirt at Bewakoof?","answer":"\u003Cp\u003EAt Bewakoof, we believe that customer satisfaction is of utmost importance. That is why we offer an easy returns policy for our customers. If you are not satisfied with the product or it doesn&apos;t match your expectations, you can return it within 15 days from the date of delivery and get a full refund or exchange. For more information on our \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcontact-us\u002Forder-delivery-payment'\u003Ereturns policy\u003C\u002Fa\u003E, you can visit our website. So go ahead and shop with us today! We are sure you&apos;ll love our selection of printed T-shirts for men.\u003C\u002Fp\u003E"},{"question":"How should I care for my printed t-shirt?","answer":"\u003Cp\u003ETo ensure that your printed t-shirt stays looking good for a long time, we recommend following these simple instructions:\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E- Always wash the t-shirt inside out in cold water.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E- Avoid using strong detergents or fabric softeners as they can damage the print.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E- Air dry the t-shirt to avoid shrinkage.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E- Do not iron directly on the print.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003EFollowing these instructions will help you keep your printed t-shirt looking great for a long time! So, go ahead and show off your style with Bewakoof&apos;s stylish collection of printed t-shirts for men today!\u003C\u002Fp\u003E"},{"question":"How can I find a printed t-shirt that fits me well?","answer":"\u003Cp\u003EAt Bewakoof, we understand that finding the right fit is important when it comes to clothing. That is why we offer detailed size guides for all our products so you can make sure that you order the right size. We also suggest measuring yourself with a tape and comparing it with the measurements mentioned on our website before placing an order. If you still have any doubts, our customer service team is always available to help. So, go ahead and order your perfect fit printed t-shirt for men at Bewakoof with confidence!\u003C\u002Fp\u003E"}]},{"url":"men-full-sleeve-t-shirts","faq":[{"question":"What is the best way to buy full sleeve t-shirts for men online?","answer":"\u003Cp\u003EBewakoof is the answer! Our selection of Full Sleeve T shirts for Men will provide you with a wide range of options to choose from. Whether you are looking for a stylish slim fit, classic casual look or something unique and quirky, you can find it all at Bewakoof.\u003C\u002Fp\u003E"},{"question":"How can I find the best deals on full sleeve t-shirts for men online?","answer":"\u003Cp\u003EAt Bewakoof, we are committed to providing you with the best deals on Full Sleeve T-Shirts for Men. All our products come with free shipping, easy returns and cash on delivery options. Plus, we have a wide range of offers and discounts that can help you save even more money while shopping online.\u003C\u002Fp\u003E"},{"question":"How can I find the right size long sleeve t-shirt for men online?","answer":"\u003Cp\u003EFinding the right Full Sleeve Tees for Men online with us is easy. We have a detailed size guide on our website to help you select the perfect Full Sleeve T-Shirt that fits your body perfectly. Simply measure yourself accurately and then refer to our size chart to pick out the Full Sleeve Shirt thats right for you.\u003C\u002Fp\u003E"},{"question":"What is the best way to wash and care for full sleeve t-shirts for men?","answer":"\u003Cp\u003ETo keep Full Sleeve T shirts for Men in their best condition, we recommend following the wash care instructions provided on our website. Long Sleeve T-Shirts for Men should be washed separately and turned inside out before being put in a washing machine. To make sure Full Sleeve T-Shirts maintain their shape and colour, we suggest using a mild detergent and washing them on a light cycle. Full T-Shirts should also be hanged to dry flat in order to keep their shape and prevent stretching or shrinking. By following these simple steps, Full Sleeve T-Shirts for Men can last longer and stay looking good as new!\u003C\u002Fp\u003E"},{"question":"What kind of materials are Long Sleeve T-Shirts for Men made from?","answer":"\u003Cp\u003EAt Bewakoof, Full Sleeve T-Shirts for Men are made from high quality materials that keep you comfortable all day long. Long Sleeve T-Shirts for Men are crafted using breathable and lightweight fabrics like cotton and polyester that keep you cool in hot weather and warm in cooler weather. Full Sleeve T-Shirts for Men are designed to fit perfectly and last longer, so you can have Full Sleeve T Shirts that look great and last long. Shop Full Sleeve T-Shirts for Men at Bewakoof today and enjoy the best deals on Full Sleeve T-Shirts for Men!\u003C\u002Fp\u003E"},{"question":"What is the price range for full sleeve t-shirts for men at Bewakoof?","answer":"\u003Cp\u003EAt Bewakoof, Full Sleeve T-Shirts for Men come in a variety of prices. Full Sleeve T-Shirts for Men start at just Rs. 399 and go up to Rs. 1499, depending on your budget and style preferences. No matter what you are looking for, Full Sleeve T-Shirts for Men at Bewakoof are sure to fit your budget and style. So go ahead, shop Full Sleeve T-Shirts for Men at Bewakoof today and enjoy the best deals on Full Sleeve T-Shirts for Men!\u003C\u002Fp\u003E"},{"question":"Do you offer any discounts on full sleeve tees for men?","answer":"\u003Cp\u003EAt Bewakoof, Full Sleeve T-Shirts for Men come with exciting discounts and offers. Whether you are shopping Full Sleeve T-Shirts for Men or any other product, we have something for everybody. Sign up at Bewakoof today to get exclusive offers on Full Sleeve T-Shirts for Men and other products!\u003C\u002Fp\u003E"},{"question":"What is the payment method available?","answer":"\u003Cp\u003EAt Bewakoof, Full Sleeve T-Shirts for Men can be purchased using multiple payment methods like Credit\u002FDebit Card, Net Banking, and Cash on Delivery (COD). We also offer UPI payments and wallets like Paytm and Phonepe to make the shopping experience convenient for you. So go ahead and shop Long Sleeve T-Shirts for Men at Bewakoof today and enjoy the best deals on Full Sleeve T-Shirts for Men!\u003C\u002Fp\u003E"}]},{"url":"women-full-sleeves-t-shirts","faq":[{"question":"What is the best way to buy full sleeve t-shirt for women online?","answer":"The best way to buy women's full sleeve t-shirts online is by shopping at Bewakoof. Our collection of Full Sleeve Tees is filled with stylish designs and vibrant colors, perfect for those looking to make a fashion statement."},{"question":"How can I find the right size and fit for full sleeve t-shirt for women?","answer":"At Bewakoof, we make it easy to find the right size and fit for Long Sleeve T Shirts for Women. Each product page includes a detailed size chart so you can find the right fit for your body type. We also offer easy returns and exchanges, so if the Full Sleeves T-Shirt doesnt fit, you can get a new one that does."},{"question":"How can I find the best deals on full t-shirts for women online?","answer":"At Bewakoof, we offer great deals on Full Sleeve T Shirts for Women all year round. We regularly run promotional offers and discounts on women's Full Sleeve T-Shirts so you can get the best possible deals. We also offer free shipping on orders over a certain amount, so you can save even more when you buy Female Full Sleeve T-Shirts from Bewakoof."},{"question":"What are the different types of full sleeve t-shirts for ladies available on Bewakoof?","answer":"At Bewakoof, we offer cotton Full Sleeve T-Shirts for Women in a variety of designs and styles. From classic Full Sleeve T-Shirts to edgy Full Sleeve Tops, we have women's Full Sleeve T-Shirts in every style. We also have oversized Full Sleeve T-Shirts for Girls in a variety of colors and sizes so you can find Long Sleeve T-Shirts that look great on you. So whatever Full T-Shirt style youre looking for, you can find it at Bewakoof! Shop Full Sleeve T-Shirts for Women from Bewakoof today."},{"question":"What are the care instructions for full sleeve t-shirts?","answer":"Full Sleeve T-Shirts from Bewakoof are made with high quality fabrics and materials, so its important to take proper care of them to ensure they last. Women Full Sleeve T-Shirts should be washed separately in cool or warm water and on a gentle cycle with like colors. Full Sleeve T-Shirts should not be bleached, tumble dried or ironed. To maintain the quality of Full Sleeve T-Shirts, it is best to hang dry Long Sleeve T-Shirts and avoid direct exposure to sunlight. Following these care instructions will help Full Sleeve T-Shirts from Bewakoof last for many wears to come!"},{"question":"How can I stay updated about new arrivals of full sleeve t-shirts?","answer":"At Bewakoof, we always have new Long Sleeve T-Shirts for Women arriving. To stay up to date on the latest Full Sleeve T-Shirt designs from Bewakoof, you can follow us on social media or signup for our email newsletter. That way, youll never miss out on the newest women's Full Sleeve T-Shirts from Bewakoof!"},{"question":"How can I contact the team at Bewakoof for further queries?","answer":"If you have any other questions about Women's Full Sleeve T-Shirts from Bewakoof, you can contact our team directly by email at care@bewakoof.com or through live chat on the website."}]},{"url":"women-hoodies-sweatshirts","faq":[{"question":"What are the different types of women's Hoodies and sweatshirts?","answer":"Hoodies and Sweatshirts come in a variety of different styles and designs. You can find Hoodies and Sweatshirts with prints, graphics, slogans and logos. There are also a number of different colors and materials to choose from."},{"question":"What is the difference between a Hoodie and a Sweatshirt?","answer":"A Hoodie is a type of Sweatshirt that has a hood attached to it. Hoodies are usually made from thicker materials, such as cotton or fleece, and are designed to keep you warm. Sweatshirts are usually made from thinner materials, such as polyester, and are designed to be more breathable."},{"question":"How do I know what size Women's Hoodie or Sweatshirt to order?","answer":"When ordering a Hoodie or Sweatshirt, it is important to consider the fit. Make sure to choose a Hoodie or Sweatshirt that is comfortable and fits well. It is also important to refer to the size chart before placing your order."},{"question":"What are some tips on how to style a women's Hoodie or Sweatshirt?","answer":"Hoodies and Sweatshirts can be styled in a number of different ways. Try pairing Hoodies with T-shirts, jeans, sweaters, joggers or leggings for a stylish and comfortable outfit. You can also dress up your Hoodie or Sweatshirt with heels and a blazer for a more formal look."},{"question":"How do I care for my Women's Hoodie or Sweatshirt?","answer":"It is important to care for your Hoodie or Sweatshirt so that it lasts longer. Wash your Hoodie or Sweatshirt in cold water and gentle detergent. Do not bleach or dry clean your Hoodie or Sweatshirt. Hang or lay flat to dry. Do not iron your Hoodie or Sweatshirt. Store your Hoodie or Sweatshirt in a cool, dry place."},{"question":"What are the best materials for women's Hoodies and sweatshirts?","answer":"Hoodies and Sweatshirts are usually made from cotton, polyester or fleece. Choose a Hoodie or Sweatshirt in a material that is comfortable for you and that suits the occasion."},{"question":"Where can I buy women's Hoodies and sweatshirts?","answer":"Women's Hoodies and Sweatshirts can be purchased online at Bewakoof.com."},{"question":"How do I get a sweatshirt for women?","answer":"You can purchase a Hoodie or Sweatshirt online at Bewakoof.com. Choose from a variety of different styles, designs and colors. Select the size and fit that is right for you and place your order. Your Hoodie or Sweatshirt will be delivered to you within 7-8 working days."},{"question":"What are the prices of the ladies sweatshirts on Bewakoof.com?","answer":"The prices of the ladies Hoodies and Sweatshirts on Bewakoof.com vary depending on the style, design, and material."},{"question":"What is the shipping time for orders placed on Bewakoof.com?","answer":"Your order will be delivered to you within 7-8 working days."},{"question":"What is the return policy for items purchased on Bewakoof.com?","answer":"You can return your Women's Hoodie or Sweatshirt within 15 days of receiving it. Please refer to our Return Policy for more information."},{"question":"How can I contact customer care in case I have any queries?","answer":"You can reach out to our customer care team at care@bewakoof.com."},{"question":"How can I get a discount on my purchase from Bwakoof.com?","answer":"\u003Cp\u003EYou can use coupons and avail of discounts on your purchase from Bewakoof.com. Visit our \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale'\u003E\u003Cstrong\u003Eoffer page\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E to know more.\u003C\u002Fp\u003E"}]},{"url":"women-co-ord-sets","faq":[{"question":"What materials are Bewakoof co-ord sets made from?","answer":"Our co-ords for women are primarily made from high-quality fabrics such as cotton, polyester, and blends, ensuring maximum comfort and durability."},{"question":"How can I style co ord sets for different occasions?","answer":"Co-ord sets can be styled in various ways. Pair them with sneakers and a crossbody bag for a casual look, or with heels and a structured handbag for a formal outfit. For a sporty vibe, match athleisure co-ord sets with trainers and a backpack."},{"question":"What is the return policy for co-ord sets purchased online?","answer":"Bewakoof.com offers a hassle-free return policy. If you're not satisfied with the purchase, you can return it within the specified period for a refund or exchange. Please refer to our return policy on the website for more details."},{"question":"How do I know what size to order?","answer":"We provide a detailed size chart for all our co ord sets for women. You can refer to the chart and measure yourself to ensure you select the right size. If you have any doubts, our customer service team is always ready to assist you."},{"question":"How can I track my order?","answer":"Once your order is dispatched, you will receive a tracking number via e-mail. You can use this number to track your order on our website or the courier partners website."},{"question":"Are there any care instructions for co-ord sets?","answer":"Yes, to ensure the longevity of your co-ord sets, we recommend washing them in cold water and avoiding bleach. It's best to dry them in the shade to prevent any color fading."},{"question":"Do you offer gift cards or vouchers?","answer":"Yes, Bewakoof offers gift cards and vouchers that make perfect gifts for friends and family. You can purchase them directly from our website."},{"question":"How often do you update your co-ord set collection?","answer":"We regularly update our co ord set collection to include the latest trends and styles. Be sure to check our website frequently or subscribe to our newsletter for updates."},{"question":"What makes Bewakoof co-ord sets unique?","answer":"Our co-ord sets are unique due to their trendy designs, high-quality materials, and affordable prices. We focus on providing stylish and comfortable options that cater to a wide range of preferences."},{"question":"Can I mix and match pieces from different Women's co-ord sets?","answer":"Absolutely! One of the great advantages of co ord sets is their versatility. You can mix and match tops and bottoms from different sets to create unique and personalized outfits."}]},{"url":"men-co-ord-sets","faq":[{"question":"What is a co-ord set?","answer":"A co-ord set is a two-piece outfit consisting of a top and bottom that are designed to match, usually in the same fabric. Co-ords are versatile items as they can be worn together or styled separately for multiple looks."},{"question":"What types of co-ords for men are available?","answer":"\u003Cp\u003EMen&apos;s co-ords come in a variety of styles, from casual looks like sweatpants and a hoodie to smarter options such as blazers and chinos. Denim co-ord sets are popular for men, while shirt and trouser combinations are ideal for workwear. Co-ords can also be found in other fabrics such as linen or corduroy.\u003C\u002Fp\u003E"},{"question":"Where can men buy co-ord sets?","answer":"\u003Cp\u003EMen&apos;s co-ord sets are widely available both online and in stores. Bewakoof offers co-ords in a variety of styles and fabrics, making it easy to find a set that suits your taste and budget. Online shopping is also a great option as many websites feature a wide selection of co-ords for men. It&apos;s worth checking out the reviews before you buy to make sure the quality is up to standard and that the sizing is accurate. With so much choice available, finding the perfect co-ord set for men should be easy.\u003C\u002Fp\u003E"},{"question":"What is the difference between a co-ord set and a suit?","answer":"\u003Cp\u003EA co-ord set is a two-piece outfit consisting of a top and bottom that are designed to match, usually in the same fabric. A suit, on the other hand, is typically comprised of a jacket and trousers that are tailored to fit the body perfectly. Co-ords tend to be more casual than suits, with styles ranging from everyday wear like sweatpants and hoodies to smarter options such as blazers and chinos. Suits, meanwhile, are typically reserved for more formal occasions such as weddings or work events. Co-ords or men can be styled up or down depending on the occasion whereas suits are generally considered more formal attire. Additionally, co-ord sets tend to be more affordable than suits, making them a great option for those looking to save money.\u003C\u002Fp\u003E"},{"question":"How do I wear a co-ord set for men?","answer":"\u003Cp\u003ECo ord set for men can be dressed up or down depending on the occasion. A sweatshirt and jogger co-ord set could easily be paired with trainers for a relaxed look, while switching to a smart pair of shoes would make it suitable for the office. Alternatively, a shirt and trouser co-ord can be styled with a blazer for a dressier ensemble or left open with a plain T-shirt underneath for a more casual vibe. Ultimately, the beauty of co-ords is that they offer an easy way to create multiple looks without too much effort. With the right accessories and shoes, men&apos;s co-ords can be styled to suit any occasion.\u003C\u002Fp\u003E"},{"question":"How do I care for my co-ord set?","answer":"\u003Cp\u003ECaring for your co-ord set is easy and will help keep it looking its best. Always read the care label before washing, as different fabrics require different treatments. If the fabric allows, machine washing on a gentle cycle is usually fine. Avoid using too much detergent as this can cause colours to fade or run, and air dry the co-ord set rather than putting it in the dryer. Additionally, ironing is recommended to keep your co-ord set looking neat and tidy. Following these simple steps will ensure your co-ord set stays looking great for longer.\u003C\u002Fp\u003E"},{"question":"What are some of the most popular co-ord sets for men?","answer":"\u003Cp\u003EMen&apos;s co-ord sets come in a variety of styles and colours, so there is something for everyone. Popular options include plain T-shirt and jogger sets, buttoned shirt and chino combos and smart blazer and trouser ensembles. For those who are looking to make statement, printed shirts or trousers can be a great way to bring a bit of personality to your look. Ultimately, the right co-ord set for you will depend on your own style and what you feel comfortable in. With so much choice available, it&apos;s easy to find the perfect co-ord set that fits your aesthetic and budget.\u003C\u002Fp\u003E"},{"question":"What are some of the latest trends in men&apos;s co-ord sets?","answer":"\u003Cp\u003EThis season there are lots of exciting trends when it comes to men&apos;s co-ord sets. Oversized shirts and trousers, for example, are back in style and look great with trainers for a dressed down streetwear vibe. Color-blocking is also popular, with statement colors like pink, yellow and blue being combined to create bold, eye-catching looks. Additionally, co-ords with vintage and retro patterns such as plaid or polka dots are also gaining traction this season. With so many options available, it&apos;s easy to find the perfect coord set for men that expresses your personal style.\u003C\u002Fp\u003E"}]},{"url":"men-sweaters","faq":[{"question":"WHAT ARE MEN'S SWEATERS?","answer":"Sweaters for men are a type of clothing that is typically worn over a shirt or other top. They are often made from wool, cotton, or synthetic materials. Sweaters can be either pullovers or cardigans."},{"question":"WHERE CAN I BUY SWEATER FOR MEN ONLINE IN INDIA?","answer":"Sweaters for men are available online at Bewakoof. We offer a great selection of sweaters for men in India in different colors, designs, and styles, so you can find the perfect one for your style and budget. With free shipping and returns, there's no reason not to shop for sweaters at Bewakoof!"},{"question":"HOW SHOULD I CARE FOR MY MEN'S SWEATERS?","answer":"Caring for your winter sweaters properly will help them last longer. When washing sweaters, always use the delicate cycle on your washing machine and avoid using bleach or fabric softener. To dry sweaters, lay them flat on a towel or drying rack. Avoid hanging sweaters to dry as this can cause them to stretch out of shape."},{"question":"WHAT ARE THE COLORS OF SWEATERS FOR MEN?","answer":"There is a wide range of colors available for sweaters for men. Some of the most popular colors include black, white, grey, blue, and brown. You can also find sweaters in other colors such as green, red, purple, and others."},{"question":"WHAT ARE THE SIZES OF MEN SWEATERS AVAILABLE ONLINE AT BEWAKOOF?","answer":"The sizes of sweaters available for men online at Bewakoof are small, medium, large, extra-large, 2XL, and 3XL."},{"question":"WHAT IS THE PRICE RANGE OF SWEATERS AVAILABLE FOR MEN ONLINE AT BEWAKOOF?","answer":"The price range for sweaters available at Bewakoof is Rs. 799 to Rs. 1599."},{"question":"WHAT ARE THE SHIPPING CHARGES FOR SWEATERS ORDERED ONLINE AT BEWAKOOF?","answer":"The shipping charges for sweaters ordered online at Bewakoof are Rs. 30 for orders below Rs. 399 and free for orders above Rs. 399."},{"question":"WHAT IS THE RETURN POLICY FOR SWEATERS PURCHASED ONLINE AT BEWAKOOF?","answer":"The return policy for sweaters purchased online at Bewakoof is that they can be returned within 15 days of delivery for a full refund."},{"question":"WHAT ARE THE PAYMENT METHODS ACCEPTED FOR SWEATERS ORDERED ONLINE AT BEWAKOOF?","answer":"The payment methods accepted for sweaters ordered online at Bewakoof are credit card, debit card, net banking, and cash on delivery."},{"question":"WHAT IS THE DELIVERY TIME FOR SWEATERS ORDERED ONLINE AT BEWAKOOF?","answer":"The delivery time for sweaters ordered online at Bewakoof is 7 to 8 working days."}]},{"url":"men-hoodies-sweatshirts","faq":[{"question":"What are the different types of hoodies and sweatshirts for men?","answer":"There are many different types of hoodies and sweatshirts for men on the market today. Some common styles include pullover hoodies, full-zip hoodies, and quarter-zip hoodies. There are also a variety of materials used to make hoodies and sweatshirts, including cotton, polyester, and blends of both materials."},{"question":"What are the benefits of wearing a hoodie or sweatshirt?","answer":"Hoodies and sweatshirts offer a number of benefits for those who wear them. They can provide warmth on cooler days, and protection from the sun, and can be stylish and comfortable at the same time. Hoodies and sweatshirts are also often used as layering pieces, which can help to create a variety of different looks."},{"question":"How do I choose the right hoodie or sweatshirt for me?","answer":"When choosing a hoodie or sweatshirt, it is important to consider a few factors. First, think about the climate you live in and what time of year you will be wearing the garment. If you live in a warm climate, you may want to choose a lighter-weight hoodie or sweatshirt made from a breathable material. If you plan on wearing your hoodie or sweatshirt in colder weather, a heavier-weight garment made from a warm material like wool or fleece will be a better option. It is also important to consider the fit of the hoodie or sweatshirt. A fitted hoodie or sweatshirt will provide a more streamlined look, while a loose-fitting one will be more relaxed. Finally, think about the style of the hoodie or sweatshirt and choose one that fits your personal taste."},{"question":"How do I care for my hoodie or sweatshirt?","answer":"Most hoodies and sweatshirts can be machine washed, but it is always best to check the care label before laundering. If you are washing a hoodie or sweatshirt made from a delicate material, it is best to hand wash it or have it professionally cleaned. When storing a hoodie or sweatshirt, be sure to fold it rather than hanging it to prevent stretching out the fabric."},{"question":"What are some common hoodie and sweatshirt styles?","answer":"There are many different styles of hoodies and sweatshirts available on the market. Some common styles include pullover hoodies, full-zip hoodies, and quarter-zip hoodies. There are also a variety of materials used to make hoodies and sweatshirts, including cotton, polyester, and blends of both materials."},{"question":"What sizes are available in Mens Hoodies at Bewakoof?","answer":"At Bewakoof, we offer a wide range of sizes for our mens sweatshirts so that you can find the perfect fit for your body. Our sizes start at Extra Small and go up to 6XL, so whatever your size, we've got you covered. We know that finding the right size can sometimes be tricky, so we've put together a few blog posts to help you out. To find out more, just head over to our Size Guide page.Still not sure what size to choose? No problem! We offer free returns on all of our products, so if you order the wrong size, you can simply return it for a refund or exchange."},{"question":"What is the difference between a hoodie and a sweatshirt?","answer":"Sweatshirts are typically made from thicker, heavier fabric than hoodies. They often have a fleece lining for added warmth and may even be quilted. Sweatshirts also tend to have a loose, relaxed fit compared to hoodies. Hoodies, on the other hand, are usually made from thinner material and have a more fitted look. Hoodies also typically have a hood, of course, which sweatshirts lack. Finally, hoodies often have cool embellishments like drawstrings and kangaroo pockets, while sweatshirts usually dont. So, when trying to decide between a hoodie and a sweater, it really comes down to what style youre going for and what kind of weather youre dressing for. If you need something warm and relaxed, go for a sweatshirt. But if you want something trendy and fitted, go for a hoodie."},{"question":"What are the different types of fabrics used to make a hoodie?","answer":"There are a few different types of fabrics that are commonly used to make hoodies, including cotton, polyester, and fleece. Cotton is a natural fiber that is soft and breathable, making it a good choice for those who want a comfortable hoodie that they can wear in any season. Polyester is a synthetic fiber that is often used in athletic wear because it is lightweight and quick-drying. Fleece is a type of fabric that is made from recycled plastic bottles and is often used in winter apparel because it is warm and insulating."},{"question":"What size do I need to wear for a hoodie or sweatshirt?","answer":"If you're looking for a stylish hoodie or sweatshirt that will keep you comfortable, you'll need to know what size to wear. Men's hoodies and sweatshirts come in a variety of sizes, so it's important to choose the right one for your body type. If you're unsure of what size to purchase, take your measurements and compare them to the size chart of the product you're interested in. Once you've found the right size, you'll be able to enjoy your new hoodie or sweatshirt with confidence."},{"question":"What are the best brands of hoodies and sweatshirts for men?","answer":"The best brands of hoodies and sweatshirts for men are those that offer a variety of colors and designs. Bewakoof.com is one of the best brands that offer a wide range of hoodies and sweatshirts in various styles and designs online at best prices in India."}]},{"url":"men-jackets","faq":[{"question":"WHAT TYPES OF MEN'S JACKETS ARE AVAILABLE AT BEWAKOOF?","answer":"We offer a wide range of jackets for men, including winter coats, bombers, puffers, and trendy styles to keep you looking fashionable all year round."},{"question":"DO YOU HAVE WINTER JACKETS FOR MEN?","answer":"Yes, we have a wide selection of winter jackets for men that are not only warm but also stylish. They're perfect for keeping you cozy during the colder months."},{"question":"WHAT MAKES BEWAKOOF'S JACKETS FOR MEN STAND OUT?","answer":"Bewakoof's winter jackets stand out for their quality, style, and affordability. We offer a wide range of options to suit every style and budget, helping you stay warm and look cool."},{"question":"HOW CAN I FIND THE RIGHT JACKET FOR MEN?","answer":"To find the right jacket for you on Bewakoof, you can browse by category, style, color, or price. You can also use our sizing guide to ensure a perfect fit."},{"question":"CAN I RETURN OR EXCHANGE MEN'S JACKETS I PURCHASE FROM BEWAKOOF?","answer":"Yes, we offer easy returns or exchanges for items that are unworn and in their original condition. Please see our return and exchange policy for more details."},{"question":"ARE THERE ANY SPECIAL CARE INSTRUCTIONS FOR WINTER JACKETS FOR MEN?","answer":"Yes, each product comes with its care instructions. Generally, we recommend washing in cold water, avoiding bleach, and line drying where possible."},{"question":"DOES BEWAKOOF OFFER MEN'S JACKETS IN PLUS SIZES?","answer":"Yes, Bewakoof offers a variety of sizes, including plus sizes. Be sure to check the size guide for each jacket to ensure the correct fit."},{"question":"ARE THERE DIFFERENT MATERIALS AVAILABLE FOR MEN'S JACKETS AT BEWAKOOF?","answer":"Yes, Bewakoof offers men's jackets in a variety of materials, including cotton, nylon, fleece, and more."},{"question":"CAN I CUSTOMISE THE JACKETS I BUY FROM BEWAKOOF?","answer":"Currently, we do not offer customization options. However, there is a wide range of styles and colors available to suit different tastes."},{"question":"ARE THERE SEASONAL SALES ON JACKETS FOR MEN AT BEWAKOOF?","answer":"Yes, Bewakoof has periodic sales and promotional events. Keep an eye on our website or subscribe to our newsletter for updates."},{"question":"CAN I TRACK THE DELIVERY OF MY JACKET FOR MEN?","answer":"Yes, once you've placed your order, you'll receive a tracking number that you can use to follow your shipment."}]},{"url":"streetwear-collection","faq":[{"question":"What is streetwear?","answer":"Streetwear refers to a style of clothing and accessories that is casual, comfortable, and often includes bold graphics or other creative designs. It is typically associated with youth culture and hip-hop fashion and can be found at a variety of retailers both online and offline."},{"question":"Why should I shop for streetwear online at Bewakoof?","answer":"At Bewakoof, you'll find a huge selection of high-quality streetwear styles and accessories, all at unbeatable prices. With fast and free shipping options, easy returns and exchanges, and great customer service, Bewakoof is the best place to shop for streetwear online in India. Plus, with exclusive discounts and promotions, you'll always get the best deals on your favorite streetwear styles. So why wait? Start shopping for men's and women's streetwear at Bewakoof today!"},{"question":"What are the different payment options available?","answer":"We accept all major credit cards, as well as PayPal and other secure payment methods. To learn more about our available payment options, visit the Bewakoof website today."},{"question":"How long will it take for my order to arrive?","answer":"Your order will typically arrive within 7-8 business days, depending on the shipping option you choose. For more accurate delivery times, please visit the Bewakoof website and enter your zip code at checkout."},{"question":"Do you offer free shipping?","answer":"Yes, we offer fast and free shipping options for all orders over Rs. 500. To learn more about our available shipping methods and costs, visit the Bewakoof website today."},{"question":"What is the sizing chart for your products?","answer":"We offer a wide range of sizes, including XS to 4XL for women's styles and XS to 4XL for men's styles. To view our sizing chart and find the perfect fit, visit the Bewakoof website today."},{"question":"What type of materials are your products made from?","answer":"At Bewakoof, we use high-quality materials in all our products, including cotton. To learn more about the materials and fabrics we use in our streetwear styles and find the perfect pieces for your wardrobe, visit the Bewakoof website today."},{"question":"How can I contact customer service if I have a question or problem?","answer":"You can easily get in touch with a member of our team anytime. Simply email us at care@bewakoof.com for assistance. We look forward to helping you find the perfect pieces for any occasion!"}]},{"url":"samsung-galaxy-m13-back-covers-cases","faq":[{"question":"What are the different types of Samsung M13 covers?","answer":"There are a few different types of Samsung M13 covers. The most common type is the traditional hard case, which provides good protection against drops and scratches. Silicone cases are also popular, as they are soft and flexible yet still provide good protection. Another option is a glass mobile case, which is made of shatter-resistant glass and provides the best protection against drops and other impact damage. Finally, cloth cases are growing in popularity due to their stylish designs and strong scratch-resistance. So no matter what your needs may be, there's a Samsung M13 cover out there that's perfect for you."},{"question":"How much do Samsung M13 cases cost?","answer":"Prices for Samsung M13 cases vary but typically fall in the Rs. 199 - 529 range. There are a variety of materials and styles to choose from, so you can find the perfect case for your needs and budget. So whether you're looking for something flashy or something more subtle, there's a Samsung M13 case out there for you."},{"question":"What are the benefits of using a Samsung M13 back cover?","answer":"There are a few different benefits to using a Samsung M13 back cover. The most obvious benefit is that it protects your phone from scratches, dings, and other cosmetic damage. It also helps to protect your phone from drops and other impact damage, which can seriously damage your device. Additionally, a back cover can make your phone easier to grip, which can be helpful if you tend to drop your phone often. Finally, back covers come in a variety of colors and styles, so you can find one that fits your personal aesthetic. So if you're in the market for a new phone case, be sure to check out the latest Samsung M13 back covers. You won't be disappointed."},{"question":"Where can I buy Samsung M13 mobile covers online?","answer":"Bewakoof.com is the best online shopping site to buy mobile covers and cases at the best price."},{"question":"What offers & deals does Bewakoof provide for Mobile covers?","answer":"Bewakoof.com provides offers and benefits, Avail the best discounts with our Tribe membership."},{"question":"Does Bewakoof provide returns & exchanges on mobile covers?","answer":"Yes, Bewakoof provides a 15 days return and exchange policy for mobile covers."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"In the mobile case collection, you will find your favorite characters from Marvel, DC, Looney Tunes, Tom & Jerry, BTS, Friends, and more."},{"question":"How can I contact customer service if I have a question or problem?","answer":"You can easily get in touch with a member of our team anytime. Simply email us at care@bewakoof.com for assistance. We look forward to helping you find the perfect pieces for any occasion!"}]},{"url":"oppo-reno8-5g-back-covers-cases","faq":[{"question":"What are the different types of Oppo Reno8 5G cover?","answer":"There are various types of covers available for Oppo Reno8 5G in the market. Few of them are hard covers, plastic covers, glass covers, silicone and leather covers."},{"question":"How much do Oppo Reno8 5G cases cost?","answer":"Oppo Reno8 5G cases generally cost between Rs.199 - Rs.999, the price range totally depends on the quality of the covers make sure you buy the best quality pone cover which can protect your phone with accidental damage."},{"question":"What are the benefits of using a Oppo Reno8 5G back cover?","answer":"Using Oppo Reno8 5G back cover gives a stylish look to our phone along with the protection from scratches."},{"question":"Where can i buy Oppo Reno8 5G mobile covers online?","answer":"Bewakoof.com offers a huge variety in Oppo Reno8 5G back cover in different designs at affordable prices."},{"question":"WHAT OFFERS & DEALS DOES BEWAKOOF PROVIDE FOR MOBILE COVERS?","answer":"Get our Tribe membership to avail the best discounts and offers, buy trendy mobile covers at best prices with fast delivery."},{"question":"DOES BEWAKOOF PROVIDE RETURNS & EXCHANGE ON MOBILE COVERS?","answer":"Bewakoof offers 15 days return and exchange policy, do check out our return and exchange policy page before making any return."},{"question":"WHAT MERCHANDISE COLLECTION DO WE HAVE IN THE MOBILE CASE COLLECTION?","answer":"From Disney, Friends, Star Wars, Minion to Pokemon, DC, Marvel, Bewakoof.com offers huge collection in Apparel and mobile covers online at very reasonable prices, Shop Now."},{"question":"How can I contact customer service if I have a question or problem?","answer":"You can easily get in touch with a member of our team anytime. Simply email us at care@bewakoof.com for assistance. We look forward to helping you find the perfect pieces for any occasion!"}]},{"url":"realme-9-pro-plus-back-covers-cases","faq":[{"question":"What are the different types of Realme 9 Pro Plus cover?","answer":"At Bewakoof you will find three kinds of Realme 9 Pro Plus covers to choose from- Hard Plastic and 3D Print Case. These have a gorgeous matte finish that takes your style game a notch above. All of these mobile cases are lightweight, impact resistant and durable."},{"question":"How much do Realme 9 Pro Plus cases cost?","answer":"At Bewakoof, we try to cater to customers with all kinds of budget and style needs. Thus, we have Realme 9 Pro Plus covers that range between Rs. 199 to Rs. Rs. 299 spending on the design."},{"question":"What are the benefits of using a Realme 9 Pro Plus back cover?","answer":"Realme 9 Pro Plus Cases protect your mobile phone from any potential damage making them more durable and as good as new. In turn, you get a better resale value. Additionally, these cases add a fine touch to your mobile phone and make it look more stylish and fun."},{"question":"Where can I buy Realme 9 Pro Plus mobile covers online?","answer":"You can buy quality Realme 9 Pro Plus Mobile Cases from Bewakoof. All you need to do is select the model name and you will be presented with our collection of Realme covers. Our mobile cases are impact resistant, lightweight, and have a sleek profile that adds to the beauty of your mobile phone apart from protecting it from scratches and any other damages."},{"question":"What offers &amp; deals does Bewakoof Provide for mobile covers?","answer":"Bewakoof has irresistible offers on its mobile cases. You can grab up to 50-80 % on various weekend sales, Payday Party etc. However, if you are someone who is looking for extra discounts and offers check out our exclusive TriBe Membership to score extra discounts on all purchases."},{"question":"Does Bewakoof provide returns &amp; exchanges on mobile covers?","answer":"Bewakoof aims to give its customers a satisfactory shopping experience and thus, we do have a 15-day return and exchange policy for mobile cases. This is a seamless process and you will surely not be disappointed."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"realme-c30-back-covers-cases","faq":[{"question":"What are the different types of Realme C30 cover?","answer":"You can find many Realme C30 cover on the market, such as hard covers, plastic covers, glass covers, silicone and leather."},{"question":"How much do Realme C30 cases cost?","answer":"If you're looking for a high-quality phone case that can protect your investment from accidental damage, be prepared to spend between Rs.199 - Rs.999 on an Realme C30 cases."},{"question":"What are the benefits of using a Realme C30 back cover?","answer":"Not only does the Realme C30 back cover look stylish, but it will also keep your phone safe from any unwanted scratches."},{"question":"Where can i buy Realme C30 mobile covers online?","answer":"At bewakoof.com, we have a large selection of Realme C30 back covers that come in many different designs and are all very affordable."},{"question":"WHAT OFFERS & DEALS DOES BEWAKOOF PROVIDE FOR MOBILE COVERS?","answer":"The best way to avail of discounts and offers is by signing up for our Tribe membership. With this, you can purchase trendy mobile covers at affordable prices with quick delivery."},{"question":"DOES BEWAKOOF PROVIDE RETURNS & EXCHANGE ON MOBILE COVERS?","answer":"If you aren't satisfied with your purchase, feel free to return or exchange it within 15 days of the initial sale. Before taking any further action, please consult our policy page."},{"question":"WHAT MERCHANDISE COLLECTION DO WE HAVE IN THE MOBILE CASE COLLECTION?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"oppo-a36-back-covers-cases","faq":[{"question":"What are the different types of Oppo A36 covers?","answer":"There are several types of Oppo A36 covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Oppo A36 cases cost?","answer":"Generally, Oppo A36 cases cost between Rs. 199-599  in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Oppo A36 back cover?","answer":"The benefits of using an Oppo A36 back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Oppo A36 mobile covers online?","answer":"Get the best Oppo A36 mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"realme-9-5g-back-covers-cases","faq":[{"question":"What are the different types of &nbsp;Realme 9 5G back covers?","answer":"On Bewakoof.com, you will find a wide range of&nbsp;Realme 9 5G cases. The mobile covers are available in various designs and prints like King Life printed, Florals printed, Dope In Life typography, Struggling Panda glass cover, and many more."},{"question":"How much do Realme 9 5G cases cost?","answer":"The Realme 9 5G covers costs between the price range of Rs. 249-549. Given the options and popular designs, you can find the best fit within your budget."},{"question":"What are the benefits of using a Realme 9 5G back cover?","answer":"Realme 9 5G cases from Bewakoof.com are versatile and will complement your personality and style statement. They will also protect your device from bumps and shocks."},{"question":"Where can I buy Realme 9 5G covers online?","answer":"Bewakoof.com is the best place to find a wide range of&nbsp;Realme 9 5G covers online as you will find something to complement your moods and choices. There are typography mobile covers to complement your mood, aesthetic designs to exude style, and Official designs from your favorite TV shows too."},{"question":"What offers &amp; deals does Bewakoof provide for Realme 9 5G cases?","answer":"\u003Cp\u003EYou can find several price drops and offers on the&nbsp;Realme 9 5G back covers. You can even avail of special benefits and discounts on mobile covers if you are a \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Ftribe'\u003E\u003Cstrong\u003ETriBe member\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E.\u003C\u002Fp\u003E"},{"question":"Does Bewakoof provide returns &amp; exchanges on mobile covers","answer":"\u003Cp\u003EYes, Bewakoof allows a 15- \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcontact-us\u002Frefund-or-return'\u003E\u003Cstrong\u003Ereturn and exchange policy\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E for mobile covers. You can always choose another option to get a full refund if the product is returned intact.\u003C\u002Fp\u003E"},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"\u003Cp\u003EIn the mobile case collection, you will find your favorite characters from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Looney Tunes, Tom &amp; Jerry, BTS, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Ffriends-merchandise'\u003E\u003Cstrong\u003EFriends\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, and more.\u003C\u002Fp\u003E"}]},{"url":"oneplus-nord-ce-2-lite-5g-back-covers-cases","faq":[{"question":"What are the different types of OnePlus Nord CE 2 Lite 5G back covers?","answer":"On Bewakoof.com, you will find a wide range of&nbsp;OnePlus Nord CE 2 Lite 5G cases. The mobile covers are available in various designs and prints like King Life printed, Florals printed, Dope in Life typography, Struggling Panda glass cover, and many more."},{"question":"How much do OnePlus Nord CE 2 Lite 5G cases cost?","answer":"The OnePlus Nord CE 2 Lite 5G covers costs between the price range of Rs. 249-549. Given the options and popular designs, you can find the best fit within your budget."},{"question":"What are the benefits of using a OnePlus Nord CE 2 Lite 5G back cover?","answer":"OnePlus Nord CE 2 Lite 5G cases from Bewakoof.com are versatile and will complement your personality and style statement. They will also protect your device from bumps and shocks."},{"question":"Where can I buy OnePlus Nord CE 2 Lite 5G covers online?","answer":"\u003Cp\u003EBewakoof.com is the best place to find a wide range of&nbsp;OnePlus Nord CE 2 Lite 5G covers online as you will find something to complement your moods and choices. There are typography mobile covers to complement your mood, aesthetic designs to exude style, and Official designs from your favorite TV shows too.\u003C\u002Fp\u003E"},{"question":"What offers &amp; deals does Bewakoof provide for OnePlus Nord CE 2 Lite 5G cases?","answer":"\u003Cp\u003EYou can find several price drops and offers on the OnePlus Nord CE 2 Lite 5G back covers. You can even avail yourself of special benefits and discounts on mobile covers if you are a \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Ftribe'\u003E\u003Cstrong\u003ETriBe member\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E.\u003C\u002Fp\u003E"},{"question":"Does Bewakoof provide returns &amp; exchanges on mobile covers?","answer":"\u003Cp\u003EYes, Bewakoof allows a 15- \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcontact-us\u002Frefund-or-return'\u003E\u003Cstrong\u003Ereturn and exchange policy\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E for mobile covers. You can always choose another option to get a full refund if the product is returned intact.\u003C\u002Fp\u003E"},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"\u003Cp\u003EIn the mobile case collection, you will find your favorite characters from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Flooney-tunes-t-shirts'\u003E\u003Cstrong\u003ELooney Tunes\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Tom &amp; Jerry, BTS, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Ffriends-merchandise'\u003E\u003Cstrong\u003EFriends\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, and more.\u003C\u002Fp\u003E"}]},{"url":"xiaomi-redmi-note-10-pro-max-back-covers-cases","faq":[{"question":"What are the different types of  Redmi Note 10 Pro Max covers?","answer":"You can choose from a range of covers for your Redmi Note 10 Pro Max. At Bewakoof we have Designer Hard Covers, 3D Designer Cases and Premium Glass covers. These have different finishes but are equally good at protecting your mobile phone from accidental damage and scratches."},{"question":"How much do Redmi Note 10 Pro Max cases cost?","answer":"High Quality, Impact Resistant, Premium finish designer cases Redmi Note 10 Pro Max covers at Bewakoo cost between Rs. 149 to Rs. 529. Although, you can score these at even greater discounts during sale events."},{"question":"What are the benefits of using a Redmi Note 10 Pro Max back cover?","answer":"Bewakoofs range of Redmi Note 10 Pro Max covers are designed to protect your mobile phones from damage while also giving them a unique touch. Choose from our 3D, Designer or Premium Glass covers with a flawless matte finish to give your mobile phone a makeover."},{"question":"Where can I buy Redmi Note 10 Pro Max mobile covers online?","answer":"Bewakoof has all styles and designs of Redmi note 10 pro max back covers you can possibly imagine. From hard plastic to glass and 3D finishes we have it all. You can choose from Solid Hues, Witty Quotes, All Over Prints, Official Merch and more."},{"question":"What offers and deals does Bewakoof provide for mobile covers?","answer":"Bewakoof runs a lot of special offers and sale events for its customers. The most often ones are Pay Day Party, Weekend sales, Clearance Zones etc. However, if you want to avail discounts and offers at any point in time you can become a member of our exclusive TriBe Membership."},{"question":"Does Bewakoof return and exchange on mobile covers?","answer":"Yes, Bewakoof does have a 15-day return and exchange policy on mobile covers. This ensures customers are getting the product of their choice and dont have to compromise on quality,"},{"question":"What Merchandise Collection do we have in the Mobile Case Collection?","answer":"Our Official Merch Store has collections of Disney, FRIENDS, Marvel, Looney Tunes, Minions, Tom and Jerry and so many more fan favourites."}]},{"url":"oneplus-nord-2t-5g-back-covers-cases","faq":[{"question":"What are the different types of OnePlus Nord 2T 5G covers?","answer":"At Bewakoof you will find premium glass covers as well as designer hardcovers for your OnePlus Nord 2T 5G. Both these covers protect your mobile phones equally efficiently and provide a stylish look."},{"question":"How much do OnePlus Nord 2T 5G cases cost?","answer":"You can buy OnePlus Nord 2T 5G cases between a price range of Rs.299- Rs.529. You can pick one depending on the style, design and the budget you are looking for."},{"question":"What are the benefits of using a OnePlus Nord 2T 5G back cover?","answer":"Our mobile covers protect your mobile phone form accidental damage and scratches. When you protect your device and maintain its condition, you get a better resale value for it. Moreover, it gives your mobile phone a new quirky look."},{"question":"Where can I buy OnePlus Nord 2T 5G mobile covers online?","answer":"When looking further for mobile covers online, Bewakoof is your one-stop solution. You get durable, impact resistant mobile covers for almost all models at a very reasonable price. However, what distinguishes our mobile covers from others is the fact that the designs are nothing like what you will find anywhere else."},{"question":"What offers and deals does Bewakoof provide for mobile covers?","answer":"Bewakoof frequently has sales where you can receive up to 70% off phone cases. However, if you don't want to wait for a sale, you can become a TriBe member and get access to special deals that are not available to the public."},{"question":"Does Bewakoof return and exchange on mobile covers?","answer":"If you're not satisfied with your purchase, we offer a 15-day return policy for all of our mobile covers. You can choose any cover you'd like and return or exchange it as long as it's in original condition within 15 days."},{"question":"What Merchandise Collection do we have in the Mobile Case Collection?","answer":"Our mobile case collection offers official merchandise for some of the world's most beloved characters, including Marvel, DC, Disney, Looney Tunes, Minions and more. If you're looking for something specific or just want to browse our selection, be sure to explore other categories in our store as well."}]},{"url":"samsung-galaxy-f23-5g-back-covers-cases","faq":[{"question":"What are the different types of Samsung F23 5G covers?","answer":"At Bewakoof, we have a wide variety of mobile covers to choose from, including Premium Glass Covers, 3D Designer Covers, Designer Hard Covers and Hard Plastic Cases. However, for your Samsung F23 5G, we only have the best of all, premium glass cases. These are shockproof and lightweight and come in several solid colours with a glossy finish. You can also find Official & Original Prints, Doodle Prints, and Typography Prints."},{"question":"How much do Samsung F23 5G covers cost?","answer":"Bewakoofs range of premium glass Samsung F23 5G covers is priced at Rs. 529. These have a tempered glass back with a glossy finish, rubber edges, sleek profile and easy access to ports and buttons."},{"question":"What are the benefits of using a Samsung F23 5G back cover?","answer":"A Samsung F23 5G mobile cover not only protects your phone from unsightly scrapes and other damage but also helps it maintain its initial quality and style. You can find a perfect Samsung F23 5G mobile cover according to your taste as they come in many colours and designs. They are also easy to put on and take off, so you can change them frequently if you'd like!"},{"question":"Where can I buy Samsung F23 5G mobile covers online?","answer":"Bewakoof has the perfect solution to all your mobile case worries. With our stylish and quirky mobile covers, you can express your true personality. Shop now and get great discounts with our exclusive TriBe Membership."},{"question":"What offers and deals does Bewakoof provide for mobile covers?","answer":"Bewakoof offers several sales and discounts throughout the year on different items, including mobile covers on weekends and paydays. If you want to get access to special prices all year long, you can sign up for their Tribe Membership which is exclusive to members only."},{"question":"Does Bewakoof return and exchange on mobile covers?","answer":"We offer product exchange & return to ensure customer satisfaction is always our top priority. If you're unhappy with your purchase, you can opt for an exchange or return within 15 days. Our seamless service will make sure your experience is as hassle-free as possible."},{"question":"What Merchandise Collection do we have in the Mobile Case Collection?","answer":"Bewakoofs Mobile Case collection offers a variety of designs to choose from, including Marvel, DC, Minions, NASA, BTS, Disney and Anime."}]},{"url":"oneplus-9-back-covers-cases","faq":[{"question":"What are the different types of  OnePlus 9 covers?","answer":"At Bewakoof, you will find OnePlus 9 covers of hard plastic and glass. While the hard plastic cases are much more affordable the glass covers have a premium finish. You can choose amongst these depending on the budget and finish you want. All our covers are impact resistant, have a sleek profile and do not restrict access to ports and buttons."},{"question":"How much do OnePlus 9 cases cost?","answer":"You can buy OnePlus 9 cases at Bewakoof in a price range of Rs.149- Rs.529. The prices are fair considering the designer styles and quality of the material. However, you can always score these at a much lesser price during special discounts and offers."},{"question":"What are the benefits of using a OnePlus 9 back cover?","answer":"There are quite a lot of benefits of using a OnePlus9 back cover considering the price point and how much you would like to protect it from accidental damage and scratches. They also keep your mobile phone as good as new if cleaned regularly and taken care of. The best part, however, if your mobile phone is completely protected you will get a better resale value."},{"question":"Where can I buy OnePlus 9 mobile covers online?","answer":"Bewakoof is your one-stop destination for fun and stylish mobile covers. You will find a range of options for your mobile phone in your budget and according to your needs. However, the best part is that our mobile covers have designer styles, 3D prints and some of your most favourite Official Prints of Disney. Marvel, DC, Minions etc."},{"question":"What offers and deals does Bewakoof provide for mobile covers?","answer":"Bewakoof usually hosts several sale events with attractive offers of upto 70% off on mobile covers. But, if you do not want to wait for the sale you can be a member of our TriBe membership and get access to exclusive discounts and offers."},{"question":"Does Bewakoof return and exchange on mobile covers?","answer":"Yes, Bewakoof does have a 15- return and exchange policy for mobile covers. You can order a mobile cover of your choice and return or exchange it within 15 days in original condition if you do not like the product."},{"question":"What Merchandise Collection do we have in the Mobile Case Collection?","answer":"In the mobile case collection, you will find official merchandise collection for Marvel, DC, Disney, Looney Tunes, Minions and other such widely loved characters. You can explore other categories in the official merch store as well."}]},{"url":"xiaomi-mi-12-pro-back-covers-cases","faq":[{"question":"What are the different types of  Mi 12 Pro back covers?","answer":"On Bewakoof.com, you will find a wide range of Mi 12 Pro cases. The mobile covers are available in various designs and prints like King Life printed, Florals printed, Dope In Life typography, Struggling Panda glass cover, and many more."},{"question":"How much do  Mi 12 Pro cases cost?","answer":"The Mi 12 Pro covers costs between the price range of Rs. 149-549. Given the options and popular designs, you can find the best fit within your budget."},{"question":"What are the benefits of using a  Mi 12 Pro back cover?","answer":"Mi 12 Pro cases from Bewakoof.com are versatile and will complement your personality and style statement. They will also protect your device from bumps and shocks."},{"question":"What offers & deals does Bewakoof provide for Mi 12 Pro cases?","answer":"You can find several price drops and offers on Mi 12 Pro back covers. You can even avail of special benefits and discounts on mobile covers if you are a TriBe member.  "},{"question":"Does Bewakoof provide returns & exchanges on mobile covers?","answer":"Yes, Bewakoof allows a 15- return and exchange policy for mobile covers. You can always choose another option to get a full refund if the product is returned intact."},{"question":"Where can I buy  Mi 12 Pro covers online?","answer":"Bewakoof.com is the best place to find a wide range of Mi 12 Pro covers online as you will find something to complement your moods and choices. There are typography mobile covers to complement your mood, aesthetic designs to exude style, and Official designs from your favorite TV shows too. "},{"question":"What Merchandise Collection do we have in the Mobile Case Collection?","answer":"In the mobile case collection, you will find your favorite characters from Marvel, DC, Looney Tunes, Tom & Jerry, BTS, Friends, and more."}]},{"url":"iphone-14-plus-back-covers-cases","faq":[{"question":"What are the different types of iPhone14 Plus covers?","answer":"At Bewakoof, we take aesthetics and quality seriously. Excellent news for you; you'll be able to find a slew of iPhone14 Plus mobile cover options. We offer a variety of high-quality glass mobile cases in a range of designs that are guaranteed to complement your style."},{"question":"How much do iPhone14 Plus cases cost?","answer":"If you've been with us for a while, you'll know that our rates are quite reasonable and fit within your budget. Our iPhone14 Plus Premium glass cases cost just Rs.529 each. You may purchase any design or print at the same price, no matter which one you choose."},{"question":"What are the benefits of using an iPhone 14 Plus back cover?","answer":"The back cover of the iPhone 14 not only guards your phone against any damage that could happen by accident, but it also gives it a shiny look with standout printsall while representing your personality."},{"question":"Where can I buy iPhone 14 mobile covers online?","answer":"Bewakoof offers a variety of iPhone14 cover options that are both durable and high-quality. You can never go wrong with our mobile covers. We look after the protection and style quotient of your new iPhone as you learn about its wonderful specs."},{"question":"What offers and deals does Bewakoof provide for iPhone 14 plus cover?","answer":"If you're looking for a great deal on mobile covers, Bewakoof is the place to be. We host regular sales events like The OOF Sale and The Happy Weekend Sale, where you can get massive discounts on our products. Plus, if you become a member of our TriBe, you'll enjoy exclusive deals and offers all year round."},{"question":"What Merchandise Collection do we have in the Mobile Case Collection?","answer":"You can find the majority of the Official Merchandise at our Official Merchandise Store including that of Disney, Marvel, Peanuts, Minions, NASA & more."}]},{"url":"xiaomi-poco-m4-pro-5g-back-covers-cases","faq":[{"question":"What are the different types of Poco M4 Pro 5G back covers?","answer":"On Bewakoof.com, you will find a wide range of Poco M4 Pro 5G cases. The mobile covers are available in various designs and prints like King Life printed, Florals printed, Dope In Life typography, Struggling Panda glass cover, and many more."},{"question":"How much do Poco M4 Pro 5G cases cost?","answer":"The Poco M4 Pro 5G covers costs between the price range of Rs. 149-549. Given the options and popular designs, you can find the best fit within your budget."},{"question":"What are the benefits of using a Poco M4 Pro 5G back cover?","answer":"OnePlus 10R cases from Bewakoof.com are versatile and will complement your personality and style statement. They will also protect your device from bumps and shocks."},{"question":"Where can I buy Poco M4 Pro 5G covers online?","answer":"Bewakoof.com is the best place to find a wide range of Poco M4 Pro 5G covers online as you will find something to complement your moods and choices. There are typography mobile covers to complement your mood, aesthetic designs to exude style, and Official designs from your favorite TV shows too."},{"question":"What offers & deals does Bewakoof provide for Poco M4 Pro 5G cases?","answer":"You can find several price drops and offers on the Poco M4 Pro 5G back covers. You can even avail of special benefits and discounts on mobile covers if you are a TriBe member."},{"question":"Does Bewakoof return and exchange on mobile covers?","answer":"Yes, Bewakoof allows a 15- return and exchange policy for mobile covers. You can always choose another option to get a full refund if the product is returned intact."},{"question":"What Merchandise Collection do we have in the Mobile Case Collection?","answer":"In the mobile case collection, you will find your favorite characters from Marvel, DC, Looney Tunes, Tom & Jerry, BTS, Friends, and more."}]},{"url":"samsung-galaxy-s21-fe-5g-back-covers-cases","faq":[{"question":"What are the different types of Samsung S21 FE 5G covers?","answer":"Bewakoof sells Samsung S21 FE 5G covers in hard plastic and glass. The more affordable hard-plastic cases have a higher level of quality, whereas the high-quality glass coverings have a premium look. Depending on your budget and preference, you may select one of these options. All of our cases are impact resistant, stylish, and do not obstruct ports or buttons when installed correctly."},{"question":"How much do Samsung S21 FE 5G cost?","answer":"Samsung S21 FE 5G Mobile covers cost anywhere between Rs. 250- Rs.550 depending on the type of mobile cover. The designer hard cases are a cheaper alternative while the premium glass covers have a more premium look and finish."},{"question":"What are the benefits of using a Samsung S21 FE 5G back cover?","answer":"There are several advantages to using a  Samsung S21 FE 5G back cover, both in terms of cost and how much you want to protect it from accidental harm and scratches. They also keep your phone looking brand new if properly maintained and handled. The greatest part is that if your phone is totally safeguarded, you will have a greater resale value."},{"question":"Where can I buy Samsung S21 FE 5G mobile covers online?","answer":"Bewakoof is a one-stop shop for stylish and hard-to-find mobile phone cases. You'll be able to find something for everyone in your price range and requirements at Bewakoof. However, the best thing is that our cell phone covers are available in designer patterns, 3D prints, and some of your favorite Official Prints of Disney such as Marvel, DC, Minions, etc."},{"question":"What offers & deals does Bewakoof provide for mobile covers?","answer":"Bewakoof frequently has sales where shoppers can take advantage of up to 70% off on mobile phone covers. However, if you don't want to wait for a sale, you can join our TriBe membership and get access to discounts and offers that are not available to the general public."},{"question":"Does Bewakoof provide return & exchange on mobile covers?","answer":"If you're not pleased with your purchase from Bewakoof, don't worry! We accept returns and exchanges on mobile covers 15 days after the product has been delivered to you. Simply contact us and return the item in its original condition within that timeframe if you'd like to process a return or exchange."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Marvel, DC, Disney, Looney Tunes, Minions, are some of the famous characters in the Official Collaboration mobile case collection. You can also search different areas in the official merchandise shop."}]},{"url":"samsung-galaxy-a53-5g-back-covers-cases","faq":[{"question":"What are the different types of  Samsung A53 5G back covers?","answer":"On Bewakoof.com, you will find a wide range of Samsung A53 5G cases. The mobile covers are available in various designs and prints like King Life printed, Florals printed, Dope In Life typography, Struggling Panda glass cover, and many more. "},{"question":"How much do  Samsung A53 5G cases cost?","answer":"The Samsung A53 5G covers costs between the price range of Rs. 149-549. Given the options and popular designs, you can find the best fit within your budget."},{"question":"What are the benefits of using a Samsung A53 5G back cover?","answer":"Samsung A53 5G cases from Bewakoof.com are versatile and will complement your personality and style statement. They will also protect your device from bumps and shocks."},{"question":"Where can I buy Samsung A53 5G covers online?","answer":"Bewakoof.com is the best place to find a wide range of Samsung A53 5G covers online as you will find something to complement your moods and choices. There are typography mobile covers to complement your mood, aesthetic designs to exude style, and Official designs from your favorite TV shows too."},{"question":"What offers & deals does Bewakoof provide for Samsung A53 5G cases?","answer":"You can find several price drops and offers on Samsung A53 5G back covers. You can even avail of special benefits and discounts on mobile covers if you are a TriBe member."},{"question":"Does Bewakoof return and exchange on mobile covers?","answer":"Yes, Bewakoof allows a 15- return and exchange policy for mobile covers. You can always choose another option to get a full refund if the product is returned intact."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"In the mobile case collection, you will find your favorite characters from Marvel, DC, Looney Tunes, Tom & Jerry, BTS, Friends, and more."}]},{"url":"samsung-galaxy-m53-5g-back-covers-cases","faq":[{"question":"What are the different types of Samsung M53 5G covers?","answer":"\u003Cp\u003EAt Bewakoof, you can choose from a wide range of premium glass Samsung M53 5G covers in different styles and designs. These designs are sure to match your style and personality.\u003C\u002Fp\u003E"},{"question":"How much do Samsung M53 5G cases cost?","answer":"\u003Cp\u003EOur Samsung M53 5G premium glass back covers are priced at Rs. 529. These have tempered glass with a glossy finish, and rubber edges for a better grip and smooth landing. Moreover, these cases also give you easy access to buttons and ports.\u003C\u002Fp\u003E"},{"question":"What are the benefits of using a Samsung M53 5G back cover?","answer":"\u003Cp\u003EOur Samsung M53 5G back covers&nbsp;protect your mobile phone from accidental damage and scratches. In the long run, it keeps your phone looking as good as new. Moreover, you will end up getting a better resale value even if you want to sell it after a few years.\u003C\u002Fp\u003E"},{"question":"Where can I buy Samsung M53 5G back covers online?","answer":"\u003Cp\u003EYou can buy the best in quality, trending and affordable&nbsp;Samsung M53 5G covers online at Bewakoof. We have a plethora of options in designs that suit your mood and personality. These complement and elevate your look to a whole new level.\u003C\u002Fp\u003E"},{"question":"What offers &amp; deals does Bewakoof provide for mobile covers?","answer":"\u003Cp\u003EWe have special offers running on the website and app every now and then to make sure you can grab your favorites at the best discounts. Apart from that we also have an exclusive \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Ftribe'\u003E\u003Cstrong\u003ETriBe Membership\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E that provides you additional exclusive discounts.\u003C\u002Fp\u003E"},{"question":"Does Bewakoof provide returns &amp; exchanges on mobile covers?","answer":"\u003Cp\u003EYes, Bewakoof does have a 15-day return and exchange policy to make sure our customers have a seamless and satisfactory shopping experience. You can place a return order from our website or app and we will have the product returned and refund processed as soon as possible.\u003C\u002Fp\u003E"},{"question":"What Merchandise Collection do we have in the mobile case collection?","answer":"\u003Cp\u003EBewakoof has an Official Merchandise Collection of Friends, Marvel, DC, Disney, House Of Dragon, Minions, Garfield and many more of your favourite characters to choose from. Now you get to flaunt your fandom and love your favourite on-screen characters with our affordable, best-in-quality mobile covers.\u003C\u002Fp\u003E"}]},{"url":"anime-collection","faq":[{"question":"What is Bewakoof's Anime Collection?","answer":"Bewakoof's Anime Collection is a specially curated line of clothing and accessories inspired by popular anime series and characters. It includes a wide range of T-shirts, hoodies, vests, backpacks, hats, phone cases, and more, featuring anime-themed designs."},{"question":"Are the anime-themed products available in different sizes?","answer":"Yes, we offer a wide range of sizes for our anime-themed products to cater to customers of all body types. You can find size options when browsing our product listings."},{"question":"Do Bewakoof have a return policy for anime-themed products?","answer":" Yes, we have a hassle-free return policy for our anime-themed products. If you are not satisfied with your purchase, you can return it within the specified return window, and we will assist you in the return process."},{"question":"Are Bewakoof's Anime T-Shirts comfortable for everyday wear?","answer":"Absolutely! We prioritize both style and comfort in our Anime T-Shirts. They are made from high-quality materials to ensure durability and comfort, making them suitable for everyday wear."},{"question":"How often do you release new designs in the Anime Collection?","answer":"We regularly update our Anime Collection with fresh and exciting designs inspired by different anime series and characters. Keep an eye on our website for the latest additions."},{"question":"Can I wash and care for my anime-themed products like regular clothing?","answer":"Yes, you can care for your anime-themed products just like regular clothing. We provide care instructions on our product pages to help you maintain the quality of your purchase."},{"question":"Are there any exclusive offers or discounts on anime-themed products?","answer":"We often have special promotions and discounts on our anime-themed products. To stay updated on the latest offers, subscribe to our newsletter and follow us on social media."},{"question":"How can I contact Bewakoof's customer support regarding my anime-themed product inquiries?","answer":"You can reach us at care@bewakoof.com with all queries. We do not have a Bewakoof customer care number."}]},{"url":"oneplus-10-pro-back-covers-cases","faq":[{"question":"What are the different types of OnePlus 10 Pro covers?","answer":"\u003Cp\u003EAt Bewakoof you can choose from a range of back covers for your OnePlus 10 Pro. Our Designer Hard Covers come in a plethora of designs that suit all your moods and personalities.\u003C\u002Fp\u003E"},{"question":"How much do OnePlus 10 Pro cases cost?","answer":"\u003Cp\u003EOnePlus 10 Pro cases at Bewakoof cost between the range of Rs. 249 to Rs.299. These are extremely affordable yet stylish, impact resistant and of premium quality.\u003C\u002Fp\u003E"},{"question":"What are the benefits of using a OnePlus 10 Pro back cover?","answer":"\u003Cp\u003EProtecting your OnePlus 10 Pro with a back cover will not minimise the damage from accident drops and damages but also increase the resale value of your mobile phone. Not to mention, our designer covers with quirky and fun designs add a dash of uniqueness to your personality.\u003C\u002Fp\u003E"},{"question":"Where can I buy the OnePlus 10 Pro mobile covers online?","answer":"\u003Cp\u003EBewakoof is the one place where you will find OnePlus 10 Pro mobile covers that are affordable, great quality and stylish looking. We never compromise on quality while styling keeping the fun factor intact.\u003C\u002Fp\u003E"},{"question":"What offers &amp; deals does Bewakoof provide for mobile covers?","answer":"\u003Cp\u003EBewakoof hosts a sale every now and then to make sure you can grab your favourite mobile accessories at the best price. You do not have to wait for special occasions to invest in a mobile cover since we always have weekend offers, payday special discounts etc. However, if you want to score Bewakoof products on a great deal irrespective of the sale you can do so with our exclusive \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Ftribe'\u003E\u003Cstrong\u003ETriBe Membership\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E.\u003C\u002Fp\u003E"},{"question":"Does Bewakoof provide returns &amp; exchanges on mobile covers?","answer":"\u003Cp\u003EYes, Bewakoof does have a 15-day \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcontact-us\u002Frefund-or-return'\u003E\u003Cstrong\u003Ereturn and exchange policy\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E to ensure our customers have a seamless shopping experience.\u003C\u002Fp\u003E"},{"question":"What Merchandise Collection do we have in the mobile case collection?","answer":"\u003Cp\u003EBewakoof has an Official Merchandise Collection of \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Ffriends-merchandise'\u003E\u003Cstrong\u003EFriends\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fhouse-of-the-dragon'\u003E\u003Cstrong\u003EHouse Of Dragon\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fminions-merchandise'\u003E\u003Cstrong\u003EMinions\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Garfield and many more of your favourite characters to choose from.\u003C\u002Fp\u003E"}]},{"url":"oneplus-10r-back-covers-cases","faq":[{"question":"What are the different types of  OnePlus 10R back covers?","answer":"\u003Cp\u003EOn Bewakoof.com, you will find a wide range of OnePlus 10R cases. The mobile covers are available in various designs and prints like King Life printed, Florals printed, Dope In Life typography, Struggling Panda glass cover, and many more.\u003C\u002Fp\u003E"},{"question":"How much do  OnePlus 10R cases cost?","answer":"\u003Cp\u003EThe OnePlus 10R covers costs between the price range of Rs. 149-549. Given the options and popular designs, you can find the best fit within your budget.\u003C\u002Fp\u003E"},{"question":"What are the benefits of using a OnePlus 10R back cover?","answer":"\u003Cp\u003EOnePlus 10R cases from Bewakoof.com are versatile and will complement your personality and style statement. They will also protect your device from bumps and shocks.\u003C\u002Fp\u003E"},{"question":"Where can I buy OnePlus 10R covers online?","answer":"\u003Cp\u003EBewakoof.com is the best place to find a wide range of OnePlus 10R covers online as you will find something to complement your moods and choices. There are typography mobile covers to complement your mood, aesthetic designs to exude style, and Official designs from your favorite TV shows too.\u003C\u002Fp\u003E"},{"question":"What offers & deals does Bewakoof provide for OnePlus 10R cases?","answer":"\u003Cp\u003EYou can find several price drops and offers on the OnePlus 10R back covers. You can even avail of special benefits and discounts on mobile covers if you are a TriBe member.\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E.\u003C\u002Fp\u003E"},{"question":"Does Bewakoof provide returns & exchanges on mobile covers?","answer":"\u003Cp\u003EYes, Bewakoof allows a 15- return and exchange policy for mobile covers. You can always choose another option to get a full refund if the product is returned intact.\u003C\u002Fp\u003E"},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"\u003Cp\u003EIn the mobile case collection, you will find your favorite characters from Marvel, DC, Looney Tunes, Tom & Jerry, BTS, Friends, and more.\u003C\u002Fp\u003E"}]},{"url":"realme-9-pro-5g-back-covers-cases","faq":[{"question":"What are the different types of Realme 9 pro covers?","answer":"\u003Cp\u003EThe variety of mobile covers available at Bewakoof.com includes hard covers and gorilla glass covers as well. The addition of the recently launched LED light covers allows you to flash your style quotient!\u003C\u002Fp\u003E"},{"question":"How much do Realme 9 pro 5g cases cost?","answer":"\u003Cp\u003EBewakoof.com&nbsp;is an online store that sells mobile covers with prices starting at Rs 299 and going up to 529, depending on the model you choose! You can find occasional discounts as well which means this website has something for everyone in your family whether they&apos;re looking for a gift or just want some extra protection.\u003C\u002Fp\u003E"},{"question":"What are the benefits of using a Realme 9 pro 5g back cover?","answer":"\u003Cp\u003ERealme 9 Pro back covers&nbsp;are sleek and fashionable, protecting from accidents. They also give your device an added personal touch with their stylish design!\u003C\u002Fp\u003E"},{"question":"Where can I buy Realme 9 pro covers online?","answer":"\u003Cp\u003EBewakoof.com is the hub for the funkiest and quirkiest&nbsp;mobile cases&nbsp;online.\u003C\u002Fp\u003E"},{"question":"What offers &amp; deals does Bewakoof provide for mobile covers?","answer":"\u003Cp\u003EYou can score some great deals at Bewakoof. With whopping discounts like 50-80% OFF and frequent price drops on mobile cases, the website is worth checking out for your next purchase!\u003C\u002Fp\u003E"},{"question":"Does Bewakoof provide returns &amp; exchanges on mobile covers?","answer":"\u003Cp\u003ELet Bewakoof change your smile with their 15-day \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcontact-us\u002Frefund-or-return'\u003E\u003Cstrong\u003Ereturns and refund policy\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E! Bewakoof.com will take care of everything else while giving refunds on all defective products without quibbles whatsoever (as long as they&apos;re still in good condition).\u003C\u002Fp\u003E"},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"\u003Cp\u003EBewakoof is the perfect place to find a phone cover that suits your personality. With official designs like \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, and \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Flooney-tunes-merchandise'\u003E\u003Cstrong\u003ELooney Tunes\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E among many others there are plenty of options for everyone!\u003C\u002Fp\u003E"}]},{"url":"iphone-14-pro-back-covers-cases","faq":[{"question":"What are the different types of iPhone 14 Pro back covers?","answer":"\u003Cp\u003EOn Bewakoof.com, you will find a wide range of iPhone 14 Pro cases. The mobile covers are available in various designs and prints like King Life printed, Florals printed, Dope In Life typography, Struggling Panda glass cover, and many more.\u003C\u002Fp\u003E"},{"question":"How much do iPhone 14 Pro cases cost?","answer":"\u003Cp\u003EThe iPhone 14 Pro covers costs between the price range of Rs. 149-549. Given the options and popular designs, you can find the best fit within your budget.\u003C\u002Fp\u003E"},{"question":"What are the benefits of using an iPhone 14 Pro back cover?","answer":"\u003Cp\u003E iPhone 14 Pro cases from Bewakoof.com are versatile and will complement your personality and style statement. They will also protect your device from bumps and shocks.\u003C\u002Fp\u003E"},{"question":"Where can I buy iPhone 14 Pro covers online?","answer":"\u003Cp\u003EBewakoof.com is the best place to find a wide range of iPhone 14 Pro covers online as you will find something to complement your moods and choices. There are typography mobile covers to complement your mood, aesthetic designs to exude style, and Official designs from your favorite TV shows too.\u003C\u002Fp\u003E"},{"question":"What offers & deals does Bewakoof provide for iPhone 14 Pro cases?","answer":"\u003Cp\u003EYou can find several price drops and offers on the iPhone 14 Pro back covers. You can even avail of special benefits and discounts on mobile covers if you are a TriBe member.\u003C\u002Fp\u003E"},{"question":"Does Bewakoof provide returns & exchanges on mobile covers?","answer":"\u003Cp\u003EYes, Bewakoof allows a 15- return and exchange policy for mobile covers. You can always choose another option to get a full refund if the product is returned intact.\u003C\u002Fp\u003E"},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"\u003Cp\u003EIn the mobile case collection, you will find your favorite characters from Marvel, DC, Looney Tunes, Tom & Jerry, BTS, Friends, and more.\u003C\u002Fp\u003E"}]},{"url":"iphone-14-pro-max-back-covers-cases","faq":[{"question":"What are the different types of iPhone 14 Pro Max back covers?","answer":"\u003Cp\u003EOn Bewakoof.com, you will find a wide range of iPhone 14 Pro Max cases. The mobile covers are available in various designs and prints like King Life printed, Florals printed, Dope In Life typography, Struggling Panda glass cover, and many more.\u003C\u002Fp\u003E"},{"question":"How much do iPhone 14 Pro Max cases cost?","answer":"\u003Cp\u003EThe iPhone 14 Pro Max covers costs between the price range of Rs. 149-549. Given the options and popular designs, you can find the best fit within your budget.\u003C\u002Fp\u003E"},{"question":"What are the benefits of using an iPhone 14 Pro Max back cover?","answer":"\u003Cp\u003E OnePlus 10R cases from Bewakoof.com are versatile and will complement your personality and style statement. They will also protect your device from bumps and shocks.\u003C\u002Fp\u003E"},{"question":"Where can I buy iPhone 14 Pro Max covers online?","answer":"\u003Cp\u003EBewakoof.com is the best place to find a wide range of iPhone 14 Pro Max covers online as you will find something to complement your moods and choices. There are typography mobile covers to complement your mood, aesthetic designs to exude style, and Official designs from your favorite TV shows too.\u003C\u002Fp\u003E"},{"question":"What offers & deals does Bewakoof provide for iPhone 14 Pro Max cases?","answer":"\u003Cp\u003EYou can find several price drops and offers on the iPhone 14 Pro Max back covers. You can even avail of special benefits and discounts on mobile covers if you are a TriBe member.\u003C\u002Fp\u003E"},{"question":"Does Bewakoof provide returns & exchanges on mobile covers?","answer":"\u003Cp\u003EYes, Bewakoof allows a 15- return and exchange policy for mobile covers. You can always choose another option to get a full refund if the product is returned intact.\u003C\u002Fp\u003E"},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"\u003Cp\u003EIn the mobile case collection, you will find your favorite characters from Marvel, DC, Looney Tunes, Tom & Jerry, BTS, Friends, and more.\u003C\u002Fp\u003E"}]},{"url":"tie-dye","faq":[{"question":"What kind of fabric can be tie-dyed?","answer":"Almost any kind of natural fabric can be tie-dyed, including cotton, linen, and silk. Synthetic fabrics such as polyester and nylon can also be tie-dyed, but the results are often not as vibrant."},{"question":"What kind of dyes can be used for tie-dye?","answer":"There are a variety of dyes that can be used for tie dye, including natural dyes like Indigo and Cochineal, as well as synthetic dyes like Rit Dye."},{"question":"How do you tie dye a fabric?","answer":"The first step to tie-dying fabric is to wet the fabric thoroughly. The next step is to apply the dye to the fabric using a resist technique such as tying knots or wrapping rubber bands around the fabric. Once the dye has been applied, the fabric is allowed to dry in the sun or air dry."},{"question":"How do you care for tie-dyed garments?","answer":"Tie-dyed garments should be washed separately from other clothes, and preferably in cold water. It is also important to avoid using bleach or other harsh chemicals on tie-dyed fabrics."},{"question":"What are some common tie dye patterns?","answer":"There are a variety of tie dye patterns, including spiral, mandala, polka dot, and stripes. Tie-dye can also be used to create ombr or gradient effects."},{"question":"Can be tie-dyed fabrics fade?","answer":"Tie-dyed fabrics can fade over time, particularly if they are exposed to sunlight or other harsh chemicals. To help prevent fading, it is recommended that tie-dyed garments be washed in cold water and air dry whenever possible."},{"question":"Are tie-dyed garments comfortable to wear?","answer":"Yes! Tie-dyed garments are usually made from natural fabrics like cotton or linen, which makes them very breathable and comfortable to wear."}]},{"url":"xiaomi-mi-11i-back-covers-cases","faq":[{"question":"What are the different types of Xiaomi Mi 11i cover?","answer":"\u003Cp\u003EThe range of mobile covers at Bewakoof.com includes hard shell and gorilla glass as well! They&apos;ve just launched LED light covers that allow you to flash your style quotient with some extra bling.\u003C\u002Fp\u003E"},{"question":"How much do &nbsp;Xiaomi &nbsp;Mi 11i &nbsp;cases cost?","answer":"\u003Cp\u003EThe Xiaomi Mi 11i cases on \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002F'\u003E\u003Cstrong\u003EBewakoof.com\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E cost between Rs. 199- 529 and you can even find occasional discounts and price drops on the website and app.\u003C\u002Fp\u003E"},{"question":"What are the benefits of using a Xiaomi &nbsp;Mi 11i &nbsp;back cover?","answer":"\u003Cp\u003EMi 11i back covers are the perfect way to personalize your phone. They come in many different colors and designs, so you can find one that matches every outfit!\u003C\u002Fp\u003E"},{"question":"Where can I buy Xiaomi Mi 11i mobile covers online?","answer":"\u003Cp\u003EBewakoof.com is your one-stop shop for quirky, impact-resistant, and shock-proof Mi 11i cases. Moreover, you can also find many other accessories like phone grippers, backpacks, and more.\u003C\u002Fp\u003E"},{"question":"What offers &amp; deals does Bewakoof provide for mobile covers?","answer":"\u003Cp\u003EBewakoof is a one-stop shop for all your phone case needs. With stunning discounts and frequent price drops, you&apos;ll find the best Mi 11i back covers at great prices and whopping discounts!\u003C\u002Fp\u003E"},{"question":"Does Bewakoof provide returns &amp; exchanges on mobile covers?","answer":"Bewakoof promises 15-day money-back guarantee and returns and exchanges on Mi 11i covers! They&apos;ll take care of everything else and give refunds on all defective products if they&apos;re still in good condition."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"\u003Cp\u003EYou&apos;ll find the best Mi 11i covers that suit your personality at Bewakoof. With official designs like \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise\u002Fcategory-mobile---covers'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise\u002Fcategory-mobile---covers'\u003E\u003Cstrong\u003EDisney, \u003C\u002Fstrong\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, and \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Flooney-tunes-merchandise\u002Fcategory-mobile---covers'\u003E\u003Cstrong\u003ELooney Tunes\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E among many others there are plenty of options for everyone!\u003C\u002Fp\u003E"}]},{"url":"samsung-galaxy-s20-fe-back-cover-cases","faq":[{"question":"What are the different types of&nbsp;Samsung Galaxy S20 FE covers?","answer":"\u003Cp\u003EAt&nbsp;Bewakoof&nbsp;you will come across a range of&nbsp;Samsung Galaxy S20 FE covers. You can choose from our premium glass cases, 3D designer covers, hard plastic cases, and more. All of these come in a plethora of designs, quotes, and prints that reflect your personality. You name it, we have it.\u003C\u002Fp\u003E"},{"question":"How much do Samsung Galaxy S20 FE cases cost?","answer":"\u003Cp\u003EBewakoof is known for its mobile cases which fit everyone&rsquo;s budget and as for the&nbsp;Samsung Galaxy S20 FE Mobile cover,&nbsp;these start from Rs.529. These are premium glass covers with a glossy finish giving your phone a classy and stylish look. However, if you want to score these at even better prices, you can be a part of Bewakoof&rsquo;s Exclusive&nbsp;\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Ftribe'\u003E\u003Cstrong\u003ETriBe\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E Membership and enjoy extra discounts in all categories.\u003C\u002Fp\u003E"},{"question":"What are the benefits of using a Samsung Galaxy S20 FE back cover?","answer":"\u003Cp\u003EThere are quite a few benefits of having a&nbsp;Samsung Galaxy S20 FE back cover.&nbsp;Firstly, it protects your mobile phone from external damage. In turn, your phone is as good as new and you get a better resale value. Additionally, it enhances the look of your mobile phone and with wallet&nbsp;\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india'\u003E\u003Cstrong\u003Emobile covers\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E you can use it to store small little things as well.\u003C\u002Fp\u003E"},{"question":"Where can I buy Samsung Galaxy S20 FE mobile covers online?","answer":"\u003Cp\u003EWhen looking for durable, stylish, trendy, and affordable&nbsp;Samsung Galaxy S20 FE mobile cases, Bewakoof is your one-stop destination for all brands, be it&nbsp;Samsung covers, Redmi or any other popular brand. Our range of mobile covers is lightweight, sleek, shockproof and impact resistant. To make these more vibrant and quirky, we have high-definition printed designs, relatable quotes, and other typography styles.\u003C\u002Fp\u003E"},{"question":"What offers &amp; deals does Bewakoof provide for mobile covers?","answer":"\u003Cp\u003EBewakoof offers deals and discounts for its customers quite often. Make sure you keep up with our Weekend Offers, Payday Party, Clearance Sale &amp; more on special occasions where you can avail up to 50-80% OFF. To get exclusive benefits, you also become a part of our TriBe Membership.\u003C\u002Fp\u003E"},{"question":"Does Bewakoof provide Return &amp; Exchange on Mobile Covers?","answer":"\u003Cp\u003EBewakoof aims to provide its customers with the best service and thus, we do have a 15-Day Return 7 Exchange Policy. Wherever you are, you can avail this policy at almost all pin codes.\u003C\u002Fp\u003E"},{"question":"What merchandise collection do we have in the mobile case application?","answer":"\u003Cp\u003EAt Bewakoof we have mobile covers that reflect your true personality. With the official merchandise collection of Disney. Marvel, DC Minions, Peanuts, Minions &amp; more your mobile phones will have a touch of your quirky and unique persona.\u003C\u002Fp\u003E"}]},{"url":"realme-8i-back-covers-cases","faq":[{"question":"What are the different types of Realme 8i cover?","answer":"\u003Cp\u003EOn Bewakoof, you will find a plethora of impact-resistant, durable, and quirky mobile covers for Realme 8i. Some of the hot-selling designs are Moody Mickey, Aastik Nastik Sarcastic, Batman Vengeance, and many more. Find the mobile cover that reflects your style and personality! You can also find various Official prints from&nbsp;\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise\u002Fcategory-mobile---covers'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, DC, Disney,&nbsp;\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fminions-merchandise\u002Fcategory-mobile---covers'\u003E\u003Cstrong\u003EMinions\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Garfield &amp; more.\u003C\u002Fp\u003E"},{"question":"How much do Realme 8i cases cost?","answer":"\u003Cp\u003EYou will find&nbsp;Realme 8i mobile covers&nbsp;at upto 60% OFF&nbsp;on Bewakoof. The starting price of the covers is as low as Rs. 249 and comes with a variety of designs.\u003C\u002Fp\u003E"},{"question":"What are the benefits of using a Realme 8i back cover?","answer":"\u003Cp\u003EA Realme 8i back cover not only protects your phone from scratches and bumps, but it also helps to keep it looking new. In addition, a back cover can also provide grip, making it less likely that you&apos;ll drop your phone.\u003C\u002Fp\u003E"},{"question":"Where can I buy Realme 8i mobile covers online?","answer":"\u003Cp\u003EBewakoof offers a large variety of styles in&nbsp;Realme 8i mobile covers&nbsp;online. You will find printed back covers, typography covers, motivational quotes, and original and official designs too.\u003C\u002Fp\u003E"},{"question":"What offers &amp; deals does Bewakoof provide for mobile covers?","answer":"\u003Cp\u003EYou will find&nbsp;Realme 8i mobile covers&nbsp;at upto 60% OFF&nbsp;on Bewakoof. Bewakoof provides whopping discounts on mobile covers and&nbsp;\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Ftribe'\u003E\u003Cstrong\u003ETriBe members\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E can also buy mobile covers at the lowest prices.\u003C\u002Fp\u003E"},{"question":"Does Bewakoof provide returns &amp; exchanges on mobile covers?","answer":"\u003Cp\u003EYes, since consumer satisfaction is our top-most priority we do offer product exchange &amp; return. If customers are unhappy with their purchase, they can opt for exchange &amp; return within 15-days. Our seamless service will ensure you have a hassle-free experience.\u003C\u002Fp\u003E"}]},{"url":"rakshabandhan-collection","faq":[{"question":"What are some good gift ideas for Raksha Bandhan?","answer":"There are many different gift ideas that can be appropriate for Raksha Bandhan. Some popular gifts include traditional Indian sweets, clothing, jewelry, ornaments, and other household items."},{"question":"What should I avoid giving as a Raksha Bandhan gift?","answer":"It is generally considered inappropriate to give anything that could be considered expensive or lavish as a Raksha Bandhan gift. Additionally, it is important to avoid giving any gifts that might be seen as offensive or insensitive."},{"question":"What if I am not sure what to give as a Raksha Bandhan gift?","answer":"If you are unsure of what would be an appropriate gift, it is often best to ask the person you will be giving the gift to for their suggestions. Additionally, there are many websites and books that offer advice on choosing the perfect Raksha Bandhan gift."},{"question":"Where can I get the best Raksha Bandhan gift deals?","answer":"\u003Cp\u003EOne of the best places to find Raksha Bandhan gift deals is on \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002F'\u003E\u003Cstrong\u003EBewakoof.com\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E. They have a good selection of gifts and offer discounts on some of their products. Check out their Rakshabandhan collection now.\u003C\u002Fp\u003E"}]},{"url":"undrdawg-by-bewakoof","faq":[{"question":"Which is better, boxer briefs or trunks?","answer":"\u003Cp\u003EBoxer briefs offer more coverage than trunks, so they may be a good choice if you&apos;re looking for something that provides more support. On the other hand,&nbsp;\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmen-trunks'\u003E\u003Cstrong\u003Etrunks\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E are a bit more lightweight and breathable, so they may be a better choice if you&apos;re looking for something more comfortable in warmer weather.\u003C\u002Fp\u003E"},{"question":"What is the best underwear for men?","answer":"\u003Cp\u003EBriefs,&nbsp;\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmen-vests'\u003E\u003Cstrong\u003Evests\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E,&nbsp;\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmen-boxer-shorts'\u003E\u003Cstrong\u003Eshorts\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, and&nbsp;\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fhipster-trunk'\u003E\u003Cstrong\u003Ehipster trunks\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E are popular choices for underwear for men. You can select from an array of options from UNDRDAWG to match your needs.\u003C\u002Fp\u003E"},{"question":"What to wear over boxers?","answer":"\u003Cp\u003EIf you&apos;re like most guys, you probably just reach for the first pair of shorts or sweats when it&apos;s time to get dressed. But what you may not realize is that what you wear over your boxers can have a big impact on your comfort level throughout the day. Boxer briefs are always a good option, but if you prefer something shorter, that&apos;s fine too.\u003C\u002Fp\u003E"},{"question":"How to know the underwear is not of the right size?","answer":"\u003Cp\u003EIf your underwear is constantly riding up or slipping down, it&apos;s probably not the right size. If it feels constricting or uncomfortable in any way, it&apos;s also likely that you need a different size. Another way to tell if your underwear is the wrong size is to pay attention to the waistband. If the waistband is constantly digging into your skin or causing irritation, it&apos;s probably too tight. Paying attention to these signs will help you ensure that you&apos;re always wearing comfortable, well-fitting underwear.\u003C\u002Fp\u003E"},{"question":"What all brands do Bewakoof offer for Men's Underwear?","answer":"\u003Cp\u003ESmugglerz, Xyxx, Almo, Rad.Mad.Bad, Joven, Urban Hug., UNDRDAWG By Bewakoof, Tailor &amp; Circus, Bummer, and Cresmo are some of the underwear brands that you can find on&nbsp;\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002F'\u003E\u003Cstrong\u003EBewakoof\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E.\u003C\u002Fp\u003E"},{"question":"What offers & deals does Bewakoof provide for UNDRDAWG Collection?","answer":"\u003Cp\u003EUNDRDAWG by Bewakoof comes in quirky prints and is available at a starting price of Rs. 259. TriBe members can even avail of special discounts and early-bird bonuses at a yearly price of Rs. 199.\u003C\u002Fp\u003E"},{"question":"Does Bewakoof provide returns & exchange for UNDRDAWG?","answer":"\u003Cp\u003EBewakoof doesn&rsquo;t provide returns and exchanges for UNDRDAWG for unsanitary and unhygienic purposes. Bewakoof prioritizes hygiene and that&rsquo;s why it follows a strict policy on the non-exchange of underwear.\u003C\u002Fp\u003E"}]},{"url":"phone-gripper","faq":[{"question":"Is it good to invest in a phone gripper?","answer":"Yes, it's a good idea to invest in a phone gripper. Phone grippers are designed to make it easier to hold onto your phone and prevent it from slipping out of your hand. They come in a variety of designs, so you can find one that matches your style. And they're usually very durable, which means they'll last long with proper care. So if you're looking for a way to improve your smartphone experience, investing in a phone gripper is a great option."},{"question":"What are phone grippers?","answer":"Phone Grippers are a simple, affordable way to improve your grip on your phone and prevent it from slipping out of your hand. They work by attaching to the back of your phone and gripping onto your fingers, providing extra stability and security when you're using your phone."},{"question":"Do they work with all phones?","answer":"Phone Grippers will work with most smartphones, but please check the size compatibility before purchasing."},{"question":"How do I use them?","answer":"Simply attach the Phone Grippers to the back of your phone, then grip the grippers between your thumb and fingers. You'll find that it provides a more secure grip and prevents your phone from slipping out of your hand."},{"question":"How long do they last?","answer":"Phone Grippers are made from high-quality materials and should last for many years with proper care."},{"question":"Can I remove them when I'm not using them?","answer":"Yes, the Phone Grippers are designed to be removable and can be taken off your phone when you're not using them. Simply peel them off from the back of your phone and store them in a safe place until you need them again."},{"question":"Are they comfortable to use?","answer":"Yes, the Phone Grippers are made from soft, flexible material that is comfortable to grip. They will not add any bulk or weight to your phone, and you'll barely notice them when they're attached."},{"question":"Do they come in different colors?","answer":"Yes, the Phone Grippers are available in a variety of colors to match your personal style. Choose from black, white, pink, blue, and more."},{"question":"What if I have questions or need help with my purchase?","answer":"\u003Cp\u003EOur customer service team is always happy to help! Please contact us at \u003Ca data-fr-linked='true' href='mailto:care@bewakoof.com'\u003Ecare@bewakoof.com\u003C\u002Fa\u003E and we&apos;ll be happy to assist you.\u003C\u002Fp\u003E"},{"question":"What all accessories Bewakoof offers?","answer":"\u003Cp\u003EBewakoof offers a wide range of \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india'\u003E\u003Cstrong\u003Emobile covers\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, phone grippers, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fbags'\u003E\u003Cstrong\u003Ebags\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmugs'\u003E\u003Cstrong\u003Emugs\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fnotebooks-and-planners'\u003E\u003Cstrong\u003Enotebooks &amp; planners\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcaps'\u003E\u003Cstrong\u003Ecaps\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fsocks'\u003E\u003Cstrong\u003Esocks\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E &amp; \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmasks'\u003E\u003Cstrong\u003Emasks\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E.\u003C\u002Fp\u003E"}]},{"url":"mens-innerwear","faq":[{"question":"What is the best way to care for my men's innerwear?","answer":"The best way to care for your men's innerwear is by washing it in cold water and with a mild detergent. You should never bleach your innerwear, dry clean or iron it. Instead, line dry it. Lastly, dont forget to turn your underwear inside out while washing, to increase the longevity of the fabric."},{"question":"What is the difference between Innerwear and underwear?","answer":"\u003Cp\u003EThe best way to care for your men&apos;s innerwear is by washing it in cold water and with a mild detergent. You should never bleach your innerwear, dry clean or iron it. Instead, line dry it. Lastly, don&rsquo;t forget to turn your underwear inside out while washing, to increase the longevity of the fabric.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E1. Innerwear is designed to emphasize your body type, whereas underwear is not.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E2. Innerwear typically offers a number of standard benefits, such as looking slimmer and feeling more confident, that underwear does not offer\u003C\u002Fp\u003E"},{"question":"How is underwear different from swimwear?","answer":"\u003Cp\u003EUnderwear is typically made from a thicker, more absorbent fabric than swimwear.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E1. Underwear is designed to provide coverage and support, whereas swimwear is not.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E2. Swimwear is typically made from a lighter, more breathable fabric than underwear.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E3. Swimwear is designed to be worn in the water, unlike underwear.&nbsp;\u003C\u002Fp\u003E"},{"question":"Where can I buy the best men's innerwear online?","answer":"\u003Cp\u003EYou can buy some of the best men&rsquo;s innerwear online at \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002F'\u003E\u003Cstrong\u003EBewakoof.com\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E. Our vast range offers a pool of different styles and designs, from which you are sure to find something that suits your needs.\u003C\u002Fp\u003E"},{"question":"What innerwear brands does Bewakoof offer?","answer":"Bewakoof offers a range of different innerwear brands, including UNDRDAWG by Bewakoof, Urban Hug, Joven, Bummer etc. Each brand offers quirky, luxury & sporty styles and designs to meet every need."},{"question":"What all brands do Bewakoof offer for Men's Underwear?","answer":"\u003Cp\u003EAt Bewakoof you can shop from several brands that offer top-notch innerwears for men. For instance, Urban Scottish, Almo, Mad Over Print, Snitch, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fundrdawg-by-bewakoof'\u003E\u003Cstrong\u003EUNDRDAWG\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E by Bewakoof etc. You get to shop from a range of quirky and fun&nbsp;\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmen-vests'\u003E\u003Cstrong\u003Evests\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, trunks, trunks, briefs etc.\u003C\u002Fp\u003E"},{"question":"What offers & deals does Bewakoof provide for innerwear?","answer":"\u003Cp\u003EBewakoof provides a range of offers and deals on innerwear. Customers can enjoy discounts of up to 50% on various products. Additionally, Bewakoof also offers free shipping on all orders above Rs. 499. If you subscribe to our \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Ftribe'\u003E\u003Cstrong\u003ETriBe membership\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E you can get an additional discount on the base price &amp; shipping.\u003C\u002Fp\u003E"},{"question":"Does Bewakoof provide returns & exchanges on innerwear?","answer":"No, Bewakoof does provide returns and exchanges on innerwear in order to ensure hygiene for the customers."}]},{"url":"iphone-13-pro-back-covers-cases","faq":[{"question":"How much do iPhone 13 Pro cases cost?","answer":"The cost may vary according to the brand, but if you want covers with good quality, exciting designs and affordable pricing, Bewakoof.com is a clear choice."},{"question":"Where should I buy iPhone 13 pro covers?","answer":"Hunt no more as bewakoof.com is the best option for you to buy iPhone 13 Pro covers and many more models and brands. Your phone undergoes numerous scratches and uncontrollable falls, which is why investing in an excellent mobile cover is beneficial. Bewakoof is perfect for you to shop for expensive and robust covers that grab all the attention."},{"question":"What are the advantages of using the iPhone 13 Pro back cover?","answer":"iPhone 13 Pro is quite expensive and it would be a huge loss for the owner if any kind of damage happens to it. To be assured that nothing much will happen to your phone it is strictly advised to use the back cover as it prevents all the false drops, scratches and unwanted accidents. If you are looking to buy a phone cover for your iPhone 13 Pro, do check out the collection of Bewakoof.com as we have everything you will ever desire in the range of phone covers."},{"question":"What are all the deals Bewakoof has for Mobile covers?","answer":"Bewakoof has numerous ongoing deals all the time. We offer discounts and cash-back offers to new and existing customers as we believe in spreading love and happiness."},{"question":"Do Bewakoof's Covers have a Return or Exchange policy?","answer":"Yes. Bewakoof believes in ensuring happiness and feels satisfied with a smile on its customer's faces, which is why we provide 15 days of easy return, refunds and exchange policy on mobile covers. So, shop online with us without any worry, and we at Bewakoof will always be there with you at each step of your shopping experience to help you and provide you with nothing but the best."}]},{"url":"iphone-14-back-covers-cases","faq":[{"question":"What are the different types of iPhone14 covers?","answer":"At Bewakoof, we take style and quality quite seriously. Good for you, you can find a horde of options for your iPhone14 mobile cover. We have a range of premium glass mobile cases in a variety of designs that are sure to match your personality."},{"question":"How much do iPhone 14 cases cost?","answer":"If you have been around for a while, you would know that our prices are quite decent and fit within your budget. Our iPhone14 Premium glass cases are priced at just Rs.529. Whichever you print or design you wish to go for, you can buy it at the same price."},{"question":"What are the benefits of using an iPhone 14 back cover?","answer":"An iPhone 14 back cover protects your device from accidental damage and scratches that might occur in the course of its usage. Apart from that, it also provides a premium finish to your mobile cover with a glossy look and vivid prints that represent your personality."},{"question":"Where can I buy iPhone 14 mobile covers online?","answer":"Bewakoof has a range of iPhone14 covers that are durable, high quality, affordable and stylish. You can never go wrong with our mobile covers. While you are exploring and getting to know this new iPhone in the market, we take care of its protection and style quotient."},{"question":"What offers & deals does Bewakoof provide for mobile covers?","answer":"Bewakoof has a lot of sales & other offers on mobile covers. Some of the most popular sale events we host are The OOF Sale, The Happy Weekend Sale & more. You can avail of whopping discounts and offers during these events. Moreover, you can also become a member of our TriBe to avail exclusive discounts and offers all year long."},{"question":"Does Bewakoof provide return & exchange on mobile covers?","answer":"Yes, we do have a 15-day return and exchange policy on our mobile covers. This ensures you are making a smart decision while buying a cover for your iPhone14."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"When you visit the mobile case collection at Bewakoof, you will come across a plethora of official merchandise like Marvel, Disney, DC, FRIENDS, Looney Tunes & so many more."}]},{"url":"oversized-t-shirts","faq":[{"question":"What are oversized t-shirts?","answer":"Oversized t-shirts are t-shirts that are bigger than your typical size. They're comfortable and versatile, and they can be dressed up or down for any occasion."},{"question":"Where can I find oversized t-shirts?","answer":"\u003Cp\u003E\u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com' title='Best Online Shopping Site'\u003EBewakoof.com\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E is the best online shopping site to find oversized t-shirts for men and womens.\u003C\u002Fp\u003E"},{"question":"Are oversized t-shirts comfortable?","answer":"Yes! Oversized t-shirts are extremely comfortable and perfect for any occasion."},{"question":"Can I dress up an oversized tee?","answer":"\u003Cp\u003EYes! You can dress up an oversized tee by pairing it with a skirt or \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmen-pants' title='men trousers'\u003Etrousers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E. You can also tuck it into jeans or shorts for a more relaxed look.\u003C\u002Fp\u003E"},{"question":"How do I know if its an oversized t-shirt?","answer":"An oversized tee is meant to be slightly larger than your usual size. Look for t-shirts that are labeled 'oversized' or 'loose fit'. Avoid t-shirts that are excessively baggy, as they may be too big."}]},{"url":"clogs","faq":[{"question":"What should I look for when shopping for clogs?","answer":"With the increasing popularity of clogs, it is important to know what you should look for when shopping for a pair of clogs. Clogs are not just for the feet anymore; they are also used as an accessory and fashion statement. With this in mind, it is important to know what you should look for when shopping for a pair of clogs. When buying clogs, there are many factors that come into play that can make or break your purchase. The most important thing to consider is the type of foot they are made with and how well they fit your foot. Other factors include durability and comfortability."},{"question":"Why to shop clogs from Bewakoof.com?","answer":"Bewakoof.com is a leading online store for clogs, offering stylish, comfortable and affordable clog shoes. With an extensive range of styles and sizes available, you are sure to find the perfect pair for your feet!"},{"question":"Can you get clogs in different colors?","answer":"Clogs are the most versatile footwear that you can wear. They are great for outdoor activities and they can be worn with any outfit. Clogs come in a wide variety of colors and patterns. Here are some of the most popular colors: Black Clogs, Brown, Tan, Gray, Navy blue, White Clogs, Yellow Clogs"}]},{"url":"iphone-13-pro-max-back-covers-cases","faq":[{"question":"Where should I buy a mobile cover for iPhone 13 pro max?","answer":"Your phone undergoes troubled throws, scratches, dents etc., which may break your screen too. Bewakoof is the one-stop destination to buy robust, inexpensive and uncommon mobile covers that grab your pals' attention and assure ideal safety for your phone."},{"question":"What are the different types of iPhone 13 pro max covers?","answer":"At Bewakoof, there are numerous types of covers like Avenger, Spiderman, Mickey Mouse, Minnie Mouse, Plain to textured covers. Also in sports icons, floral prints, modest, plain, with messages and quotes etc. Explore our whole range to get your precise choice."},{"question":"How much do iPhone 13 pro max cases cost?","answer":"The cost may vary from brand to brand, but if you are looking for the best quality, affordable pricing with amazing designs,Bewakoof.com is a fantastic choice. The cover range in iPhone 13 pro max starts from Rs 249 and goes up to Rs 299."},{"question":"What are the benefits of using an iPhone 13 pro max cover?","answer":"Many uncontrollable accidents happen in day-to-day life that can harm your mobile severely. The back cover for an expensive phone like iPhone 13 pro max, assures there is not much damage caused and safeguards your cell precisely."},{"question":"What offers and deals does Bewakoof provide for Mobile Covers?","answer":"Bewakoof has numerous ongoing deals at all times. We offer discount and cash-back offers to our new and existing customers as we highly believe in spreading love."},{"question":"Does Bewakoof have a return and exchange policy on covers? ","answer":"Yes, Bewakoof believes in ensuring happiness and a good customer relationship. Hence, we provide 15 days easy return, refunds and exchange policy on mobile covers and all distinct categories."},{"question":"What merchandise collection do we have in the mobile case collection? ","answer":"Bewakoofs mobile covers exhibition is adaptable and arrives with many alternatives for choosing the suitable mate for your phone. Apart from amusing affiliations with Marvel, Disney and Looney Tunes, Bewakoof also deals with simple covers to pacify your aesthetics and quirky ideas."}]},{"url":"dc-merchandise","faq":[{"question":"Why should you buy DC T-shirts?","answer":"1. A superb garment that can be worn anytime, anywhere. 2. Comfortable and versatile. 3. Rare size problems, as we generally have a couple of them. 4. Affordable range of DC T-shirts available at Bewakoof. 5. Easy to wash and maintain."},{"question":"Why Choose Bewakoof's DC T-Shirts?","answer":"stablished in 2012, Bewakoof is one of the prominent lifestyle fashion brands in India that is renowned for its offbeat stuff. It is an uber-cool online brand that rolls out a wide range of T-shirts, Joggers, Sliders, Polo T-shirts,Henley T-shirts, and much other stuff for both Men & Women. So this way, you get to become a fashion enthusiast without much ado.Shopping with Bewakoof is always fun and hassle-free. Our creative team makes every effort to incorporate the latest trends and pop culture into its products.Bewakoof allows you to make payments through various online payment modes. If you are looking for a risk-free payment option, you can go for cash on delivery. The best part about Bewakoof is that we have a FREE shipping policy for our customers. We also offerTribe Membershipto our customers, wherein, they never have to pay full price for any product and much more. Our website is user-friendly and offers a smooth shopping experience to the customers. High-resolution pictures will give you a clear idea about the looks and finish of the products. Still, if you feel your order lacks something, you are free to return the products or get a refund within 15 days., etc."}]},{"url":"men-sliders","faq":[{"question":"What types of sliders for men are available at Bewakoof.com?","answer":"\u003Cp\u003EWe offer a wide variety of men's sliders, including black sliders, white sliders, blue sliders, striped sliders, and printed sliders in numerous designs and sizes.\u003C\u002Fp\u003E"},{"question":"Can sliders be worn for outdoor activities?","answer":"\u003Cp\u003EYes, sliders are suitable for light outdoor activities and are perfect for casual outings like beach trips or a day out in the city.\u003C\u002Fp\u003E"},{"question":"Are the sliders available in different sizes?","answer":"\u003Cp\u003EAbsolutely! Our sliders for men come in various sizes to ensure a comfortable fit for all foot dimensions.\u003C\u002Fp\u003E"},{"question":"How can I find the right size of sliders for me on Bewakoof.com?","answer":"\u003Cp\u003EYou can refer to our detailed size guide available on each product page to find your perfect fit.\u003C\u002Fp\u003E"},{"question":"What makes Bewakoof.com a good place to buy sliders for men online?","answer":"\u003Cp\u003EBewakoof.com offers a seamless shopping experience with a wide range of high-quality products at affordable prices, backed by excellent customer service.\u003C\u002Fp\u003E"},{"question":"How do I care for my sliders to ensure they last long?","answer":"\u003Cp\u003ETo maintain the quality of your sliders, it's important to clean them regularly with a soft cloth or brush and mild soap.\u003C\u002Fp\u003E"},{"question":"Can I return or exchange the sliders if they don't fit well?","answer":"\u003Cp\u003EYes, Bewakoof.com has a return and exchange policy in place. Please check our return policy for detailed information on how to process a return or exchange.\u003C\u002Fp\u003E"},{"question":"Are there any special offers for purchasing men's sliders online on Bewakoof.com?","answer":"\u003Cp\u003EWe frequently run special promotions and discounts. Keep an eye on our website or sign up for our newsletter to stay updated on the latest deals.\u003C\u002Fp\u003E"},{"question":"How long does delivery take after placing an order for sliders on Bewakoof?","answer":"\u003Cp\u003EDelivery times can vary based on your location. Once you place an order, you'll receive an estimated delivery date. We strive to ensure timely delivery for all our customers.\u003C\u002Fp\u003E"}]},{"url":"men-henley-t-shirts","faq":[{"question":"What are Men's Henley T-shirts?","answer":"\u003Cp\u003EHenley t-shirts for Men are collarless, pullover-style shirts with a round neckline and a short button-down placket. Henley t-shirt can be short or long-sleeved and known for its versatility and comfort, typically made from cotton. Henleys are a casual wardrobe staple that can be easily layered or worn independently.\u003C\u002Fp\u003E"},{"question":"How to Care for Bewakoof's Men Henley Tees?","answer":"\u003Cp\u003ETo care for our Henley Tees for men, wash them in cold water with a machine wash. Avoid using bleach or chlorine-based detergents. It's also recommended to avoid harsh chemicals to maintain the colour and quality of the fabric.\u003C\u002Fp\u003E"},{"question":"Does Bewakoof allow discounts on Henley t-shirts?","answer":"\u003Cp\u003EYes, Bewakoof does offer discounts on Henley t-shirts for gents. For instance, customers can get an instant discount on their first purchase above a certain amount by using a coupon code. Additional cashback offers may also be available on prepaid orders.\u003C\u002Fp\u003E"},{"question":"How to buy henley t shirts for men online from Bewakoof?","answer":"\u003Cp\u003ETo buy men's Henley t-shirts from Bewakoof, visit our website, search for henley t-shirts, and click on the Henley T-shirts category. Please browse through the available options, select your preferred style, size, and colour, and add it to your cart. Once you're ready to purchase, proceed to checkout, provide your shipping details, choose a payment method, and complete the transaction.\u003C\u002Fp\u003E"}]},{"url":"men-t-shirts","faq":[{"question":"What types of t-shirts for men can I find at Bewakoof.com?","answer":"Our T-shirt collection includes a wide range of t-shirts, including graphic tees, plain t-shirts, printed t-shirts, and more, catering to various style preferences."},{"question":"How do I choose the right size t-shirt for men when shopping online?","answer":"To ensure a perfect fit, please refer to our size chart available on each product page. Measure yourself according to the instructions provided, and select the size that best fits your measurements."},{"question":"How can I find the best-selling men's t shirts online at Bewakoof?","answer":"Our best-selling t-shirts for men are often highlighted on our website, and you can also check customer reviews and ratings to see which products are the most popular."},{"question":"How should I care for my t-shirts to ensure they last longer?","answer":"To ensure your t-shirts last longer, wash them in cold water with similar colors and turn them inside out to protect any prints. Avoid bleach and fabric softeners, and opt for air drying instead of high heat in the dryer. Iron on a low setting if necessary, and always please follow the specific care instructions on the t-shirt's label."},{"question":"Can I find both casual and formal tshirts for men online at Bewakoof.com?","answer":"Yes, our collection includes both casual and formal styles. Our polos are perfect for a smart-casual look, while our plain and solid t-shirts can be dressed up or down for various occasions."},{"question":"Does Bewakoof.com offer any discounts on men's tshirts?","answer":"Yes, We regularly offer promotions and discounts, so be sure to visit our website often or subscribe to our newsletter to keep informed about our most recent offers."}]},{"url":"serum-and-essence","faq":[{"question":"How to use face serums?","answer":"Well, after cleaning your face and toning, apply a thin layer of serum on your face and gently massage it for the skin to absorb it properly. While serum starts functioning on the skin, wait for 60 seconds and then apply moisturiser, and don't forget to use SPF if you are heading out as it will protect your skin from sun rays."},{"question":"What is an essence?","answer":"It's a lightweight hydrating liquid used to prep the skin to absorb moisturiser and increase the effectiveness of products better."},{"question":"What is Face Serum?","answer":"Face serum is a concentrated active ingredient that targets specific skin concerns, and powerful ingredients help to resolve the skin issues you are having. Different types of face serums help with different issues, thus while choosing, consider purchasing according to your skin issues."}]},{"url":"custom-tshirts","faq":[{"question":"Where can I order a custom t-shirt?","answer":"If you are looking for a personalised T-shirt online, you don't have to search anymore because Bewakoof has fulfilled all your desires and wishes. With a simple custom t-shirt-creating procedure, a seamless designing tool, funky hues and convenient purchase, Bewakoof is the best platform for your needs."},{"question":"Where to buy custom T-shirt?","answer":"Are you on a hunt for customised T-shirts online? You don't have to worry anymore as bewakoof.com has an exclusive collection of personalised T-shirts, where you can create your designs with beautiful colours. You can even choose to post a picture to display on the T-shirt or write a text, and then Bewakoof will let the magic happen. You will receive the exact design that you have created on its website. With simple procedures and utter perfection, there is no better side than Bewakoof for you to purchase the personalised T-shirt."},{"question":"How much does a custom t-shirt cost?","answer":"The pricing differs from brand to brand but if you are looking for something super affordable, elegant and exciting Bewakoofs Custom T-shirt is precise choice for you. It starts from Rs 499 and goes up to Rs 700."}]},{"url":"shampoo-and-conditioner","faq":[{"question":"Can I wash my hair every day?","answer":"Washing your hair every day may leave your scalp in poor condition. It may cause numerous hair problems hence, we suggest you wash your hair twice or thrice a week."},{"question":"Does shampoo cause hair fall?","answer":"Our exports at bewakoof.com suggest that cleaning your scalp and hair may benefit with the reduction of hair fall. Just make sure that you use proper Shampoo for your hair type."},{"question":"What is a conditioner?","answer":"It is a hair product that improves the feel, appearance and manageability of your hair. The primary purpose of the conditioner is to reduce friction between strands of your hair and allow you to smooth combing."}]},{"url":"bath-and-spa","faq":[{"question":"Can we use body wash on the face?","answer":"Body and facial products have different ingredients as facial skin is more sensitive than the body. It's better not to use body wash on your face. Instead, you can opt for our face washes and cleansers which come with natural substances, different varieties for different skin issues and are 100% effective."},{"question":"How to use body wash?","answer":"a) wet your skin in the shower, b) pour some body wash on a loofah or a washcloth, work up the lather and apply it all over your body c) rinse it off and pat dry with a gentle towel. Avoid rubbing as it takes away all the moisture."}]},{"url":"full-sleeve-shirts","faq":[{"question":"Where can you shop for the best full sleeve shirts?","answer":"Bewakoof is the perfect platform for you with numerous styles, patterns, colours etc., to choose from."},{"question":"How to wear a full-sleeve shirt?","answer":"You can style in many ways wearing a full sleeve shirt be it casual or for a party."}]},{"url":"oneplus-nord-ce-2-5g-back-covers-cases","faq":[{"question":"What are the Oneplus Nord CE 2 5G cases and back covers made of?","answer":"The Oneplus Nord CE 2 5G cases and back covers are made of hard plastic material, glass, or silicone."},{"question":"How do I install the Oneplus Nord CE 2 5G case or back cover on my phone?","answer":"The installation process is simple and does not require any tools. First, remove the old case or back cover from your phone. Then, align the new case or back cover with the phone and press firmly until it snaps into place."},{"question":"Will the Oneplus Nord CE 2 5G case or back cover protect my phone from drops and scratches?","answer":"\u003Cp\u003EYes, Oneplus Nord CE 2 5G case and back cover provide protection against drops and scratches. You can even look for&nbsp;\u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fphone-gripper'\u003Ephone grippers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E for better protection.\u003C\u002Fp\u003E"},{"question":"What is the return policy for the Oneplus Nord CE 2 5G case or back cover at Bewakoof.com?","answer":"\u003Cp\u003E\u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002F'\u003EBewakoof.com\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E offers a 15-day return policy for all Oneplus Nord CE 2 5G cases and back covers.\u003C\u002Fp\u003E"},{"question":"What are all designs Bewakoof has for Oneplus Nord CE 2 5G mobile covers?","answer":"Bewakoof.com has various different designs in Oneplus Nord CE 2 5G mobile covers from floral to geometrical we have covered all for you."}]},{"url":"printed-shirts","faq":[{"question":"How to wear printed shirts?","answer":"You can choose different styles and patterns according to the place you wish to go. For example, if you are going for a casual meet, you can wear a printed shirt on a plain T-shirt."},{"question":"Where can you shop for the best-printed shirts?","answer":"Bewakoof is the perfect website for you with numerous styles, patterns, colors etc., to choose from."}]},{"url":"women-dresses","faq":[{"question":"What are the different womens dress brands on Bewakoof?","answer":"The trend of womens dresses is getting more and more diverse and innovative than ever. Bewakoof is an online fashion store for women that has a huge variety of ladies dresses. We offer dresses by various brands like Campus Sutra, Faballey, Clovia, Miss Chase, Disney, High Star and Ahalyaa, Marvel, Oxolloxo, and other popular brands."},{"question":"What is the price range of Dresses offered by Bewakoof.com?","answer":"Bewakoof.com sells dresses starting at just Rs. 299! We offer a variety of budget-friendly designer dress styles to suit all tastes and are perfect for every occasion."},{"question":"What color dress is best for women?","answer":"With so many color options available, it can be hard to pick just one. In short, the best dress color for women depends on the event. For example, if the event is formal or business-related, then a dark or navy blue dress would be best. If it's a party or wedding reception, then a bright red dress, pink dress, or black dress would be perfect."}]},{"url":"mobile-covers-india","faq":[{"question":"Is a back cover necessary for the phone?","answer":"Yes, the back covers are essential for the phones as it protects them from accidents; it will undoubtedly save the smartphone. Apart from safeguarding the phone, the excellent appearances of covers also make it much more impressive, and you can opt for a different look according to the dress code or daily basis."},{"question":"Best Site to buy Mobile Covers Online?","answer":"Bewakoof is the precise place for everyone to buy phone covers online as it has mobile covers of different models and has them in various shades, colours, designs, patterns, etc at affordable rates. This makes it more attractive for buyers. Explore now."}]},{"url":"samsung-galaxy-f62-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Back Covers Online'\u003EMobile Cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"samsung-galaxy-f41-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Back Covers Online'\u003EMobile Cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"samsung-galaxy-f12-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Back Covers Online'\u003EMobile Cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"samsung-galaxy-a30-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Back Covers Online'\u003EMobile Cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"samsung-galaxy-a52-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Back Covers Online'\u003EMobile Cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"samsung-galaxy-a50-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Back Covers Online'\u003EMobile Cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"samsung-galaxy-m21-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Back Covers Online'\u003EMobile Cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"samsung-galaxy-m51-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Back Covers Online'\u003EMobile Cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"samsung-galaxy-m31s-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Back Covers Online'\u003EMobile Cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"samsung-galaxy-a51-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Back Covers Online'\u003EMobile Cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"samsung-galaxy-m31-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Back Covers Online'\u003EMobile Cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"samsung-galaxy-m30s-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Back Covers Online'\u003EMobile Cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"samsung-galaxy-j8-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Back Covers Online'\u003EMobile Cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"samsung-galaxy-j7-prime-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Back Covers Online'\u003EMobile Cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"oneplus-9r-back-covers-cases","faq":[{"question":"What are the different types of OnePlus 9R covers?","answer":"\u003Cp\u003EOn Bewakoof.com, one can find a plethora of options for OnePlus 9R back covers. From sturdy plastic covers to gorilla glass covers, you will find the best ones to match your aesthetic and personality.\u003C\u002Fp\u003E"},{"question":"How much do the OnePlus 9R cases cost?","answer":"\u003Cp\u003EYou will find the best deals on Bewakoof.com where the OnePlus 9R covers are between the price range of Rs. 199-499.\u003C\u002Fp\u003E"},{"question":"What are the benefits of using a  OnePlus 9R back cover?","answer":"\u003Cp\u003EOnePlus 9R back covers are sleek and fashionable, protecting them from accidents. They also give your device an added personal touch with their stylish design!\u003C\u002Fp\u003E"},{"question":"Where can I buy the OnePlus 9R mobile covers online?","answer":"\u003Cp\u003EYou can find the best OnePlus 9R mobile covers online on Bewakoof.com. With a huge collection, Bewakoof has a wide variety of designs to satisfy K-pop, Friends, and Marvel fans.\u003C\u002Fp\u003E"},{"question":"What offers & deals does Bewakoof provide for mobile covers?","answer":"\u003Cp\u003EYou can score some great deals at Bewakoof. With whopping discounts like 50-80% OFF and frequent price drops on mobile cases, the website is worth checking out for your next purchase!\u003C\u002Fp\u003E"},{"question":"Does Bewakoof provide returns & exchanges on mobile covers?","answer":"\u003Cp\u003EYes, Bewakoof aims for the satisfaction of every customer and therefore provides 15-day returns and exchanges on mobile covers.\u003C\u002Fp\u003E"},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"\u003Cp\u003EBewakoof is the perfect place to find a phone cover that suits your personality. With official designs like Marvel, Disney DC Comics, and Looney Tunes among many others there are plenty of options for everyone!\u003C\u002Fp\u003E"}]},{"url":"iphone-13-mini-back-covers-cases","faq":[{"question":"What are the different colors available for the iPhone 13 mini cases?","answer":"The iPhone 13 mini cases is available in a range of different colors, including black, white, blue, and red."},{"question":"What is the material used to make the iphone 13 mini back covers?","answer":"\u003Cp\u003EThe iphone 13 mini back cover is made from a hard plastic material that provides protection for your device. There are also other types of \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india\u002Fapple-cases-back-covers' title='Buy Apple Mobile Covers Online'\u003EiPhone Mobile Covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E like glass covers, silicon covers etc.\u003C\u002Fp\u003E"},{"question":"Is the iPhone 13 mini phone cover easy to install?","answer":"Yes, the back cover is easy to install and can be done in minutes."},{"question":"Why would I want an iPhone 13 mini covers?","answer":"There are a few reasons of having iPhone 13 mini covers . Some people like to have a protective case on their phone, while others simply prefer the look of a colorful or patterned back cover."},{"question":"Do Bewakoof's covers have a return or exchange policy?","answer":"Yes! We stay true to our promise of providing happy customers, so you'll love that we give you 15 days of easy returns, refunds, or exchanges. So, shop online with us without any worries, and we at Bewakoof will always be there to help you and provide you with the best."},{"question":"Where should I get iPhone 13 mini covers online?","answer":"\u003Cp\u003EBewakoof.com is the best online shopping website to get iPhone 13 mini covers, we have iphone mobile covers, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fphone-gripper' title='Buy Phone Grippers Online'\u003EPhone Grippers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E available in various prints and designs at affordable rates.\u003C\u002Fp\u003E"}]},{"url":"oneplus-8-pro-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003EMobile Covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"oneplus-8t-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003EMobile Covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"oneplus-8-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003EMobile Covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"oneplus-nord-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003EMobile Covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"oneplus-nord-ce-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003EMobile Covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"oneplus-nord-2-back-covers-cases","faq":[{"question":"What are the different types of OnePlus Nord 2 covers?","answer":"The different types of OnePlus Nord 2 covers are glass covers & hard plastic covers, of which both provide optimal protection from bumps & accidental falls."},{"question":"How much do OnePlus Nord 2 Cases cost?","answer":"At Bewakoof.com you can be assured that top-notch quality will be delivered at a budgeted price range. Our covers range from Rs. 199 to Rs. 529."},{"question":"What are the benefits of using a OnePlus Nord 2 back cover?","answer":"A sturdy OnePlus Nord 2 back cover protects your phone from scratches, impact from accidental falls & bumps, dust, dirt & more. Hence, it is important to cover your phone with a robust & quirky phone case."},{"question":"Where can I buy OnePlus Nord 2 mobile covers online?","answer":"\u003Cp\u003EFrom a pool of websites,&nbsp;\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002F'\u003E\u003Cstrong\u003EBewakoof.com\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E offers the best covers at a reasonable price. Our covers come in a range of designs &amp; sturdy exteriors to fulfil all your needs.\u003C\u002Fp\u003E"},{"question":"What offers & deals does Bewakoof provide for mobile covers?","answer":"\u003Cp\u003EBewakoof.com has various deals &amp; discounts going on at most times. You can be a part of our&nbsp;\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Ftribe'\u003E\u003Cstrong\u003ETriBe\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E &amp; get a yearly membership to get additional discounts on the mobile covers.\u003C\u002Fp\u003E"},{"question":"Does Bewakoof provide returns & exchanges on mobile covers?","answer":"Yes, we value our consumers highly & if they are unhappy with their purchase, Bewakoof.com offers a seamless exchange policy of 15 days. In this period you can either issue a refund or exchange the product for an item of your choice."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Our Official Merch store has various collaborations including Disney, DC, Marvel, Minions, Looney Tunes, Tom & Jerry, Garfield, FRIENDS, Star Wars & more. You can choose from a range of funky designs from the above selection to give your phone a quirky appeal."}]},{"url":"oneplus-7t-pro-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003EMobile Covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"oneplus-7t-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003EMobile Covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"oneplus-7-pro-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003EMobile Covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"oneplus-6t-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003EMobile Covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"oneplus-6-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003EMobile Covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"vivo-y73-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003EBack Covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"vivo-v11-pro-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003EBack Covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"girlish-phone-covers","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof is the best site to buy fancy mobile covers for girls. We have a wide range of covers that are available in different colors, styles and patterns. The prices are also very affordable. We are designed to provide excellent protection against scratches and dust, while keeping your phone light as a feather."},{"question":"Where can I buy cute mobile cover for girls?","answer":"The latest craze for girls are cute mobile covers. They come in a variety of colors and textures and are sure to make your phone stand out in the crowd. Bewakoof is the best online shopping site to buy girlish phone covers online in India."},{"question":"Does Bewakoof sell phone pouch for girls?","answer":"We currently do not sell phone pouches, but you can check for our girly mobile covers and \u003Cu\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fphone-gripper'\u003Ephone grippers\u003C\u002Fa\u003E\u003C\u002Fu\u003E available in different designs at an affordable price."},{"question":"What are the best features to look for in a phone case?","answer":"If you are looking for the best features in a phone case, there are many things to consider. One of the most important features is durability. You want the case to be able to prevent your phone from breaking or cracking when it falls or if something hits it. Another important feature is that the case should fit snugly around your phone so that it doesnt fall out of the case easily and get scratches and dents on it."},{"question":"Is it better to buy a phone case online or in store?","answer":"Nowadays, people are buying more and more products online. This is because its often cheaper to buy online and there are many different brands to choose from. However, there are some things that you should know before you buy a phone case online. First of all, the price. Its usually cheaper to buy a phone case on the internet than in store. Secondly, double check the shipping time when you order something online. make sure you have selected the correct device model ."},{"question":"Which one is better, a hard or soft phone case?","answer":"The main difference between the two types of cases is the level of protection they provide. A hard case offers more protection than a soft one. A hard phone case is made from a hard, durable material like plastic or metal. It is usually more expensive than a soft case, but it provides better protection for your phone because it can absorb impact from drops and bumps. Soft cases are made from materials like silicone or rubber and they are usually cheaper than hard cases. They offer less protection than a hard case because they cant absorb as much impact as one, but they still provide some level of protection against drops and bumps."}]},{"url":"vivo-x60-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003EBack Covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"vivo-y91-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003EBack Covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"vivo-y20-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003EBack Covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"vivo-y12-s-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003EBack Covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"vivo-v-20-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003EBack Covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"vivo-v19-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003EBack Covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"vivo-v5-back-cover-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003EBack Covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"vivo-u10-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003EBack Covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"vivo-s1-pro-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003EBack Covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"xiaomi-redmi-9-power-back-cover-cases","faq":[{"question":"What are the different types of Redmi 9 power covers?","answer":"\u003Cp\u003EWe have a vast collection of Xiaomi Redmi 9 Power covers with every kind of design that you can think of. Our range includes Plain Covers & Printed Covers with illustrations of Spiderman, Avengers, Quotes, Animals, Doodles, Sports Idols, Floral accents, 3D layouts and more.\u003C\u002Fp\u003E"},{"question":"How much do Redmi 9 Power cases cost?","answer":"The cost may fluctuate according to the type & design. Our price range starts from Rs. 199 and goes up to Rs. 349. Bewakoof.com is a striking choice if you are looking for good quality, attractive designs and reasonable pricing."},{"question":"What are the benefits of using the Xiaomi Redmi 9 power back cover?","answer":"\u003Cp\u003EOut of the numerous benefits of using the Xiaomi Redmi 9 Power phone case, the most prominent ones are listed below -\u003Cbr\u003E\u003Col\u003E\u003Cli\u003ESafeguards your phone from scratches, drops &amp; regular bumps.\u003C\u002Fli\u003E\u003Cli\u003EOffers enhanced accessibility with accurate cutouts are soft buttons.\u003C\u002Fli\u003E\u003Cli\u003EAdds personality to the phone &amp; your overall look with its distinctive designs.\u003C\u002Fli\u003E\u003C\u002Fol\u003E\u003C\u002Fp\u003E"},{"question":"Where can I buy Xiaomi Redmi 9 Power cover online?","answer":"With appropriate pricing, high-grade quality and numerous other features, Bewakoof is an ideal choice for any consumer looking for a Xiaomi Redmi 9 Power Case. We have a vast collection with multiple options that you are sure to love."},{"question":"What offers and deals does Bewakoof provide for mobile covers?","answer":"Bewakoof has various ongoing deals at all times. We offer discounts and a cash-back policy to new and existing customers as we believe in spreading happiness."},{"question":"Does Bewakoof provide returns or exchanges on mobile covers?","answer":"Yes. Bewakoof believes in providing utmost customer satisfaction which is why we have a 15-day easy return policy where you can either exchange the product or get a total refund. So, sit back & enjoy hassle-free shopping as we at Bewakoof will always be there to assist and cater to all your needs."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoof's phone cover collection is quirky and trendy. It includes a huge variety of options that you can choose from. Besides exciting collaborations with Marvel, Disney and Looney Tunes, we also have solid\u002Fvibrant covers to match your aesthetics."}]},{"url":"xiaomi-mi-10i-5g-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Mobile Covers Online'\u003Eprinted back covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"mi-11-ultra-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Mobile Covers Online'\u003Eprinted back covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"xiaomi-mi-10t-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Mobile Covers Online'\u003Eprinted back covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"xiaomi-redmi-k-20-pro-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Mobile Covers Online'\u003Eprinted back covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"xiaomi-mi-10-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Mobile Covers Online'\u003Eprinted back covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"xiaomi-poco-c3-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Mobile Covers Online'\u003Eprinted back covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"xiaomi-redmi-9-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Mobile Covers Online'\u003Eprinted back covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"xiaomi-redmi-note-10-pro-max-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Mobile Covers Online'\u003Eprinted back covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"xiaomi-redmi-note-10-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Mobile Covers Online'\u003Eprinted back covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"xiaomi-poco-m3-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Mobile Covers Online'\u003Eprinted back covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"xiaomi-poco-m2-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Mobile Covers Online'\u003Eprinted back covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"xiaomi-poco-x3-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Mobile Covers Online'\u003Eprinted back covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"xiaomi-poco-x2-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Mobile Covers Online'\u003Eprinted back covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"xiaomi-redmi-9-prime-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Mobile Covers Online'\u003Eprinted back covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"xiaomi-redmi-9a-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Mobile Covers Online'\u003Eprinted back covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"xiaomi-redmi-note-9-pro-max-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Mobile Covers Online'\u003Eprinted back covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"xiaomi-redmi-note-9-pro-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Mobile Covers Online'\u003Eprinted back covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"xiaomi-redmi-note-8-pro-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Mobile Covers Online'\u003Eprinted back covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"xiaomi-redmi-note-8-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Mobile Covers Online'\u003Eprinted back covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"xiaomi-redmi-9-power-back-cover-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Mobile Covers Online'\u003Eprinted back covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"xiaomi-redmi-note-7-pro-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Mobile Covers Online'\u003Eprinted back covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"xiaomi-redmi-note-7-s-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Mobile Covers Online'\u003Eprinted back covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"xiaomi-redmi-note-6-pro-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Printed Mobile Covers Online'\u003Eprinted back covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"xiaomi-mi-a3-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"iphone-13-back-covers-cases","faq":[{"question":"What are the different types of iPhone 13 covers?","answer":"\u003Cp\u003EThere are a few different types of iPhone 13 covers. The most common type is the hard cover, which protects the back of your phone from scratches and other damage. Other types of covers are silicone covers, 3d covers, and glass covers.\u003C\u002Fp\u003E"},{"question":"What are the benefits of having an iPhone 13 cover?","answer":"\u003Cp\u003EThere are several benefits of having an iPhone 13 cover.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E1. It can protect your phone from scratches, bumps, and other damage. It can also make your phone look more stylish and professional.\u003C\u002Fp\u003E\u003Cbr\u003E\u003Cp\u003E2. A mobile cover can help to improve your grip on the phone, which can be helpful if you tend to drop it often. There are many different types of covers available, including cases with built-in screen protectors and phone grippers, so you can find one that best suits your needs.\u003C\u002Fp\u003E"},{"question":"How do I know which cover is best for me?","answer":"\u003Cp\u003EYou should consider the type of phone you have, your lifestyle, and how you use your phone when choosing a cover. There are many different types of covers to choose from, including hard shells, silicone cases, flip covers, and wallet cases. You can also find covers with fun prints or patterns or ones that match your outfit or personality.\u003C\u002Fp\u003E"},{"question":"Which cover is most durable?","answer":"\u003Cp\u003EDurability is a key factor when it comes to choosing a phone cover. You want to choose a cover that will protect your phone from scratches, dents, and other damage. Some covers are also water resistant, which can come in handy if you happen to drop your phone in water. There are a variety of different covers available, so you should be able to find one that meets your needs.\u003C\u002Fp\u003E"},{"question":"How much do iPhone 13 cases cost?","answer":"\u003Cp\u003EThe cost of iPhone 13 cases can vary depending on the type of case, the material it is made out of, the brand and even the color. At Bewakoof.com we have cases in the range of Rs.299 to Rs.529. Some more expensive cases may even be made from precious materials like gold or platinum. There are a wide variety of cases available on the market, so you&apos;re sure to find one that fits your needs and budget.\u003C\u002Fp\u003E"},{"question":"Where can I buy iPhone 13 mobile covers online?","answer":"\u003Cp\u003EYou can buy iPhone 13 mobile covers online at Bewakoof.com. There are a variety of prints and designs to choose from.\u003C\u002Fp\u003E"},{"question":"Does Bewakoof Provide Returns & Exchange On Mobile Covers?","answer":"\u003Cp\u003EYes, Bewakoof offers returns and exchanges on mobile covers. In case you are not satisfied with your purchase, you can return or exchange the product within 15 days of receiving the order. However, the product should be unused and in its original condition.\u003C\u002Fp\u003E"}]},{"url":"iphone-12-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for iPhone 12 Back Covers & Cases?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a iphone 12 mobile cover from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky iphone 12 cover that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on iPhone 12 covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on iPhone 12 Cases and across other categories too."},{"question":"What merchandise collection do we have in the iPhone 12 Cover collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of iPhone 12 Back Cases?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"iphone-12-pro-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"iphone-12-pro-max-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"iphone-se-2020-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"iphone-xr-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"iphone-7-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"iphone-11-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"realme-7-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"realme-6-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"realme-5-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"realme-7-pro-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"realme-8-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"realme-8-pro-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"realme-xt-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"realme-x7-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"realme-x3-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"realme-x-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"realme-3-pro-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"realme-narzo-20-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"realme-narzo-20-pro-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"realme-narzo-30-pro-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"realme-narzo-30a-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"realme-narzo-50i-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"realme-x7-pro-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"realme-c20-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"realme-c3-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"realme-c2-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Emobile cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"oppo-a54-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Ephone covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"oppo-a31-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Ephone covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"oppo-a15-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Ephone covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"oppo-a5-2020-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Ephone covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"oppo-f15-back-cover-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Ephone covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"oppo-a53-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Ephone covers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"infinix-hot-10s-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Ephone cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"infinix-smart-5-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Ephone cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"moto-e40-back-covers-cases","faq":[{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"\u003Cp\u003EBewakoof has various ongoing offers at all times. We offer \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcampaign\u002Fdelights-coupons-discounts-offers-sale' title='Bewakoof Offers & Discounts'\u003Ediscount and cashback offers\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E to both our new and existing customers because we believe in spreading happy, good vibes.\u003C\u002Fp\u003E"},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchange on mobile covers?","answer":"Yes, Bewakoof believes in ensuring happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"Bewakoofs mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Buy Marvel Merchandise Online'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Buy Disney Merchandise Online'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='Buy DC Merchandise Online'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E and Looney Tunes, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the quirk in you!"},{"question":"What is the price range of mobile covers?","answer":"\u003Cp\u003EBewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmobile-covers-india' title='Buy Mobile Covers Online'\u003Ephone cases\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E come within the price range of Rs. 249 to 299. Hurry up and give your phone a new quirky look!\u003C\u002Fp\u003E"}]},{"url":"\u002Fmobile-covers-india","faq":[{"question":"Is a back cover necessary for the phone?","answer":"Yes, the back covers are essential for the phones as it protects them from accidents; it will undoubtedly save the smartphone. Apart from safeguarding the phone, the excellent appearances of the covers also make it much more impressive, and you can opt for a different look according to the dress code or daily basis."},{"question":"Best Site to buy Mobile Covers Online?","answer":"Bewakoof is the precise place for everyone to buy phone covers online as it has mobile covers of different models and has them in various shades, colors, designs, patterns, etc at affordable rates. This makes it more attractive for buyers. Explore now."},{"question":"Does Bewakoof.com have mobile covers for both men & women?","answer":"Yes, Bewakoof.com has a wide selection of mobile covers for both men and women. Our designs range from bold prints to minimalist patterns, so you can be sure to find the perfect cover that matches your style needs! We also offer unique back covers with expressive designs and patterns that will add a touch of personality to your phone. So whatever your style, you will find the perfect mobile cover at Bewakoof.com!"},{"question":"Which kind of cover is best for mobile? Or Which material is best for a mobile cover?","answer":"For optimal protection of your phone, it is important to buy a cover made of hard plastic, PU material, or silicone. Phone cases made from these materials protect your device from damage caused by impact, regular wear and tear, accidental drops, and more."},{"question":"What kinds or types of back covers do we have?","answer":"Bewakoof has a wide range of designs and prints to choose from. You can select from funky prints in all categories including Anime, Aesthetic, Floral, Marble, Official Collaborations, and more."},{"question":"Which type of cover is better to protect our mobile phones?","answer":"Impact-resistant hard covers are ideal for all mobile phones. They protect your phone from accidental drops, bumps, dents, and scratches."},{"question":"What quality mobile covers does Bewakoof offer?","answer":"Bewakoof offers top-notch covers that resist damage without compromising on its looks. Our covers are made using premium plastic that keeps your phone safe and retains its looks for a prolonged period."},{"question":"What offers & deals does Bewakoof provide for Mobile Covers?","answer":"Bewakoof has various ongoing offers at all times. We offer discount and cashback offers to both our new and existing customers because we believe in spreading happy, good vibes."},{"question":"Why should you buy a mobile case from Bewakoof?","answer":"Your phone endures anxious throws, dents, scratches, smudges, and many other tortures that not only break your heart but oftentimes, your phone screen too. Bewakoof is a one-stop shop to buy durable, affordable, and quirky mobile covers that not only catch the attention of your peers but ensure optimal protection to your phone."},{"question":"Does Bewakoof provide returns & exchanges on mobile covers?","answer":"Yes; Bewakoof believes in ensuring the happiness and satisfaction of the customers. Therefore, we provide 15 Days Easy Returns, Refunds, and Exchange on mobile covers and across other categories too."},{"question":"What merchandise collection do we have in the mobile case collection?","answer":"\u003Cp\u003EBewakoof's mobile covers collection is versatile and comes with a plethora of options for you to choose the ideal buddy for your phone. Apart from exciting collaborations with \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise' title='Marvel merchandise India'\u003EMarvel\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise' title='Disney Merchandise India'\u003EDisney\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-merchandise' title='DC Comics Merchandise Online India'\u003EDC\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, and \u003Cstrong\u003E\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Flooney-tunes-t-shirts' title='Looney Tunes Merchandise India'\u003ELooney Tunes\u003C\u002Fa\u003E\u003C\u002Fstrong\u003E, Bewakoof also deals with minimalistic covers to appease your aesthetics and quirky themes to outshine the 'quirk' in you!\u003C\u002Fp\u003E"},{"question":"Which payment models are available at Bewakoof?","answer":"To enhance a smooth shopping experience, we bring to you multiple payment models like e-wallet, card, net banking, UPI, and even cash on delivery. Happy shopping!"},{"question":"What is the price range of mobile covers?","answer":"Bewakoof deals with pocket-friendly mobile covers to safely tuck your gadget into your pocket. Our printed mobile covers come within the price range of Rs. 249 to Rs. 299. Hurry up and give your phone a new quirky look!"}]},{"url":"oversized-t-shirts-for-women","faq":[{"question":"How to wear an oversized t-shirt for women?","answer":"Oversized T-shirts for girls can be worn most stylishly for any event. Suppose you are heading out for a Sunday Brunch, Movie plan, Day out or any other occasion, you can opt for a women oversized T-shirt. Pair it with relaxed jeans, a hand purse, some jewelry, and cool glares and boom, you are all ready. We have a number of styling tips on our blog that you can use to make your oversized t-shirt look great! Check them out here. \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fblog\u002Foversized-t-shirts-outfits-ideas\u002F'\u003EHow to Style Oversized T-Shirts for Women\u003C\u002Fa\u003E\u003C\u002Fp\u003E"},{"question":"How to choose the perfect oversized T-shirt for women?","answer":"Whenever you wish to purchase an oversized T-shirt for yourself, inspect the quality, cost, and size of the fabric first. Are you looking to buy an oversized T-shirt online? Look no further as Bewakoof has got you covered with its iconic fashion, trendy designs, budgeted range, and especially the quality of the fabric. Explore and pick your favorites, available in different size ranges starting from XS to 6XL. With an easy \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fcontact-us\u002Frefund-or-return'\u003Ereturn policy\u003C\u002Fa\u003E and timely delivery, you don't have to worry about anything."},{"question":"What sizes are available in women's oversized T-shirts?","answer":"We offer a wide range of sizes in our oversized t-shirts for women, including XS, S, M, L, XL, XXL, 3XL, 4XL, 5XL, and more!"}]},{"url":"oversized-t-shirts-for-men","faq":[{"question":"What are oversized t-shirts?","answer":"An oversized T-shirt is a clothing item that has a boxy form and falls loosely over a pair of skinny or loose jeans. If you wish to buy an oversized t-shirt for yourself, check out our collection because it is exceptional!"},{"question":"WHERE CAN I BUY OVERSIZED T-SHIRTS ONLINE?","answer":"Bewakoof.comis the best place to buy oversized tshirts online because we offer a wide range of styles and sizes in our collection of oversized t-shirts for men. You can find everything from casual, to formal, to trendy, and more!"},{"question":"WHAT SIZES ARE AVAILABLE IN MEN'S OVERSIZED T-SHIRTS?","answer":"We offer a wide range of sizes in our oversized t-shirts for men, including XS, S, M, L, XL, XXL, 3XL, 4XL, 5XL, and more!"},{"question":"WHAT STYLE DO WE HAVE IN OVERSIZED T-SHIRTS?","answer":"We have many styles of oversized t-shirts available on our website, including\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmen-full-sleeve-t-shirts'\u003Elong sleeves\u003C\u002Fa\u003E,\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fhalf-sleeve-t-shirts-for-men'\u003Eshort sleeves\u003C\u002Fa\u003E,\u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fv-neck-t-shirts'\u003Ev-neck\u003C\u002Fa\u003E, crew neck, etc., from casual to formal to trendy! You can find anything you need at Bewakoof."}]},{"url":"oppo-a55-back-covers-cases","faq":[{"question":"What are the different types of Oppo A55 covers?","answer":"There are several types of Oppo A55 covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Oppo A55 cases cost?","answer":"Generally, Oppo A55 cases cost between Rs. 199-599  in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Oppo A55 back cover?","answer":"The benefits of using an Oppo A55 back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Oppo A55 mobile covers online?","answer":"Get the best Oppo A55 mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"samsung-galaxy-a12-back-covers-cases","faq":[{"question":"What are the different types of Samsung Galaxy A12 covers?","answer":"There are several types of Samsung Galaxy A12 covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Samsung Galaxy A12 cases cost?","answer":"Generally, Samsung Galaxy A12 cases cost between Rs. 199-599  in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Samsung Galaxy A12 back cover?","answer":"The benefits of using an Samsung Galaxy A12 back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Samsung Galaxy A12 mobile covers online?","answer":"Get the best Samsung Galaxy A12 mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"realme-c11-back-covers-cases","faq":[{"question":"What are the different types of Realme C11 covers?","answer":"There are several types of Realme C11 covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Realme C11 cases cost?","answer":"Generally, Realme C11 cases cost between Rs. 199-599  in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Realme C11 back cover?","answer":"The benefits of using an Realme C11 back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Realme C11 mobile covers online?","answer":"Get the best Realme C11 mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"oppo-a5s-back-covers-cases","faq":[{"question":"What are the different types of Oppo A5s covers?","answer":"There are several types of Oppo A5s covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Oppo A5s cases cost?","answer":"Generally, Oppo A5s cases cost between Rs. 199-599  in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Oppo A5s back cover?","answer":"The benefits of using an Oppo A5s back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Oppo A5s mobile covers online?","answer":"Get the best Oppo A5s mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"oppo-a3s-back-covers-cases","faq":[{"question":"What are the different types of Oppo A3S covers?","answer":"There are several types of Oppo A3S covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Oppo A3S cases cost?","answer":"Generally, Oppo A3S cases cost between Rs. 199-599  in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Oppo A3S back cover?","answer":"The benefits of using an Oppo A3S back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Oppo A3S mobile covers online?","answer":"Get the best Oppo A3S mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"oppo-f19-pro-back-covers-cases","faq":[{"question":"What are the different types of Oppo F19 Pro covers?","answer":"There are several types of Oppo F19 Pro covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Oppo F19 Pro cases cost?","answer":"Generally, Oppo F19 Pro cases cost between Rs. 199-599  in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Oppo F19 Pro back cover?","answer":"The benefits of using an Oppo F19 Pro back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Oppo F19 Pro mobile covers online?","answer":"Get the best Oppo F19 Pro mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"iphone-8-plus-back-covers-cases","faq":[{"question":"What are the different types of iPhone 8 Plus covers?","answer":"There are several types of iPhone 8 Plus covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do iPhone 8 Plus cases cost?","answer":"Generally, iPhone 8 Plus cases cost between Rs. 199-599  in the market, depending on the quality & the material."},{"question":"What are the benefits of using an iPhone 8 Plus back cover?","answer":"The benefits of using an iPhone 8 Plus back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy iPhone 8 Plus mobile covers online?","answer":"Get the best iPhone 8 Plus mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"samsung-galaxy-a32-back-covers-cases","faq":[{"question":"What are the different types of Samsung Galaxy A32 covers?","answer":"There are several types of Samsung Galaxy A32 covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Samsung Galaxy A32 cases cost?","answer":"Generally, Samsung Galaxy A32 cases cost between Rs. 199-599  in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Samsung Galaxy A32 back cover?","answer":"The benefits of using an Samsung Galaxy A32 back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Samsung Galaxy A32 mobile covers online?","answer":"Get the best Samsung Galaxy A32 mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"oppo-a5-back-covers-cases","faq":[{"question":"What are the different types of Oppo A5 covers?","answer":"There are several types of Oppo A5 covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Oppo A5 cases cost?","answer":"Generally, Oppo A5 cases cost between Rs. 199-599  in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Oppo A5 back cover?","answer":"The benefits of using an Oppo A5 back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Oppo A5 mobile covers online?","answer":"Get the best Oppo A5 mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"samsung-galaxy-m12-back-covers-cases","faq":[{"question":"What are the different types of Samsung Galaxy M12 covers?","answer":"There are several types of Samsung Galaxy M12 covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Samsung Galaxy M12 cases cost?","answer":"Generally, Samsung Galaxy M12 cases cost between Rs. 199-599  in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Samsung Galaxy M12 back cover?","answer":"The benefits of using an Samsung Galaxy M12 back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Samsung Galaxy M12 mobile covers online?","answer":"Get the best Samsung Galaxy M12 mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"oppo-a7-back-covers-cases","faq":[{"question":"What are the different types of Oppo A7 covers?","answer":"There are several types of Oppo A7 covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Oppo A7 cases cost?","answer":"Generally, Oppo A7 cases cost between Rs. 199-599  in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Oppo A7 back cover?","answer":"The benefits of using an Oppo A7 back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Oppo A7 mobile covers online?","answer":"Get the best Oppo A7 mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"realme-c12-back-covers-cases","faq":[{"question":"What are the different types of Realme C12 covers?","answer":"There are several types of Realme C12 covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Realme C12 cases cost?","answer":"Generally, Realme C12 cases cost between Rs. 199-599  in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Realme C12 back cover?","answer":"The benefits of using an Realme C12 back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Realme C12 mobile covers online?","answer":"Get the best Realme C12 mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"samsung-galaxy-a22-back-covers-cases","faq":[{"question":"What are the different types of Samsung Galaxy A22 covers?","answer":"There are several types of Samsung Galaxy A22 covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Samsung Galaxy A22 cases cost?","answer":"Generally, Samsung Galaxy A22 cases cost between Rs. 199-599  in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Samsung Galaxy A22 back cover?","answer":"The benefits of using an Samsung Galaxy A22 back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Samsung Galaxy A22 mobile covers online?","answer":"Get the best Samsung Galaxy A22 mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"oppo-reno-3-pro-back-covers-cases","faq":[{"question":"What are the different types of Oppo Reno3 Pro covers?","answer":"There are several types of Oppo Reno3 Pro covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Oppo Reno3 Pro cases cost?","answer":"Generally, Oppo Reno3 Pro cases cost between Rs. 199-599  in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Oppo Reno3 Pro back cover?","answer":"The benefits of using an Oppo Reno3 Pro back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Oppo Reno3 Pro mobile covers online?","answer":"Get the best Oppo Reno3 Pro mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"samsung-galaxy-a52s-back-covers-cases","faq":[{"question":"What are the different types of Samsung Galaxy A52S covers?","answer":"There are several types of Samsung Galaxy A52S covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Samsung Galaxy A52S cases cost?","answer":"Generally, Samsung Galaxy A52S cases cost between Rs. 199-599  in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Samsung Galaxy A52S back cover?","answer":"The benefits of using an Samsung Galaxy A52S back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Samsung Galaxy A52S mobile covers online?","answer":"Get the best Samsung Galaxy A52S mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"samsung-galaxy-s10-back-covers-cases","faq":[{"question":"What are the different types of Samsung Galaxy S10 covers?","answer":"There are several types of Samsung Galaxy S10 covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Samsung Galaxy S10 cases cost?","answer":"Generally, Samsung Galaxy S10 cases cost between Rs. 199-599  in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Samsung Galaxy S10 back cover?","answer":"The benefits of using an Samsung Galaxy S10 back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Samsung Galaxy S10 mobile covers online?","answer":"Get the best Samsung Galaxy S10 mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"samsung-galaxy-note-10-plus-back-covers-cases","faq":[{"question":"What are the different types of Samsung Galaxy Note 10 Plus covers?","answer":"There are several types of Samsung Galaxy Note 10 Plus covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Samsung Galaxy Note 10 Plus cases cost?","answer":"Generally, Samsung Galaxy Note 10 Plus cases cost between Rs. 199-599  in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Samsung Galaxy Note 10 Plus back cover?","answer":"The benefits of using an Samsung Galaxy Note 10 Plus back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Samsung Galaxy Note 10 Plus mobile covers online?","answer":"Get the best Samsung Galaxy Note 10 Plus mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"samsung-galaxy-note-9-back-covers-cases","faq":[{"question":"What are the different types of Samsung Galaxy Note 9 covers?","answer":"There are several types of Samsung Galaxy Note 9 covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Samsung Galaxy Note 9 cases cost?","answer":"Generally, Samsung Galaxy Note 9 cases cost between Rs. 199-599  in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Samsung Galaxy Note 9 back cover?","answer":"The benefits of using an Samsung Galaxy Note 9 back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Samsung Galaxy Note 9 mobile covers online?","answer":"Get the best Samsung Galaxy Note 9 mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"iphone-6-plus-back-covers-cases","faq":[{"question":"What are the different types of iPhone 6 Plus covers?","answer":"There are several types of iPhone 6 Plus covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do iPhone 6 Plus cases cost?","answer":"Generally, iPhone 6 Plus cases cost between Rs. 199-599  in the market, depending on the quality & the material."},{"question":"What are the benefits of using an iPhone 6 Plus back cover?","answer":"The benefits of using an iPhone 6 Plus back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy iPhone 6 Plus mobile covers online?","answer":"Get the best iPhone 6 Plus mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"realme-c25-back-covers-cases","faq":[{"question":"What are the different types of Realme C25 covers?","answer":"There are several types of Realme C25 covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Realme C25 cases cost?","answer":"Generally, Realme C25 cases cost between Rs. 199-599  in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Realme C25 back cover?","answer":"The benefits of using an Realme C25 back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Realme C25 mobile covers online?","answer":"Get the best Realme C25 mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"huawei-p30-lite-back-covers-cases","faq":[{"question":"What are the different types of Huawei P30 Lite covers?","answer":"There are several types of Huawei P30 Lite covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Huawei P30 Lite cases cost?","answer":"Generally, Huawei P30 Lite cases cost between Rs. 199-599  in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Huawei P30 Lite back cover?","answer":"The benefits of using an Huawei P30 Lite back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Huawei P30 Lite mobile covers online?","answer":"Get the best Huawei P30 Lite mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"huawei-p30-pro-back-covers-cases","faq":[{"question":"What are the different types of Huawei P30 Pro covers?","answer":"There are several types of Huawei P30 Pro covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Huawei P30 Pro cases cost?","answer":"Generally, Huawei P30 Pro cases cost between Rs. 199-599  in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Huawei P30 Pro back cover?","answer":"The benefits of using an Huawei P30 Pro back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Huawei P30 Pro mobile covers online?","answer":"Get the best Huawei P30 Pro mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"samsung-galaxy-s21-plus-back-covers-cases","faq":[{"question":"What are the different types of Samsung Galaxy S21 Plus covers?","answer":"There are several types of Samsung Galaxy S21 Plus covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Samsung Galaxy S21 Plus cases cost?","answer":"Generally, Samsung Galaxy S21 Plus cases cost between Rs. 199-599  in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Samsung Galaxy S21 Plus back cover?","answer":"The benefits of using an Samsung Galaxy S21 Plus back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Samsung Galaxy S21 Plus mobile covers online?","answer":"Get the best Samsung Galaxy S21 Plus mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"oppo-f21-pro-back-covers-cases","faq":[{"question":"What are the different types of Oppo F21 Pro covers?","answer":"There are several types of Oppo F21 Pro covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Oppo F21 Pro cases cost?","answer":"Generally, Oppo F21 Pro cases cost between Rs. 199-599  in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Oppo F21 Pro back cover?","answer":"The benefits of using an Oppo F21 Pro back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Oppo F21 Pro mobile covers online?","answer":"Get the best Oppo F21 Pro mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"samsung-galaxy-a23-back-covers-cases","faq":[{"question":"What are the different types of Samsung Galaxy A23 covers?","answer":"There are several types of Samsung Galaxy A23 covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Samsung Galaxy A23 cases cost?","answer":"Generally, Samsung Galaxy A23 cases cost between Rs. 199-599  in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Samsung Galaxy A23 back cover?","answer":"The benefits of using an Samsung Galaxy A23 back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Samsung Galaxy A23 mobile covers online?","answer":"Get the best Samsung Galaxy A23 mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"realme-9i-back-covers-cases","faq":[{"question":"What are the different types of Realme 9i covers?","answer":"There are several types of Realme 9i covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Realme 9i cases cost?","answer":"Generally, Realme 9i cases cost between Rs. 199-599  in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Realme 9i back cover?","answer":"The benefits of using an Realme 9i back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Realme 9i mobile covers online?","answer":"Get the best Realme 9i mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"huawei-p40-pro-back-covers-cases","faq":[{"question":"What are the different types of Huawei P40 Pro covers?","answer":"There are several types of Huawei P40 Pro covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Huawei P40 Pro cases cost?","answer":"Generally, Huawei P40 Pro cases cost between Rs. 199-599  in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Huawei P40 Pro back cover?","answer":"The benefits of using an Huawei P40 Pro back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Huawei P40 Pro mobile covers online?","answer":"Get the best Huawei P40 Pro mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"realme-c33-back-covers-cases","faq":[{"question":"What are the different types of Realme C33 covers?","answer":"There are several types of Realme C33 covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Realme C33 cases cost?","answer":"Generally, Realme C33 cases cost between Rs. 199-599  in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Realme C33 back cover?","answer":"The benefits of using an Realme C33 back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Realme C33 mobile covers online?","answer":"Get the best Realme C33 mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"oppo-a77s-back-covers-cases","faq":[{"question":"What are the different types of Oppo A77s covers?","answer":"There are several types of Oppo A77s covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Oppo A77s cases cost?","answer":"Generally, Oppo A77s cases cost between Rs. 199-599  in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Oppo A77s back cover?","answer":"The benefits of using an Oppo A77s back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Oppo A77s mobile covers online?","answer":"Get the best Oppo A77s mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"oppo-reno4-pro-back-covers-cases","faq":[{"question":"What are the different types of Oppo Reno4 Pro covers?","answer":"There are several types of Oppo Reno4 Pro covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Oppo Reno4 Pro cases cost?","answer":"Generally, Oppo Reno4 Pro cases cost between Rs. 199-599  in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Oppo Reno4 Pro back cover?","answer":"The benefits of using an Oppo Reno4 Pro back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Oppo Reno4 Pro mobile covers online?","answer":"Get the best Oppo Reno4 Pro mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"samsung-galaxy-m13-5g-back-covers-cases","faq":[{"question":"What are the different types of Samsung Galaxy M13 5G covers?","answer":"There are several types of Samsung Galaxy M13 5G covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Samsung Galaxy M13 5G cases cost?","answer":"Generally, Samsung Galaxy M13 5G cases cost between Rs. 199-599  in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Samsung Galaxy M13 5G back cover?","answer":"The benefits of using an Samsung Galaxy M13 5G back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Samsung Galaxy M13 5G mobile covers online?","answer":"Get the best Samsung Galaxy M13 5G mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"samsung-galaxy-f42-5g-back-covers-cases","faq":[{"question":"What are the different types of Samsung Galaxy F42 5G covers?","answer":"There are several types of Samsung Galaxy F42 5G covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Samsung Galaxy F42 5G cases cost?","answer":"Generally, Samsung Galaxy F42 5G cases cost between Rs. 199-599  in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Samsung Galaxy F42 5G back cover?","answer":"The benefits of using an Samsung Galaxy F42 5G back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Samsung Galaxy F42 5G mobile covers online?","answer":"Get the best Samsung Galaxy F42 5G mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"oppo-reno3-pro-back-covers-cases","faq":[{"question":"What are the different types of Oppo Reno3 Pro covers?","answer":"There are several types of Oppo Reno3 Pro covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Oppo Reno3 Pro cases cost?","answer":"Generally, Oppo Reno3 Pro cases cost between Rs. 199-599  in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Oppo Reno3 Pro back cover?","answer":"The benefits of using an Oppo Reno3 Pro back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Oppo Reno3 Pro mobile covers online?","answer":"Get the best Oppo Reno3 Pro mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"oppo-reno3-back-covers-cases","faq":[{"question":"What are the different types of Oppo Reno3 covers?","answer":"There are several types of Oppo Reno3 covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Oppo Reno3 cases cost?","answer":"Generally, Oppo Reno3 cases cost between Rs. 199-599  in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Oppo Reno3 back cover?","answer":"The benefits of using an Oppo Reno3 back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Oppo Reno3 mobile covers online?","answer":"Get the best Oppo Reno3 mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]},{"url":"oppo-reno7-pro-5g-back-covers-cases","faq":[{"question":"What are the different types of Oppo Reno7 Pro 5G covers?","answer":"There are several types of Oppo Reno7 Pro 5G covers available in the market. They include silicone cases, hard cases, flip covers, and back covers.Silicone cases are soft and rubbery to the touch. They protect the phone from scratches and offer a good grip. Hard cases are made from tough plastic and provide good protection against drops and other accidents. Flip covers protect the front of the phone while exposing the back for easy access to the phone's camera and other features. Back covers protect the back of the phone from scratches and other damage."},{"question":"How much do Oppo Reno7 Pro 5G cases cost?","answer":"Generally, Oppo Reno7 Pro 5G cases cost between Rs. 199-599  in the market, depending on the quality & the material."},{"question":"What are the benefits of using an Oppo Reno7 Pro 5G back cover?","answer":"The benefits of using an Oppo Reno7 Pro 5G back cover are many. The most obvious benefit is that it protects your phone from scratches, dents, and other damage. It also helps to keep your phone looking new for longer. Additionally, a back cover can improve the grip on your phone, making it less likely to slip out of your hands."},{"question":"Where can I buy Oppo Reno7 Pro 5G mobile covers online?","answer":"Get the best Oppo Reno7 Pro 5G mobile phone covers & cases from Bewakoof.com, the best online shopping site."},{"question":"What offers & Deals does Bewakoof provides for mobile covers?","answer":"Join our Tribe membership program to avail huge discounts & benefits, get early access to the sale, and instant discounts."},{"question":"Does Bewakoof.com provide returns & exchanges on mobile covers?","answer":"Bewakoof.com offers a 15 days return and exchange policy, check out the contact us page for more information."},{"question":"What merchandise collection do we have in our mobile cover collection?","answer":"\u003Cp\u003EBewakoof is your one-stop destination to shop official merch from \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fmarvel-merchandise'\u003E\u003Cstrong\u003EMarvel\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdc-comics-merchandise'\u003E\u003Cstrong\u003EDC Comics\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, \u003Ca href='https:\u002F\u002Fwww.bewakoof.com\u002Fdisney-merchandise'\u003E\u003Cstrong\u003EDisney\u003C\u002Fstrong\u003E\u003C\u002Fa\u003E, Minions and much more. You can find these prints across all our categories- top wear, bottom wear, sliders, backpacks, etc.\u003C\u002Fp\u003E"}]}]},"updated_at":1724240132},"url":"bestseller","webmenu":{"shop-men":{"title":"Men","url":"campaign\u002Fthe-yellow-friday-sale-for-men","shopify_url":"\u002Fcollections\u002Fmens-fashion-shop-men-clothing-online-in-india-bewakoof","shopify_img":"https:\u002F\u002Ftmrw-bk-store.myshopify.com\u002Fcdn\u002Fshop\u002Ffiles\u002Fpicture_12.png?v=1689316181","shopify_category_page_url":"\u002Fpages\u002Fcategories?cat=Men&subCat=Topwear","page":true,"object_type":"shop-men","isCategoryRedirection":true,"category_page_url":"categories?category=men","icon_image":"Circle-icon-men--1--1684748735.png","image":"","navigateToHome":"categories","right_imgs":[{"src":"","url":"campaign\u002Fthe-yellow-friday-sale-for-men"}],"children":[{"title":"Topwear","url":"top-wear-for-men","children":[{"title":"T-Shirts","image":"bewakoof-men-top-wear-icon-3-1622010306.png","url":"men-t-shirts"},{"title":"Printed T-Shirts","image":"bewakoof-men-top-wear-icon-3-1622010306.png","url":"men-printed-tshirts"},{"title":"Oversized T-shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-420X420-10-1646915134.jpg","url":"oversized-t-shirts-for-men"},{"title":"Classic Fit T-shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-420X420-10-1646915134.jpg","url":"classic-t-shirt-for-men"},{"title":"Plain T-Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-420X420-6-1646915132.jpg","url":"men-plain-t-shirts"},{"title":"Half Sleeve T-Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-420X420-4-1646915131.jpg","url":"half-sleeve-t-shirts-for-men"},{"title":"Polo T-Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-420X420-8-1646915133.jpg","url":"polo-t-shirts-for-men"},{"title":"Vests","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-420X420-1-1646915130.jpg","url":"men-vests"},{"title":"Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-Shirts-420X420-1638440741.jpg","url":"men-shirts"},{"title":"Co-ord Sets","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FcoOrd-men-bottom-nav-1653982469.jpg","url":"men-co-ord-sets"},{"title":"Full Sleeve T-Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-420X420-7-1646915132.jpg","url":"men-full-sleeve-t-shirts"},{"title":"Plus Size Topwear","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-Plus-size--T-shirts-420X420-1642656920.jpg","url":"plus-size-store-for-men?category=t-shirt_kurta_vest_sweatshirt_shirt_jacket_co-ordinates_kurta_set_t-shirt_%26_set_kurta__set"},{"title":"Customize T-shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FByou-bottom-nav-again-1642148933.jpg","url":"custom-tshirts?gender=men"},{"title":"Sweatshirts & Hoodies","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FTOD-Refresh-topwear-bottom-navigation-0020-bottom-navigation-box-1634893908.jpg","url":"men-hoodies-sweatshirts"},{"title":"Jackets","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fjacket-sid-1644323908.jpg","url":"men-jackets"},{"title":"Sweaters","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FTOD-Refresh-topwear-bottom-navigation-0002-White-Color-Block-Flat-Knit-Sweater-1634893902.jpg","url":"men-sweaters"},{"title":"All Topwear","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FView-All-1604050368.png","url":"top-wear-for-men"}]},{"title":"Bottomwear","url":"men-bottom-wear-collection","children":[{"title":"Joggers","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-Joggers-420X420-1638440737.jpg","url":"men-joggers"},{"title":"Jeans","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fbottom-nav-bootm-wear--0008-jeans-1634894718.jpg","url":"mens-denim"},{"title":"Baggy Jeans","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fbottom-nav-bootm-wear--0008-jeans-1634894718.jpg","url":"baggy-jeans-for-men"},{"title":"Pajamas","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-Pyjama-420X420-1638440741.jpg","url":"men-pajamas"},{"title":"Cargos","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FNewBottomNav-Icon-Cargo-1691488402.jpg","url":"cargos-for-men"},{"title":"Cargo Pants","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FNewBottomNav-Icon-Cargo-1691488402.jpg","url":"cargo-pants-for-men"},{"title":"Trousers & Pants","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-Casual-Pants-420X420-1638440735.jpg","url":"men-pants"},{"title":"Parachute Pants","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FcoOrd-men-bottom-nav-1653982469.jpg","url":"parachute-pants-for-men"},{"title":"Co-ord Sets","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FcoOrd-men-bottom-nav-1653982469.jpg","url":"men-co-ord-sets"},{"title":"Shorts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-420X420-2-1646915130.jpg","url":"men-shorts"},{"title":"Boxers","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-420X420-3-1646915130.jpg","url":"men-boxer-shorts"},{"title":"Combos","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FNewBottomNav-March2023-Bottomwear-BoxersCOMBO-1683787302.jpg","url":"combos?gender=men&category=boxer"},{"title":"Plus Size Bottomwear","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-Plus-size---Joggers-420X420-1642656918.jpg","url":"plus-size-store-for-men?category=jeans_joggers_pyjama_trousers_track__pant_boxer_casual__pants"},{"title":"All Bottomwear","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FView-All-1604050368.png","url":"men-bottom-wear-collection"}]},{"title":"Top Sellers","url":"top-wear-for-men","children":[{"title":"Top 40 T-Shirts","image":"bewakoof-men-top-wear-icon-3-1622010306.png","url":"topselling-mens-tshirt"},{"title":"Top 20 Cargos","image":"bewakoof-men-top-wear-icon-3-1622010306.png","url":"topselling-mens-cargo"},{"title":"Top 20 Jeans","image":"bewakoof-men-top-wear-icon-3-1622010306.png","url":"topselling-mens-denim"},{"title":"Top 20 Joggers","image":"bewakoof-men-top-wear-icon-3-1622010306.png","url":"topselling-mens-joggers"},{"title":"Top 20 Shirts","image":"bewakoof-men-top-wear-icon-3-1622010306.png","url":"topselling-mens-shirts"}]},{"title":"Winterwear","url":"winter-wear-for-men","children":[{"title":"Sweatshirts & Hoodies","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FHoodies-1635838081.jpg","url":"men-hoodies-sweatshirts"},{"title":"Jackets","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fjacket-sid-1644323908.jpg","url":"men-jackets"},{"title":"Sweaters","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FSweaters-1635838082.jpg","url":"men-sweaters"},{"title":"Joggers","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fbottom-nav-bootm-wear--0006-joggers-1635838124.jpg","url":"men-joggers"},{"title":"Plus Size","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FFull-Sleeves-1635838080.jpg","url":"plus-size-store-for-men?category=hoodies_sweatshirt_jacket"}]},{"title":"Footwear","url":"men-footwear","children":[{"title":"Bewakoof Sneakers","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fcasual-shoes-nav-box-1648121717.jpg","url":"sneakers-for-men?manufacturer_brand=bewakoof®&sort=new"},{"title":"Sliders","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Ftod-refresh-accessories-bottom-navigation-0006-slider-1634892551.jpg","url":"men-sliders"},{"title":"Casual Shoes","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fcasual-shoes-nav-box-1648121717.jpg","url":"men-casual-shoes"}]},{"title":"Accessories","children":[{"title":"Mobile covers","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002F10-12-2021-Bottom-nav-designer-back-covers-1639122391.jpg","url":"mobile-covers-india","is_new":"NEW"},{"title":"Backpacks","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Ftod-refresh-accessories-bottom-navigation-0004-Small-Backpack-1635838175.jpg","url":"bags"},{"title":"Sunglasses","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fbottom-navigation-cap--1637934867.jpg","url":"sunglasses?gender=men","is_new":"NEW"},{"title":"Sling bags","url":"sling-and-tote-bags","is_new":"NEW"},{"title":"Caps","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fbottom-navigation-cap--1637934867.jpg","url":"caps","is_new":"NEW"},{"title":"Mobile Card-holder","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fbottom-navigation-cap--1637934867.jpg","url":"mobile-wallet","is_new":"NEW"}]},{"title":"Plus Size","url":"plus-size-store-for-men","children":[{"title":"T-shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FNewBottomNav-Jan-2024-420x420-Plus-size-Men-1719392328.jpg","url":"plus-size-store-for-men?category=t-shirt"},{"title":"Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FNewBottomNav-Jan-2024-420x420-Plus-size-Topwear-men-1719392328.jpg","url":"plus-size-store-for-men?category=shirt"},{"title":"Jackets","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-Plus-Size---Jackets-420X420-1642656917.jpg","url":"plus-size-store-for-men?category=jacket"},{"title":"Sweatshirts & Hoodies","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid--Plus-size--Hoodies---Sweatshirts-420X420-1642656917.jpg","url":"plus-size-store-for-men?category=hoodies_sweatshirt"},{"title":"Bottomwear","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-Plus-size---Joggers-420X420-1642656918.jpg","url":"plus-size-store-for-men?category=joggers_jeans_pyjama_trousers_track__pant_casual__pants"},{"title":"Jeans","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fbottom-nav-bootm-wear--0008-jeans-1634894718.jpg","url":"plus-size-store-for-men?category=jeans"}]},{"title":"Innerwear & Loungewear ","url":"","children":[{"title":"Vests","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FTOD-Refresh-topwear-bottom-navigation-0005-minion--1634893903.jpg","url":"men-vests"},{"title":"Pajamas","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-Pyjama-420X420-1638440741.jpg","url":"men-pajamas"},{"title":"Boxers","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fbottom-nav-bootm-wear--0011-boxers-1634894719.jpg","url":"men-boxer-shorts"}]}],"specials":[{"title":"SPECIALS","children":[{"title":"Be-legendary","image":"bewakoof12-circleNav-168x168-legendary-1723547609.png","url":"campaign\u002Fled-endary-men"},{"title":"Bewakoof Special Deadpool & Wolverine","image":"Circle-Nav-168x168--8--1721396461.png","url":"deadpool-wolverine-merchandise"},{"title":"Savings Zone","image":"Circle-Nav-168x168--7--1719507523.png","url":"clearance-store?gender=men"},{"title":"Bewakoof Sneakers","image":"Circle-Nav-168x168-sneaker-1718779684.png","url":"sneakers-for-men?manufacturer_brand=bewakoof®&sort=new"},{"title":"Customise with Google Ai","image":"Circle-Nav-168x168-googleai-1718944672.png","url":"ai-canvas"},{"title":"Bewakoof Air: New Summer Drip","image":"Circle-Nav-168x168-AIR-1715355117.png","url":"bewakoof-air?gender=men"},{"title":"Bwkf X One piece","image":"Circle-Nav-168x168-One-Piece-1710143641.png","url":"one-piece-merchandise?gender=men"},{"title":"Bwkf X FRIENDS","image":"Circle-Nav-168x168-COTM-1704012730.png","url":"friends-merchandise?gender=men"},{"title":"Disney Villans","image":"DisneyVillains-168x168-1702822672.png","url":"disney-villains?gender=men"},{"title":"Bwkf X Ishaan Khatter","image":"Circle-Nab-336x336-IK--1--1721816722.png","url":"campaign\u002FIshan-Khatter"},{"title":"Bwkf X Harry potter","image":"MayCOTM-office-168x168-HarryPotter-1701350799.png","url":"harry-potter-merchandise?gender=men_unisex"},{"title":"Bwkf X Mickey Mouse","image":"Circle-cotm--168x168-1698769567.png","url":"mickey-mouse-merchandise?gender=unisex_men"},{"title":"Bewakoof Heavy duty","image":"circle-Icon-HD-168x168-1698328094.png","url":"bewakoof-heavy-duty?gender=men"},{"title":"Bwkf x Naruto","image":"circle-Naruto-168--3--1697690303.png","url":"naruto-merchandise?gender=men"},{"title":"Bwkf x Pima","image":"circle-icon-pima-168x168-1695825476.png","url":"bewakoof-american-pima"},{"title":"Bwkf x Minions","image":"Circle-minion-168x168--1--1695406784.png","url":"minions-merchandise?gender=men"},{"title":"Bwkf x Rick & Morty","image":"Circle-rick-morty-nav-168x168-1694693461.png","url":"rick-and-morty-merchandise?gender=men_unisex"},{"title":"Bwkf x TNMT","image":"circle-icon-tmnt--3--1694693460.png","url":"teenage-mutant-ninja-turtles-merchandise?gender=men_unisex"},{"title":"Bwkf x Garfield","image":"Circle-icon-garfield-1682010304.png","url":"garfield-merchandise?gender=unisex_men"},{"title":"The Official Merch Store","image":"merch-store-icon-1650380159.png","url":"campaign\u002Fofficial-collaborations"},{"title":"Anime Collection","image":"circlenav-animeFLASHOUT-168x168-1675432697.png","url":"anime-collection?gender=men_unisex"},{"title":"The Batman Collection","image":"batman-icon-1652639811.png","url":"batman-merchandise?gender=men_unisex"},{"title":"Vote for Designs","image":"1-1663225167.png","url":"vote"},{"title":"Customize T-shirts","image":"me-shirt-icon--1656050998.png","url":"custom-tshirts?gender=men_unisex"},{"title":"Plus Size Store","image":"bewakoof-icon-specials-7-1622012421.png","url":"plus-size-store-for-men"}]}]},"shop-women":{"title":"Women","url":"","shopify_url":"\u002Fcollections\u002Fmens-fashion-shop-men-clothing-online-in-india-bewakoof","shopify_img":"https:\u002F\u002Ftmrw-bk-store.myshopify.com\u002Fcdn\u002Fshop\u002Ffiles\u002Fpicture_1.png?v=1683702749","shopify_category_page_url":"\u002Fpages\u002Fcategories?cat=Women&subCat=Topwear","object_type":"shop-women","isCategoryRedirection":true,"category_page_url":"categories?category=women","icon_image":"Circle-icon-women--1--1684748736.png","page":true,"image":"","navigateToHome":"categories","right_imgs":[{"src":"","url":""}],"children":[{"title":"Topwear","url":"top-wear-for-women","children":[{"title":"T-Shirts","image":"bewakoof-men-top-wear-icon-3-1622010306.png","url":"women-t-shirts"},{"title":"Printed T-Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FBottom-nav-7-1646932671.jpg","url":"women-printed-t-shirts"},{"title":"Boyfriend T-Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-420X420-1-1646982384.jpg","url":"women-boyfriend-tshirts"},{"title":"Oversized T-Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-420X420-1-1646982384.jpg","url":"oversized-t-shirts-for-women"},{"title":"Classic Fit T-Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-420X420-1-1646982384.jpg","url":"classic-t-shirt-for-women"},{"title":"Half Sleeves T-Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FBottom-nav-6-1646932671.jpg","url":"half-sleeve-t-shirts-for-women"},{"title":"Plain T-Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FBottom-nav-2-1646932669.jpg","url":"women-plain-t-shirts"},{"title":"Full Sleeve T-Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-420X420-1-1646982384.jpg","url":"women-full-sleeves-t-shirts"},{"title":"Fashion Tops","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FBottom-Nav-Fashion-Tops-Women-1638441042.jpg","url":"fashion-tops"},{"title":"Co-ord Sets","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fwomen-s-green-black-color-block-co-ord-sets-515343-1656664006-1-1660360778.jpg","url":"women-co-ord-sets"},{"title":"Dresses","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FBottom-nav-8-1646932672.jpg","url":"women-dresses"},{"title":"Shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FPrinted-Shirt-1634896295.jpg","url":"women-shirts"},{"title":"Plus Size Topwear","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-Top-wear-420X420-1638865328.jpg","url":"plus-size-store-for-women?category=t-shirt_sweatshirt_hoodies_jacket_kurta_co-ordinates_top"},{"title":"Customize T-shirts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FByou-bottom-nav-again-1642148933.jpg","url":"custom-tshirts?gender=women"},{"title":"Sweatshirts & Hoodies","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FSweatshirt-1-1634895368.jpg","url":"women-hoodies-sweatshirts"},{"title":"Jackets","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fjacket-fatima-1644323907.jpg","url":"women-jackets"},{"title":"Sweaters","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FSweatshirt-1634895368.jpg","url":"women-sweaters"},{"title":"All Topwear","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FView-All-1604050368.png","url":"top-wear-for-women"}]},{"title":"Bottomwear","url":"bottom-wear-for-women","children":[{"title":"Joggers","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fbottom-nav-bootm-wear--0005-joggers-women-1634894810.jpg","url":"women-joggers-sweatpants"},{"title":"Jeans","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fbottom-nav-bootm-wear--0007-jeans-women-1634894811.jpg","url":"womens-denims"},{"title":"Baggy Jeans","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fbottom-nav-bootm-wear--0007-jeans-women-1634894811.jpg","url":"baggy-jeans-for-women"},{"title":"Parachute pants","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FNewBottomNav-Parachute-Pants-1694077402.jpg","url":"parachute-pants-for-women"},{"title":"Cargos","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Funnamed--2--1694175213.jpg","url":"cargos-for-women"},{"title":"Cargo Pants","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Funnamed--2--1694175213.jpg","url":"cargo-pants-for-women"},{"title":"Co-ord Sets","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fwomen-s-green-black-color-block-co-ord-sets-515343-1656664006-1-1660360778.jpg","url":"women-co-ord-sets"},{"title":"Pajamas","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FBottom-nav-5-1646932670.jpg","url":"women-pajamas"},{"title":"Trousers & Pants","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FBottom-Nav-Trousers-Women-1638535094.jpg","url":"women-pants"},{"title":"Shorts","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FBottom-nav-4-1646932670.jpg","url":"women-shorts"},{"title":"Plus Size Bottomwear","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FCategory-Grid-Bottom-wear-420X420-1638865324.jpg","url":"plus-size-store-for-women?category=casual__pants_joggers_jeans_boxer__shorts_trousers_pyjama_track__pant"},{"title":"All Bottomwear","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FView-All-1604050368.png","url":"bottom-wear-for-women"}]},{"title":"Top Sellers","url":"top-wear-for-women","children":[{"title":"Top 30 T-Shirts","image":"bewakoof-men-top-wear-icon-3-1622010306.png","url":"topselling-womens-tshirt"},{"title":"Top 20 Bottoms","image":"bewakoof-men-top-wear-icon-3-1622010306.png","url":"topselling-womens-bottomwear"}]},{"title":"Winterwear","url":"winter-wear-for-women","children":[{"title":"Jackets","image":"Bewakoof-Homepage-TopWear-Women-Icon-Hoodies-13-1622014271.png","url":"women-jackets"},{"title":"Sweatshirts & Hoodies","image":"Bewakoof-Homepage-TopWear-Women-Icon-Hoodies-12-1622014270.png","url":"women-hoodies-sweatshirts"},{"title":"Sweaters","image":"Bewakoof-Homepage-TopWear-Women-Icon-Sweaters-14-1622014276.png","url":"women-sweaters"},{"title":"Joggers","image":"Jogger-1622015072.png","url":"women-joggers-sweatpants"},{"title":"Plus Size","image":"Category-Grid-Sweatshirts-420X420-1638865326.jpg","url":"plus-size-store-for-women?category=hoodies_jacket_sweatshirt"}]},{"title":"Footwear","url":"women-footwear","children":[{"title":"Casual Shoes","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fnew-bottom-nav-Clogs-1667481692-1669887094.jpg","url":"casual-shoes-for-women"},{"title":"Sliders","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Ftod-refresh-accessories-bottom-navigation-0006-slider-1634892551.jpg","url":"women-sliders"},{"title":"Sneakers","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fnew-bottom-nav-Clogs-1667481692-1669887094.jpg","url":"women-sneakers"}]},{"title":"Accessories","children":[{"title":"Mobile Covers","image":"10-12-2021-Bottom-nav-designer-back-covers-1639122391.jpg","url":"mobile-covers-india"},{"title":"Bags & Backpacks","image":"tod-refresh-accessories-bottom-navigation-0004-Small-Backpack-1635838450.jpg","url":"bags"},{"title":"Sling bags","url":"sling-and-tote-bags","is_new":"NEW"},{"title":"Sunglasses","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fbottom-navigation-cap--1637934867.jpg","url":"sunglasses?gender=women","is_new":"NEW"},{"title":"Caps","image":"bottom-navigation-cap--1637934867.jpg","url":"caps"},{"title":"Mobile Card-holder","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002Fbottom-navigation-cap--1637934867.jpg","url":"mobile-wallet","is_new":"NEW"}]},{"title":"Plus Size","url":"plus-size-store-for-women","children":[{"title":"Topwear","image":"Category-Grid-Top-wear-420X420-1638865328.jpg","url":"plus-size-store-for-women?category=t-shirt_sweatshirt_hoodies_jacket_kurta_co-ordinates_t-shirt__%26__pyjama__set_top"},{"title":"Sweatshirts & hoodies","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FNewBottomNav-2-1700128926.jpg","url":"plus-size-store-for-women?category=hoodies_sweatshirt"},{"title":"Jackets","image":"https:\u002F\u002Fimages.bewakoof.com\u002Fuploads\u002Fgrid\u002Fapp\u002FNewBottomNav-1-1700128926.jpg","url":"plus-size-store-for-women?category=jacket"},{"title":"Bottomwear","image":"Category-Grid-Bottom-wear-420X420-1638865324.jpg","url":"plus-size-store-for-women?category=casual__pants_joggers_jeans_boxer__shorts_trousers_pyjama_track__pant"},{"title":"Dresses","image":"Category-Grid-Plus-Size-Dresses-420X420-1643692240.jpg","url":"plus-size-store-for-women?category=dress"}]},{"title":"Loungewear","url":"women-nightwear","children":[{"title":"Shorts","image":"bottom-nav-bootm-wear--0000-shorts-women-1634894809.jpg","url":"women-shorts"},{"title":"Pajamas","image":"bottom-nav-bootm-wear--0000-shorts-women-1634894809.jpg","url":"women-pajamas"}]}],"specials":[{"title":"SPECIALS","children":[{"title":"Be-legendary","image":"bewakoof12-circleNav-168x168-legendary-1723547609.png","url":"campaign\u002FLeg-endary-for-women"},{"title":"Savings Zone","image":"Circle-Nav-168x168--7--1719507523.png","url":"clearance-store?gender=women"},{"title":"Customise with Google Ai","image":"Circle-Nav-168x168-googleai-1718944672.png","url":"ai-canvas"},{"title":"Bewakoof Air: New Summer Drip","image":"Circle-Nav-168x168-AIR-1715355117.png","url":"bewakoof-air?gender=women"},{"title":"Bwkf X One piece","image":"Circle-Nav-168x168-One-Piece-1710143641.png","url":"one-piece-merchandise?gender=women"},{"title":"Bwkf X FRIENDS","image":"Circle-Nav-168x168-COTM-1704012730.png","url":"friends-merchandise?gender=women"},{"title":"Bwkf X Rashmika Mandanna","image":"Circle-Nab-336x336-RM--1--1721816722.png","url":"campaign\u002FRashmika_Mandanna"},{"title":"Bwkf X Harry potter","image":"MayCOTM-office-168x168-HarryPotter-1701350799.png","url":"harry-potter-merchandise?gender=unisex_women"},{"title":"Bwkf X Mickey Mouse","image":"Circle-cotm--168x168-1698769567.png","url":"mickey-mouse-merchandise?gender=unisex_women"},{"title":"Bewakoof Heavy duty","image":"circle-Icon-HD-168x168-1698328094.png","url":"bewakoof-heavy-duty?gender=women"},{"title":"Bwkf x Naruto","image":"circle-Naruto-168--3--1697690303.png","url":"naruto-merchandise?gender=women_unisex"},{"title":"Bwkf x Minions","image":"Circle-minion-168x168--1--1695406784.png","url":"minions-merchandise?gender=women"},{"title":"Bwkf x Rick & Morty","image":"Circle-rick-morty-nav-168x168-1694693461.png","url":"rick-and-morty-merchandise?gender=women_unisex"},{"title":"Bwkf x TNMT","image":"circle-icon-tmnt--3--1694693460.png","url":"teenage-mutant-ninja-turtles-merchandise?gender=women_unisex"},{"title":"Bwkf x Garfield","image":"Circle-icon-garfield-1682010304.png","url":"garfield-merchandise?gender=unisex_women"},{"title":"The Official Merch Store","image":"merch-store-icon-1650380159.png","url":"campaign\u002Fofficial-collaborations"},{"title":"Vote for Designs","image":"1-1663225167.png","url":"vote"},{"title":"Customize T-shirts","image":"me-shirt-icon--1656050998.png","url":"custom-tshirts?gender=women_unisex"},{"title":"Plus Size Store","image":"bewakoof-icon-specials-7-1622012421.png","url":"plus-size-store-for-women"}]}]},"Savings Zone":{"title":"Savings Zone","object_type":"Savings Zone","url":"clearance-store","icon_image":"Circle-Nav-168x168--7--1719507523.png","iswebview":true,"exclude":"desktop","shopify_url":"\u002Fcollections\u002Fcustom-tshirts","shopify_img":"https:\u002F\u002Ftmrw-bk-store.myshopify.com\u002Fcdn\u002Fshop\u002Ffiles\u002Fpicture_11.png?v=1683794605","login_required":false,"appNavigation":{"screen":"common_webview"}},"custom-tshirts":{"title":"Customise your own T-Shirt","object_type":"custom-tshirts","url":"custom-tshirts","icon_image":"Circle-icon-customisation--1--1684748736.png","iswebview":true,"exclude":"desktop","shopify_url":"\u002Fcollections\u002Fcustom-tshirts","shopify_img":"https:\u002F\u002Ftmrw-bk-store.myshopify.com\u002Fcdn\u002Fshop\u002Ffiles\u002Fpicture_11.png?v=1683794605","login_required":false,"appNavigation":{"screen":"common_webview"}},"mobile covers":{"title":"Mobile Covers","object_type":"mobile covers","exclude":"ios,android,mobile_site","is_mobile_cover":true,"image":"landing-page-mobile-box-1558174497.jpg","shopify_url":"\u002F","shopify_img":"https:\u002F\u002Ftmrw-bk-store.myshopify.com\u002Fcdn\u002Fshop\u002Fcollections\u002Fimage__3_4.png?v=1683881120","right_imgs":[{"src":"bewakoof-online-fashion-COTM-mobile-cover-navigation-box-desktop-1612275399.jpg","url":"mobile-covers-india"}],"url":"mobile-covers-india","children":[{"title":"POPULAR","children":[{"title":"Nothing","url":"mobile-covers-india\u002Fnothing-cases-back-covers","page":true,"children":[{"title":"Nothing Phone 1","url":"nothing-phone-1-back-covers-cases","params":{"qf":false}}]},{"title":"Xiaomi","url":"mobile-covers-india\u002Fxiaomi-cases-back-covers","page":true,"children":[{"title":"Xiaomi Redmi Note 12 Pro Plus 5G","url":"xiaomi-redmi-note-12-pro-plus-5g-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Redmi Note 10 Pro 5G","url":"xiaomi-redmi-note-12-pro-5g-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Redmi Note 12 5G","url":"xiaomi-redmi-note-12-5g-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Redmi Note 11 Pro 5G","url":"redmi-note-11-pro-5g-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Redmi Note 11t 5G","url":"xiaomi-redmi-note-11t-5g-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Redmi 10 Prime","url":"xiaomi-redmi-10-prime-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Redmi Note 10 T","url":"xiaomi-redmi-note-10t-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Redmi 9 Power 3D","url":"xiaomi-redmi-9-power-3d-mobile-covers","params":{"qf":false}},{"title":"Xiaomi Redmi Note 10 Pro","url":"xiaomi-redmi-note-10-pro-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Redmi Note 10 Pro Max","url":"xiaomi-redmi-note-10-pro-max-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Redmi 9","url":"xiaomi-redmi-9-back-covers-cases","params":{"qf":false}},{"title":"Redmi 9 Power","url":"xiaomi-redmi-9-power-back-cover-cases","params":{"qf":false}},{"title":"Redmi 9A","url":"xiaomi-redmi-9a-back-covers-cases","params":{"qf":false}},{"title":"Redmi Note 9 Pro Max","url":"xiaomi-redmi-note-9-pro-max-back-covers-cases","params":{"qf":false}},{"title":"Redmi Note 9 Pro","url":"xiaomi-redmi-note-9-pro-back-covers-cases ","params":{"qf":false}},{"title":"Redmi Note 8 Pro","url":"xiaomi-redmi-note-8-pro-back-covers-cases","params":{"qf":false}},{"title":"Redmi Note 8","url":"xiaomi-redmi-note-8-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Redmi K20 Pro","url":"xiaomi-redmi-k-20-pro-back-covers-cases","params":{"qf":false}},{"title":"Redmi Note 6 Pro","url":"xiaomi-redmi-note-6-pro-back-covers-cases","params":{"qf":false}},{"title":"Mi 12 Pro 5G","url":"xiaomi-mi-12-pro-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Mi 10i 5G","url":"xiaomi-mi-10i-5g-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Mi 11 Ultra","url":"mi-11-ultra-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Mi 11 Lite NE 5G","url":"mi-11-lite-ne-5g-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Mi 11i","url":"xiaomi-mi-11i-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Mi 11i HyperCharge","url":"mi-11i-hypercharge-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Mi 11T Pro 5G","url":"xiaomi-mi-11t-pro-5g-back-covers-cases","params":{"qf":false}},{"title":"Redmi Note 7 Pro","url":"xiaomi-redmi-note-7-pro-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Redmi Note 5 Pro","url":"xiaomi-redmi-note-5-pro-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Mi 11X","url":"xiaomi-mi-11x-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Mi 10T","url":"xiaomi-mi-10t-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Poco C3","url":"xiaomi-poco-c3-back-covers-cases","params":{"qf":false}},{"title":"Redmi Note 10","url":"xiaomi-redmi-note-10-back-covers-cases","params":{"qf":false}},{"title":"Mi Note 10 pro","url":"xiaomi-mi-note-10-pro-back-covers-cases","params":{"qf":false}}]},{"title":"Google Pixel","url":"google-pixel-6a-back-covers-cases","page":true,"children":[{"title":"Google Pixel 6A","url":"google-pixel-6a-back-covers-cases","params":{"qf":false}}]},{"title":"Oneplus","url":"mobile-covers-india\u002Foneplus-cases-back-covers","page":true,"children":[{"title":"OnePlus 12R 5G","url":"one-plus-12r-mobile-covers","params":{"qf":false}},{"title":"OnePlus 12","url":"oneplus-12-back-covers-cases","params":{"qf":false}},{"title":"OnePlus Nord Ce4 5G","url":"oneplus-nord-ce4-5g-mobile-covers-cases","params":{"qf":false}},{"title":"OnePlus Nord CE 3 5G","url":"oneplus-nord-ce-3-5g-back-covers-cases","params":{"qf":false}},{"title":"OnePlus Nord 3 5G","url":"oneplus-nord-3-5g-back-covers-cases","params":{"qf":false}},{"title":"OnePlus Nord CE 3 Lite 5G","url":"oneplus-nord-ce-3-lite-5g-back-covers-cases","params":{"qf":false}},{"title":"OnePlus 11R 5G","url":"oneplus-11r-5g-back-covers-cases","params":{"qf":false}},{"title":"OnePlus Nord N20 SE","url":"oneplus-nord-n20-se-back-covers-cases","params":{"qf":false}},{"title":"OnePlus Nord 2T 5G","url":"oneplus-nord-2t-5g-back-covers-cases","params":{"qf":false}},{"title":"OnePlus Nord CE2 Lite 5G","url":"oneplus-nord-ce-2-lite-5g-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"OnePlus Nord2 5G","url":"oneplus-nord2-5g-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"OnePlus 10 R","url":"oneplus-10r-back-covers-cases","params":{"qf":false}},{"title":"Oneplus Nord N20","url":"one-plus-nord-n20-back-covers-cases","params":{"qf":false}},{"title":"Oneplus Nord CE2 5G","url":"oneplus-nord-ce-2-5g-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Oneplus 10 Pro","url":"oneplus-10-pro-back-covers-cases","params":{"qf":false}},{"title":"Oneplus Nord CE 5G","url":"oneplus-nord-ce-5g-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Oneplus Nord 2","url":"oneplus-nord-2-back-covers-cases","params":{"qf":false}},{"title":"OnePlus 9 Glass Covers","url":"oneplus-9-glass-back-covers-cases","params":{"qf":false}},{"title":"OnePlus 9R","url":"oneplus-9r-back-covers-cases","params":{"qf":false}},{"title":"OnePlus 9 Pro","url":"oneplus-9-pro-back-covers-cases","params":{"qf":false}},{"title":"OnePlus 9","url":"oneplus-9-back-covers-cases","params":{"qf":false}},{"title":"OnePlus 8T","url":"oneplus-8t-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"OnePlus 8 Pro","url":"oneplus-8-pro-back-covers-cases","params":{"qf":false}},{"title":"Oneplus Nord","url":"oneplus-nord-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"OnePlus 8","url":"oneplus-8-back-covers-cases","params":{"qf":false}},{"title":"OnePlus 7T Pro","url":"oneplus-7t-pro-back-covers-cases","params":{"qf":false}},{"title":"Oneplus 7T","url":"oneplus-7t-back-covers-cases","params":{"qf":false}},{"title":"Oneplus 7","url":"oneplus-7-back-covers-cases","params":{"qf":false}},{"title":"Oneplus 6T","url":"oneplus-6t-back-covers-cases","params":{"qf":false}},{"title":"Oneplus 6","url":"oneplus-6-back-covers-cases","params":{"qf":false}},{"title":"OnePlus Nord CE 2 Lite","url":"oneplus-nord-ce-2-lite-5g-back-covers-cases","params":{"qf":false}},{"title":"OnePlus Nord CE 3 Lite","url":"oneplus-nord-ce-3-lite-5g-back-covers-cases","params":{"qf":false}},{"title":"Oneplus Nord CE","url":"oneplus-nord-ce-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"OnePlus 7 Pro","url":"oneplus-7-pro-back-covers-cases","params":{"qf":false}}]},{"title":"Apple","url":"mobile-covers-india\u002Fapple-cases-back-covers","page":true,"children":[{"title":"iPhone 15 Pro max","url":"iphone-15-pro-max-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone 15 Pro","url":"iphone-15-pro-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone 15 Plus","url":"iphone-15-plus-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone 15","url":"iphone-15-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone 14 Pro Max","url":"iphone-14-pro-max-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone 14 Pro","url":"iphone-14-pro-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone 14 Plus","url":"iphone-14-plus-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone 14","url":"iphone-14-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone SE 2022","url":"iphone-se-2022-back-covers-cases","params":{"qf":false}},{"title":"iPhone 13 Pro Max","url":"iphone-13-pro-max-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone 13 Pro","url":"iphone-13-pro-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone 13 Mini","url":"iphone-13-mini-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone 13","url":"iphone-13-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"iPhone 12 Pro","url":"iphone-12-pro-back-covers-cases","params":{"qf":false}},{"title":"iPhone 12 Pro Max","url":"iphone-12-pro-max-back-covers-cases","params":{"qf":false}},{"title":"iPhone 12 Mini","url":"iphone-12-mini-back-covers-cases","params":{"qf":false}},{"title":"iPhone 12","url":"iphone-12-back-covers-cases","params":{"qf":false}},{"title":"iPhone SE 2020","url":"iphone-se-2020-back-covers-cases","params":{"qf":false}},{"title":"iPhone 11 Pro Max","url":"iphone-11-pro-max-back-covers-cases","params":{"qf":false}},{"title":"iPhone 11 Pro","url":"iphone-11-pro-back-covers-cases","params":{"qf":false}},{"title":"iPhone 11","url":"iphone-11-back-covers-cases","params":{"qf":false}},{"title":"iPhone XS Max","url":"iphone-xs-max-back-covers-cases","params":{"qf":false}},{"title":"iPhone XS","url":"iphone-xs-back-covers-cases","params":{"qf":false}},{"title":"iPhone XR","url":"iphone-xr-back-covers-cases","params":{"qf":false}}]},{"title":"Samsung","url":"mobile-covers-india\u002Fsamsung-cases-back-covers","page":true,"children":[{"title":"Samsung Galaxy A55 5G Covers","url":"samsung-galaxy-a55-5g-mobile-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A35 5G Covers","url":"samsung-galaxy-a35-5g-mobile-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S24 Ultra 5G Mobile Covers","url":"samsung-galaxy-s24-ultra-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S24 5G Mobile Covers","url":"samsung-galaxy-s24-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy Z Fold4 5G Mobile Covers","url":"samsung-galaxy-z-fold4-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy Z Flip4 5G Mobile Covers","url":"samsung-galaxy-z-flip4-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy M14 5G","url":"samsung-galaxy-m14-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S23 Ultra 5G","url":"samsung-galaxy-s23-ultra-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S23 Plus 5G","url":"samsung-galaxy-s23-plus-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S23 5G","url":"samsung-galaxy-s23-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A54 5G","url":"samsung-galaxy-a54-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A34 5G","url":"samsung-galaxy-a34-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy M13","url":"samsung-galaxy-m13-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy Note 20 Ultra","url":"samsung-galaxy-note-20-ultra-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy M33 5G","url":"samsung-galaxy-m33-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A33 5G","url":"samsung-galaxy-a33-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A23","url":"samsung-galaxy-a23-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A73 5G","url":"samsung-galaxy-a73-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A13","url":"samsung-galaxy-a13-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy M53 5G","url":"samsung-galaxy-m53-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy M31S","url":"samsung-galaxy-m31s-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Samsung Galaxy A53 5G","url":"samsung-galaxy-a53-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S22 Ultra 5G","url":"samsung-galaxy-s22-ultra-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S22 Plus 5G","url":"samsung-galaxy-s22-plus-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy M52 5G","url":"samsung-galaxy-m52-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S21 fe 5G","url":"samsung-galaxy-s21-fe-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S21 Plus","url":"samsung-galaxy-s21-plus-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S21","url":"samsung-galaxy-s21-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy Note 20","url":"samsung-galaxy-note-20-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S22 5G","url":"samsung-galaxy-s22-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A51 3D","url":"samsung-galaxy-a51-3d-mobile-covers","params":{"qf":false}},{"title":"Samsung Galaxy S20","url":"samsung-galaxy-s20-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S10 Plus","url":"samsung-galaxy-s10-plus-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S10 Lite","url":"samsung-galaxy-s10-lite-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S10","url":"samsung-galaxy-s10-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A52s","url":"samsung-galaxy-a52s-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A50","url":"samsung-galaxy-a50-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A22 5G","url":"samsung-galaxy-a22-5g-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A22","url":"samsung-galaxy-a22-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A32","url":"samsung-galaxy-a32-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A52","url":"samsung-galaxy-a52-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A12","url":"samsung-galaxy-a12-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy F62","url":"samsung-galaxy-f62-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy S20 FE","url":"samsung-galaxy-s20-fe-back-cover-cases","params":{"qf":false}},{"title":"Samsung Galaxy Note 10 lite","url":"samsung-galaxy-note-10-lite-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy M51","url":"samsung-galaxy-m51-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy A51","url":"samsung-galaxy-a51-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Samsung Galaxy A30","url":"samsung-galaxy-a30-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy M31","url":"samsung-galaxy-m31-back-covers-cases","params":{"qf":false}},{"title":"Samsung Galaxy M30s","url":"samsung-galaxy-m30s-back-covers-cases","params":{"qf":false}},{"title":"Samsung A50","url":"samsung-a50-back-covers-cases","params":{"qf":false}}]},{"title":"Realme","url":"mobile-covers-india\u002Frealme-cases-back-covers","page":true,"children":[{"title":"Realme 12 Pro+ 5G","url":"realme-12-pro-plus-5g-mobile-covers-cases","params":{"qf":false}},{"title":"Realme 12 Pro 5G","url":"realme-12-pro-5g-mobile-covers-cases","params":{"qf":false}},{"title":"Realme 11 Pro+ 5G","url":"realme-11-pro-plus-5g-back-covers-cases","params":{"qf":false}},{"title":"Realme 11 Pro 5G","url":"realme-11-pro-5g-back-covers-cases","params":{"qf":false}},{"title":"Realme 10 Pro+ 5G","url":"realme-10-pro-plus-5g-back-covers-cases","params":{"qf":false}},{"title":"Realme 10 Pro 5G","url":"realme-10-pro-5g-back-covers-cases","params":{"qf":false}},{"title":"Realme 8 5G","url":"realme-8-5g-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Realme 9 Pro 5G","url":"realme-9-pro-5g-back-covers-cases","params":{"qf":false}},{"title":"Realme C11","url":"realme-c11-back-covers-cases","params":{"qf":false}},{"title":"Realme 8","url":"realme-8-back-covers-cases","params":{"qf":false}},{"title":"Realme 7 Pro","url":"realme-7-pro-back-covers-cases","params":{"qf":false}},{"title":"Realme 3 Pro","url":"realme-3-pro-back-covers-cases","params":{"qf":false}}]},{"title":"Vivo","url":"mobile-covers-india\u002Fvivo-cases-back-covers","page":true,"children":[{"title":"Vivo V30 Pro 5G Covers","url":"vivo-v30-pro-5g-mobile-covers-cases","params":{"qf":false}},{"title":"Vivo V30 5G Covers","url":"vivo-v30-5g-mobile-covers-cases","params":{"qf":false}},{"title":"Vivo T3X 5G Covers","url":"vivo-t3x-5g-mobile-covers-cases","params":{"qf":false}},{"title":"Vivo Y100 Mobile Covers","url":"vivo-y100-back-covers-cases","params":{"qf":false}},{"title":"Vivo V27 Pro 5G","url":"vivo-v27-pro-5g-back-covers-cases","params":{"qf":false}},{"title":"Vivo V27 5G Mobile Covers","url":"vivo-v27-5g-back-covers-cases","params":{"qf":false}},{"title":"Vivo V25 Pro","url":"vivo-v25-pro-back-covers-cases","params":{"qf":false}},{"title":"Vivo IQOO9 5G","url":"vivo-iqoo9-5g-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Vivo V23e 5G Mobile Covers","url":"vivo-v23e-5g-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Vivo Y51 2020","url":"vivo-y51-2020-back-covers-cases","params":{"qf":false}},{"title":"Vivo V23 Pro 5G","url":"vivo-v23-pro-5g-back-covers-cases","params":{"qf":false}},{"title":"Vivo V23 Pro 5G","url":"vivo-v23-pro-5g-back-covers-cases","params":{"qf":false}},{"title":"Vivo Y12s Mobile Covers","url":"vivo-y12-s-back-covers-cases","params":{"qf":false}},{"title":"Vivo Y73","url":"vivo-y73-back-covers-cases","params":{"qf":false}},{"title":"Vivo X60","url":"vivo-x60-back-covers-cases","params":{"qf":false}},{"title":"Vivo Y20 Mobile Covers","url":"vivo-y20-back-covers-cases","params":{"qf":false}},{"title":"Vivo V19","url":"vivo-v19-back-covers-cases","params":{"qf":false}},{"title":"Vivo S1","url":"vivo-s1-back-covers-cases","params":{"qf":false}},{"title":"Vivo V23e 5G","url":"vivo-v23e-5g-back-covers-cases","params":{"qf":false}}]},{"title":"Oppo","url":"mobile-covers-india\u002Foppo-cases-back-covers","page":true,"children":[{"title":"Oppo F25 Pro 5G Covers","url":"oppo-f25-pro-5g-mobile-covers-cases","params":{"qf":false}},{"title":"Oppo Reno11 5G Covers","url":"oppo-reno11-5g-mobile-covers-cases","params":{"qf":false}},{"title":"Oppo F21s Pro","url":"oppo-f21s-pro-back-covers-cases","params":{"qf":false}},{"title":"Oppo F21s Pro 5G","url":"oppo-f21s-pro-5g-back-covers-cases","params":{"qf":false}},{"title":"Oppo F19 Pro Plus","url":"oppo-f19-pro-back-covers-cases","params":{"qf":false}},{"title":"Oppo F19 Pro","url":"oppo-f19-pro-back-covers-cases","params":{"qf":false}},{"title":"Oppo Reno6 5G","url":"oppo-reno6-5g-back-covers-cases","params":{"qf":false}},{"title":"Oppo Reno7 5G","url":"oppo-reno7-5g-back-covers-cases","params":{"qf":false}},{"title":"Oppo Reno7 Pro 5G","url":"oppo-reno7-pro-5g-back-covers-cases","params":{"qf":false}},{"title":"Oppo A57 4G","url":"oppo-a57-4g-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Oppo A54","url":"oppo-a54-back-covers-cases","params":{"qf":false}},{"title":"Oppo A53","url":"oppo-a53-back-covers-cases","params":{"qf":false}},{"title":"Oppo A5 2020","url":"oppo-a5-2020-back-covers-cases","params":{"qf":false}},{"title":"Oppo A5","url":"oppo-a5-2020-back-covers-cases","params":{"qf":false}},{"title":"Oppo A3s","url":"oppo-a3s-back-covers-cases","params":{"qf":false}},{"title":"Oppo Reno8 5G","url":"oppo-reno8-5g-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Oppo F11 Pro","url":"oppo-f11-pro-back-covers-cases","params":{"qf":false}}]},{"title":"Moto","url":"mobile-covers-india\u002Fmoto-cases-back-covers","page":true,"children":[{"title":"Moto G7 Power","url":"moto-g7-power-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Moto G7","url":"moto-g7-back-covers-cases","is_new":"NEW","params":{"qf":false}}]},{"title":"Poco","url":"mobile-covers-india\u002Fpoco-cases-back-covers","page":true,"children":[{"title":"Poco X6 Pro 5G Covers","url":"poco-x6-pro-5g-mobile-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Poco X6 5G Covers","url":"poco-x6-5g-mobile-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Poco F5 5G Mobile Covers","url":"poco-f5-5g-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Poco X5 Pro 5G Mobile Covers","url":"poco-x5-pro-5g-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Poco M4 5G Mobile Covers","url":"poco-m4-5g-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Poco M5 Mobile Covers","url":"poco-m5-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Poco X4 Pro 5G Mobile Covers","url":"poco-x4-pro-5g-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Xiaomi POCO M2 reloaded Mobile Covers","url":"xiaomi-poco-m2-reloaded-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Xiaomi Poco M4 Pro 5G Mobile Covers","url":"xiaomi-poco-m4-pro-5g-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Xiaomi Poco X3 Pro Mobile Covers","url":"xiaomi-poco-x3-pro-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Xiaomi Poco F3 GT Mobile Covers","url":"xiaomi-poco-f3-gt-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Poco C3 Mobile Covers","url":"xiaomi-poco-c3-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Poco X3 Mobile Covers","url":"xiaomi-poco-x3-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Xiaomi Poco M2 Pro Mobile Covers","url":"xiaomi-poco-m2-pro-back-covers-cases","is_new":"NEW","params":{"qf":false}},{"title":"Poco M5","url":"poco-m5-back-covers-cases","params":{"qf":false}},{"title":"Xiaomi Poco M2 Pro","url":"xiaomi-poco-m2-pro-back-covers-cases","params":{"qf":false}},{"title":"Poco X3 Pro","url":"xiaomi-poco-x3-pro-back-covers-cases","params":{"qf":false}},{"title":"Poco M2 Reloaded","url":"xiaomi-poco-m2-reloaded-back-covers-cases","params":{"qf":false}},{"title":"Poco X3","url":"xiaomi-poco-x3-back-covers-cases","params":{"qf":false}},{"title":"Poco F3 GT","url":"xiaomi-poco-f3-gt-back-covers-cases","params":{"qf":false}}]}]}]},"header_objects":[{"displayName":"MEN","url":"men-clothing","name":"shop-men"},{"displayName":"WOMEN","url":"women-clothing","name":"shop-women"},{"displayName":"MOBILE COVERS","name":"mobile covers","url":"mobile-covers-india"}]}},"bfun":{},"filters":{"filtersObj":{"filters":{"gender":["men","women","unisex"],"category":["t-shirt","joggers","pyjama","jeans","sweater","dress","top","casual pants","vest","backpack","trousers","boxer","co-ordinates","shorts","jacket","shirt","sweatshirt","track pant","caps","hoodies","sliders","sling bag","fanny bag"],"sizes":["XS","S","M","L","XL","2XL","3XL","4XL","5XL","6XL","26","28","30","32","34","36","38","UK 6","UK 7","UK 8","UK 9","UK 10","UK 11"],"manufacturer_brand":["bewakoof®","bewakoof air® 1.0","bewakoof heavy duty® 1.0","style stone"],"color":["black","white","blue","green","red","brown","grey","purple","pink","beige","orange","yellow","maroon"],"design":["graphic print","solid","aop","typography","printed","color block","camouflage","striped","self design","tie & dye","checked","textured"],"fit":["oversized fit","regular fit","boyfriend fit","super loose fit","slim fit","straight fit","wide leg","unisex fit","relaxed fit","boxy fit"],"sleeve":["half sleeve","full sleeve","sleeveless"],"neck":["round neck","hooded","resort collar","polo","stand collar","collar","shoulder straps","v-neck","henley neck","spread collar","square neck"],"type":["t-shirt","cargo","joggers","pyjama","jeans","short top","vest","sweater","shorts","t-shirt dress","boxer","jacket","shirt","sweatshirt","dress","trackpants","flat knits","hoodies","parachute pants","sliders","t-shirt & shorts set","trousers","caps","polo","t-shirt & jogger set","baseball cap","casual pants","co-ordinates","snapback cap","top & jogger set"],"ratings":[4.5,4,3.5,3,2.5,1]},"color_hex_code":{"black":"#000000","blue":"#0000ff","brown":"#663300","green":"#008000","grey":"#808080","orange":"#ffa500","pink":"#ff66ff","purple":"#800080","red":"#ff0000","white":"#ffffff","yellow":"#ffff00","maroon":"#622f40","beige":"#F0E2A8"},"tribe_filters":{"tribe_tags":["buy 2 for 949","buy 3 for 949"],"member_discount":["20","30","40","50","60","70","80"]},"non_tribe_filters":{"product_discount":["10","20","30","40","50","60","70"]},"filter_name_hash":{"manufacturer_brand":"Brand","tribe_tags":"Offers","b1g1":"Buy 1 Get 1","b2g1":"Buy 2 Get 1","product_discount":"Discount","member_discount":"Discount"},"open_filters":{"experiment_id":"open_filters;v1","filters":[{"filter":[{"top_rated":null}],"name":"Top Rated","type":"custom"},{"filter":[{"category":"t-shirt"}],"name":"T-Shirts","type":"direct"},{"filter":[{"gender":"men"}],"name":"Men","type":"direct"},{"filter":[{"sleeve":"half sleeve"}],"name":"Half Sleeves","type":"direct"},{"filter":[{"design":"graphic print"}],"name":"Graphics","type":"direct"},{"filter":[{"gender":"women"}],"name":"Women","type":"direct"},{"filter":[{"fit":"regular fit"}],"name":"Regular Fit","type":"direct"},{"filter":[{"sleeve":"full sleeve"}],"name":"Long Sleeves","type":"direct"},{"filter":[{"design":"solid"}],"name":"Solids","type":"direct"},{"filter":[{"fit":"boyfriend fit"}],"name":"Boyfriend","type":"direct"},{"filter":[{"sizes":null}],"name":"Size","type":"hybrid"},{"filter":[{"color":null}],"name":"Color","type":"hybrid"}]}}},"urls":{"showLoader":true,"showMobileFilterSort":true,"productGridObj":{"products":[{"id":609631,"all_offer_price":1099,"description":"","category":"T-Shirt","color":["pink"],"design":"Graphic Print","display_image":"women-s-pink-living-in-paradise-graphic-printed-boyfriend-t-shirt-609631-1715257770-1.jpg","flip_image":null,"parent_category":null,"product_sizes":[{"id":1277776,"name":"S","stock_status":true},{"id":1277786,"name":"M","stock_status":true},{"id":1277798,"name":"L","stock_status":true},{"id":1277806,"name":"XL","stock_status":true},{"id":1277815,"name":"2XL","stock_status":true},{"id":1277770,"name":"XS","stock_status":true},{"id":1277827,"name":"3XL","stock_status":false}],"stock_status":true,"member_price":369,"mrp":1099,"name":"Women's Pink Living in Paradise Graphic Printed Boyfriend T-shirt","custom_name":"Women's Pink Living in Paradise Graphic Printed Boyfriend T-shirt","offer_type":"best_seller","price":399,"ptype":"single","subclass":"T-Shirt","url":"womens-pink-living-in-paradise-graphic-print-boyfriend-t-shirt","brand":"","model":"","material":"","status":1,"color_name":null,"tribe_text":"For TriBe Members","tribe_image_url":"","designer":"bewakoof","cat_designer":"","in_stock":1,"gender":"Women","experiment_id":null,"limited_edition":false,"group_count":0,"category_info":{"gender":"Women","subclass":"T-Shirt","id":43,"name":"T-Shirt","url":""},"child_category":{"gender":"Women","subclass":"T-Shirt","id":43,"name":"T-Shirt","url":""},"sp":null,"offer":"14% OFF","coin_statement":null,"tags":[{"type":"fit","label":"BOYFRIEND FIT","bgColor":"rgba(82, 82, 82, 0.8)","textColor":"#fff"}],"tribe_header":null,"upgraded_dimension":true,"pattern":null,"limited_tags":{},"member_discount":"66% OFF","product_discount":"63% OFF","manufacturer_brand":"Bewakoof®","bestseller_tag":{"type":"bestseller","label":"BESTSELLER","bgColor":"#FFE998","textColor":"#292D35"},"fabric_tag":{"type":"fabric","label":"100% COTTON","bgColor":"white","border":"1px solid #737373","textColor":"#737373"},"position":1},{"id":295706,"all_offer_price":999,"description":"","category":"T-Shirt","color":["red"],"design":"Graphic Print","display_image":"women-s-red-inner-peace-graphic-printed-boyfriend-t-shirt-295706-1720009662-1.jpg","flip_image":"inner-peace-boyfriend-t-shirt-bold-red-295706-1656108930-5.jpg","parent_category":null,"product_sizes":[{"id":562590,"name":"S","stock_status":true},{"id":562608,"name":"M","stock_status":true},{"id":562624,"name":"L","stock_status":true},{"id":562642,"name":"XL","stock_status":true},{"id":562651,"name":"2XL","stock_status":true},{"id":562571,"name":"XS","stock_status":true},{"id":562654,"name":"3XL","stock_status":false}],"stock_status":true,"member_price":319,"mrp":999,"name":"Women's Red Inner Peace Graphic Printed Boyfriend T-shirt","custom_name":"Women's Red Inner Peace Graphic Printed Boyfriend T-shirt","offer_type":"best_seller","price":349,"ptype":"single","subclass":"T-Shirt","url":"inner-peace-boyfriend-t-shirts-bold-red-womens-printed-boyfriend-t-shirts","brand":"","model":"","material":"Cotton","status":1,"color_name":null,"tribe_text":"For TriBe Members","tribe_image_url":"","designer":"bewakoof","cat_designer":"","in_stock":1,"gender":"Women","experiment_id":null,"limited_edition":false,"group_count":0,"category_info":{"gender":"Women","subclass":"T-Shirt","id":43,"name":"T-Shirt","url":""},"child_category":{"gender":"Women","subclass":"T-Shirt","id":43,"name":"T-Shirt","url":""},"sp":null,"offer":"14% OFF","coin_statement":null,"tags":[{"type":"fit","label":"BOYFRIEND FIT","bgColor":"rgba(82, 82, 82, 0.8)","textColor":"#fff"}],"tribe_header":null,"upgraded_dimension":true,"pattern":null,"limited_tags":{},"average_rating":4.5,"member_discount":"68% OFF","product_discount":"65% OFF","manufacturer_brand":"Bewakoof®","bestseller_tag":{"type":"bestseller","label":"BESTSELLER","bgColor":"#FFE998","textColor":"#292D35"},"fabric_tag":{"type":"fabric","label":"100% COTTON","bgColor":"white","border":"1px solid #737373","textColor":"#737373"},"position":2},{"id":481838,"all_offer_price":999,"description":"","category":"T-Shirt","color":["red"],"design":"Graphic Print","display_image":"men-s-red-nasa-astronaut-graphic-printed-t-shirt-481838-1715257546-1.jpg","flip_image":null,"parent_category":null,"product_sizes":[{"id":978818,"name":"S","stock_status":true},{"id":978821,"name":"M","stock_status":true},{"id":978824,"name":"L","stock_status":true},{"id":978827,"name":"XL","stock_status":true},{"id":978830,"name":"2XL","stock_status":true},{"id":978833,"name":"3XL","stock_status":true}],"stock_status":true,"member_price":369,"mrp":999,"name":"Men's Red NASA Astronaut Graphic Printed T-shirt","custom_name":"Men's Red NASA Astronaut Graphic Printed T-shirt","offer_type":"best_seller","price":399,"ptype":"single","subclass":"T-Shirt","url":"nasa-astronaut-half-sleeve-t-shirt-men","brand":"","model":"","material":"","status":1,"color_name":null,"tribe_text":"For TriBe Members","tribe_image_url":"","designer":"bewakoof x nasa","cat_designer":"","in_stock":1,"gender":"Men","experiment_id":null,"limited_edition":false,"group_count":0,"category_info":{"gender":"Men","subclass":"T-Shirt","id":43,"name":"T-Shirt","url":""},"child_category":{"gender":"Men","subclass":"T-Shirt","id":43,"name":"T-Shirt","url":""},"sp":null,"offer":"14% OFF","coin_statement":null,"tags":[],"tribe_header":null,"upgraded_dimension":true,"pattern":null,"limited_tags":{},"average_rating":4.3,"member_discount":"63% OFF","product_discount":"60% OFF","manufacturer_brand":"Bewakoof®","bestseller_tag":{"type":"bestseller","label":"BESTSELLER","bgColor":"#FFE998","textColor":"#292D35"},"fabric_tag":{"type":"fabric","label":"100% COTTON","bgColor":"white","border":"1px solid #737373","textColor":"#737373"},"position":3},{"id":621368,"all_offer_price":1099,"description":"","category":"T-Shirt","color":["black"],"design":"Graphic Print","display_image":"women-s-black-certified-troublemakers-graphic-printed-t-shirt-621368-1721651273-1.jpg","flip_image":null,"parent_category":null,"product_sizes":[{"id":1301824,"name":"S","stock_status":true},{"id":1301827,"name":"M","stock_status":true},{"id":1301829,"name":"L","stock_status":true},{"id":1301833,"name":"XL","stock_status":true},{"id":1301835,"name":"2XL","stock_status":true},{"id":1301821,"name":"XS","stock_status":true},{"id":1301838,"name":"3XL","stock_status":false}],"stock_status":true,"member_price":279,"mrp":1099,"name":"Women's Black Certified Troublemakers Graphic Printed T-shirt","custom_name":"Women's Black Certified Troublemakers Graphic Printed T-shirt","offer_type":"best_seller","price":299,"ptype":"single","subclass":"T-Shirt","url":"women-certified-troublemakers-tjl-regular-graphic-printed-t-shirt","brand":"","model":"","material":"","status":1,"color_name":null,"tribe_text":"For TriBe Members","tribe_image_url":"","designer":"bewakoof x tom & jerry","cat_designer":"","in_stock":1,"gender":"Women","experiment_id":null,"limited_edition":false,"group_count":0,"category_info":{"gender":"Women","subclass":"T-Shirt","id":43,"name":"T-Shirt","url":""},"child_category":{"gender":"Women","subclass":"T-Shirt","id":43,"name":"T-Shirt","url":""},"sp":null,"offer":"14% OFF","coin_statement":null,"tags":[],"tribe_header":null,"upgraded_dimension":true,"pattern":null,"limited_tags":{},"average_rating":4.5,"member_discount":"74% OFF","product_discount":"72% OFF","manufacturer_brand":"Bewakoof®","bestseller_tag":{"type":"bestseller","label":"BESTSELLER","bgColor":"#FFE998","textColor":"#292D35"},"fabric_tag":{"type":"fabric","label":"100% COTTON","bgColor":"white","border":"1px solid #737373","textColor":"#737373"},"position":4},{"id":519411,"all_offer_price":999,"description":"","category":"T-Shirt","color":["black"],"design":"Graphic Print","display_image":"men-s-black-house-of-the-dragon-iconic-graphic-printed-t-shirt-519411-1715257899-1.jpg","flip_image":null,"parent_category":null,"product_sizes":[{"id":1054169,"name":"S","stock_status":true},{"id":1054179,"name":"M","stock_status":true},{"id":1054189,"name":"L","stock_status":true},{"id":1054198,"name":"XL","stock_status":true},{"id":1054205,"name":"2XL","stock_status":true},{"id":1054210,"name":"3XL","stock_status":false}],"stock_status":true,"member_price":369,"mrp":999,"name":"Men's Black House Of The Dragon Iconic Graphic Printed T-shirt","custom_name":"Men's Black House Of The Dragon Iconic Graphic Printed T-shirt","offer_type":"best_seller","price":399,"ptype":"single","subclass":"T-Shirt","url":"hod-iconic-half-sleeve-t-shirt","brand":"","model":"","material":"","status":1,"color_name":null,"tribe_text":"For TriBe Members","tribe_image_url":"","designer":"bewakoof x house of the dragon","cat_designer":"","in_stock":1,"gender":"Men","experiment_id":null,"limited_edition":false,"group_count":0,"category_info":{"gender":"Men","subclass":"T-Shirt","id":43,"name":"T-Shirt","url":""},"child_category":{"gender":"Men","subclass":"T-Shirt","id":43,"name":"T-Shirt","url":""},"sp":null,"offer":"14% OFF","coin_statement":null,"tags":[],"tribe_header":null,"upgraded_dimension":true,"pattern":null,"limited_tags":{},"member_discount":"63% OFF","product_discount":"60% OFF","manufacturer_brand":"Bewakoof®","bestseller_tag":{"type":"bestseller","label":"BESTSELLER","bgColor":"#FFE998","textColor":"#292D35"},"fabric_tag":{"type":"fabric","label":"100% COTTON","bgColor":"white","border":"1px solid #737373","textColor":"#737373"},"position":5},{"id":596133,"all_offer_price":1099,"description":"","category":"T-Shirt","color":["black"],"design":"Graphic Print","display_image":"men-s-black-eternity-graphic-printed-t-shirt-596133-1706598517-1.jpg","flip_image":null,"parent_category":null,"product_sizes":[{"id":1241092,"name":"S","stock_status":true},{"id":1241094,"name":"M","stock_status":true},{"id":1241096,"name":"L","stock_status":true},{"id":1241105,"name":"XL","stock_status":true},{"id":1241113,"name":"2XL","stock_status":true},{"id":1241120,"name":"3XL","stock_status":false}],"stock_status":true,"member_price":369,"mrp":1099,"name":"Men's Black Eternity Graphic Printed T-shirt","custom_name":"Men's Black Eternity Graphic Printed T-shirt","offer_type":"best_seller","price":399,"ptype":"single","subclass":"T-Shirt","url":"mens-black-eternity-graphic-printed-t-shirt","brand":"","model":"","material":"","status":1,"color_name":null,"tribe_text":"For TriBe Members","tribe_image_url":"","designer":"bewakoof","cat_designer":"","in_stock":1,"gender":"Men","experiment_id":null,"limited_edition":false,"group_count":0,"category_info":{"gender":"Men","subclass":"T-Shirt","id":43,"name":"T-Shirt","url":""},"child_category":{"gender":"Men","subclass":"T-Shirt","id":43,"name":"T-Shirt","url":""},"sp":null,"offer":"14% OFF","coin_statement":null,"tags":[],"tribe_header":null,"upgraded_dimension":true,"pattern":null,"limited_tags":{},"member_discount":"66% OFF","product_discount":"63% OFF","manufacturer_brand":"Bewakoof®","bestseller_tag":{"type":"bestseller","label":"BESTSELLER","bgColor":"#FFE998","textColor":"#292D35"},"fabric_tag":{"type":"fabric","label":"100% COTTON","bgColor":"white","border":"1px solid #737373","textColor":"#737373"},"position":6},{"id":483824,"all_offer_price":999,"description":"","category":"T-Shirt","color":["black"],"design":"Graphic Print","display_image":"women-s-black-no-we-in-food-graphic-printed-boyfriend-t-shirt-483824-1715257660-1.jpg","flip_image":null,"parent_category":null,"product_sizes":[{"id":982467,"name":"S","stock_status":true},{"id":982468,"name":"M","stock_status":true},{"id":982469,"name":"L","stock_status":true},{"id":982470,"name":"XL","stock_status":true},{"id":982471,"name":"2XL","stock_status":true},{"id":982466,"name":"XS","stock_status":true},{"id":982472,"name":"3XL","stock_status":false}],"stock_status":true,"member_price":369,"mrp":999,"name":"Women's Black No We in Food Graphic Printed Boyfriend T-shirt","custom_name":"Women's Black No We in Food Graphic Printed Boyfriend T-shirt","offer_type":"best_seller","price":399,"ptype":"single","subclass":"T-Shirt","url":"no-we-in-food-boyfriend-t-shirt-women-black","brand":"","model":"","material":"","status":1,"color_name":null,"tribe_text":"For TriBe Members","tribe_image_url":"","designer":"bewakoof","cat_designer":"","in_stock":1,"gender":"Women","experiment_id":null,"limited_edition":false,"group_count":0,"category_info":{"gender":"Women","subclass":"T-Shirt","id":43,"name":"T-Shirt","url":""},"child_category":{"gender":"Women","subclass":"T-Shirt","id":43,"name":"T-Shirt","url":""},"sp":null,"offer":"14% OFF","coin_statement":null,"tags":[{"type":"fit","label":"BOYFRIEND FIT","bgColor":"rgba(82, 82, 82, 0.8)","textColor":"#fff"}],"tribe_header":null,"upgraded_dimension":true,"pattern":null,"limited_tags":{},"average_rating":4.6,"member_discount":"63% OFF","product_discount":"60% OFF","manufacturer_brand":"Bewakoof®","bestseller_tag":{"type":"bestseller","label":"BESTSELLER","bgColor":"#FFE998","textColor":"#292D35"},"fabric_tag":{"type":"fabric","label":"100% COTTON","bgColor":"white","border":"1px solid #737373","textColor":"#737373"},"position":7},{"id":556479,"all_offer_price":1299,"description":"","category":"T-Shirt","color":["black"],"design":"Graphic Print","display_image":"women-s-black-bts-astro-jin-graphic-printed-oversized-t-shirt-556479-1715258093-1.jpg","flip_image":null,"parent_category":null,"product_sizes":[{"id":1137502,"name":"S","stock_status":true},{"id":1137514,"name":"M","stock_status":true},{"id":1137527,"name":"L","stock_status":true},{"id":1137540,"name":"XL","stock_status":true},{"id":1137551,"name":"2XL","stock_status":true},{"id":1137488,"name":"XS","stock_status":false},{"id":1137558,"name":"3XL","stock_status":true}],"stock_status":true,"member_price":369,"mrp":1299,"name":"Women's Black BTS Astro (JIN) Graphic Printed Oversized T-shirt","custom_name":"Women's Black BTS Astro (JIN) Graphic Printed Oversized T-shirt","offer_type":"best_seller","price":399,"ptype":"single","subclass":"T-Shirt","url":"womens-black-bts-astro-jin-graphic-printed-oversized-t-shirt","brand":"","model":"","material":"","status":1,"color_name":null,"tribe_text":"For TriBe Members","tribe_image_url":"","designer":"bewakoof","cat_designer":"","in_stock":1,"gender":"Women","experiment_id":null,"limited_edition":false,"group_count":0,"category_info":{"gender":"Women","subclass":"T-Shirt","id":43,"name":"T-Shirt","url":""},"child_category":{"gender":"Women","subclass":"T-Shirt","id":43,"name":"T-Shirt","url":""},"sp":null,"offer":"14% OFF","coin_statement":null,"tags":[{"type":"fit","label":"OVERSIZED FIT","bgColor":"rgba(82, 82, 82, 0.8)","textColor":"#fff"}],"tribe_header":null,"upgraded_dimension":true,"pattern":null,"limited_tags":{},"average_rating":4.6,"member_discount":"71% OFF","product_discount":"69% OFF","manufacturer_brand":"Bewakoof®","bestseller_tag":{"type":"bestseller","label":"BESTSELLER","bgColor":"#FFE998","textColor":"#292D35"},"fabric_tag":{"type":"fabric","label":"100% COTTON","bgColor":"white","border":"1px solid #737373","textColor":"#737373"},"position":8},{"id":387407,"all_offer_price":1099,"description":"","category":"T-Shirt","color":["black"],"design":"Graphic Print","display_image":"men-s-black-relax-t-shirt-387407-1715257669-1.jpg","flip_image":"men-s-black-relax-t-shirt-387407-1655748035-5.jpg","parent_category":null,"product_sizes":[{"id":764067,"name":"S","stock_status":true},{"id":764068,"name":"M","stock_status":true},{"id":764069,"name":"L","stock_status":true},{"id":764070,"name":"XL","stock_status":true},{"id":764071,"name":"2XL","stock_status":true},{"id":764072,"name":"3XL","stock_status":true}],"stock_status":true,"member_price":369,"mrp":1099,"name":"Men's Black Relax T-shirt","custom_name":"Men's Black Relax T-shirt","offer_type":"best_seller","price":399,"ptype":"single","subclass":"T-Shirt","url":"hang-loose-relax-half-sleeve-t-shirt","brand":"","model":"","material":"Cotton","status":1,"color_name":null,"tribe_text":"For TriBe Members","tribe_image_url":"","designer":"bewakoof","cat_designer":"","in_stock":1,"gender":"Men","experiment_id":null,"limited_edition":false,"group_count":0,"category_info":{"gender":"Men","subclass":"T-Shirt","id":43,"name":"T-Shirt","url":""},"child_category":{"gender":"Men","subclass":"T-Shirt","id":43,"name":"T-Shirt","url":""},"sp":null,"offer":"14% OFF","coin_statement":null,"tags":[],"tribe_header":null,"upgraded_dimension":true,"pattern":null,"limited_tags":{},"average_rating":4.3,"member_discount":"66% OFF","product_discount":"63% OFF","manufacturer_brand":"Bewakoof®","bestseller_tag":{"type":"bestseller","label":"BESTSELLER","bgColor":"#FFE998","textColor":"#292D35"},"fabric_tag":{"type":"fabric","label":"100% COTTON","bgColor":"white","border":"1px solid #737373","textColor":"#737373"},"position":9},{"id":585729,"all_offer_price":1499,"description":"","category":"T-Shirt","color":["pink"],"design":"Graphic Print","display_image":"women-s-pink-garfield-s-icecream-graphic-printed-oversized-t-shirt-585729-1680539360-1.jpg","flip_image":null,"parent_category":null,"product_sizes":[{"id":1212735,"name":"S","stock_status":true},{"id":1212737,"name":"M","stock_status":true},{"id":1212739,"name":"L","stock_status":true},{"id":1212741,"name":"XL","stock_status":true},{"id":1212743,"name":"2XL","stock_status":true},{"id":1212734,"name":"XS","stock_status":true},{"id":1212746,"name":"3XL","stock_status":false}],"stock_status":true,"member_price":349,"mrp":1499,"name":"Women's Pink Garfield's Icecream Graphic Printed Oversized T-shirt","custom_name":"Women's Pink Garfield's Icecream Graphic Printed Oversized T-shirt","offer_type":"best_seller","price":379,"ptype":"single","subclass":"T-Shirt","url":"womens-pink-garfields-icecream-graphic-printed-oversized-t-shirt","brand":"","model":"","material":"","status":1,"color_name":null,"tribe_text":"For TriBe Members","tribe_image_url":"","designer":"bewakoof x garfield","cat_designer":"","in_stock":1,"gender":"Women","experiment_id":null,"limited_edition":false,"group_count":0,"category_info":{"gender":"Women","subclass":"T-Shirt","id":43,"name":"T-Shirt","url":""},"child_category":{"gender":"Women","subclass":"T-Shirt","id":43,"name":"T-Shirt","url":""},"sp":null,"offer":"14% OFF","coin_statement":null,"tags":[{"type":"fit","label":"OVERSIZED FIT","bgColor":"rgba(82, 82, 82, 0.8)","textColor":"#fff"}],"tribe_header":null,"upgraded_dimension":true,"pattern":null,"limited_tags":{},"average_rating":4.3,"member_discount":"76% OFF","product_discount":"74% OFF","manufacturer_brand":"Bewakoof®","fabric_tag":{"type":"fabric","label":"100% COTTON","bgColor":"white","border":"1px solid #737373","textColor":"#737373"},"position":10}],"id":5833,"total_product_count":657,"product_count":10,"total_page_count":66,"seo_head":null,"meta_description":"Bestseller","meta_keywords":"Bestseller","canonical_url":null,"h":"Bestseller","meta_title":"Bestseller","default_sortby":"popular","url":"bestseller","title":"Bestseller","name":"Bestseller","description":"","show_filter":1,"show_quick_filter":false,"quick_filters":{},"breadcrumb_list":[],"desktop_banner":null,"banner":null,"pagination":{"number_of_pages":66,"next_page_available":true,"current_page":0},"tribe_header":null,"hide_plp_price_list":false,"segments":{"main":[],"others":[]},"type":"collection","tracker_data":{"event":"products_list_view","products_list_view":{"url":"bestseller","title":"Bestseller","device":"desktop","page":1,"item":[609631,295706,481838,621368,519411,596133,483824,556479,387407,585729]}},"clevertap_object":{"event":"ProductsList","ec":"ProductsList","pixel_data":{"event_name":"collection_viewed","crto_object":{"event":"viewList","tms":"gtm-criteo-2.0.0","item":[609631,295706,481838,621368,519411,596133,483824,556479,387407,585729]}}},"labels":[],"x_id":"bestseller","plp_version":"v1","contextual_header":"Bestseller","time_to_exe":0.08955119998427108},"urlFilters":{"asArray":[],"asObject":{"sizes":"","design":"","color":"","styles":"","others":""},"asString":" ","asQueryParam":{}},"fixedFilter":false,"productsToDisplay":[{"h":"","position":0},{"id":609631,"all_offer_price":1099,"description":"","category":"T-Shirt","color":["pink"],"design":"Graphic Print","display_image":"women-s-pink-living-in-paradise-graphic-printed-boyfriend-t-shirt-609631-1715257770-1.jpg","flip_image":null,"parent_category":null,"product_sizes":[{"id":1277776,"name":"S","stock_status":true},{"id":1277786,"name":"M","stock_status":true},{"id":1277798,"name":"L","stock_status":true},{"id":1277806,"name":"XL","stock_status":true},{"id":1277815,"name":"2XL","stock_status":true},{"id":1277770,"name":"XS","stock_status":true},{"id":1277827,"name":"3XL","stock_status":false}],"stock_status":true,"member_price":369,"mrp":1099,"name":"Women's Pink Living in Paradise Graphic Printed Boyfriend T-shirt","custom_name":"Women's Pink Living in Paradise Graphic Printed Boyfriend T-shirt","offer_type":"best_seller","price":399,"ptype":"single","subclass":"T-Shirt","url":"womens-pink-living-in-paradise-graphic-print-boyfriend-t-shirt","brand":"","model":"","material":"","status":1,"color_name":null,"tribe_text":"For TriBe Members","tribe_image_url":"","designer":"bewakoof","cat_designer":"","in_stock":1,"gender":"Women","experiment_id":null,"limited_edition":false,"group_count":0,"category_info":{"gender":"Women","subclass":"T-Shirt","id":43,"name":"T-Shirt","url":""},"child_category":{"gender":"Women","subclass":"T-Shirt","id":43,"name":"T-Shirt","url":""},"sp":null,"offer":"14% OFF","coin_statement":null,"tags":[{"type":"fit","label":"BOYFRIEND FIT","bgColor":"rgba(82, 82, 82, 0.8)","textColor":"#fff"}],"tribe_header":null,"upgraded_dimension":true,"pattern":null,"limited_tags":{},"member_discount":"66% OFF","product_discount":"63% OFF","manufacturer_brand":"Bewakoof®","bestseller_tag":{"type":"bestseller","label":"BESTSELLER","bgColor":"#FFE998","textColor":"#292D35"},"fabric_tag":{"type":"fabric","label":"100% COTTON","bgColor":"white","border":"1px solid #737373","textColor":"#737373"},"position":1},{"id":295706,"all_offer_price":999,"description":"","category":"T-Shirt","color":["red"],"design":"Graphic Print","display_image":"women-s-red-inner-peace-graphic-printed-boyfriend-t-shirt-295706-1720009662-1.jpg","flip_image":"inner-peace-boyfriend-t-shirt-bold-red-295706-1656108930-5.jpg","parent_category":null,"product_sizes":[{"id":562590,"name":"S","stock_status":true},{"id":562608,"name":"M","stock_status":true},{"id":562624,"name":"L","stock_status":true},{"id":562642,"name":"XL","stock_status":true},{"id":562651,"name":"2XL","stock_status":true},{"id":562571,"name":"XS","stock_status":true},{"id":562654,"name":"3XL","stock_status":false}],"stock_status":true,"member_price":319,"mrp":999,"name":"Women's Red Inner Peace Graphic Printed Boyfriend T-shirt","custom_name":"Women's Red Inner Peace Graphic Printed Boyfriend T-shirt","offer_type":"best_seller","price":349,"ptype":"single","subclass":"T-Shirt","url":"inner-peace-boyfriend-t-shirts-bold-red-womens-printed-boyfriend-t-shirts","brand":"","model":"","material":"Cotton","status":1,"color_name":null,"tribe_text":"For TriBe Members","tribe_image_url":"","designer":"bewakoof","cat_designer":"","in_stock":1,"gender":"Women","experiment_id":null,"limited_edition":false,"group_count":0,"category_info":{"gender":"Women","subclass":"T-Shirt","id":43,"name":"T-Shirt","url":""},"child_category":{"gender":"Women","subclass":"T-Shirt","id":43,"name":"T-Shirt","url":""},"sp":null,"offer":"14% OFF","coin_statement":null,"tags":[{"type":"fit","label":"BOYFRIEND FIT","bgColor":"rgba(82, 82, 82, 0.8)","textColor":"#fff"}],"tribe_header":null,"upgraded_dimension":true,"pattern":null,"limited_tags":{},"average_rating":4.5,"member_discount":"68% OFF","product_discount":"65% OFF","manufacturer_brand":"Bewakoof®","bestseller_tag":{"type":"bestseller","label":"BESTSELLER","bgColor":"#FFE998","textColor":"#292D35"},"fabric_tag":{"type":"fabric","label":"100% COTTON","bgColor":"white","border":"1px solid #737373","textColor":"#737373"},"position":2},{"id":481838,"all_offer_price":999,"description":"","category":"T-Shirt","color":["red"],"design":"Graphic Print","display_image":"men-s-red-nasa-astronaut-graphic-printed-t-shirt-481838-1715257546-1.jpg","flip_image":null,"parent_category":null,"product_sizes":[{"id":978818,"name":"S","stock_status":true},{"id":978821,"name":"M","stock_status":true},{"id":978824,"name":"L","stock_status":true},{"id":978827,"name":"XL","stock_status":true},{"id":978830,"name":"2XL","stock_status":true},{"id":978833,"name":"3XL","stock_status":true}],"stock_status":true,"member_price":369,"mrp":999,"name":"Men's Red NASA Astronaut Graphic Printed T-shirt","custom_name":"Men's Red NASA Astronaut Graphic Printed T-shirt","offer_type":"best_seller","price":399,"ptype":"single","subclass":"T-Shirt","url":"nasa-astronaut-half-sleeve-t-shirt-men","brand":"","model":"","material":"","status":1,"color_name":null,"tribe_text":"For TriBe Members","tribe_image_url":"","designer":"bewakoof x nasa","cat_designer":"","in_stock":1,"gender":"Men","experiment_id":null,"limited_edition":false,"group_count":0,"category_info":{"gender":"Men","subclass":"T-Shirt","id":43,"name":"T-Shirt","url":""},"child_category":{"gender":"Men","subclass":"T-Shirt","id":43,"name":"T-Shirt","url":""},"sp":null,"offer":"14% OFF","coin_statement":null,"tags":[],"tribe_header":null,"upgraded_dimension":true,"pattern":null,"limited_tags":{},"average_rating":4.3,"member_discount":"63% OFF","product_discount":"60% OFF","manufacturer_brand":"Bewakoof®","bestseller_tag":{"type":"bestseller","label":"BESTSELLER","bgColor":"#FFE998","textColor":"#292D35"},"fabric_tag":{"type":"fabric","label":"100% COTTON","bgColor":"white","border":"1px solid #737373","textColor":"#737373"},"position":3},{"id":621368,"all_offer_price":1099,"description":"","category":"T-Shirt","color":["black"],"design":"Graphic Print","display_image":"women-s-black-certified-troublemakers-graphic-printed-t-shirt-621368-1721651273-1.jpg","flip_image":null,"parent_category":null,"product_sizes":[{"id":1301824,"name":"S","stock_status":true},{"id":1301827,"name":"M","stock_status":true},{"id":1301829,"name":"L","stock_status":true},{"id":1301833,"name":"XL","stock_status":true},{"id":1301835,"name":"2XL","stock_status":true},{"id":1301821,"name":"XS","stock_status":true},{"id":1301838,"name":"3XL","stock_status":false}],"stock_status":true,"member_price":279,"mrp":1099,"name":"Women's Black Certified Troublemakers Graphic Printed T-shirt","custom_name":"Women's Black Certified Troublemakers Graphic Printed T-shirt","offer_type":"best_seller","price":299,"ptype":"single","subclass":"T-Shirt","url":"women-certified-troublemakers-tjl-regular-graphic-printed-t-shirt","brand":"","model":"","material":"","status":1,"color_name":null,"tribe_text":"For TriBe Members","tribe_image_url":"","designer":"bewakoof x tom & jerry","cat_designer":"","in_stock":1,"gender":"Women","experiment_id":null,"limited_edition":false,"group_count":0,"category_info":{"gender":"Women","subclass":"T-Shirt","id":43,"name":"T-Shirt","url":""},"child_category":{"gender":"Women","subclass":"T-Shirt","id":43,"name":"T-Shirt","url":""},"sp":null,"offer":"14% OFF","coin_statement":null,"tags":[],"tribe_header":null,"upgraded_dimension":true,"pattern":null,"limited_tags":{},"average_rating":4.5,"member_discount":"74% OFF","product_discount":"72% OFF","manufacturer_brand":"Bewakoof®","bestseller_tag":{"type":"bestseller","label":"BESTSELLER","bgColor":"#FFE998","textColor":"#292D35"},"fabric_tag":{"type":"fabric","label":"100% COTTON","bgColor":"white","border":"1px solid #737373","textColor":"#737373"},"position":4},{"id":519411,"all_offer_price":999,"description":"","category":"T-Shirt","color":["black"],"design":"Graphic Print","display_image":"men-s-black-house-of-the-dragon-iconic-graphic-printed-t-shirt-519411-1715257899-1.jpg","flip_image":null,"parent_category":null,"product_sizes":[{"id":1054169,"name":"S","stock_status":true},{"id":1054179,"name":"M","stock_status":true},{"id":1054189,"name":"L","stock_status":true},{"id":1054198,"name":"XL","stock_status":true},{"id":1054205,"name":"2XL","stock_status":true},{"id":1054210,"name":"3XL","stock_status":false}],"stock_status":true,"member_price":369,"mrp":999,"name":"Men's Black House Of The Dragon Iconic Graphic Printed T-shirt","custom_name":"Men's Black House Of The Dragon Iconic Graphic Printed T-shirt","offer_type":"best_seller","price":399,"ptype":"single","subclass":"T-Shirt","url":"hod-iconic-half-sleeve-t-shirt","brand":"","model":"","material":"","status":1,"color_name":null,"tribe_text":"For TriBe Members","tribe_image_url":"","designer":"bewakoof x house of the dragon","cat_designer":"","in_stock":1,"gender":"Men","experiment_id":null,"limited_edition":false,"group_count":0,"category_info":{"gender":"Men","subclass":"T-Shirt","id":43,"name":"T-Shirt","url":""},"child_category":{"gender":"Men","subclass":"T-Shirt","id":43,"name":"T-Shirt","url":""},"sp":null,"offer":"14% OFF","coin_statement":null,"tags":[],"tribe_header":null,"upgraded_dimension":true,"pattern":null,"limited_tags":{},"member_discount":"63% OFF","product_discount":"60% OFF","manufacturer_brand":"Bewakoof®","bestseller_tag":{"type":"bestseller","label":"BESTSELLER","bgColor":"#FFE998","textColor":"#292D35"},"fabric_tag":{"type":"fabric","label":"100% COTTON","bgColor":"white","border":"1px solid #737373","textColor":"#737373"},"position":5},{"id":596133,"all_offer_price":1099,"description":"","category":"T-Shirt","color":["black"],"design":"Graphic Print","display_image":"men-s-black-eternity-graphic-printed-t-shirt-596133-1706598517-1.jpg","flip_image":null,"parent_category":null,"product_sizes":[{"id":1241092,"name":"S","stock_status":true},{"id":1241094,"name":"M","stock_status":true},{"id":1241096,"name":"L","stock_status":true},{"id":1241105,"name":"XL","stock_status":true},{"id":1241113,"name":"2XL","stock_status":true},{"id":1241120,"name":"3XL","stock_status":false}],"stock_status":true,"member_price":369,"mrp":1099,"name":"Men's Black Eternity Graphic Printed T-shirt","custom_name":"Men's Black Eternity Graphic Printed T-shirt","offer_type":"best_seller","price":399,"ptype":"single","subclass":"T-Shirt","url":"mens-black-eternity-graphic-printed-t-shirt","brand":"","model":"","material":"","status":1,"color_name":null,"tribe_text":"For TriBe Members","tribe_image_url":"","designer":"bewakoof","cat_designer":"","in_stock":1,"gender":"Men","experiment_id":null,"limited_edition":false,"group_count":0,"category_info":{"gender":"Men","subclass":"T-Shirt","id":43,"name":"T-Shirt","url":""},"child_category":{"gender":"Men","subclass":"T-Shirt","id":43,"name":"T-Shirt","url":""},"sp":null,"offer":"14% OFF","coin_statement":null,"tags":[],"tribe_header":null,"upgraded_dimension":true,"pattern":null,"limited_tags":{},"member_discount":"66% OFF","product_discount":"63% OFF","manufacturer_brand":"Bewakoof®","bestseller_tag":{"type":"bestseller","label":"BESTSELLER","bgColor":"#FFE998","textColor":"#292D35"},"fabric_tag":{"type":"fabric","label":"100% COTTON","bgColor":"white","border":"1px solid #737373","textColor":"#737373"},"position":6},{"id":483824,"all_offer_price":999,"description":"","category":"T-Shirt","color":["black"],"design":"Graphic Print","display_image":"women-s-black-no-we-in-food-graphic-printed-boyfriend-t-shirt-483824-1715257660-1.jpg","flip_image":null,"parent_category":null,"product_sizes":[{"id":982467,"name":"S","stock_status":true},{"id":982468,"name":"M","stock_status":true},{"id":982469,"name":"L","stock_status":true},{"id":982470,"name":"XL","stock_status":true},{"id":982471,"name":"2XL","stock_status":true},{"id":982466,"name":"XS","stock_status":true},{"id":982472,"name":"3XL","stock_status":false}],"stock_status":true,"member_price":369,"mrp":999,"name":"Women's Black No We in Food Graphic Printed Boyfriend T-shirt","custom_name":"Women's Black No We in Food Graphic Printed Boyfriend T-shirt","offer_type":"best_seller","price":399,"ptype":"single","subclass":"T-Shirt","url":"no-we-in-food-boyfriend-t-shirt-women-black","brand":"","model":"","material":"","status":1,"color_name":null,"tribe_text":"For TriBe Members","tribe_image_url":"","designer":"bewakoof","cat_designer":"","in_stock":1,"gender":"Women","experiment_id":null,"limited_edition":false,"group_count":0,"category_info":{"gender":"Women","subclass":"T-Shirt","id":43,"name":"T-Shirt","url":""},"child_category":{"gender":"Women","subclass":"T-Shirt","id":43,"name":"T-Shirt","url":""},"sp":null,"offer":"14% OFF","coin_statement":null,"tags":[{"type":"fit","label":"BOYFRIEND FIT","bgColor":"rgba(82, 82, 82, 0.8)","textColor":"#fff"}],"tribe_header":null,"upgraded_dimension":true,"pattern":null,"limited_tags":{},"average_rating":4.6,"member_discount":"63% OFF","product_discount":"60% OFF","manufacturer_brand":"Bewakoof®","bestseller_tag":{"type":"bestseller","label":"BESTSELLER","bgColor":"#FFE998","textColor":"#292D35"},"fabric_tag":{"type":"fabric","label":"100% COTTON","bgColor":"white","border":"1px solid #737373","textColor":"#737373"},"position":7},{"id":556479,"all_offer_price":1299,"description":"","category":"T-Shirt","color":["black"],"design":"Graphic Print","display_image":"women-s-black-bts-astro-jin-graphic-printed-oversized-t-shirt-556479-1715258093-1.jpg","flip_image":null,"parent_category":null,"product_sizes":[{"id":1137502,"name":"S","stock_status":true},{"id":1137514,"name":"M","stock_status":true},{"id":1137527,"name":"L","stock_status":true},{"id":1137540,"name":"XL","stock_status":true},{"id":1137551,"name":"2XL","stock_status":true},{"id":1137488,"name":"XS","stock_status":false},{"id":1137558,"name":"3XL","stock_status":true}],"stock_status":true,"member_price":369,"mrp":1299,"name":"Women's Black BTS Astro (JIN) Graphic Printed Oversized T-shirt","custom_name":"Women's Black BTS Astro (JIN) Graphic Printed Oversized T-shirt","offer_type":"best_seller","price":399,"ptype":"single","subclass":"T-Shirt","url":"womens-black-bts-astro-jin-graphic-printed-oversized-t-shirt","brand":"","model":"","material":"","status":1,"color_name":null,"tribe_text":"For TriBe Members","tribe_image_url":"","designer":"bewakoof","cat_designer":"","in_stock":1,"gender":"Women","experiment_id":null,"limited_edition":false,"group_count":0,"category_info":{"gender":"Women","subclass":"T-Shirt","id":43,"name":"T-Shirt","url":""},"child_category":{"gender":"Women","subclass":"T-Shirt","id":43,"name":"T-Shirt","url":""},"sp":null,"offer":"14% OFF","coin_statement":null,"tags":[{"type":"fit","label":"OVERSIZED FIT","bgColor":"rgba(82, 82, 82, 0.8)","textColor":"#fff"}],"tribe_header":null,"upgraded_dimension":true,"pattern":null,"limited_tags":{},"average_rating":4.6,"member_discount":"71% OFF","product_discount":"69% OFF","manufacturer_brand":"Bewakoof®","bestseller_tag":{"type":"bestseller","label":"BESTSELLER","bgColor":"#FFE998","textColor":"#292D35"},"fabric_tag":{"type":"fabric","label":"100% COTTON","bgColor":"white","border":"1px solid #737373","textColor":"#737373"},"position":8},{"id":387407,"all_offer_price":1099,"description":"","category":"T-Shirt","color":["black"],"design":"Graphic Print","display_image":"men-s-black-relax-t-shirt-387407-1715257669-1.jpg","flip_image":"men-s-black-relax-t-shirt-387407-1655748035-5.jpg","parent_category":null,"product_sizes":[{"id":764067,"name":"S","stock_status":true},{"id":764068,"name":"M","stock_status":true},{"id":764069,"name":"L","stock_status":true},{"id":764070,"name":"XL","stock_status":true},{"id":764071,"name":"2XL","stock_status":true},{"id":764072,"name":"3XL","stock_status":true}],"stock_status":true,"member_price":369,"mrp":1099,"name":"Men's Black Relax T-shirt","custom_name":"Men's Black Relax T-shirt","offer_type":"best_seller","price":399,"ptype":"single","subclass":"T-Shirt","url":"hang-loose-relax-half-sleeve-t-shirt","brand":"","model":"","material":"Cotton","status":1,"color_name":null,"tribe_text":"For TriBe Members","tribe_image_url":"","designer":"bewakoof","cat_designer":"","in_stock":1,"gender":"Men","experiment_id":null,"limited_edition":false,"group_count":0,"category_info":{"gender":"Men","subclass":"T-Shirt","id":43,"name":"T-Shirt","url":""},"child_category":{"gender":"Men","subclass":"T-Shirt","id":43,"name":"T-Shirt","url":""},"sp":null,"offer":"14% OFF","coin_statement":null,"tags":[],"tribe_header":null,"upgraded_dimension":true,"pattern":null,"limited_tags":{},"average_rating":4.3,"member_discount":"66% OFF","product_discount":"63% OFF","manufacturer_brand":"Bewakoof®","bestseller_tag":{"type":"bestseller","label":"BESTSELLER","bgColor":"#FFE998","textColor":"#292D35"},"fabric_tag":{"type":"fabric","label":"100% COTTON","bgColor":"white","border":"1px solid #737373","textColor":"#737373"},"position":9},{"id":585729,"all_offer_price":1499,"description":"","category":"T-Shirt","color":["pink"],"design":"Graphic Print","display_image":"women-s-pink-garfield-s-icecream-graphic-printed-oversized-t-shirt-585729-1680539360-1.jpg","flip_image":null,"parent_category":null,"product_sizes":[{"id":1212735,"name":"S","stock_status":true},{"id":1212737,"name":"M","stock_status":true},{"id":1212739,"name":"L","stock_status":true},{"id":1212741,"name":"XL","stock_status":true},{"id":1212743,"name":"2XL","stock_status":true},{"id":1212734,"name":"XS","stock_status":true},{"id":1212746,"name":"3XL","stock_status":false}],"stock_status":true,"member_price":349,"mrp":1499,"name":"Women's Pink Garfield's Icecream Graphic Printed Oversized T-shirt","custom_name":"Women's Pink Garfield's Icecream Graphic Printed Oversized T-shirt","offer_type":"best_seller","price":379,"ptype":"single","subclass":"T-Shirt","url":"womens-pink-garfields-icecream-graphic-printed-oversized-t-shirt","brand":"","model":"","material":"","status":1,"color_name":null,"tribe_text":"For TriBe Members","tribe_image_url":"","designer":"bewakoof x garfield","cat_designer":"","in_stock":1,"gender":"Women","experiment_id":null,"limited_edition":false,"group_count":0,"category_info":{"gender":"Women","subclass":"T-Shirt","id":43,"name":"T-Shirt","url":""},"child_category":{"gender":"Women","subclass":"T-Shirt","id":43,"name":"T-Shirt","url":""},"sp":null,"offer":"14% OFF","coin_statement":null,"tags":[{"type":"fit","label":"OVERSIZED FIT","bgColor":"rgba(82, 82, 82, 0.8)","textColor":"#fff"}],"tribe_header":null,"upgraded_dimension":true,"pattern":null,"limited_tags":{},"average_rating":4.3,"member_discount":"76% OFF","product_discount":"74% OFF","manufacturer_brand":"Bewakoof®","fabric_tag":{"type":"fabric","label":"100% COTTON","bgColor":"white","border":"1px solid #737373","textColor":"#737373"},"position":10}],"showFlipImage":"","selectedSort":{"key":"popular","display_name":"Popular"},"fixedFilterStyle":{"width":0,"marginTop":0,"top":0,"maxHeight":0},"isSearchPage":false,"productPerPage":50,"totalPages":1,"page":1,"parent_id":null,"brand":null,"title":null,"breadCrumb":[{"name":"Home","url":""},{"name":"Bestseller","url":"bestseller"}],"productMaxHeight":"initial","dealEnd":false,"productListStorage":{},"productWidgetStorage":{},"mcUrl":undefined,"impressionHash":0,"pagination":{"number_of_pages":66,"next_page_available":true,"current_page":0},"pageNo":1,"flashSaleProductData":{},"shelvesProductData":{},"activeLocation":{"pathname":"\u002F","search":"","hash":"","state":undefined,"key":"2cplqx"},"labelsMap":{"mobile":{},"desktop":{}},"pageLinks":{"prev":"","next":"https:\u002F\u002Fwww.bewakoof.com\u002Fbestseller\u002Fdefault\u002F2"}},"product":{"showZoomModal":false,"recentProducts":undefined,"recentProductsHp":undefined,"continueShoppingProducts":undefined,"inspiredByWishlistProducts":undefined,"ymlOptimizationProducts":undefined,"complementoryProducts":undefined,"complementoryPreference":undefined,"exploreProducts":undefined,"similarProducts":undefined,"exploreOffset":0,"similarProductsOffset":0,"oftenBoughtProducts":undefined,"oftenBoughtOffset":0,"oftenBoughtLimit":24,"exploreLimit":24,"similarProductsLimit":10,"expProductsArr":undefined,"product":undefined,"sizesForModify":undefined,"imageUrls":undefined,"showViewSimilar":false,"addToCart":undefined,"showRatingSkeleton":true,"reviewsUpvoted":[],"viewSimilarPopupOpened":false,"ratingsAndReviews":{"tabIdx":0,"selectedSortingOption":undefined,"sorting_options":undefined,"total_reviews":undefined,"total_ratings":undefined,"reviews":[],"rating_aggregations":{},"average_rating":undefined,"reviewAssociatedImages":[],"totalImages":undefined,"title":undefined,"showReviewImageZoomModal":false,"helpful_text":undefined,"recommended_data":undefined,"images_list_length":0,"upvote_icon":undefined,"message":undefined,"filters":undefined,"total_images_text":undefined,"store":{"title":undefined,"storeSelectedSortingOption":undefined,"sorting_options":undefined,"total_reviews":undefined,"total_ratings":undefined,"storeReviews":[],"rating_aggregations":{},"average_rating":undefined,"reviewAssociatedImages":[],"totalImages":undefined,"helpful_text":undefined,"images_list_length":0,"recommended_data":undefined,"upvote_icon":undefined,"filters":undefined,"total_images_text":undefined}},"local":{"bagBtnText":"ADD TO BAG","showDescriptionDesk":{},"showDescriptionMob":{},"productColorName":"","selectedSize":"","quantity":1,"product":undefined,"animateSizes":false,"showSelectSizeError":false,"showLoyaltyModal":false,"sizeChartModal":undefined,"pincode":"","shipArea":"","currentProdColor":{},"colorsArray":[],"unitsInStock":0},"svOfferNudge":undefined,"countryTransitionScreen":false,"takeOffText":false,"vdSnackbar":undefined,"tribeMembership":undefined,"autoAddTribe":undefined,"isOfferScrollEnabled":false},"unsubscribe":{"unsubscriptionReasons":null,"unsubscribed":null},"productRating":{"order_details":[],"selectedOrderId":undefined,"ratingSubmitted":undefined,"ratingSubmitResponse":undefined,"reviewSubmitted":undefined,"reviewSubmitResponce":undefined,"imagesUploaded":[],"image_urls":undefined,"toast_message":undefined,"submit_review_content":undefined,"reviewSubmittedIds":[],"placeholders":undefined,"no_pending_review_image":undefined,"no_pending_review_heading":undefined,"no_pending_review_subheading":undefined,"credit_message":undefined,"upload_images_text":undefined,"already_rated_first_text":undefined,"already_rated_second_text":undefined,"already_rated_heading":undefined},"statics":{"addresssubtype":undefined,"static":undefined,"otherReason":undefined},"locations":{"countries":[],"location":undefined,"invalidLocation":false},"address":{"addresses":undefined,"updateaddressdetails":undefined,"addaddressdetails":undefined,"pincodeError":undefined,"selectedCheckoutAddress":{},"payment_options":[],"save_cards":[],"addressErrors":false,"recentlyPaymentOption":undefined,"payment_offers":undefined,"updatedAddressId":undefined,"paymentRetryMethods":undefined},"cart":{"cart":undefined,"wallet_applied":false,"added_to_cart":undefined,"showsize":false,"showqty":false,"showmobilewishlist":false,"opencouponmodal":false,"couponresponse":undefined,"gift_card_response":undefined,"cards":undefined,"showmobiletc":false,"count":0,"intlShippingCharges":undefined,"hpOfferNudge":undefined,"coupons":[],"redirectToPayment":undefined,"checkDeliveryCart":undefined,"selectedAddressId":undefined,"ec_remove_response":undefined,"tribeCoupons":undefined,"cartItemRunningOutOfStock":undefined},"search":{},"wishlist":{"wishlist":undefined,"heartBeat":false,"count":0,"filteredWishlist":undefined},"wishlist_hp":{"wishlist":undefined},"checkoutpayment":{"idle":true,"txnCall":undefined,"identifyCard":undefined,"order_create":undefined,"showLeftSection":false,"selectedPayment":undefined,"paymentChecked":undefined,"showCardForm":false,"paymentFailed":null,"showOtpPopUp":false,"walletId":null,"linkFailed":false,"fetchPaymentOptions":false,"selectedAddressId":null,"walletType":null,"vpaVerified":false,"scrollToPayMethod":undefined},"loader":{"title":"Please wait..","activeLoaders":0},"toast":{"duration":2000,"type":"default","title":"","visible":false},"footer":{"showLoader":true,"productGridObj":undefined,"local":{"toggleDropdown":{"0":false,"1":false}}},"header":{"selectMenu":"","showSearch":false,"isOpen":false,"selectAccountMenu":false,"showSearchDrpoDown":false,"showSideNav":false},"user":{"user":undefined,"isMember":false,"isNewUser":true,"openChangePasswordModal":undefined},"error":{"is404":false,"is500":false},"common":{"isMobile":false,"isBot":false,"deviceType":null,"appVersion":null,"bshotsAppVersion":null,"isAndroid":false,"isIos":false,"landingLocation":null,"isPhonePeSwitch":false,"store":{"android":"https:\u002F\u002Fplay.google.com\u002Fstore\u002Fapps\u002Fdetails?id=com.bewakoof.bewakoof&hl=en","ios":"https:\u002F\u002Fitunes.apple.com\u002Fin\u002Fapp\u002Fbewakoof\u002Fid1100190514?mt=8"},"abId":null,"isHeaderVisible":true,"isId2cAppVerSupported":false,"experiments":{"plp":{"experiment_id":"plp_score_fake","bucket_id":"default__plp_score1"}},"expTrkId":"285989b1-1b06-427e-8ed4-8d5e259c6fc7","isTablet":false,"isDesktop":true,"microApp":"","isBShotsApp":null,"appName":null},"bankdetail":{"bankdetail":undefined,"isValiduser":undefined},"return_order":{"return_order":{},"pickup_details":undefined,"selected_return_address":undefined,"isPickupavaliable":false,"receiptupload":undefined,"saveImage":undefined,"deleteImage":undefined,"returnStep":1,"selectedReason":undefined,"neftDetails":undefined,"upiDetails":undefined,"sizeOptions":[],"optinalRemark":"","showReturnModal":false,"verifyAccResponse":"","showAccValidation":false},"myaccount":{"order_modify":false,"showtab":"change password","order_modified_msg":undefined,"confirm_modify_request":undefined,"giftcode_response":undefined,"change_password_response":undefined,"remove_address":undefined,"open_verify_mobile_modal":false,"verify_otp":undefined,"cancelled_details":null,"cancelOrderError":null,"cancelSuccess":false,"cancelFailure":false,"updateOrder":null,"updateOrderSuccess":null,"updateOrderError":null,"isFirstLoad":true,"get_orders":{"orders":[],"total_count":0,"referral":null,"wallet_inactive_message":null},"npsOrderDetails":undefined},"mypaymentoptions":{"my_pay_options":undefined},"contactus":{"contactUs":undefined,"level2":undefined,"level1":"Orders, Delivery & Payment","contactUsResponse":undefined,"data":[],"searchResult":undefined,"defaultComponent":"hns","match":undefined,"currentQuery":undefined,"feedbackType":{},"callBackRespose":undefined},"campaign":{"campaign_user_details":undefined,"registered_users_count":undefined},"career":{"uploadForm":undefined,"careerJson":{},"selectedJob":{},"openingList":{}},"pageBuilder":{"componentPositionForEdit":"","data":[]},"panelAppObject":{"list":[],"saving":false,"details":null,"diffOptionsList":[],"diff1Details":null,"diff2Details":null,"pages":{},"editorPage":{},"editorPageDevice":"desktop"},"scheduler":{"scheduledTasks":[],"tasks":[],"selectedTask":null,"record":[]},"voting":{"offset":0,"limit":100,"voting":[],"voteData":undefined},"mobileDevice":{"selectedBrand":"","selectedDevice":"","selectedCoverType":"","toggleQuickFilter":true,"modelUrl":"","coverUrl":"","onFirstLoad":true},"navigation":{"navigationTabs":[],"currentTab":null},"orderExchange":{"exchange_order":{},"selected_exchange_address":undefined,"pickup_details":undefined,"isPickupavaliable":false,"selectedReasonExchange":undefined,"selectedSizeExchange":{}},"bestSeller":{"bestSellerProducts":undefined},"selectedCountry":{"accessLocationResponse":undefined,"countryConfig":null},"tribeReferral":{"response":null,"pageContentResp":null,"claimMembershipContentResp":null,"claimRewardContentResp":null,"tribeReferralHistory":null},"quickFilters":{"clearDirectFilter":false,"directFilter":false,"customFilters":[],"activeFilterList":[]},"customProduct":{"stepsList":undefined,"setp":undefined,"canvas":undefined,"uploadedImage":undefined,"isModified":undefined,"activeProduct":{"pid":undefined,"size":undefined,"color":undefined,"did":null},"designData":{"frontPreview":undefined,"backPreview":undefined,"frontCanvasImage":undefined,"backCanvasImage":undefined,"frontCanvasJson":undefined,"backCanvasJson":undefined},"productColors":undefined,"pcDesignerData":undefined,"saveProceedAct":undefined,"pcAddedToBag":undefined,"isDesignLoaded":undefined,"aiPdpData":undefined},"notify":{"notifyData":undefined,"homePageNotify":undefined,"backInStock":undefined,"deleteItem":undefined},"tribe":{"isTribeToggleEnabled":false,"showJoinTribeNudge":false,"isTribeAlreadyAdded":false,"showTribeAddedView":false,"tribeViewVisibility":false,"tribeNameA2C":null},"aiCanvas":{"imagesData":[],"imageSelectionPage":false,"aiAttemptsLeft":undefined,"aiButtonText":"ADD TO BAG"},"npsRating":{"delivered_order_details":[],"npsRating":undefined,"npsRatingResponse":undefined,"updateNpsDetails":undefined},"growthBookExpFeat":{"experiments":{}}}
          </script>
<script defer="" src="https://static.bewakoof.com/www/app/vendors-info-main-myaccount-panel.ea8808c65f0aeae9ac4d.js"></script>
<script defer="" src="https://static.bewakoof.com/www/app/vendors-info-main-panel.ca8c71981cda276358d1.js"></script>
<script defer="" src="https://static.bewakoof.com/www/app/main.c7d60e4abb99617330e0.js"></script>
</body>
</html>
In [89]:
product_name = soup.find('div', class_="productNaming bkf-ellipsis")
product_name
Out[89]:
<div class="productNaming bkf-ellipsis"><h3 class="brand-name undefined">Bewakoof®</h3><h2 class="clr-shade4 h3-p-name undefined false">Women's Pink Living in Paradise Graphic Printed Boyfriend T-shirt</h2></div>
In [90]:
product_name.text
Out[90]:
"Bewakoof®Women's Pink Living in Paradise Graphic Printed Boyfriend T-shirt"
In [105]:
price = soup.find('div', class_="productPriceBox d-flex align-items-end  false")
price
In [ ]:
price.text
In [111]:
images = []

for i in soup.find_all("img", class_="https://images.bewakoof.com/t640/women-s-red-inner-peace-graphic-printed-boyfriend-t-shirt-295706-1720009662-1.jpg"):
    images.append(i['data-src'])
    
images
Out[111]:
[]
In [108]:
product_name = []

for i in soup.find_all('div', class_="productNaming bkf-ellipsis"):
        product_name.append(i.text)
        
product_name
Out[108]:
["Bewakoof®Women's Pink Living in Paradise Graphic Printed Boyfriend T-shirt",
 "Bewakoof®Women's Red Inner Peace Graphic Printed Boyfriend T-shirt",
 "bewakoof x nasaMen's Red NASA Astronaut Graphic Printed T-shirt",
 "bewakoof x tom & jerryWomen's Black Certified Troublemakers Graphic Printed T-shirt",
 "bewakoof x house of the dragonMen's Black House Of The Dragon Iconic Graphic Printed T-shirt",
 "Bewakoof®Men's Black Eternity Graphic Printed T-shirt",
 "Bewakoof®Women's Black No We in Food Graphic Printed Boyfriend T-shirt",
 "Bewakoof®Women's Black BTS Astro (JIN) Graphic Printed Oversized T-shirt",
 "Bewakoof®Men's Black Relax T-shirt",
 "bewakoof x garfieldWomen's Pink Garfield's Icecream Graphic Printed Oversized T-shirt"]
In [109]:
price = []

for i in soup.find_all('div', class_="productPriceBox d-flex align-items-end  false"):
        price.append(i.text)
        
price
Out[109]:
[]

5) Please visit https://www.cnbc.com/world/?region=world and scrap- a) headings b) date c) News link

In [112]:
page = requests.get('https://www.cnbc.com/world/?region=world')
In [113]:
page
Out[113]:
<Response [200]>
In [115]:
soup = BeautifulSoup(page.content)
soup
Out[115]:
<!DOCTYPE html>
<html itemscope="" itemtype="https://schema.org/WebPage" lang="en" prefix="og=https://ogp.me/ns#"><head><meta content="website" property="og:type"/><meta content="International: Top News And Analysis" property="og:title"/><meta content="CNBC International is the world leader for news on business, technology, China, trade, oil prices, the Middle East and markets." property="og:description"/><meta content="https://www.cnbc.com/world/" property="og:url"/><meta content="CNBC" property="og:site_name"/><meta content="max-image-preview:large" name="robots"/><meta content="telephone=no" name="format-detection"/><meta content="https://sc.cnbcfm.com/applications/cnbc.com/staticcontent/img/cnbc_logo_new.png?v=1524171804&amp;w=1920&amp;h=1080" itemprop="image" property="og:image"/><meta content="https://sc.cnbcfm.com/applications/cnbc.com/staticcontent/img/cnbc_logo_new.png?v=1524171804&amp;w=1920&amp;h=1080" name="twitter:image:src"/><meta content="https://sc.cnbcfm.com/applications/cnbc.com/staticcontent/img/cnbc_logo_new.png?v=1524171804&amp;w=1920&amp;h=1080" name="twitter:image"/><meta content-type="text/html"/><meta content="summary_large_image" name="twitter:card"/><meta content="@CNBC" name="twitter:site"/><meta content="https://www.cnbc.com/world/" name="twitter:url"/><meta content="International: Top News And Analysis" name="twitter:title"/><meta content="CNBC International is the world leader for news on business, technology, China, trade, oil prices, the Middle East and markets." name="twitter:description"/><meta content="@CNBC" name="twitter:creator"/><link href="https://sc.cnbcfm.com/applications/cnbc.com/staticcontent/img/favicon.ico" rel="icon" type="image/x-icon"/><style type="text/css">@charset "UTF-8";.Modal-modalBackground{background:#000000b3;height:100%;left:0;overflow-y:auto;position:fixed;top:0;transition:background-color .4s;width:100%;z-index:100001}.Modal-bottomModal.Modal-modal{background:#f8f8f8;border-radius:3px;bottom:0;box-shadow:5px 5px 20px #1717171a;display:inline-block;height:528px;left:0;margin-top:0!important;max-width:100%;position:fixed;top:auto;transform:none;width:100%}@media (max-width:1019px){.Modal-bottomModal.Modal-modal{height:642px}}@media (max-width:759px){.Modal-bottomModal.Modal-modal{height:100%;position:relative;top:0}}.Modal-modal{background-color:#fff;border-radius:3px;box-shadow:5px 5px 20px #1717171a;display:inline-block;left:50%;margin-top:10vh;max-width:100%;overflow:auto;position:relative;transform:translateX(-50%)}@media (max-width:759px){.Modal-modal{height:100%;left:auto;margin:0;transform:none;width:100%}}.Modal-modalContents{overflow:auto}@media (max-width:759px){.Modal-modalContents{height:100%}}.Modal-closeButton{color:#a9a9a9;cursor:pointer;position:absolute;right:12px;top:12px}.Modal-closeButton:focus-visible>svg{border:1px solid #071d39;border-radius:4px}.RecaptchaAcknowledgement-acknowledgement{color:#747474;flex:1;font-size:11px;font-weight:600;line-height:15px;margin-bottom:7px;margin-top:7px;width:100%}.RecaptchaAcknowledgement-acknowledgement a{color:#747474;font-weight:500;text-decoration:none}.RecaptchaAcknowledgement-acknowledgement a:hover{color:#747474;text-decoration:underline}.RecaptchaAcknowledgement-acknowledgement a:active{color:#747474}.RecaptchaAcknowledgement-reCaptchaPadding{margin-top:15px}.RecaptchaAcknowledgement-centerAligned{text-align:center}.RecaptchaAcknowledgement-leftAligned{text-align:left}.RecaptchaAcknowledgement-rightAligned{text-align:right}.RecaptchaAcknowledgement-allAccess{margin-top:unset;order:1}.AuthForms-container{margin:0 auto;padding:0 10px;width:458px}@media (max-width:759px){.AuthForms-container{max-width:458px;padding:20px 0 0;width:100%}.AuthForms-container.AuthForms-signInContainer{padding:0 0 12px}}.AuthForms-container .AuthForms-signupContainer{margin:0 auto;padding:0 41px;text-align:center;width:458px}@media (max-width:759px){.AuthForms-container .AuthForms-signupContainer{padding:20px 0 0;width:100%}}.AuthForms-container .AuthForms-header{color:#171717;margin-bottom:20px}.AuthForms-container .AuthForms-header.AuthForms-signInHeader{margin-bottom:40px}@media (min-width:760px){.AuthForms-container .AuthForms-header.AuthForms-signInHeader{margin-bottom:21px;padding-top:18px}}@media (min-width:1020px){.AuthForms-container .AuthForms-header.AuthForms-signInHeader{margin-bottom:27px}}.AuthForms-container .AuthForms-header.AuthForms-signInHeader .AuthForms-headerTitle{color:#424242;font-size:18px;font-weight:500;line-height:16px}.AuthForms-container .AuthForms-createAccountHeader{margin-bottom:20px;text-align:center}@media (min-width:1020px){.AuthForms-container .AuthForms-createAccountHeader{margin-bottom:30px;margin-top:50px}}.AuthForms-container .AuthForms-headerTitle{color:#071d39;font-size:20px;font-weight:700;text-align:center;width:100%}.AuthForms-container .AuthForms-signinContent{font-size:14px;font-weight:450;padding-top:20px}.AuthForms-container .AuthForms-toggleCta{color:#424242;font-size:12px;font-weight:500;text-align:right}.AuthForms-container .AuthForms-instructions{margin-bottom:60px;text-align:center}.AuthForms-container .AuthForms-instructions p{color:#171717;font-size:14px;line-height:16px}.AuthForms-container .AuthForms-instructions p a{color:#005594;text-decoration:none}.AuthForms-container .AuthForms-instructions p a:hover{color:#002f6c}.AuthForms-container .AuthForms-formInputContainer{margin:0 auto 10px;max-width:350px}.AuthForms-container .AuthForms-formInputContainer.AuthForms-withErrors{margin:0 auto 25px}.AuthForms-container .AuthForms-formInputContainer.AuthForms-signInFormInputContainer:last-of-type{margin-bottom:13px}@media (min-width:760px){.AuthForms-container .AuthForms-formInputContainer.AuthForms-signInFormInputContainer:last-of-type{margin-bottom:0}}.AuthForms-container .AuthForms-formInput{width:100%}.AuthForms-container input::-ms-clear,.AuthForms-container input::-ms-reveal{display:none}.AuthForms-container .AuthForms-loginWaitMsg{word-wrap:break-word;border-radius:3px;color:#071d39;font-size:14px;font-weight:500;margin:10px 0;padding:10px;text-align:center}.AuthForms-container .AuthForms-accountButton,.AuthForms-container .AuthForms-submitButton{align-items:center;appearance:none;background-color:#005594;border:1px solid #002f6c;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px!important;justify-content:center;letter-spacing:1px;margin:0 auto;max-width:260px!important;padding:0 20px;padding:0!important;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:100%!important}.AuthForms-container .AuthForms-accountButton>span,.AuthForms-container .AuthForms-submitButton>span{display:block;line-height:12px}.AuthForms-container .AuthForms-accountButton [class*=" icon-"],.AuthForms-container .AuthForms-accountButton [class^=icon-],.AuthForms-container .AuthForms-submitButton [class*=" icon-"],.AuthForms-container .AuthForms-submitButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-container .AuthForms-accountButton [class*=" icon-"]:before,.AuthForms-container .AuthForms-accountButton [class^=icon-]:before,.AuthForms-container .AuthForms-submitButton [class*=" icon-"]:before,.AuthForms-container .AuthForms-submitButton [class^=icon-]:before{line-height:12px}.AuthForms-container .AuthForms-accountButton:focus,.AuthForms-container .AuthForms-accountButton:hover,.AuthForms-container .AuthForms-submitButton:focus,.AuthForms-container .AuthForms-submitButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.AuthForms-container .AuthForms-accountButton[class*=touchButton]:hover,.AuthForms-container .AuthForms-submitButton[class*=touchButton]:hover{background-color:#005594;border-color:#002f6c;color:#fff}@media (hover:hover){.AuthForms-container .AuthForms-accountButton[class*=touchButton]:hover,.AuthForms-container .AuthForms-submitButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.AuthForms-container .AuthForms-accountButton,.AuthForms-container .AuthForms-submitButton{padding:0 30px;width:auto}}.AuthForms-container .AuthForms-accountButton:last-child,.AuthForms-container .AuthForms-submitButton:last-child{clear:both;margin-bottom:7px}.AuthForms-container .AuthForms-accountButton.AuthForms-disableButton,.AuthForms-container .AuthForms-submitButton.AuthForms-disableButton{background-color:#d9d9d9;border:#d9d9d9;transition:none}.AuthForms-container .AuthForms-accountButton.AuthForms-disableButton:hover,.AuthForms-container .AuthForms-submitButton.AuthForms-disableButton:hover{background-color:#d9d9d9;border:#d9d9d9}@media (min-width:760px){.AuthForms-container .AuthForms-accountButton.AuthForms-signInSubmitButton,.AuthForms-container .AuthForms-submitButton.AuthForms-signInSubmitButton{width:109px!important}}.AuthForms-container.AuthForms-disableButton{background-color:#d9d9d9;border:none}.AuthForms-container.AuthForms-disableButton:hover{background-color:#d9d9d9}.AuthForms-container .AuthForms-accountButton{border-radius:3px;cursor:pointer;height:40px!important;margin:0 auto;padding:0!important}@media (min-width:760px){.AuthForms-container .AuthForms-accountButton{width:200px!important}}.AuthForms-container .AuthForms-accountButton:last-child{clear:both;margin-bottom:7px}.AuthForms-container .AuthForms-accountButton{align-items:center;appearance:none;background-color:#fff;border:1px solid #002f6c;color:#005594;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AuthForms-container .AuthForms-accountButton>span{display:block;line-height:12px}.AuthForms-container .AuthForms-accountButton [class*=" icon-"],.AuthForms-container .AuthForms-accountButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-container .AuthForms-accountButton [class*=" icon-"]:before,.AuthForms-container .AuthForms-accountButton [class^=icon-]:before{line-height:12px}.AuthForms-container .AuthForms-accountButton:focus,.AuthForms-container .AuthForms-accountButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.AuthForms-container .AuthForms-accountButton[class*=touchButton]:hover{background-color:#fff;border-color:#002f6c;color:#005594}@media (hover:hover){.AuthForms-container .AuthForms-accountButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.AuthForms-container .AuthForms-accountButton{padding:0 30px;width:auto}}.AuthForms-container .AuthForms-ctaButton{color:#005594;font-weight:500}.AuthForms-container .AuthForms-ctaButton:hover{color:#002f6c}.AuthForms-container.AuthForms-forgotPassword{margin:20px 0 28px;padding:0 21px}@media (min-width:760px){.AuthForms-container.AuthForms-forgotPassword{padding:0 60px}}@media (max-width:1019px){.AuthForms-container.AuthForms-forgotPassword{margin-top:75px}}@media (max-width:759px){.AuthForms-container.AuthForms-forgotPassword{margin:16px auto}}.AuthForms-container.AuthForms-forgotPassword .AuthForms-formInputContainer{margin:15px 0 26px}.AuthForms-container.AuthForms-forgotPassword .AuthForms-ctaButton{font-size:16px;font-weight:600}.AuthForms-container.AuthForms-forgotPassword .AuthForms-toggleCta{color:#424242;font-size:16px;font-weight:500;margin-top:14px;text-align:center}@media (max-width:1019px){.AuthForms-container.AuthForms-forgotPassword .AuthForms-toggleCta{margin-top:20px}}.AuthForms-container.AuthForms-forgotPassword .AuthForms-headerTitle{color:#171717;font-size:20px;font-weight:700;text-align:center;width:100%}.AuthForms-container .AuthForms-forgotPwdButton{color:#005594;display:block;font-size:14px;font-weight:500;margin:20px auto 0}.AuthForms-container .AuthForms-forgotPwdButton:hover{color:#002f6c}.AuthForms-container .AuthForms-forgotPwdButton.AuthForms-signInForgotPwdButton{font-weight:600;line-height:16px}.AuthForms-container .AuthForms-createAccount{color:#424242;font-size:12px;font-weight:600;line-height:16px;text-align:center}.AuthForms-container .AuthForms-createAccount button{color:#005594;font-size:12px;font-weight:600}.AuthForms-container .AuthForms-submitButton{border:unset;border-radius:3px;cursor:pointer;font-size:14px;height:50px!important;margin-bottom:unset;max-width:unset!important;width:100%!important}.AuthForms-container .AuthForms-submitButton:last-child{margin-bottom:7px}.AuthForms-container .AuthForms-submitButton.AuthForms-resetPasswordButton:last-child{margin-bottom:7px;margin-top:0}.AuthForms-container .AuthForms-submitButton.AuthForms-disableButton,.AuthForms-container .AuthForms-submitButton.AuthForms-disableButton:hover{background-color:#d9d9d9;border:#d9d9d9}@media (min-width:760px){.AuthForms-container .AuthForms-submitButton{width:191px!important}}.AuthForms-container.AuthForms-forgotPasswordConfirmation{margin-bottom:48px}.AuthForms-container.AuthForms-forgotPasswordConfirmation .AuthForms-instructions{font-size:14px;font-weight:600;margin:36px auto;max-width:100%;text-align:center;width:100%}.AuthForms-container.AuthForms-forgotPasswordConfirmation .AuthForms-instructions p{display:inline}.AuthForms-container.AuthForms-forgotPasswordConfirmation .AuthForms-instructions p:after{content:" "}@media (min-width:760px){.AuthForms-container.AuthForms-forgotPasswordConfirmation .AuthForms-instructions{max-width:335px}}.AuthForms-formContainer{padding-bottom:26px}@media (min-width:1020px){.AuthForms-formContainer{padding-bottom:20px}}@media (min-width:760px){.AuthForms-formContainer.AuthForms-signInFormContainer{padding-bottom:20px}}.AuthForms-containerRight{margin:0;padding:0;width:500px}@media (max-width:1019px){.AuthForms-containerRight{margin-top:24px;padding:0 20px;width:100%}}@media (max-width:759px){.AuthForms-containerRight{margin-top:10px;padding:0 14px}}.AuthForms-unlockButton{align-items:center;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;box-shadow:-2px 2px 2px #17171740;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-size:22px;font-weight:600;font-weight:700;height:40px;height:50px;justify-content:center;letter-spacing:1px;letter-spacing:.2px;margin-bottom:7px;outline:.5px solid #333;padding:0 30px;text-align:center;text-transform:uppercase;text-transform:none;transition:all .15s linear;width:100%}.AuthForms-unlockButton>span{display:block;line-height:12px}.AuthForms-unlockButton [class*=" icon-"],.AuthForms-unlockButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-unlockButton [class*=" icon-"]:before,.AuthForms-unlockButton [class^=icon-]:before{line-height:12px}.AuthForms-unlockButton:focus,.AuthForms-unlockButton:hover{background-color:#008456;border-color:#008456;color:#fff}.AuthForms-unlockButton[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.AuthForms-unlockButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.AuthForms-unlockButton{padding:0 30px;width:auto;width:100%}}.AuthForms-unlockIcon{margin-right:8px}.AuthForms-plusFlow .AuthForms-submitButton{align-items:center;appearance:none;background-color:#001e5a;border:1px solid #001e5a;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AuthForms-plusFlow .AuthForms-submitButton>span{display:block;line-height:12px}.AuthForms-plusFlow .AuthForms-submitButton [class*=" icon-"],.AuthForms-plusFlow .AuthForms-submitButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-plusFlow .AuthForms-submitButton [class*=" icon-"]:before,.AuthForms-plusFlow .AuthForms-submitButton [class^=icon-]:before{line-height:12px}.AuthForms-plusFlow .AuthForms-submitButton:focus,.AuthForms-plusFlow .AuthForms-submitButton:hover{background-color:#00081a;border-color:#00081a;color:#fff}.AuthForms-plusFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#001e5a;border-color:#001e5a;color:#fff}@media (hover:hover){.AuthForms-plusFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#00081a;border-color:#00081a;color:#fff}}@media (min-width:760px){.AuthForms-plusFlow .AuthForms-submitButton{padding:0 30px;width:auto}}.AuthForms-plusFlow .AuthForms-forgotPwdButton{color:#001e5a}.AuthForms-plusFlow .AuthForms-forgotPwdButton:focus,.AuthForms-plusFlow .AuthForms-forgotPwdButton:hover{color:#005594}.AuthForms-plusFlow .AuthForms-forgotPwdButton.AuthForms-signInForgotPwdButton{color:#001e5a}.AuthForms-plusFlow .AuthForms-forgotPwdButton.AuthForms-signInForgotPwdButton:focus,.AuthForms-plusFlow .AuthForms-forgotPwdButton.AuthForms-signInForgotPwdButton:hover{color:#005594}@media (max-width:759px){.AuthForms-plusFlow .AuthForms-formInputContainer{max-width:100%;width:100%}}.AuthForms-plusFlow .AuthForms-createAccount button{color:#001e5a}.AuthForms-plusFlow .AuthForms-createAccount button:focus,.AuthForms-plusFlow .AuthForms-createAccount button:hover{color:#005594}.AuthForms-plusFlow .AuthForms-ctaButton{color:#001e5a}.AuthForms-plusFlow .AuthForms-ctaButton:focus,.AuthForms-plusFlow .AuthForms-ctaButton:hover{color:#005594}.AuthForms-plusFlow.AuthForms-disableButton,.AuthForms-plusFlow.AuthForms-disableButton:focus,.AuthForms-plusFlow.AuthForms-disableButton:hover{background-color:#d9d9d9;border:#d9d9d9}.AuthForms-plusFlow .AuthForms-loginWaitMsg{color:#001e5a}.AuthForms-proFlow .AuthForms-submitButton{align-items:center;appearance:none;background-color:#008456;border:1px solid #008456;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px!important;justify-content:center;letter-spacing:1px;margin:0 auto;padding:0 20px;padding:0!important;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AuthForms-proFlow .AuthForms-submitButton>span{display:block;line-height:12px}.AuthForms-proFlow .AuthForms-submitButton [class*=" icon-"],.AuthForms-proFlow .AuthForms-submitButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-proFlow .AuthForms-submitButton [class*=" icon-"]:before,.AuthForms-proFlow .AuthForms-submitButton [class^=icon-]:before{line-height:12px}.AuthForms-proFlow .AuthForms-submitButton:focus,.AuthForms-proFlow .AuthForms-submitButton:hover{background-color:#005034;border-color:#005034;color:#fff}.AuthForms-proFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}@media (hover:hover){.AuthForms-proFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#005034;border-color:#005034;color:#fff}}@media (min-width:760px){.AuthForms-proFlow .AuthForms-submitButton{padding:0 30px;width:auto}}.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton{align-items:center;appearance:none;background-color:#008456;border:1px solid #008456;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton>span{display:block;line-height:12px}.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton [class*=" icon-"],.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton [class*=" icon-"]:before,.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton [class^=icon-]:before{line-height:12px}.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton:focus,.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton:hover,.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}@media (hover:hover){.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton{padding:0 30px;width:auto}}.AuthForms-proFlow .AuthForms-submitButton:last-child{margin-bottom:7px}.AuthForms-proFlow .AuthForms-submitButton.AuthForms-disableButton,.AuthForms-proFlow .AuthForms-submitButton.AuthForms-disableButton:hover{background-color:#d9d9d9;border:#d9d9d9}.AuthForms-proFlow .AuthForms-ctaButton{color:#008456}.AuthForms-proFlow .AuthForms-ctaButton:hover{color:#005034}.AuthForms-proFlow .AuthForms-forgotPwdButton{color:#00a857}.AuthForms-proFlow .AuthForms-forgotPwdButton.AuthForms-signInForgotPwdButton,.AuthForms-proFlow .AuthForms-forgotPwdButton:hover{color:#008456}@media (max-width:759px){.AuthForms-proFlow .AuthForms-formInputContainer{max-width:100%;width:100%}}.AuthForms-proFlow .AuthForms-instructions a{color:#00a857}.AuthForms-proFlow .AuthForms-createAccount button,.AuthForms-proFlow .AuthForms-instructions a:hover,.AuthForms-proFlow .AuthForms-loginWaitMsg{color:#008456}.AuthForms-investingClubFlow{display:flex;flex-direction:column}.AuthForms-investingClubFlow .AuthForms-header{margin-bottom:15px}.AuthForms-investingClubFlow .AuthForms-toggleCta{color:#171717;font-size:18px;font-weight:600;margin-bottom:25px;text-align:center}.AuthForms-investingClubFlow .AuthForms-ctaButton{color:#071d39;font-size:18px;font-weight:600}.AuthForms-investingClubFlow .AuthForms-ctaButton:hover{color:#171717}.AuthForms-investingClubFlow .AuthForms-forgotPwdButton{color:#071d39;font-weight:600}.AuthForms-investingClubFlow .AuthForms-forgotPwdButton:hover{color:#002f6c}.AuthForms-investingClubFlow .AuthForms-instructions a{color:#336aa0}.AuthForms-investingClubFlow .AuthForms-instructions a:hover{color:#1896ff}.AuthForms-investingClubFlow.AuthForms-forgotPassword{align-items:center;margin:20px 0 28px;padding:0}.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-header{max-width:100%;width:100%}@media (min-width:760px){.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-header{max-width:335px}}.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-headerTitle{color:#171717;font-size:20px;font-weight:700;text-align:center;width:100%}.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-toggleCta{font-size:16px;font-weight:700;margin-bottom:7px;text-align:center;width:100%}.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-ctaButton{font-size:16px;font-weight:700}.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-instructions{font-size:14px;margin:0 0 28px;max-width:100%;text-align:center;width:100%}@media (min-width:760px){.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-instructions{max-width:335px}}.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-formInputContainer{max-width:100%;width:100%}@media (min-width:760px){.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-formInputContainer{max-width:335px}}.AuthForms-investingClubFlow .AuthForms-submitButton{align-items:center;appearance:none;background-color:#071d39;border:unset;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px!important;justify-content:center;letter-spacing:1px;margin-bottom:unset;margin-left:auto;margin-right:auto;margin-top:0;max-width:unset!important;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:100%!important}.AuthForms-investingClubFlow .AuthForms-submitButton>span{display:block;line-height:12px}.AuthForms-investingClubFlow .AuthForms-submitButton [class*=" icon-"],.AuthForms-investingClubFlow .AuthForms-submitButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-investingClubFlow .AuthForms-submitButton [class*=" icon-"]:before,.AuthForms-investingClubFlow .AuthForms-submitButton [class^=icon-]:before{line-height:12px}.AuthForms-investingClubFlow .AuthForms-submitButton:focus,.AuthForms-investingClubFlow .AuthForms-submitButton:hover{background-color:#171717;border-color:#171717;color:#fff}.AuthForms-investingClubFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#071d39;border-color:#071d39;color:#fff}@media (hover:hover){.AuthForms-investingClubFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#171717;border-color:#171717;color:#fff}}@media (min-width:760px){.AuthForms-investingClubFlow .AuthForms-submitButton{padding:0 30px;width:auto}}.AuthForms-investingClubFlow .AuthForms-submitButton:last-child{margin-bottom:7px}.AuthForms-investingClubFlow .AuthForms-submitButton.AuthForms-disableButton,.AuthForms-investingClubFlow .AuthForms-submitButton.AuthForms-disableButton:hover{background-color:#d9d9d9;border:#d9d9d9}@media (min-width:760px){.AuthForms-investingClubFlow .AuthForms-submitButton{width:168px!important}}.AuthForms-investingClubFlow.AuthForms-forgotPasswordConfirmation{margin-bottom:48px}.AuthForms-investingClubFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions{font-size:14px;font-weight:600;margin:36px auto;max-width:100%;text-align:center;width:100%}.AuthForms-investingClubFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions p{display:inline}.AuthForms-investingClubFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions p:after{content:" "}@media (min-width:760px){.AuthForms-investingClubFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions{max-width:335px}}.AuthForms-investingClubFlow .AuthForms-createAccount button{color:#071d39}.AuthForms-investingClubFlow.AuthForms-signInSubmitButton{padding:0!important}.AuthForms-allAccessFlow .AuthForms-header{margin-bottom:15px}.AuthForms-allAccessFlow .AuthForms-submitButton{background-color:red;border:1px solid red;margin:0 auto;padding:0 55px!important}.AuthForms-allAccessFlow .AuthForms-submitButton:focus,.AuthForms-allAccessFlow .AuthForms-submitButton:hover{background-color:#f30;border-color:#f30}.AuthForms-allAccessFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:red;border-color:red}@media (hover:hover){.AuthForms-allAccessFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#f30;border-color:#f30;color:#fff}}.AuthForms-allAccessFlow .AuthForms-toggleCta{color:#171717;font-size:18px;margin-bottom:25px}.AuthForms-allAccessFlow .AuthForms-ctaButton{font-size:18px;font-weight:600}.AuthForms-allAccessFlow .AuthForms-ctaButton:hover{color:#002f6c}.AuthForms-allAccessFlow .AuthForms-forgotPwdButton{font-weight:600}.AuthForms-allAccessFlow .AuthForms-forgotPwdButton:hover{color:#002f6c}.AuthForms-allAccessFlow .AuthForms-instructions a{color:#0053cf}.AuthForms-allAccessFlow .AuthForms-instructions a:hover{color:#002f6c}.AuthForms-allAccessFlow.AuthForms-forgotPassword{align-items:center;margin:20px 0 28px;padding:0}.AuthForms-allAccessFlow.AuthForms-forgotPassword .AuthForms-header{max-width:100%;width:100%}@media (min-width:760px){.AuthForms-allAccessFlow.AuthForms-forgotPassword .AuthForms-header{max-width:335px}}.AuthForms-allAccessFlow.AuthForms-forgotPassword .AuthForms-headerTitle{color:#171717;font-size:20px;font-weight:700;margin-bottom:unset;text-align:center;width:100%}.AuthForms-allAccessFlow.AuthForms-forgotPassword .AuthForms-toggleCta{font-size:16px;font-weight:600;margin-bottom:15px;order:1;text-align:center;width:100%}.AuthForms-allAccessFlow.AuthForms-forgotPassword .AuthForms-ctaButton{font-size:16px;font-weight:600}.AuthForms-allAccessFlow.AuthForms-forgotPassword .AuthForms-instructions{font-size:14px;margin:0 0 28px;max-width:100%;text-align:center;width:100%}@media (min-width:760px){.AuthForms-allAccessFlow.AuthForms-forgotPassword .AuthForms-instructions{max-width:335px}}.AuthForms-allAccessFlow.AuthForms-forgotPassword .AuthForms-formInputContainer{max-width:100%;width:100%}@media (min-width:760px){.AuthForms-allAccessFlow.AuthForms-forgotPassword .AuthForms-formInputContainer{max-width:335px}}.AuthForms-allAccessFlow.AuthForms-forgotPasswordConfirmation{margin-bottom:48px}.AuthForms-allAccessFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions{font-size:14px;font-weight:600;margin:36px auto;max-width:100%;text-align:center;width:100%}.AuthForms-allAccessFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions p{display:inline}.AuthForms-allAccessFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions p:after{content:" "}@media (min-width:760px){.AuthForms-allAccessFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions{max-width:335px}}.AuthForms-allAccessFlow .AuthForms-createAccount button{color:#0053cf}.AuthForms-resetPasswordAccountInfo{color:#424242;font-size:14px;font-weight:700;margin-bottom:20px;margin-top:20px;text-align:left}.AuthForms-resetPasswordAccountInfo span{color:#747474}.AuthForms-miscellaneousError{word-wrap:break-word;border-radius:3px;color:#f44336;font-size:14px;margin:10px 0;padding:10px;text-align:center}.AuthForms-newtocnbc{color:#171717;font-size:12px;font-weight:600;line-height:16px}.AuthForms-allAccessFlow{display:flex;flex-direction:column}.AuthForms-allAccessFlow .AuthForms-formContainer{padding-bottom:0}.AuthForms-allAccessFlow .AuthForms-toggleCta{font-family:Proxima Nova,Arial,Helvetica,sans-serif;font-size:14px;font-weight:600;letter-spacing:0;line-height:15px;margin-bottom:24px;margin-top:56px;text-align:center}@media (min-width:760px){.AuthForms-allAccessFlow .AuthForms-toggleCta{margin-bottom:20px;margin-top:28px}}.AuthForms-allAccessFlow .AuthForms-ctaButton{color:#0053cf;font-size:14px;font-weight:700;letter-spacing:0;line-height:15px}.AuthForms-allAccessFlow .AuthForms-forgotPwdButton{color:#0053cf;margin-bottom:24px}@media (min-width:760px){.AuthForms-allAccessFlow .AuthForms-forgotPwdButton{margin-bottom:20px}}.AuthForms-allAccessFlow .AuthForms-submitButton{align-items:center;appearance:none;background-color:#0053cf;border:unset;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px!important;justify-content:center;letter-spacing:1px;margin-bottom:24px;max-width:unset!important;padding:0 20px;padding:0!important;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:100%!important}.AuthForms-allAccessFlow .AuthForms-submitButton>span{display:block;line-height:12px}.AuthForms-allAccessFlow .AuthForms-submitButton [class*=" icon-"],.AuthForms-allAccessFlow .AuthForms-submitButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-allAccessFlow .AuthForms-submitButton [class*=" icon-"]:before,.AuthForms-allAccessFlow .AuthForms-submitButton [class^=icon-]:before{line-height:12px}.AuthForms-allAccessFlow .AuthForms-submitButton:focus,.AuthForms-allAccessFlow .AuthForms-submitButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.AuthForms-allAccessFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#0053cf;border-color:#002f6c;color:#fff}@media (hover:hover){.AuthForms-allAccessFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.AuthForms-allAccessFlow .AuthForms-submitButton{padding:0 30px;width:auto}}.AuthForms-allAccessFlow .AuthForms-submitButton:last-child{margin-bottom:7px}.AuthForms-allAccessFlow .AuthForms-submitButton.AuthForms-disableButton,.AuthForms-allAccessFlow .AuthForms-submitButton.AuthForms-disableButton:hover{background-color:#d9d9d9;border:#d9d9d9}@media (min-width:760px){.AuthForms-allAccessFlow .AuthForms-submitButton{width:168px!important}}.AuthForms-alreadyHaveAccountContainer{display:flex;margin:0 auto;white-space:pre-wrap;width:max-content}.AuthForms-alreadyHaveAccountContainer button{color:#005594;font-weight:600;line-height:16px}.AuthForms-signUpHeaderTitle{color:#424242;font-size:16px;font-weight:600;line-height:16px}.AuthForms-retryButton{color:inherit;font-weight:700;margin:0 5px;text-decoration:underline}@media (max-width:759px){.AuthForms-containerNewLogo{padding:0}}.Checkboxes-checkboxContainer.Checkboxes-checkboxes{padding:0}.Checkboxes-errorText{color:#ce2b2b;font-size:11px;height:12px;margin:0 auto 5px;overflow:visible;text-align:left}.Checkboxes-checkboxLabel{cursor:pointer;display:block;overflow:hidden;padding-left:16px;position:relative;-webkit-user-select:none;user-select:none}.Checkboxes-checkboxLabel input{cursor:pointer;height:0;opacity:0;position:absolute;right:0;width:0}.Checkboxes-checkmark{border:1px solid #424242;border-radius:3px;height:13px;left:0;position:absolute;top:3px;width:13px}.Checkboxes-checkmark:focus,.Checkboxes-checkmark:hover{border:1px solid #171717}.Checkboxes-checkmark.Checkboxes-checkmarkError{border:1px solid #ce2b2b}.Checkboxes-checkboxLabel input:checked~.Checkboxes-checkmark{background-color:#171717}.Checkboxes-checkmark:after{content:"";display:none;position:absolute}.Checkboxes-checkboxLabel input:checked~.Checkboxes-checkmark:after{display:block}.Checkboxes-checkboxLabel .Checkboxes-checkmark:after{border:solid #fff;border-width:0 2px 2px 0;height:6px;left:3px;top:0;transform:rotate(45deg);width:3px}.Checkboxes-checkboxDP{margin-bottom:0!important;padding-bottom:10px}.Checkboxes-checkboxLabelText,.Checkboxes-checkboxLabelTextBold,.Checkboxes-checkboxLabelTextBoldPlus,.Checkboxes-checkboxLabelTextBoldPro{color:#424242;flex:1;font-size:11px;margin:0 0 24px 6px}.Checkboxes-checkboxLabelText.Checkboxes-staySignedIn,.Checkboxes-staySignedIn.Checkboxes-checkboxLabelTextBold,.Checkboxes-staySignedIn.Checkboxes-checkboxLabelTextBoldPlus,.Checkboxes-staySignedIn.Checkboxes-checkboxLabelTextBoldPro{font-size:14px;margin-top:2px}@media (max-width:759px){.Checkboxes-checkboxLabelText,.Checkboxes-checkboxLabelTextBold,.Checkboxes-checkboxLabelTextBoldPlus,.Checkboxes-checkboxLabelTextBoldPro{margin:0 0 20px 6px}}.Checkboxes-checkboxLabelText a,.Checkboxes-checkboxLabelTextBold a,.Checkboxes-checkboxLabelTextBoldPlus a,.Checkboxes-checkboxLabelTextBoldPro a{color:#171717;text-decoration:none}.Checkboxes-checkboxLabelText a:hover,.Checkboxes-checkboxLabelTextBold a:hover,.Checkboxes-checkboxLabelTextBoldPlus a:hover,.Checkboxes-checkboxLabelTextBoldPro a:hover{color:#171717;text-decoration:underline}.Checkboxes-checkboxLabelText p,.Checkboxes-checkboxLabelTextBold p,.Checkboxes-checkboxLabelTextBoldPlus p,.Checkboxes-checkboxLabelTextBoldPro p{color:#424242;margin-bottom:0}.Checkboxes-checkboxLabelTextBold,.Checkboxes-checkboxLabelTextBoldPlus,.Checkboxes-checkboxLabelTextBoldPro{color:#747474;font-weight:600;line-height:16px;margin:-2px 0 26px 6px;text-align:start;text-transform:uppercase}.Checkboxes-allAccessCheckboxLabelTextBold a{color:#0053cf!important}.Checkboxes-allAccessCheckboxLabelTextBold a:hover{color:#002f6c!important}.Checkboxes-investingClubCheckboxLabelTextBold a,.Checkboxes-investingClubCheckboxLabelTextBold a:hover{color:#071d39!important}.Checkboxes-checkboxLink{color:#005594!important}.Checkboxes-cnbcOnlyCheckboxLabelText{color:#747474;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:11px;font-weight:700;line-height:15px;text-transform:uppercase}.Checkboxes-cnbcOnlyCheckboxLabelText a{color:#005594!important}.Checkboxes-cnbcOnlyCheckboxLabelText p{color:#747474}.Checkboxes-checkboxLabelTextBoldPro a{color:#008456}.Checkboxes-checkboxLabelTextBoldPro a:hover{color:#005034;text-decoration:underline}.Checkboxes-checkboxLabelTextBoldPlus a{color:#001e5a}.Checkboxes-checkboxLabelTextBoldPlus a:hover{color:#001e5a;text-decoration:underline}.AreYouSure-container{color:#171717;font-size:18px;font-weight:700;margin-bottom:40px;padding-top:5px;text-align:center}@media (max-width:759px){.AreYouSure-container{width:100%}}.AreYouSure-header{font-size:18px;font-weight:700;height:20px;margin-bottom:12px;margin-top:15px}.AreYouSure-subText{font-size:14px;font-weight:600;height:16px;margin-bottom:33px}.AreYouSure-buttons{padding:0 32px 7px}@media (min-width:760px){.AreYouSure-buttons{align-items:stretch;display:flex}}@media (max-width:759px){.AreYouSure-buttons{padding:0}}.AreYouSure-primaryButton{margin:0}.AreYouSure-secondaryButton{margin:0 24px 0 0}@media (max-width:759px){.AreYouSure-secondaryButton{margin:0 0 28px}}.AreYouSure-primaryButton,.AreYouSure-secondaryButton{border-radius:3px;flex:1;font-size:16px;height:50px;padding:0;width:185px}@media (max-width:759px){.AreYouSure-primaryButton,.AreYouSure-secondaryButton{width:100%}}.AreYouSure-investingClubFlow .AreYouSure-header{font-weight:600}.AreYouSure-investingClubFlow .AreYouSure-subText{font-weight:500}.AreYouSure-investingClubFlow .AreYouSure-primaryButton{align-items:center;appearance:none;background-color:#071d39;border:1px solid #071d39;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-investingClubFlow .AreYouSure-primaryButton>span{display:block;line-height:12px}.AreYouSure-investingClubFlow .AreYouSure-primaryButton [class*=" icon-"],.AreYouSure-investingClubFlow .AreYouSure-primaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-investingClubFlow .AreYouSure-primaryButton [class*=" icon-"]:before,.AreYouSure-investingClubFlow .AreYouSure-primaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-investingClubFlow .AreYouSure-primaryButton:focus,.AreYouSure-investingClubFlow .AreYouSure-primaryButton:hover{background-color:#171717;border-color:#171717;color:#fff}.AreYouSure-investingClubFlow .AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#071d39;border-color:#071d39;color:#fff}@media (hover:hover){.AreYouSure-investingClubFlow .AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#171717;border-color:#171717;color:#fff}}@media (min-width:760px){.AreYouSure-investingClubFlow .AreYouSure-primaryButton{padding:0 30px;width:auto}}.AreYouSure-investingClubFlow .AreYouSure-secondaryButton{align-items:center;appearance:none;background-color:#fff;border:1px solid #071d39;color:#071d39;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-investingClubFlow .AreYouSure-secondaryButton>span{display:block;line-height:12px}.AreYouSure-investingClubFlow .AreYouSure-secondaryButton [class*=" icon-"],.AreYouSure-investingClubFlow .AreYouSure-secondaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-investingClubFlow .AreYouSure-secondaryButton [class*=" icon-"]:before,.AreYouSure-investingClubFlow .AreYouSure-secondaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-investingClubFlow .AreYouSure-secondaryButton:focus,.AreYouSure-investingClubFlow .AreYouSure-secondaryButton:hover{background-color:#fff;border-color:#171717;color:#171717}.AreYouSure-investingClubFlow .AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#071d39;color:#071d39}@media (hover:hover){.AreYouSure-investingClubFlow .AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#171717;color:#171717}}@media (min-width:760px){.AreYouSure-investingClubFlow .AreYouSure-secondaryButton{padding:0 30px;width:auto}}.AreYouSure-investingClubFlow .AreYouSure-primaryButton,.AreYouSure-investingClubFlow .AreYouSure-secondaryButton{border-radius:3px;flex:1;font-size:16px;height:50px;line-height:12px;padding:0;width:185px}@media (max-width:759px){.AreYouSure-investingClubFlow .AreYouSure-primaryButton,.AreYouSure-investingClubFlow .AreYouSure-secondaryButton{width:100%}}.AreYouSure-plusFlow .AreYouSure-header{font-weight:600}.AreYouSure-plusFlow .AreYouSure-subText{font-weight:500}.AreYouSure-plusFlow .AreYouSure-secondaryButton{align-items:center;appearance:none;background-color:#fff;border:1px solid #001e5a;color:#001e5a;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-plusFlow .AreYouSure-secondaryButton>span{display:block;line-height:12px}.AreYouSure-plusFlow .AreYouSure-secondaryButton [class*=" icon-"],.AreYouSure-plusFlow .AreYouSure-secondaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-plusFlow .AreYouSure-secondaryButton [class*=" icon-"]:before,.AreYouSure-plusFlow .AreYouSure-secondaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-plusFlow .AreYouSure-secondaryButton:focus,.AreYouSure-plusFlow .AreYouSure-secondaryButton:hover{background-color:#fff;border-color:#00081a;color:#005594}.AreYouSure-plusFlow .AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#001e5a;color:#001e5a}@media (hover:hover){.AreYouSure-plusFlow .AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#00081a;color:#005594}}@media (min-width:760px){.AreYouSure-plusFlow .AreYouSure-secondaryButton{padding:0 30px;width:auto}}.AreYouSure-plusFlow .AreYouSure-primaryButton{align-items:center;appearance:none;background-color:#001e5a;border:1px solid #001e5a;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-plusFlow .AreYouSure-primaryButton>span{display:block;line-height:12px}.AreYouSure-plusFlow .AreYouSure-primaryButton [class*=" icon-"],.AreYouSure-plusFlow .AreYouSure-primaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-plusFlow .AreYouSure-primaryButton [class*=" icon-"]:before,.AreYouSure-plusFlow .AreYouSure-primaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-plusFlow .AreYouSure-primaryButton:focus,.AreYouSure-plusFlow .AreYouSure-primaryButton:hover{background-color:#00081a;border-color:#00081a;color:#fff}.AreYouSure-plusFlow .AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#001e5a;border-color:#001e5a;color:#fff}@media (hover:hover){.AreYouSure-plusFlow .AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#00081a;border-color:#00081a;color:#fff}}@media (min-width:760px){.AreYouSure-plusFlow .AreYouSure-primaryButton{padding:0 30px;width:auto}}.AreYouSure-plusFlow .AreYouSure-primaryButton,.AreYouSure-plusFlow .AreYouSure-secondaryButton{border-radius:3px;flex:1;font-size:16px;height:50px;line-height:12px;padding:0;width:185px}@media (max-width:759px){.AreYouSure-plusFlow .AreYouSure-primaryButton,.AreYouSure-plusFlow .AreYouSure-secondaryButton{width:100%}}.AreYouSure-allAccessFlow .AreYouSure-header{font-weight:600}.AreYouSure-allAccessFlow .AreYouSure-subText{font-weight:500}.AreYouSure-allAccessFlow .AreYouSure-secondaryButton{align-items:center;appearance:none;background-color:#fff;border:1px solid #0053cf;color:#0053cf;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-allAccessFlow .AreYouSure-secondaryButton>span{display:block;line-height:12px}.AreYouSure-allAccessFlow .AreYouSure-secondaryButton [class*=" icon-"],.AreYouSure-allAccessFlow .AreYouSure-secondaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-allAccessFlow .AreYouSure-secondaryButton [class*=" icon-"]:before,.AreYouSure-allAccessFlow .AreYouSure-secondaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-allAccessFlow .AreYouSure-secondaryButton:focus,.AreYouSure-allAccessFlow .AreYouSure-secondaryButton:hover{background-color:#fff;border-color:#002f6c;color:#002f6c}.AreYouSure-allAccessFlow .AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#0053cf;color:#0053cf}@media (hover:hover){.AreYouSure-allAccessFlow .AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#002f6c;color:#002f6c}}@media (min-width:760px){.AreYouSure-allAccessFlow .AreYouSure-secondaryButton{padding:0 30px;width:auto}}.AreYouSure-allAccessFlow .AreYouSure-primaryButton{align-items:center;appearance:none;background-color:#0053cf;border:1px solid #0053cf;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-allAccessFlow .AreYouSure-primaryButton>span{display:block;line-height:12px}.AreYouSure-allAccessFlow .AreYouSure-primaryButton [class*=" icon-"],.AreYouSure-allAccessFlow .AreYouSure-primaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-allAccessFlow .AreYouSure-primaryButton [class*=" icon-"]:before,.AreYouSure-allAccessFlow .AreYouSure-primaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-allAccessFlow .AreYouSure-primaryButton:focus,.AreYouSure-allAccessFlow .AreYouSure-primaryButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.AreYouSure-allAccessFlow .AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#0053cf;border-color:#0053cf;color:#fff}@media (hover:hover){.AreYouSure-allAccessFlow .AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.AreYouSure-allAccessFlow .AreYouSure-primaryButton{padding:0 30px;width:auto}}.AreYouSure-allAccessFlow .AreYouSure-primaryButton,.AreYouSure-allAccessFlow .AreYouSure-secondaryButton{border-radius:3px;flex:1;font-size:16px;height:50px;line-height:12px;padding:0;width:185px}@media (max-width:759px){.AreYouSure-allAccessFlow .AreYouSure-primaryButton,.AreYouSure-allAccessFlow .AreYouSure-secondaryButton{width:100%}}.AreYouSure-proFlow .AreYouSure-primaryButton{align-items:center;appearance:none;background-color:#008456;border:1px solid #008456;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-proFlow .AreYouSure-primaryButton>span{display:block;line-height:12px}.AreYouSure-proFlow .AreYouSure-primaryButton [class*=" icon-"],.AreYouSure-proFlow .AreYouSure-primaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-proFlow .AreYouSure-primaryButton [class*=" icon-"]:before,.AreYouSure-proFlow .AreYouSure-primaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-proFlow .AreYouSure-primaryButton:focus,.AreYouSure-proFlow .AreYouSure-primaryButton:hover{background-color:#005034;border-color:#005034;color:#fff}.AreYouSure-proFlow .AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}@media (hover:hover){.AreYouSure-proFlow .AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#005034;border-color:#005034;color:#fff}}@media (min-width:760px){.AreYouSure-proFlow .AreYouSure-primaryButton{padding:0 30px;width:auto}}.AreYouSure-proFlow .AreYouSure-secondaryButton{align-items:center;appearance:none;background-color:#fff;border:1px solid #008456;color:#008456;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-proFlow .AreYouSure-secondaryButton>span{display:block;line-height:12px}.AreYouSure-proFlow .AreYouSure-secondaryButton [class*=" icon-"],.AreYouSure-proFlow .AreYouSure-secondaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-proFlow .AreYouSure-secondaryButton [class*=" icon-"]:before,.AreYouSure-proFlow .AreYouSure-secondaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-proFlow .AreYouSure-secondaryButton:focus,.AreYouSure-proFlow .AreYouSure-secondaryButton:hover{background-color:#fff;border-color:#005034;color:#005034}.AreYouSure-proFlow .AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#008456;color:#008456}@media (hover:hover){.AreYouSure-proFlow .AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#005034;color:#005034}}@media (min-width:760px){.AreYouSure-proFlow .AreYouSure-secondaryButton{padding:0 30px;width:auto}}.AreYouSure-proFlow .AreYouSure-primaryButton,.AreYouSure-proFlow .AreYouSure-secondaryButton{border-radius:3px;flex:1;font-size:16px;height:50px;line-height:12px;padding:0;width:185px}@media (max-width:759px){.AreYouSure-proFlow .AreYouSure-primaryButton,.AreYouSure-proFlow .AreYouSure-secondaryButton{width:100%}}.LogoHeader-header{margin-bottom:40px;margin-top:15px;text-align:center}.LogoHeader-defaultLogo,.LogoHeader-logo{display:inline}.LogoHeader-defaultLogo{height:19px}.LogoHeader-investingClubHeader{display:flex;justify-content:center;margin-bottom:40px;margin-top:11px}.LogoHeader-investingClubHeader .LogoHeader-defaultLogo,.LogoHeader-investingClubHeader .LogoHeader-logo{fill:#071d39;stroke:#071d39;max-width:255px}.NewLogoHeader-logoContainerFree{margin-bottom:0;margin-top:40px;text-align:center}@media (max-width:759px){.NewLogoHeader-logoContainerFree{margin-bottom:40px}}.NewLogoHeader-plusContainer{margin-bottom:20px}.NewLogoHeader-logo,.NewLogoHeader-logoFreeStyles{display:inline}.NewLogoHeader-logoFreeStyles{height:23px}@media (max-width:759px){.NewLogoHeader-logoFreeStyles{height:25px}}.NewLogoHeader-logoContainerSubscription{align-items:center;display:flex;height:100px;justify-content:space-between;width:100%}.NewLogoHeader-logoContainerSubscription .NewLogoHeader-rectangle{flex:1;height:54px}@media (max-width:1019px){.NewLogoHeader-logoContainerSubscription .NewLogoHeader-rectangle{height:45px}}.NewLogoHeader-logoContainerSubscription .NewLogoHeader-allAccess{background-color:#001e5a}.NewLogoHeader-logoContainerSubscription .NewLogoHeader-pro{background-color:#047e2e}.NewLogoHeader-logoContainerSubscription .NewLogoHeader-investingClub{background-color:#0053cf}.NewLogoHeader-logoContainerSubscription .NewLogoHeader-rectangle:first-of-type{margin-left:-21px;margin-right:3px}.NewLogoHeader-logoContainerSubscription .NewLogoHeader-rectangle:last-of-type{margin-left:-1px;margin-right:-21px}@media (max-width:1019px){.NewLogoHeader-logoContainerSubscription .NewLogoHeader-noBackgroundColor{background-color:initial!important}}.NewLogoHeader-logoContainerSubscription .NewLogoHeader-brandLogo img{height:54px}@media (max-width:1019px){.NewLogoHeader-logoContainerSubscription .NewLogoHeader-brandLogo img{height:45px}}.NewLogoHeader-plusAndICContainer{display:flex;gap:28px;justify-content:center}.NewLogoHeader-logoPill{height:35px;width:110px}.SignedIn-container{color:#171717;font-size:18px;font-weight:700;text-align:center;width:400px}@media (max-width:759px){.SignedIn-container{width:100%}}.SignedIn-container .SignedIn-messageConfirmation{font-size:18px;font-weight:600;line-height:18px;text-align:center}.SignedIn-okayButton{align-items:center;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:0 auto 15px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:200px}.SignedIn-okayButton>span{display:block;line-height:12px}.SignedIn-okayButton [class*=" icon-"],.SignedIn-okayButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.SignedIn-okayButton [class*=" icon-"]:before,.SignedIn-okayButton [class^=icon-]:before{line-height:12px}.SignedIn-okayButton:focus,.SignedIn-okayButton:hover{background-color:#008456;border-color:#008456;color:#fff}.SignedIn-okayButton[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.SignedIn-okayButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.SignedIn-okayButton{padding:0 30px;width:auto}}.SignedIn-logosContainer{display:flex;justify-content:center;margin-bottom:16px}.SignedIn-logosContainer :last-child,.SignedIn-logosContainer>:first-child{align-self:baseline;height:20px;text-align:center;top:10px;width:100px}.SignedIn-logosContainer>:nth-child(2){height:40px;width:100px}.SignedIn-proPill{height:22px}.SignedIn-checkmarkContainer{align-items:center;height:40px;margin-bottom:30px;margin-top:30px}.SignedIn-checkmarkContainer .SignedIn-checkMark,.SignedIn-checkmarkContainer .SignedIn-checkMarkAllAccess,.SignedIn-checkmarkContainer .SignedIn-checkmarkCNBC,.SignedIn-checkmarkContainer .SignedIn-checkmarkDefault,.SignedIn-checkmarkContainer .SignedIn-checkmarkInvestingClub,.SignedIn-checkmarkContainer .SignedIn-checkmarkPlus,.SignedIn-checkmarkContainer .SignedIn-checkmarkPro{height:40px;margin:0 30px;width:40px}.SignedIn-checkmarkCNBC circle{fill:#005594;opacity:.25}.SignedIn-checkmarkCNBC path{fill:#005594}.SignedIn-checkmarkPro circle{fill:#00a857;opacity:1}.SignedIn-checkmarkPro path{fill:#fff}.SignedIn-checkmarkDefault circle{fill:#005594;opacity:1}.SignedIn-checkmarkDefault path{fill:#fff}.SignedIn-checkMarkAllAccess circle{fill:#0053cf;opacity:1}.SignedIn-checkMarkAllAccess path{fill:#fff}.SignedIn-checkmarkInvestingClub circle{fill:#0496ff;opacity:1}.SignedIn-checkmarkInvestingClub path{fill:#fff}.SignedIn-checkmarkPlus circle{fill:#001e5a;opacity:1}.SignedIn-checkmarkPlus path{fill:#fff}.Confirmation-copy{color:#171717;margin-bottom:24px}.Confirmation-copy p.Confirmation-header{font-size:18px;font-weight:700;line-height:22px;margin:0 auto 30px}.Confirmation-copy p{font-size:14px;font-weight:600;line-height:16px}.Confirmation-email{color:#747474}.Confirmation-checkMark,.Confirmation-checkmarkAllAccess,.Confirmation-checkmarkDefault,.Confirmation-checkmarkInvestingClub,.Confirmation-checkmarkPlus,.Confirmation-checkmarkPro{height:40px;margin:auto auto 30px;width:40px}.Confirmation-checkmarkDefault circle{fill:#005594;opacity:1}.Confirmation-checkmarkDefault path{fill:#fff}.Confirmation-checkmarkPro circle{fill:#00a857;opacity:1}.Confirmation-checkmarkPro path{fill:#fff}.Confirmation-checkmarkAllAccess circle{fill:#0053cf;opacity:1}.Confirmation-checkmarkAllAccess path{fill:#fff}.Confirmation-confirmation{color:#424242;font-size:14px;font-weight:600;margin-bottom:24px;margin-top:0;text-align:center}.Confirmation-checkmarkInvestingClub circle{fill:#0496ff;opacity:1}.Confirmation-checkmarkInvestingClub path{fill:#fff}.Confirmation-checkmarkPlus circle{fill:#001e5a;opacity:1}.Confirmation-checkmarkPlus path{fill:#fff}.Confirmation-plusFlow .Confirmation-submitButton{background-color:#001e5a}.Confirmation-confirmationCode{color:#747474;font-weight:600}.Confirmation-confirmationText{margin-bottom:30px;margin-top:0}.Confirmation-investingClubFlow .Confirmation-submitButton{background-color:#071d39}.Confirmation-proFlow .Confirmation-submitButton{background-color:#00a857}.Confirmation-allAccessFlow p.Confirmation-header{font-weight:500;width:320px}.Confirmation-allAccessFlow .Confirmation-submitButton{background-color:#0053cf}.Confirmation-confirmationContainer{margin:auto;max-width:458px;min-height:400px;padding:0;text-align:center}@media (min-width:760px){.Confirmation-confirmationContainer{padding:0 40px}}.Confirmation-confirmationContainer .Confirmation-email{color:#747474;font-size:14px;font-weight:600;line-height:16px;margin:30px auto 20px;overflow:hidden;text-overflow:ellipsis}.Confirmation-confirmationContainer .Confirmation-text{color:#171717;font-size:18px;font-weight:600;line-height:18px;margin:0 auto}.Confirmation-confirmationContainer .Confirmation-text.Confirmation-slightlyBold{font-size:14px;width:370px}.Confirmation-confirmationContainer .Confirmation-buttonContainer{margin:30px 0}.Confirmation-confirmationContainer .Confirmation-watchlistButton{align-items:center;appearance:none;background-color:#fff;background:#005594;border:1px solid #005594;border-radius:3px;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:52px;justify-content:center;letter-spacing:1px;margin:auto;max-width:260px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.Confirmation-confirmationContainer .Confirmation-watchlistButton>span{display:block;line-height:12px}.Confirmation-confirmationContainer .Confirmation-watchlistButton [class*=" icon-"],.Confirmation-confirmationContainer .Confirmation-watchlistButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.Confirmation-confirmationContainer .Confirmation-watchlistButton [class*=" icon-"]:before,.Confirmation-confirmationContainer .Confirmation-watchlistButton [class^=icon-]:before{line-height:12px}.Confirmation-confirmationContainer .Confirmation-watchlistButton:focus,.Confirmation-confirmationContainer .Confirmation-watchlistButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.Confirmation-confirmationContainer .Confirmation-watchlistButton[class*=touchButton]:hover{background-color:#fff;border-color:#005594;color:#fff}@media (hover:hover){.Confirmation-confirmationContainer .Confirmation-watchlistButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.Confirmation-confirmationContainer .Confirmation-watchlistButton{padding:0 30px;width:auto}}.Confirmation-confirmationContainer .Confirmation-doneButton{color:#005594;font-size:14px;font-weight:600;letter-spacing:1.091px;line-height:16px;text-transform:uppercase}.Confirmation-confirmationContainer .Confirmation-doneButton:hover{color:#fcb700}.ErrorModal-confirmation{align-items:center;color:#424242;font-size:14px;font-weight:600;margin:20px 0 30px;padding:0;text-align:center}.ErrorModal-upperBlock{color:#171717}.ErrorModal-upperBlock .ErrorModal-header{font-size:18px;font-weight:600;line-height:16px;margin:30px 0}.ErrorModal-upperBlock .ErrorModal-paymentAlert{font-size:14px;font-weight:600;line-height:16px;margin-left:auto;margin-right:auto;max-width:80%}.ErrorModal-upperBlock .ErrorModal-email{color:#747474;font-size:14px;font-weight:500;margin-bottom:0}.ErrorModal-lowerBlock .ErrorModal-confirmationText{color:#424242;font-size:14px;font-weight:700;line-height:16px;margin-top:20px}.ErrorModal-lowerBlock .ErrorModal-confirmationText .ErrorModal-confirmationCode{color:#747474;font-weight:500}.ErrorModal-lowerBlock .ErrorModal-helpDesk{color:#171717;font-weight:600;margin:20px 0 30px}.ErrorModal-lowerBlock .ErrorModal-helpDesk a{color:#005594}.ErrorModal-lowerBlock .ErrorModal-helpDesk a:hover{color:#fcb813}.ErrorModal-checkMark{height:40px;margin:15px 0 10px;width:40px}.ErrorModal-checkMark circle{opacity:1!important}.ErrorModal-checkMark path{fill:#fff!important}.NotAvailableModal-contentWrapper{padding:40px;text-align:center}.NotAvailableModal-contentWrapper img{margin:auto}.tp-backdrop{background:#000000b3!important;transition:none!important}.tp-modal .tp-close{background:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 1.611 14.389 0 8 6.389 1.611 0 0 1.611 6.389 8 0 14.389 1.611 16 8 9.611 14.389 16 16 14.389 9.611 8 16 1.611Z' fill='%23747474'/%3E%3C/svg%3E") 50% no-repeat!important;border-radius:0!important;height:16px!important;right:12px!important;top:12px!important;transform:none!important;width:16px!important}.tp-modal .tp-close,.tp-modal .tp-close:focus,.tp-modal .tp-close:hover{box-shadow:none!important}.tp-iframe-wrapper{background-color:#f8f8f8!important;border-radius:4px;box-shadow:5px 5px 20px #1717171a!important;margin:0 auto!important;overflow:hidden;position:relative!important}@media (min-width:651px){.tp-iframe-wrapper{margin:100px auto!important}}.tp-modal{height:auto!important}.ContactCustomerCare-container{color:#171717;font-size:18px;font-weight:600;margin:30px 0;text-align:center;width:400px}@media (max-width:759px){.ContactCustomerCare-container{width:100%}}.ContactCustomerCare-container a{color:#005594}.ContactCustomerCare-container .ContactCustomerCare-message{margin:0 auto;max-width:300px}.PasswordAssistiveText-assistiveText{background-color:#f8f8f8;border:1px solid #d9d9d9;border-radius:0 0 6px 6px;border-top:0;padding:10px 5px 5px;position:absolute;width:100%;z-index:2}.PasswordAssistiveText-assistiveTextItem{color:#bababa;font-size:12px;font-weight:500;line-height:16px;margin-bottom:5px;text-align:left}.PasswordAssistiveText-assistiveTextItemComplete{color:#171717}.PasswordAssistiveText-checkMark{visibility:hidden}.PasswordAssistiveText-checkMarkDisplay{height:10px;margin-right:5px;visibility:visible}.AuthPasswordInput-assistiveTextContainer{position:relative;width:100%}.AccountHasEmailError-signIn{color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:inherit;font-weight:600;line-height:16px;margin-left:3px}.UserCreateAndSubmit-container{margin:0 auto;text-align:center;width:100%}@media (min-width:760px){.UserCreateAndSubmit-container{width:340px}}.UserCreateAndSubmit-loggedInAccount{color:#747474;font-size:14px;font-weight:700;margin-bottom:20px;margin-top:20px}.UserCreateAndSubmit-loggedInAccountEmail{color:#424242;font-weight:700}.UserCreateAndSubmit-continueButton{align-items:center;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-size:16px;font-weight:600;font-weight:700;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:0 auto 24px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:190px}.UserCreateAndSubmit-continueButton>span{display:block;line-height:12px}.UserCreateAndSubmit-continueButton [class*=" icon-"],.UserCreateAndSubmit-continueButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.UserCreateAndSubmit-continueButton [class*=" icon-"]:before,.UserCreateAndSubmit-continueButton [class^=icon-]:before{line-height:12px}.UserCreateAndSubmit-continueButton:focus,.UserCreateAndSubmit-continueButton:hover{background-color:#008456;border-color:#008456;color:#fff}.UserCreateAndSubmit-continueButton[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.UserCreateAndSubmit-continueButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.UserCreateAndSubmit-continueButton{padding:0 30px;width:auto}}@media (max-width:759px){.UserCreateAndSubmit-continueButton{width:100%}}.UserCreateAndSubmit-cta{color:#424242;font-size:16px;font-weight:500;line-height:16px;margin-bottom:30px;text-align:center}.UserCreateAndSubmit-formInputContainer{margin:0 auto 30px}@media (min-width:760px){.UserCreateAndSubmit-formInputContainer{width:340px}}.UserCreateAndSubmit-formInput{width:100%}input::-ms-clear,input::-ms-reveal{display:none}.UserCreateAndSubmit-infoText{color:#424242;flex:1;font-size:11px;line-height:13px;margin:0 0 12px 12px;text-align:center}.UserCreateAndSubmit-infoText a{color:#171717;font-weight:500;text-decoration:none}.UserCreateAndSubmit-infoText p{margin-bottom:0}.UserCreateAndSubmit-questionAndCta{color:#171717;font-size:12px;font-weight:600!important;line-height:16px;margin-bottom:20px}.UserCreateAndSubmit-questionAndCta button{font-weight:600}.UserCreateAndSubmit-miscellaneousError{word-wrap:break-word;border-radius:3px;color:#f44336;font-size:12px;margin:0 auto 15px;padding:10px;width:340px}.UserCreateAndSubmit-signedInMessage{color:#424242;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-weight:700;line-height:20px;margin-top:20px}@media (min-width:1020px){.UserCreateAndSubmit-investingClubContainer{width:322px}}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton{align-items:center;appearance:none;background-color:#071d39;border:1px solid #071d39;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-size:16px;font-weight:600;font-weight:700;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:0 auto 24px;padding:16px 0;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:190px}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton>span{display:block;line-height:12px}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton [class*=" icon-"],.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton [class*=" icon-"]:before,.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton [class^=icon-]:before{line-height:12px}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton:focus,.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton[class*=touchButton]:hover{background-color:#071d39;border-color:#071d39;color:#fff}@media (hover:hover){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton{padding:0 30px;width:auto}}@media (min-width:1020px){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton{width:auto}}@media (max-width:759px){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton{width:100%}}@media (min-width:1020px){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-formInputContainer{width:322px}}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-formInput{margin:0 auto}@media (min-width:760px) and (max-width:1019px){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-formInput{width:100%}}@media (min-width:1020px){.UserCreateAndSubmit-investingClubContainerLoggedIn .UserCreateAndSubmit-continueButton{transform:none}}.UserCreateAndSubmit-investingClubContainerLoggedIn .UserCreateAndSubmit-questionAndCta{color:#424242;font-size:12px;font-weight:700;margin-bottom:20px}.UserCreateAndSubmit-investingClubContainerLoggedIn .UserCreateAndSubmit-questionAndCta button{font-size:12px}.UserCreateAndSubmit-allAccessFlow .UserCreateAndSubmit-cta{color:#424242;font-size:16px;font-style:normal;font-weight:600;line-height:16px;margin-bottom:30px}@media (min-width:1020px){.UserCreateAndSubmit-allAccessFlow .UserCreateAndSubmit-cta{margin-bottom:37px}}.UserCreateAndSubmit-allAccessFlow .UserCreateAndSubmit-continueButton{background-color:#0053cf;border:none;font-size:14px;font-weight:700;letter-spacing:1px;line-height:16px}.UserCreateAndSubmit-allAccessFlow .UserCreateAndSubmit-continueButton:hover{background-color:#0053cf}.UserCreateAndSubmit-allAccessFlow .UserCreateAndSubmit-allAccessContinueButton:hover{background-color:#002f6c}@media (min-width:1020px){.UserCreateAndSubmit-plusFlow{width:322px}}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton{align-items:center;appearance:none;background-color:#001e5a;border:1px solid #001e5a;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-weight:600;font-weight:500;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:0 auto 24px;padding:16px 0;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:190px}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton>span{display:block;line-height:12px}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton [class*=" icon-"],.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton [class*=" icon-"]:before,.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton [class^=icon-]:before{line-height:12px}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton:focus,.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton:hover{background-color:#00081a;border-color:#00081a;color:#fff}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton[class*=touchButton]:hover{background-color:#001e5a;border-color:#001e5a;color:#fff}@media (hover:hover){.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton[class*=touchButton]:hover{background-color:#00081a;border-color:#00081a;color:#fff}}@media (min-width:760px){.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton{padding:0 30px;width:auto}}@media (min-width:1020px){.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton{width:190px}}@media (max-width:759px){.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton{width:100%}}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-ctaSignInOut{color:#001e5a}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-ctaSignInOut:focus,.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-ctaSignInOut:hover{color:#005594}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-formInputContainer{margin:0 auto 10px}@media (min-width:1020px){.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-formInputContainer{width:322px}}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-formInput{margin:0 auto}@media (min-width:760px) and (max-width:1019px){.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-formInput{width:100%}}.ProgressIndicator-stepsLine{background-color:#d9d9d9;flex:1;height:1px;margin-top:9px;width:100%}.ProgressIndicator-steps{display:flex;margin:0 auto;padding-bottom:40px;position:relative;width:115px}.ProgressIndicator-step{flex:0;position:relative}.ProgressIndicator-stepIcon{box-shadow:5px 5px 20px #1717171a}.ProgressIndicator-stepTitle{color:#747474;font-size:11px;font-weight:500;left:-42px;position:absolute;text-align:center;width:100px}.ProgressIndicator-stepTitleActive,.ProgressIndicator-stepTitleCurrent{color:#424242}.CreateAccount-container{width:min-content}@media (min-width:760px) and (max-width:1019px){.CreateAccount-container{width:558px}}@media (max-width:759px){.CreateAccount-container{width:100%}}.CreateAccount-signUpContainer{display:flex;margin:0 auto;width:min-content}@media (min-width:1020px){.CreateAccount-signUpContainer{padding:0 47px}}@media (max-width:1020px){.CreateAccount-signUpContainer{display:block;padding-top:0;width:auto}}.CreateAccount-createAccountContainerLoggedIn{display:block}.CreateAccount-createAccountContainerLoggedIn .CreateAccount-perksList{width:100%}@media (min-width:760px){.CreateAccount-createAccountContainerLoggedIn .CreateAccount-perksList{margin:30px;width:auto}}.CreateAccount-ctaSecondary{color:#424242;font-size:16px;font-weight:500;margin-bottom:10px;text-align:center}.CreateAccount-signedInMessage{background:#f1f1f1;border:1px solid #d9d9d9;border-radius:5px;color:#424242;font-size:14px;font-weight:600;line-height:20px;margin:10px auto;padding:5px;text-align:center;width:250px}.CreateAccount-perks{font-size:12px;line-height:14px;margin:0 10px 10px}.CreateAccount-perksContainer{height:100%;margin:10px auto;text-align:center;width:-moz-fit-content;width:fit-content}@media (min-width:760px){.CreateAccount-perksContainer{align-items:stretch;margin:20px auto 29px;max-width:465px;min-width:280px}}.CreateAccount-perk{display:flex;margin-bottom:8px}.CreateAccount-perkBullet{margin-top:4px}.CreateAccount-perkText{flex:1;line-height:18px;padding-left:8px;text-align:left}.CreateAccount-perksList{height:100%;margin:10px 0 27px;text-align:center;width:100%}@media (min-width:760px){.CreateAccount-perksList{align-items:stretch;margin:40px 19px 20px auto}}.CreateAccount-perksList .CreateAccount-ctaPrimary{color:#171717;font-size:20px;font-weight:600;line-height:24px;margin-bottom:1em;text-align:left;width:100%}@media (max-width:759px){.CreateAccount-perksList .CreateAccount-ctaPrimary{font-size:18px}}@media (max-width:1019px){.CreateAccount-perksList .CreateAccount-ctaPrimary{text-align:center}}.CreateAccount-perksList .CreateAccount-perk{margin-bottom:25px}.CreateAccount-perksList .CreateAccount-perkText{color:#071d39;font-size:18px;font-weight:500}@media (min-width:360px) and (max-width:759px){.CreateAccount-perksList .CreateAccount-perkText{font-size:16px}}.CreateAccount-continueButton{align-items:center;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-size:16px;font-weight:600;font-weight:700;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:0 auto 24px;padding:16px 0;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:190px}.CreateAccount-continueButton>span{display:block;line-height:12px}.CreateAccount-continueButton [class*=" icon-"],.CreateAccount-continueButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.CreateAccount-continueButton [class*=" icon-"]:before,.CreateAccount-continueButton [class^=icon-]:before{line-height:12px}.CreateAccount-continueButton:focus,.CreateAccount-continueButton:hover{background-color:#008456;border-color:#008456;color:#fff}.CreateAccount-continueButton[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.CreateAccount-continueButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.CreateAccount-continueButton{padding:0 30px;width:auto;width:190px}}@media (max-width:759px){.CreateAccount-continueButton{width:100%}}.SubscribeModal-modalContents{background-color:#fff;background-position:right -360px top 50px;background-repeat:no-repeat;background-size:900px;height:100%;padding:21px}.SubscribeModal-modalContents.SubscribeModal-investingclub{background-image:url(https://static-redesign.cnbcfm.com/dist/a3707990138080672bc2.svg)}.SubscribeModal-modalContents.SubscribeModal-pro{background-image:url(https://static-redesign.cnbcfm.com/dist/58666b98ea866f6cdb1b.svg)}.SubscribeModal-modalContents.SubscribeModal-allAccess{background-image:url(https://static-redesign.cnbcfm.com/dist/a888429ebce514cff229.svg)}.SubscribeModal-modalContents.SubscribeModal-plus{background-image:url(https://static-redesign.cnbcfm.com/dist/44944463efaf14fd092f.svg)}.SubscribeModal-createAccContainer{width:670px}@media (min-width:760px) and (max-width:1019px){.SubscribeModal-createAccContainer{width:558px}}@media (max-width:759px){.SubscribeModal-createAccContainer{width:100%}}.SubscribeModal-createAccContainer .SubscribeModal-ctaPrimary{color:#171717;font-size:20px;font-weight:600;margin-bottom:5px;text-align:center}@media (max-width:759px){.SubscribeModal-createAccContainer .SubscribeModal-ctaPrimary{font-size:18px}}.SignInOrSignUpModal-modalContents{background-image:url(https://static-redesign.cnbcfm.com/dist/44944463efaf14fd092f.svg);background-position:right -360px top 50px;background-repeat:no-repeat;background-size:900px;height:100%;padding:21px}@media (min-width:760px){.SignInOrSignUpModal-modalContents{background-position:right -360px bottom 10px}}.UnlockConfirmation-modalContents{padding:40px 71px 71px}@media (max-width:759px){.UnlockConfirmation-modalContents{padding:40px 51px 51px}}.UnlockConfirmation-logoHeader{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:28px;font-weight:700;line-height:1.05;padding-bottom:24px;text-align:center}@media (max-width:1019px){.UnlockConfirmation-logoHeader{font-size:28px;margin-bottom:12px}}@media (max-width:759px){.UnlockConfirmation-logoHeader{font-size:22px}}.UnlockConfirmation-logoProImg{display:inline-block;margin:0;padding:0;vertical-align:middle;width:204px}@media (max-width:1019px){.UnlockConfirmation-logoProImg{width:194px}}@media (max-width:759px){.UnlockConfirmation-logoProImg{width:164px}}.UnlockConfirmation-modalUnlockContainer{margin-left:auto;margin-right:auto;max-width:500px;padding:10px;text-align:center}@media (max-width:1019px){.UnlockConfirmation-modalUnlockContainer{width:100%}}.UnlockConfirmation-unlockText{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-weight:600;line-height:32px;padding-bottom:25px}@media (max-width:1019px){.UnlockConfirmation-unlockText{font-size:24px;line-height:26px;width:100%}}@media (max-width:759px){.UnlockConfirmation-unlockText{font-size:24px;line-height:22px}}.UnlockConfirmation-proText{color:#00a857}.UnlockConfirmation-unlockButton{align-items:center;background:#00a8573d;border-radius:50%;display:flex;height:40px;justify-content:center;margin-left:calc(50% - 20px);width:40px}.UnlockConfirmation-unlockIcon{height:25px;width:25px}.SignInOrSignUpConfirmationModal-modalContents{padding:21px}.LoggedInModal-modalContents{padding:40px 71px 71px}@media (max-width:759px){.LoggedInModal-modalContents{padding:40px 51px 51px}}.LoggedInModal-breaker{border:none;margin:0 -71px 24px;outline:.5px solid #cfd8e2}.LoggedInModal-logoHeader{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:28px;font-weight:700;line-height:1.05;padding-bottom:24px;text-align:center}@media (max-width:1019px){.LoggedInModal-logoHeader{font-size:28px;margin-bottom:12px}}@media (max-width:759px){.LoggedInModal-logoHeader{font-size:22px}}.LoggedInModal-logoProImg{display:inline-block;margin:0;padding:0;vertical-align:middle;width:204px}@media (max-width:1019px){.LoggedInModal-logoProImg{width:194px}}@media (max-width:759px){.LoggedInModal-logoProImg{width:164px}}.LoggedInModal-modalUnlockContainer{margin-left:auto;margin-right:auto;max-width:500px;padding:10px;text-align:center}@media (max-width:1019px){.LoggedInModal-modalUnlockContainer{width:100%}}.LoggedInModal-unlockText{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-weight:600;line-height:32px;padding-bottom:25px}@media (max-width:1019px){.LoggedInModal-unlockText{font-size:24px;line-height:26px;width:100%}}@media (max-width:759px){.LoggedInModal-unlockText{font-size:24px;line-height:22px}}.LoggedInModal-headerTitle{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:28px;font-weight:700;line-height:1.05;padding-bottom:20px}@media (max-width:1019px){.LoggedInModal-headerTitle{font-size:28px}}@media (max-width:759px){.LoggedInModal-headerTitle{font-size:24px;line-height:25px;padding-bottom:14px}}.LoggedInModal-proText{color:#00a857}.LoggedInModal-unlockButton{align-items:center;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;box-shadow:-2px 2px 2px #17171740;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-size:22px;font-weight:600;height:40px;height:60px;justify-content:center;letter-spacing:1px;margin:0 auto;max-width:300px;outline:.5px solid #333;padding:0 20px;text-align:center;text-transform:uppercase;text-transform:none;transition:all .15s linear;width:100%;width:80%}.LoggedInModal-unlockButton>span{display:block;line-height:12px}.LoggedInModal-unlockButton [class*=" icon-"],.LoggedInModal-unlockButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.LoggedInModal-unlockButton [class*=" icon-"]:before,.LoggedInModal-unlockButton [class^=icon-]:before{line-height:12px}.LoggedInModal-unlockButton:focus,.LoggedInModal-unlockButton:hover{background-color:#008456;border-color:#008456;color:#fff}.LoggedInModal-unlockButton[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.LoggedInModal-unlockButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.LoggedInModal-unlockButton{padding:0 30px;width:auto;width:100%}}.LoggedInModal-unlockIcon{margin-right:8px}.DynamicPaywallSignUpModal-modalContents{max-height:calc(100% - 1px);padding-top:21px}.DynamicPaywallSignUpModal-logoHeader{align-items:center;border-bottom:1px solid #cfd8e2;color:#333;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:48px;font-weight:700;justify-content:center;line-height:1.05;margin-bottom:24px;padding-bottom:20px;text-align:center}@media (max-width:1019px){.DynamicPaywallSignUpModal-logoHeader{font-size:36px;margin-bottom:0}}@media (max-width:759px){.DynamicPaywallSignUpModal-logoHeader{font-size:22px}}.DynamicPaywallSignUpModal-modalSignUpContainer{margin-left:auto;margin-right:auto;max-width:911px;padding:10px}@media (max-width:1019px){.DynamicPaywallSignUpModal-modalSignUpContainer{width:100%}}.DynamicPaywallSignUpModal-signUpContainer{display:flex;flex-direction:row;justify-content:space-between}@media (max-width:1019px){.DynamicPaywallSignUpModal-signUpContainer{display:block}}.DynamicPaywallSignUpModal-signUpContainer>:last-child{margin-top:0}.DynamicPaywallSignUpModal-signUpContainer>:last-child form>:first-child,.DynamicPaywallSignUpModal-signUpContainer>:last-child form>:nth-child(2){margin-bottom:20px}.DynamicPaywallSignUpModal-previewContainer{padding-right:10px;position:relative}@media (max-width:1019px){.DynamicPaywallSignUpModal-previewContainer{padding:0 20px 20px;width:100%}}@media (max-width:759px){.DynamicPaywallSignUpModal-previewContainer{padding:15px}}.DynamicPaywallSignUpModal-signupText{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-weight:600;line-height:32px;padding-bottom:25px}@media (max-width:1019px){.DynamicPaywallSignUpModal-signupText{font-size:19px;line-height:26px;padding-bottom:15px;width:100%}}@media (max-width:759px){.DynamicPaywallSignUpModal-signupText{font-size:16px;line-height:22px}}.DynamicPaywallSignUpModal-signUpPerks{list-style-type:unset;margin-top:7px}.DynamicPaywallSignUpModal-signUpPerks li{font-size:22px;font-weight:500;list-style-position:inside;list-style-type:unset}@media (max-width:759px){.DynamicPaywallSignUpModal-signUpPerks li{font-size:16px}}.DynamicPaywallSignUpModal-headerTitle{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:34px;font-weight:700;line-height:1.05;padding-bottom:20px}@media (max-width:1019px){.DynamicPaywallSignUpModal-headerTitle{font-size:36px;padding-bottom:10px}}@media (max-width:759px){.DynamicPaywallSignUpModal-headerTitle{font-size:24px;line-height:25px;padding-bottom:14px}}.DynamicPaywallSignUpModal-proText{color:#00a857}.DynamicPaywallSignUpModal-ctaText{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:20px;font-weight:600}@media (max-width:1019px){.DynamicPaywallSignUpModal-ctaText{font-size:17px}}@media (max-width:759px){.DynamicPaywallSignUpModal-ctaText{font-size:14px}}.DynamicPaywallSignUpModal-ctaButton{color:#00a857;cursor:pointer;font-size:20px;font-weight:600}@media (max-width:1019px){.DynamicPaywallSignUpModal-ctaButton{font-size:17px}}@media (max-width:759px){.DynamicPaywallSignUpModal-ctaButton{font-size:14px}}.ResetPasswordModal-modalContents{padding:20px}@media (min-width:760px){.ResetPasswordModal-modalContents{width:500px}}.ResetPasswordModal-container{color:#171717;font-weight:700;padding:20px 50px;text-align:center;width:500px}.ResetPasswordModal-boundedContainer{max-width:350px}.ResetPasswordModal-confirmationHeader{font-size:18px;margin-top:10px}.ResetPasswordModal-email{color:#9e9e9e}.ResetPasswordModal-checkmark{height:50px;width:50px}.ResetPasswordModal-okayButton{align-items:center;appearance:none;background-color:#002f6c;border:1px solid #002f6c;border-radius:3px;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:20px auto 15px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:200px}.ResetPasswordModal-okayButton>span{display:block;line-height:12px}.ResetPasswordModal-okayButton [class*=" icon-"],.ResetPasswordModal-okayButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.ResetPasswordModal-okayButton [class*=" icon-"]:before,.ResetPasswordModal-okayButton [class^=icon-]:before{line-height:12px}.ResetPasswordModal-okayButton:focus,.ResetPasswordModal-okayButton:hover,.ResetPasswordModal-okayButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}@media (hover:hover){.ResetPasswordModal-okayButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.ResetPasswordModal-okayButton{padding:0 30px;width:auto}}.ResetPasswordModal-okayButtonPro{align-items:center;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:20px auto 15px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:200px}.ResetPasswordModal-okayButtonPro>span{display:block;line-height:12px}.ResetPasswordModal-okayButtonPro [class*=" icon-"],.ResetPasswordModal-okayButtonPro [class^=icon-]{height:12px;margin-left:5px;position:relative}.ResetPasswordModal-okayButtonPro [class*=" icon-"]:before,.ResetPasswordModal-okayButtonPro [class^=icon-]:before{line-height:12px}.ResetPasswordModal-okayButtonPro:focus,.ResetPasswordModal-okayButtonPro:hover{background-color:#008456;border-color:#008456;color:#fff}.ResetPasswordModal-okayButtonPro[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.ResetPasswordModal-okayButtonPro[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.ResetPasswordModal-okayButtonPro{padding:0 30px;width:auto}.ResetPasswordModal-okayButton{width:200px}}.AddCardForm-addCardFormContainer{display:flex;flex-direction:column}.AddCardForm-hostedPaymentPagesContainer>iframe{border:none;min-height:340px;width:100%}.AddCardForm-backButton{align-self:flex-end;color:#0053cf;font-size:12px;font-weight:600;letter-spacing:.5px;line-height:14.62px}.CardList-cardListHeader{display:flex;flex-direction:row;justify-content:space-between;margin:20px 0}.CardList-headline{font-size:16px;font-weight:500;letter-spacing:.5px;line-height:19.49px;margin:0}.CardList-addCardButton{color:#0053cf;font-size:12px;font-weight:600;letter-spacing:.5px;line-height:14.62px}.CardList-listItem{align-items:center;border-top:1px solid #bababa;display:flex;flex-direction:row;gap:10px;padding:5px 10px}.CardList-cardList{border-bottom:1px solid #bababa}.CardList-selectCol input{cursor:pointer}.CardList-cardCol{font-size:12px;font-weight:600;letter-spacing:.5px;line-height:28px;text-align:left}.CardList-capitalized{text-transform:capitalize}.CardList-expCol{color:#747474;font-size:12px;font-weight:500;letter-spacing:.5px;line-height:14.62px;margin-left:auto}.Card-cardContainer,.SavedCards-savedCardsContainer{display:block}.PayPalButton-loading{align-items:center;cursor:default;display:flex;height:48px;justify-content:center;opacity:.8;pointer-events:none;width:100%}.PayPalButton-loading:after{animation:PayPalButton-spin 1s linear infinite;border:8px solid #b9b9b9;border-radius:50%;border-top-color:#fff;content:"";height:20px;position:absolute;width:20px;z-index:3}@keyframes PayPalButton-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.PayPalList-cardListHeader{display:flex;flex-direction:row;justify-content:space-between;margin:20px 0}.PayPalList-headline{font-size:16px;font-weight:500;letter-spacing:.5px;line-height:19.49px;margin:0}.PayPalList-listItem{align-items:center;border-top:1px solid #bababa;display:flex;flex-direction:row;gap:10px;padding:5px 0}.PayPalList-cardList{border-bottom:1px solid #bababa}.PayPalList-selectCol input{cursor:pointer}.PayPalList-cardCol{font-size:12px;font-weight:600;letter-spacing:.5px;line-height:28px;text-align:left}.SavedAccounts-savedPaypalAccountsContainer{display:block;margin-bottom:15px}.PayPal-payPalContainer{display:block;margin-top:20px}.PayPal-description,.PayPal-newAccountDescription{color:#424242;font-size:12px;font-weight:600;line-height:16px;margin-bottom:15px}.PayPal-newAccountDescription{margin-top:15px}.ApplePay-applePayContainer{display:block}.ApplePay-headline{font-size:16px;font-weight:500;letter-spacing:.5px;line-height:19.49px;margin-bottom:10px}.FormattedPrice-decimal{font-size:12px;position:relative;top:-5px}.PlanSelector-planSelectorContainer{margin-bottom:10px}.PlanSelector-headline{font-size:16px;font-weight:500;line-height:16px;margin:10px 0}.PlanSelector-planOptions{display:flex;flex-wrap:wrap;gap:10px;justify-content:space-between;min-height:100px;padding:0 10px}.PlanSelector-planButton{align-items:center;background-color:#fff;border:1px solid #0053cf;border-radius:25px;border-top:7px solid #0053cf;box-shadow:0 4px 6px 0 #0000001a;cursor:pointer;display:flex;flex:1;flex-direction:row;gap:10px;justify-content:center;max-height:81px;max-width:152px;padding:0;position:relative;text-align:center;transition:background-color .3s,border-color .3s}@media (min-width:760px){.PlanSelector-planButton{max-width:167px}}.PlanSelector-planButton:hover{background-color:#f7f7f7}.PlanSelector-planButton.PlanSelector-selected{border-color:#0053cf}.PlanSelector-planButton .PlanSelector-specialOffer{text-wrap:nowrap;background-color:#fcb700;border-radius:10px;color:#171717;display:block;font-size:12px;font-style:normal;font-weight:700;height:25px;left:50%;letter-spacing:1px;margin-top:-15px;padding:5px 10px;position:absolute;text-align:center;text-transform:uppercase;top:0;transform:translateX(-50%);width:-moz-fit-content;width:fit-content}.PlanSelector-radioButton{accent-color:#0053cf;cursor:pointer;height:20px;width:20px}.PlanSelector-planContent{align-items:flex-start;display:flex;flex-direction:column}.PlanSelector-planName{font-size:15px;font-weight:600;letter-spacing:1.5px;line-height:28px;text-transform:uppercase}.PlanSelector-planPrice{font-size:22px;font-weight:500;letter-spacing:.029px;line-height:28px}.InputField-inputFieldContainer{width:100%}.InputField-inputField{border:1px solid #ddd;border-radius:5px;padding:10px;width:100%}.InputField-inputField:-webkit-autofill,.InputField-inputField:-webkit-autofill:active,.InputField-inputField:-webkit-autofill:focus,.InputField-inputField:-webkit-autofill:hover{background-color:#fff!important;-webkit-box-shadow:inset 0 0 0 30px #fff!important}.InputField-inputError{color:#ce2b2b;font-size:12px;height:20px;min-height:20px;padding-left:5px}.SelectField-selectFieldContainer{position:relative;width:100%}.SelectField-selectField{appearance:none;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3E%3C/svg%3E");background-position:right 4px center;background-repeat:no-repeat;background-size:16px 12px;border:1px solid #ddd;border-radius:5px;overflow:hidden!important;padding:10px;text-overflow:ellipsis;white-space:nowrap;width:100%}.SelectField-selectError{color:#ce2b2b;font-size:12px;min-height:13px}.UserDetails-userDetailsContainer{margin-bottom:10px;max-width:315px}@media (min-width:760px){.UserDetails-userDetailsContainer{max-width:380px}}.UserDetails-headline{font-size:16px;font-weight:500;line-height:16px;margin:10px 0}.UserDetails-userDetailsForm{column-gap:5px;display:grid;grid-template-columns:repeat(8,35px)}@media (min-width:760px){.UserDetails-userDetailsForm{grid-template-columns:repeat(8,43px)}}.UserDetails-row{position:relative}.UserDetails-row:first-child{column-gap:5px;grid-column:1/span 4;grid-row:1}.UserDetails-row:nth-child(2){column-gap:5px;grid-column:5/span 4;grid-row:1}.UserDetails-row:nth-child(3){grid-column:1/span 8;grid-row:2}.UserDetails-row:nth-child(4){grid-column:1/span 5;grid-row:3}.UserDetails-row:nth-child(5){grid-column:6/span 3;grid-row:3}.UserDetails-row:nth-child(6){grid-column:1/span 3;grid-row:4}.UserDetails-row:nth-child(7){grid-column:4/span 5;grid-row:4}@media (min-width:760px){.UserDetails-row:nth-child(3){grid-column:1/span 5;grid-row:2}.UserDetails-row:nth-child(4){grid-column:6/span 3;grid-row:2}.UserDetails-row:nth-child(5){grid-column:1/span 2;grid-row:3}.UserDetails-row:nth-child(6){grid-column:3/span 2;grid-row:3}.UserDetails-row:nth-child(7){grid-column:5/span 4;grid-row:3}}.PaymentMethodLogo-paymentLogo{min-width:78px}.PaymentSelector-paymentSelectorContainer{margin-bottom:10px}.PaymentSelector-headline{font-size:16px;font-weight:500;line-height:16px;margin:10px 0}.PaymentSelector-paymentOptions{display:flex;flex-wrap:nowrap;gap:10px;justify-content:space-evenly}.PaymentSelector-paymentButton{background-color:#fff;border:1px solid #9e9e9e;border-radius:5px;cursor:pointer;flex-grow:1;min-width:30%;padding:10px;transition:background-color .3s,border-color .3s}.PaymentSelector-paymentButton:hover{background-color:#f7f7f7;border-color:#0053cf}.PaymentSelector-paymentButton.PaymentSelector-selected{border-color:#0053cf}.Payments-paymentMethodsContainer{display:block}@media (min-width:760px){.Payments-paymentMethodsContainer{min-height:300px}}.AccountInfo-accountInfoContainer{align-items:center;display:flex;flex-direction:column;gap:10px;justify-content:center}.AccountInfo-email{color:#424242;font-size:14px;font-weight:600;letter-spacing:.5px;line-height:17.05px;text-align:left}.AccountInfo-email .AccountInfo-label{padding-right:5px}.AccountInfo-email .AccountInfo-value{color:#9e9e9e}.AccountInfo-signOut{color:#424242;font-size:12px;font-weight:600;line-height:14.62px;text-align:left}.AccountInfo-signOut .AccountInfo-label{padding-right:5px}.AccountInfo-signOut a.AccountInfo-link{color:#0053cf;font-size:12px;font-weight:500;letter-spacing:1px;line-height:12px;margin:auto 0;text-align:left}.AccountInfo-signOut a.AccountInfo-link:focus,.AccountInfo-signOut a.AccountInfo-link:hover{color:#fcb700}.Description-descriptionContainer{align-self:flex-start;color:#747474;font-size:12px;font-weight:600;line-height:16px;margin-bottom:10px;text-align:left}.Disclaimer-disclaimerContainer{font-size:11px;font-weight:600;line-height:13px;text-align:left;text-transform:uppercase}a.Disclaimer-link{color:#0053cf;margin:auto 0}a.Disclaimer-link:focus,a.Disclaimer-link:hover{color:#fcb700;text-decoration:underline}.OrderPreview-orderPreviewContainer{align-items:center;border-radius:5px;color:#171717;display:flex;flex-direction:column;padding:20px}.OrderPreview-logoContainerDesktop{display:none}@media (min-width:760px){.OrderPreview-logoContainerDesktop{display:block;margin-bottom:20px;padding-top:20px}}.OrderPreview-headline{align-self:flex-start;font-size:18px;font-weight:600;line-height:16px;margin-bottom:10px;margin-top:0;text-align:left}.OrderPreview-details{font-size:1em;margin-bottom:10px;width:100%}.OrderPreview-row{display:flex;gap:10px;justify-content:space-between;padding:8px 0}.OrderPreview-borderBottom{border-bottom:1px solid #f1f1f1}.OrderPreview-label,.OrderPreview-value{color:#171717;font-size:1.2em;font-size:16px;font-weight:600;line-height:20px}.OrderPreview-subscribeButton{background-color:#0053cf;border:none;border-radius:5px;color:#fff;cursor:pointer;font-size:14px;font-weight:600;height:44px;letter-spacing:1.09px;line-height:16px;margin:20px auto;padding:10px 20px;text-align:center;text-transform:uppercase;transition:background-color .3s;width:100%}.OrderPreview-subscribeButton:disabled{background-color:#d9d9d9;color:#424242;cursor:not-allowed}.SubscriptionCheckoutModal-subscriptionModalContainer{display:flex;flex-direction:column;height:-moz-fit-content;height:fit-content;position:relative;width:inherit}@media (min-width:760px){.SubscriptionCheckoutModal-subscriptionModalContainer{flex-direction:row}}.SubscriptionCheckoutModal-error{color:#d0021b;font-size:20px;font-weight:500;height:600px;width:790px}.SubscriptionCheckoutModal-error,.SubscriptionCheckoutModal-loading{align-items:center;cursor:default;display:flex;justify-content:center;opacity:.8;pointer-events:none}.SubscriptionCheckoutModal-loading:before{background:#999;content:"";height:100%;left:0;position:absolute;top:0;width:100%;z-index:999}.SubscriptionCheckoutModal-loading:after{animation:SubscriptionCheckoutModal-spin 1s linear infinite;border:8px solid #b9b9b9;border-radius:50%;border-top-color:#fff;content:"";height:50px;position:absolute;width:50px;z-index:999}@keyframes SubscriptionCheckoutModal-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.SubscriptionCheckoutModal-logoContainerMobile{display:block;padding:20px 0;text-align:center}@media (min-width:760px){.SubscriptionCheckoutModal-logoContainerMobile{display:none}}.SubscriptionCheckoutModal-leftPane{background:#fff;flex:1}@media (min-width:760px){.SubscriptionCheckoutModal-leftPane{padding:0 15px}}.SubscriptionCheckoutModal-rightPane{background-color:#f8f8f8;flex:1;width:auto}.SubscriptionCheckoutModal-leftPaneContent{display:flex;flex-direction:column;height:100%;max-width:-moz-fit-content;max-width:fit-content;padding:20px 30px}@media (min-width:760px){.SubscriptionCheckoutModal-leftPaneContent{max-width:470px}}.SubscriptionCheckoutModal-rightPaneContent{flex-direction:column;height:100%;justify-content:space-around;max-width:-moz-fit-content;max-width:fit-content;padding:0 20px}@media (min-width:760px){.SubscriptionCheckoutModal-rightPaneContent{max-width:350px}}.SubscriptionCheckoutModal-accountInfoDesktop{display:none}@media (min-width:760px){.SubscriptionCheckoutModal-accountInfoDesktop{display:block;margin-top:20px}}.SubscriptionCheckoutModal-accountInfoMobile{display:block;margin:20px auto 50px}@media (min-width:760px){.SubscriptionCheckoutModal-accountInfoMobile{display:none}}.SubscriptionCheckoutContainer-container{display:block;height:-moz-fit-content;height:fit-content}.NotificationProvider-backdrop{background-color:#fff;box-shadow:0 4px 4px 0 #00000040;height:100%;padding:30px 30px 20px;position:fixed;right:0;top:0;width:605px;z-index:9999}@media (max-width:1019px){.NotificationProvider-backdrop{width:524px}}@media (max-width:759px){.NotificationProvider-backdrop{padding:20px;width:100%}}.NotificationProvider-notificationWrapper{display:flex;flex-direction:column;height:calc(100% - 100px);overflow-y:auto;overscroll-behavior:contain}@media (max-width:759px){.NotificationProvider-notificationWrapper{height:calc(100% - 80px)}}.NotificationProvider-closeButton{float:right}.NotificationProvider-closeButton:focus-visible>span>svg{border:1px solid #071d39;border-radius:4px}.NotificationProvider-headingContainer{display:flex;flex-direction:row;justify-content:space-between;margin-bottom:30px}@media (max-width:759px){.NotificationProvider-headingContainer{margin-bottom:15px}}.NotificationProvider-notificationsPanelTitle{color:#000;font-size:28px;font-weight:400;letter-spacing:.28px;line-height:28px}@media (max-width:759px){.NotificationProvider-notificationsPanelTitle{font-size:24px}}.NotificationProvider-liveEventContainerWrapper{margin-bottom:30px}@media (max-width:759px){.NotificationProvider-liveEventContainerWrapper{margin-bottom:25px}}.NotificationProvider-liveEventContainer{display:flex;flex-direction:column}.NotificationProvider-smallSpan{background-color:#0477c9;display:block;height:6px;width:110px}.NotificationProvider-smallSpanNotificationsOff{background-color:#747474}.NotificationProvider-border{background-color:#747474;display:block;height:1px;width:100%}.NotificationProvider-notificationsHeading{color:#000;font-size:20px;font-weight:700;letter-spacing:.01em;line-height:24px;margin-bottom:10px;margin-top:7px;text-transform:uppercase}@media (max-width:759px){.NotificationProvider-notificationsHeading{font-size:18px;margin-top:5px}}.NotificationProvider-focusTrapContainer{height:100%;overflow:auto}.NotificationProvider-watchlistAlertsContainer{display:flex;flex-direction:column}.NotificationProvider-toggleContainer{align-items:center;bottom:20px;display:flex;flex-direction:row;float:right;gap:10px;position:fixed;right:30px}.NotificationProvider-toggleText{color:#000;font-size:15px;font-weight:500}.NotificationProvider-switch{display:inline-block;height:19px;position:relative;width:40px}.NotificationProvider-switch:focus-within>.NotificationProvider-slider{border:1px solid #000}.NotificationProvider-switch input{height:0;opacity:0;width:0}.NotificationProvider-slider{background-color:#ccc;border:1px solid #ccc;border-radius:34px;bottom:0;cursor:pointer;left:0;position:absolute;right:0;top:0;transition:.4s}.NotificationProvider-slider:before{background-color:#fff;border-radius:50%;bottom:3px;content:"";height:12px;left:2px;position:absolute;transition:.4s;width:12px}input:checked+.NotificationProvider-slider{background-color:#0477c9;border:1px solid #0477c9}input:checked+.NotificationProvider-slider:before{left:-2px;transform:translateX(26px)}.NotificationProvider-notificationPanelOffText{margin-top:30px}.NotificationProvider-yrhiind{color:#008456;font-weight:700}.NotificationProvider-yrloind{color:#b40909;font-weight:700}.NotificationProvider-notificationsHeadingContainer{align-items:center;display:flex;justify-content:space-between}.NotificationProvider-dropdownButton{align-items:center;border:1px solid #0000;border-radius:4px;color:#fff;display:flex}.NotificationProvider-dropdownButton:active{-webkit-tap-highlight-color:transparent}.NotificationProvider-dropdownButton:focus-visible{border:1px solid #4699d6;border-radius:4px}@media (min-width:760px){.NotificationProvider-dropdownButton{margin-right:10px}}.NotificationProvider-dropdownButton .NotificationProvider-dropdownArrow,.NotificationProvider-dropdownButton .NotificationProvider-dropdownUpArrow{background:#4699d6;height:13px;width:21px}.NotificationProvider-dropdownButton .NotificationProvider-dropdownArrow,.NotificationProvider-dropdownButton .NotificationProvider-dropdownUpArrow{mask-image:url(https://static-redesign.cnbcfm.com/dist/a09d43acfa362f012895.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/a09d43acfa362f012895.svg)}.NotificationProvider-dropdownButton .NotificationProvider-dropdownUpArrow{transform:scaleY(-1)}.NotificationProvider-collapseLiveEventContainer,.NotificationProvider-noLiveEventTextCollapse{display:none}.WatchlistAlertNotifications-watchlistAlertsHeading{color:#000;font-size:20px;font-weight:700;letter-spacing:.01em;line-height:24px;margin-bottom:10px;margin-top:7px;text-transform:uppercase}@media (max-width:759px){.WatchlistAlertNotifications-watchlistAlertsHeading{font-size:18px;margin-top:5px}}.WatchlistAlertNotifications-watchlistAlertItemLink:focus-visible .WatchlistAlertNotifications-watchlistAlertItem{background-color:#f1f1f1}.WatchlistAlertNotifications-watchlistAlertItem{align-items:center;background-color:#f8f8f8;border-bottom:1px solid #dedede;display:flex;gap:10px;margin-bottom:1px;padding:15px 10px}.WatchlistAlertNotifications-watchlistAlertItem:hover{background-color:#f1f1f1}@media (max-width:759px){.WatchlistAlertNotifications-watchlistAlertItem{min-height:50px;padding:10px}}.WatchlistAlertNotifications-watchlistAlertIcon>img{height:23.33px;width:25px}@media (max-width:759px){.WatchlistAlertNotifications-watchlistAlertIcon>img{height:16px;width:16px}}.WatchlistAlertNotifications-watchlistAlertTitle{align-items:center;color:#171717;display:flex;font-size:12px;font-weight:500;gap:5px;line-height:14.62px}@media (max-width:1019px){.WatchlistAlertNotifications-watchlistAlertTitle{align-items:baseline;flex-direction:column}}@media (max-width:759px){.WatchlistAlertNotifications-watchlistAlertTitle{font-size:14px}}.WatchlistAlertNotifications-watchlistSymbol{font-weight:700}.WatchlistAlertNotifications-notificationsQuoteData{align-items:center;background-color:#fff;border:1px solid #9e9e9e;border-radius:8px;display:flex;font-size:12px;font-weight:800;height:29px;justify-content:center;padding:0 5px;white-space:nowrap}.WatchlistAlertNotifications-notificationsQuoteData .WatchlistAlertNotifications-symbolDecline,.WatchlistAlertNotifications-notificationsQuoteData .WatchlistAlertNotifications-symbolGain{color:#071d39}.WatchlistAlertNotifications-notificationsQuoteData .WatchlistAlertNotifications-quoteGain{color:#008456}.WatchlistAlertNotifications-notificationsQuoteData .WatchlistAlertNotifications-quoteDecline{color:#ce2b2b}.WatchlistAlertNotifications-notificationsQuoteData .WatchlistAlertNotifications-quoteDecline span:nth-child(2),.WatchlistAlertNotifications-notificationsQuoteData .WatchlistAlertNotifications-quoteGain span:nth-child(2){margin-left:4px}.WatchlistAlertNotifications-quoteSeperator{color:#747474;margin-left:4px;margin-right:4px}.NewsAlertNotifications-liveEventItemLink:focus-visible,.NewsAlertNotifications-liveEventItemLink:focus-visible .NewsAlertNotifications-liveEventItemWithBackground{background-color:#f1f1f1}.NewsAlertNotifications-liveEventItem{align-items:center;border-bottom:1px solid #dedede;display:flex;gap:10px;padding:15px 10px}@media (max-width:759px){.NewsAlertNotifications-liveEventItem{min-height:50px;padding:10px}}.NewsAlertNotifications-liveEventTitle{color:#171717;font-size:12px;font-weight:500;line-height:14px}@media (max-width:759px){.NewsAlertNotifications-liveEventTitle{font-size:14px}}.NewsAlertNotifications-clubPill{color:#0496ff}.NewsAlertNotifications-clubPill,.NewsAlertNotifications-proPill{font-size:10px;font-weight:700;letter-spacing:1.5px;line-height:10px}.NewsAlertNotifications-proPill{color:#00a857}.NewsAlertNotifications-lockIcon{position:relative}.NewsAlertNotifications-lockIcon span{display:none}.NewsAlertNotifications-lockIcon:hover span{bottom:20px;display:block;position:absolute;right:-8px;white-space:nowrap}.NewsAlertNotifications-tooltipArrow{background-color:#fff!important;border-left:11px solid #0000;border-right:11px solid #0000;left:-6px;top:-14px}.NewsAlertNotifications-tooltip{border-radius:4px;color:#fff;font-size:12px;font-weight:600;height:21px;letter-spacing:1px;line-height:7px;padding:7px 4px 7px 8px;text-align:left}.NewsAlertNotifications-clubTooltipArrow{border-top:8px solid #0496ff}.NewsAlertNotifications-proTooltipArrow{border-top:8px solid #008456}.NewsAlertNotifications-proTooltip{background-color:#008456}.NewsAlertNotifications-clubTooltip{background-color:#0496ff}.NewsAlertNotifications-liveEventIcon>img{height:23.33px;width:25px}@media (max-width:759px){.NewsAlertNotifications-liveEventIcon>img{height:16px;width:16px}}.NewsAlertNotifications-liveEventPill{align-items:flex-end;display:flex;flex-direction:column;gap:3px;margin-left:auto}.NewsAlertNotifications-timestamp{color:#424242;font-size:10px;font-weight:600;letter-spacing:1.5px;line-height:10px;text-transform:uppercase;white-space:nowrap}.NewsAlertNotifications-liveEventItemWithBackground{background-color:#f8f8f8}.NewsAlertNotifications-liveEventItemWithBackground:hover{background-color:#f1f1f1}.NewsAlertNotifications-tradeAlertsTitle{color:#005594;font-size:12px;font-weight:700}.CreateOrEditWatchlist-watchlistContainer{display:flex;flex-direction:column;gap:50px;overflow:hidden}@media (max-width:759px){.CreateOrEditWatchlist-watchlistContainer{gap:30px}}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-watchlistCreateOrEditContainer{display:flex;flex-direction:column;gap:15px}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-editWatchlistText{color:#000;font-size:20px;font-weight:400;letter-spacing:.2px;line-height:24px}@media (max-width:759px){.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-editWatchlistText{font-size:14px;line-height:16.8px}}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-editWatchlistLink{color:#005594;display:flex;font-size:20px;font-style:normal;font-weight:500;gap:7px;height:20px;letter-spacing:1.091px;line-height:16px;text-align:center;-webkit-text-decoration-line:underline;text-decoration-line:underline}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-editWatchlistLink>img{height:16px;position:relative;top:3px;width:16px}@media (max-width:759px){.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-editWatchlistLink>img{height:12px;width:12px}}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-editWatchlistLink:hover{color:#005594}@media (max-width:759px){.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-editWatchlistLink{font-size:14px;line-height:16px}}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-createWatchlistText{color:#000;font-size:32px;font-weight:400;letter-spacing:.03px;line-height:40px;text-align:center}@media (min-width:760px){.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-createWatchlistText{margin-top:30px}}@media (max-width:759px){.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-createWatchlistText{font-size:24px;line-height:29.23px;margin-top:10px}}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-createWatchlistContainer{display:flex;flex-direction:column;gap:50px}@media (max-width:759px){.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-createWatchlistContainer{gap:30px}}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-createWatchlistButton{align-items:center;background-color:#005594;color:#fff;cursor:pointer;display:flex;font-size:16px;font-weight:600;height:50px;justify-content:center;letter-spacing:1.091px;line-height:16px;margin:auto;text-align:center;text-transform:uppercase;white-space:nowrap;width:236px}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-createWatchlistButton:hover{color:#fff}@media (max-width:759px){.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-createWatchlistButton{font-size:14px;height:46px;margin-bottom:20px;width:208px}}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-watchlistImg{background-image:url(https://static-redesign.cnbcfm.com/dist/aaef357fd7f6d3bbf46a.png);background-repeat:no-repeat;background-size:423px 184px;height:184px;margin:35px auto auto;width:423px}@media (max-width:759px){.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-watchlistImg{background-image:url(https://static-redesign.cnbcfm.com/dist/6f13373a0304d88f6030.png);background-size:257px 168px;height:168px;margin-top:15px;width:257px}}.SplitStats-splitStats{margin:15px 0 0}@media (min-width:760px){.SplitStats-splitStats{display:none}}.SplitStats-splitStats .SplitStats-title{color:#002f6c;font-size:18px;font-weight:800;text-transform:uppercase}.SplitStats-splitStats .SplitStats-list,.SplitStats-splitStats .SplitStats-listSingle{grid-gap:0 15px;display:grid;grid-template-columns:1fr 1fr;list-style:none;margin:0;padding:0}.SplitStats-splitStats .SplitStats-flowColumn{grid-auto-flow:column;grid-template-rows:repeat(4,auto)}.SplitStats-splitStats .SplitStats-listSingle{grid-auto-flow:row;grid-template-columns:1fr;grid-template-rows:none}.SplitStats-splitStats .SplitStats-listSingle .SplitStats-item{border-bottom:0;font-size:16px;margin:0;padding:5px 2px}.SplitStats-splitStats .SplitStats-listSingle .SplitStats-item:nth-child(odd){background:#f8f8f8}.SplitStats-splitStats .SplitStats-listSingle .SplitStats-name{color:#171717;font-weight:400}.SplitStats-splitStats .SplitStats-item{align-items:center;border-bottom:1px solid #d9d9d9;box-sizing:border-box;display:flex;font-family:Proxima Nova,sans-serif;font-size:11px;font-weight:800;justify-content:space-between;margin:0 0 5px;padding:0 0 5px}.SplitStats-splitStats .SplitStats-name{color:#747474}.SplitStats-splitStats .SplitStats-price{color:#171717}.ProPill-proPillLink{display:inline-block;padding-right:4px}.ProPill-proPill{bottom:0;display:inline-block;position:relative;vertical-align:initial;width:auto}.PieChart-chart{border-radius:50%;box-shadow:0 4px 4px #00000040;padding:0;pointer-events:all}.PieChart-chart,.PieChart-inner{height:var(--diameter);width:var(--diameter)}.PieChart-inner{display:grid;place-items:center;pointer-events:none;position:absolute;text-align:center}.PieChart-overlay{border-radius:50%;box-shadow:calc(var(--shadowOffset)*-1) var(--shadowOffset) 5px 1px #00000040;display:flex;flex-direction:column;font-family:Proxima Nova,Helvetica,Arial,sans-serif;height:calc(var(--diameter) - var(--strokeWidth)*2);justify-content:center;width:calc(var(--diameter) - var(--strokeWidth)*2)}.PieChart-total{font-size:20px;font-weight:600;line-height:20px}.PieChart-ratings{font-size:10px;font-weight:500;line-height:12px}.PieChart-consensus{word-wrap:break-word;font-size:16px;font-weight:600;hyphens:auto;line-height:16px;padding:4px}.AnalystConsensus-container{background:#fff;border:1px solid #d9d9d9;border-radius:10px;box-shadow:0 4px 4px #00000040;color:#000;display:grid;font-family:Proxima Nova,Helvetica,Arial,sans-serif;grid-template-columns:2fr 3fr;grid-template-rows:42px 199px;height:241px;overflow:hidden}.AnalystConsensus-containerWebservice{margin-bottom:30px}.AnalystConsensus-header{align-items:center;border-bottom:3px solid #00a857;display:flex;grid-column:1/3;grid-row:1/2;justify-content:space-between;padding:4px 20px 0 16px}.AnalystConsensus-proPill{height:20px}.AnalystConsensus-stockInfo{align-items:center;color:#005594;display:flex;line-height:19px;min-height:22px}.AnalystConsensus-companyName{font-size:20px;font-weight:700;line-height:20px;margin-right:8px}.AnalystConsensus-stockSymbol{border-left:2px solid #005594;color:#005594!important;font-size:18px;font-style:normal;font-weight:500;line-height:20px;padding-left:8px;text-decoration:none!important}.AnalystConsensus-stockSymbol:hover{color:#fcb700!important}.AnalystConsensus-leftPanel{column-gap:10px;display:grid;grid-column:1/2;grid-row:2/3;grid-template-columns:1fr 1fr;grid-template-rows:auto 46px;padding:22px;row-gap:20px}.AnalystConsensus-negativeUpside{color:#b40909}.AnalystConsensus-averagePriceTarget,.AnalystConsensus-currentPrice,.AnalystConsensus-highPriceTarget{border-bottom:1px dashed #747474}.AnalystConsensus-headerQuotePage{justify-content:flex-end}.AnalystConsensus-title{font-size:16px;font-weight:600;grid-column:1/3;grid-row:2/3;letter-spacing:1px;line-height:19px;text-align:center}.AnalystConsensus-pieChart{align-items:center;display:flex;flex-direction:column;grid-column:1/2;grid-row:1/2;justify-self:right;width:-moz-fit-content;width:fit-content}.AnalystConsensus-buy,.AnalystConsensus-hold,.AnalystConsensus-sell,.AnalystConsensus-strongBuy,.AnalystConsensus-underperform{align-items:center;display:flex;font-size:12px;font-weight:600;line-height:15px}.AnalystConsensus-buy .AnalystConsensus-box,.AnalystConsensus-hold .AnalystConsensus-box,.AnalystConsensus-sell .AnalystConsensus-box,.AnalystConsensus-strongBuy .AnalystConsensus-box,.AnalystConsensus-underperform .AnalystConsensus-box{height:14px;margin-left:10px;margin-right:10px;width:14px}.AnalystConsensus-buy{color:#00a857}.AnalystConsensus-buy .AnalystConsensus-box{background-color:#00a857}.AnalystConsensus-hold{color:#747474}.AnalystConsensus-hold .AnalystConsensus-box{background-color:#747474}.AnalystConsensus-sell{color:#002f6c}.AnalystConsensus-sell .AnalystConsensus-box{background-color:#002f6c}.AnalystConsensus-underperform{color:#336aa0}.AnalystConsensus-underperform .AnalystConsensus-box{background-color:#336aa0}.AnalystConsensus-strongBuy{color:#145c42}.AnalystConsensus-strongBuy .AnalystConsensus-box{background-color:#145c42}.AnalystConsensus-legend{background:#f8f8f8;border:.2px solid #d8d8d8;border-radius:6px;box-shadow:0 1px 4px #00000040;display:flex;flex-direction:column;height:108px;justify-content:space-around;padding:3px 8px 3px 0;width:-moz-fit-content;width:fit-content}.AnalystConsensus-rightPanel{border-left:1px solid #0003;display:flex;flex-direction:column;grid-column:2/3;grid-row:2/3;justify-content:space-between}.AnalystConsensus-stats{display:flex;flex-direction:column;justify-content:space-around;padding:15px 25px}.AnalystConsensus-averagePriceTarget,.AnalystConsensus-currentPrice,.AnalystConsensus-highPriceTarget,.AnalystConsensus-lowPriceTarget{align-items:center;display:flex;font-size:16px;font-weight:500;height:54px;line-height:19px}.AnalystConsensus-value{font-size:16px;line-height:19px;margin-left:auto}.AnalystConsensus-highPriceTarget .AnalystConsensus-value{color:#145c42}.AnalystConsensus-averagePriceTarget .AnalystConsensus-value{color:#424242;display:flex;flex-direction:column;font-size:14px;text-align:right}.AnalystConsensus-averagePriceTarget .AnalystConsensus-value .AnalystConsensus-upside{color:default}.AnalystConsensus-lowPriceTarget .AnalystConsensus-value{color:#002f6c}@media (max-width:760px){.AnalystConsensus-container{border-radius:2px;display:grid;grid-template-columns:303px;grid-template-rows:auto 195px 190px;height:auto;width:303px}.AnalystConsensus-header{grid-column:1/2;grid-row:1/2;padding:6px 20px}.AnalystConsensus-header .AnalystConsensus-proPill{height:13px}.AnalystConsensus-header .AnalystConsensus-stockInfo .AnalystConsensus-companyName{font-size:14px;font-weight:700;height:auto;line-height:16px;margin-right:5px;max-width:10rem}.AnalystConsensus-header .AnalystConsensus-stockInfo .AnalystConsensus-stockSymbol{border-left:1px solid #005594;font-size:12px;font-weight:500;line-height:16px;padding-left:5px}.AnalystConsensus-leftPanel{border-bottom:1px solid #d9d9d9;display:grid;grid-column:1/2;grid-row:2/3;grid-template-columns:1fr 1fr;padding:0 20px}.AnalystConsensus-leftPanel .AnalystConsensus-pieChart{justify-self:right;margin-right:14px;margin-top:20px}.AnalystConsensus-leftPanel .AnalystConsensus-legend{margin-top:20px}.AnalystConsensus-rightPanel{border-left:none;grid-column:1/2;grid-row:3/4}.AnalystConsensus-rightPanel .AnalystConsensus-stats{padding:0 20px}.AnalystConsensus-rightPanel .AnalystConsensus-stats .AnalystConsensus-averagePriceTarget,.AnalystConsensus-rightPanel .AnalystConsensus-stats .AnalystConsensus-currentPrice,.AnalystConsensus-rightPanel .AnalystConsensus-stats .AnalystConsensus-highPriceTarget,.AnalystConsensus-rightPanel .AnalystConsensus-stats .AnalystConsensus-lowPriceTarget{font-size:14px;height:64px;line-height:17px}}.AnalystConsensus-containerArticlePage{height:421px;margin-bottom:30px}.AnalystConsensus-currentPrice{display:flex;justify-content:space-between}.AnalystConsensus-currentPrice .AnalystConsensus-value{display:flex;justify-content:flex-end}.AnalystConsensus-lastUpdated{color:#424242;display:flex;font-size:8px;font-style:normal;font-weight:600;line-height:10px}.AnalystConsensus-changePct{align-items:center;color:#008456;display:flex;font-size:10px;font-style:normal;font-weight:600;line-height:12px}.AnalystConsensus-changePctNegative{color:#b40909}.AnalystConsensus-unchanged{color:#424858}@media (min-width:360px){.AnalystConsensus-rightPanel .AnalystConsensus-statsArticlePage .AnalystConsensus-averagePriceTarget,.AnalystConsensus-rightPanel .AnalystConsensus-statsArticlePage .AnalystConsensus-currentPrice,.AnalystConsensus-rightPanel .AnalystConsensus-statsArticlePage .AnalystConsensus-highPriceTarget,.AnalystConsensus-rightPanel .AnalystConsensus-statsArticlePage .AnalystConsensus-lowPriceTarget{height:46px}}@media (min-width:760px){.AnalystConsensus-containerArticlePage{height:241px}.AnalystConsensus-rightPanel .AnalystConsensus-statsArticlePage .AnalystConsensus-averagePriceTarget,.AnalystConsensus-rightPanel .AnalystConsensus-statsArticlePage .AnalystConsensus-currentPrice,.AnalystConsensus-rightPanel .AnalystConsensus-statsArticlePage .AnalystConsensus-highPriceTarget,.AnalystConsensus-rightPanel .AnalystConsensus-statsArticlePage .AnalystConsensus-lowPriceTarget{height:44px}}@media (min-width:1340px){.AnalystConsensus-containerQuotePage{grid-template-rows:40px 191px;height:231px;width:966px}.AnalystConsensus-containerQuotePage .AnalystConsensus-leftPanel{column-gap:44px}.AnalystConsensus-containerQuotePage .AnalystConsensus-rightPanel .AnalystConsensus-stats{padding-left:40px;padding-right:40px}}.AnalystConsensus-gateContainer{border-radius:10px;box-shadow:0 4px 4px #00000040;width:100%}.AnalystConsensus-gateContainer div[style],.AnalystConsensus-gateContainer iframe[style]{border-radius:10px}@media (max-width:760px){.AnalystConsensus-gateContainer{box-shadow:none;display:flex;justify-content:center}.AnalystConsensus-gateContainer div[style],.AnalystConsensus-gateContainer iframe[style]{border-radius:2px;box-shadow:0 4px 4px #00000040;width:303px!important}}.AnalystConsensus-error .AnalystConsensus-legend{flex-direction:row}.AnalystConsensus-error .AnalystConsensus-legend .AnalystConsensus-boxContainer{display:flex;flex-direction:column;justify-content:space-around}.AnalystConsensus-error .AnalystConsensus-legend .AnalystConsensus-errorMessage{color:#ce2b2b;display:grid;font-size:12px;font-weight:500;line-height:12px;place-items:center;text-align:center}.BadgeGroup-badgeGroup{display:flex;justify-content:center;margin:24px 0 0;width:100%}@media (max-width:1019px){.BadgeGroup-badgeGroup{margin:24px 0 -6px}}@media (max-width:759px){.BadgeGroup-badgeGroup{margin:0}}.BadgeGroup-badge{margin:0 10px;max-height:60px;max-width:120px}.Loading-wrapper{background:none;height:100%}.Loading-nightModeWrapper{background:#000;height:100%}.Loading-loadingImage{height:295px;max-width:900px;width:100%}.ErrorChartBoundary-errorWrapper{background:grey;border:1px solid silver;color:#fff;height:352px}.ErrorChartBoundary-errorWrapper .ErrorChartBoundary-msg{position:relative;text-align:center;top:35%}.ErrorChartBoundary-errorWrapper .ErrorChartBoundary-msg span{background:#fff;border-radius:3px;color:#000;font-family:inherit;font-size:12px;line-height:inherit;margin:0;padding:2px}.PhoenixChartWrapper-rendererApp,.PhoenixChartWrapper-rendererWeb{min-height:380px;position:relative}.PhoenixChartWrapper-rendererWeb{margin-top:20px}.PhoenixChartWrapper-rendererApp{height:100%;margin:0}.PhoenixChartWrapper-loadingWrapper{background:#fff;bottom:0;left:0;position:absolute;right:0;top:0;z-index:10}.MiniQuoteData-container{display:block;height:162px;line-height:22px;padding:0 30px;text-indent:0}@media (min-width:1020px){.MiniQuoteData-container{height:144px;padding:0 8px}}@media (max-width:759px){.MiniQuoteData-container{height:154px;min-width:320px;padding:0 15px}}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-container{height:274px;min-width:560px}}.MiniQuoteData-chickletContainer{display:block;height:144px;line-height:22px;padding:0 8px;text-indent:0}@media (min-width:1020px){.MiniQuoteData-chickletContainer{height:144px;padding:0 8px}}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-chickletContainer .MiniQuoteData-companyName,.MiniQuoteData-chickletContainer .MiniQuoteData-link{font-size:14px;margin-bottom:0;margin-top:12px}.MiniQuoteData-chickletContainer .MiniQuoteData-last{font-size:24px;margin-right:12px}}.MiniQuoteData-chickletContainer .MiniQuoteData-link{font-size:11px!important}.MiniQuoteData-chickletContainer .MiniQuoteData-quote,.MiniQuoteData-chickletContainer .MiniQuoteData-quoteDown,.MiniQuoteData-chickletContainer .MiniQuoteData-quoteUp{font-size:12px!important}.MiniQuoteData-chickletContainer .MiniQuoteData-halfDetail{color:#747474;display:flex;font-size:10px;font-weight:700;justify-content:space-between;margin:0}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-chickletContainer .MiniQuoteData-halfDetail{font-size:10px;line-height:inherit;margin:0}.MiniQuoteData-chickletContainer .MiniQuoteData-section{margin-bottom:0}}.MiniQuoteData-section{display:block;padding-bottom:0;padding-left:0;padding-top:0}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-section{margin-bottom:10px}}.MiniQuoteData-companyName{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.MiniQuoteData-companyName,.MiniQuoteData-last{font-weight:700}.MiniQuoteData-companyName,.MiniQuoteData-link{font-size:14px;margin-top:12px}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-companyName,.MiniQuoteData-link{font-size:24px;margin-bottom:14px;margin-top:14px}}.MiniQuoteData-last,.MiniQuoteData-quote,.MiniQuoteData-quoteDown,.MiniQuoteData-quoteUp{display:block;margin:4px 0}.MiniQuoteData-header{align-items:center;display:flex}.MiniQuoteData-last{font-size:24px;margin-right:12px}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-last{font-size:34px}}.MiniQuoteData-link{font-size:11px;font-weight:600}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-link{font-size:16px}}.MiniQuoteData-link a{color:#005594;text-decoration:underline}.MiniQuoteData-cnbcLink{color:#2077b6;text-decoration:underline}.MiniQuoteData-quote,.MiniQuoteData-quoteDown,.MiniQuoteData-quoteUp{color:#747474;font-family:Proxima Nova,sans-serif;font-size:12px;font-weight:700;line-height:12px}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-quote,.MiniQuoteData-quoteDown,.MiniQuoteData-quoteUp{font-size:20px}}.MiniQuoteData-quoteUp{color:#008456}.MiniQuoteData-quoteUp:before{content:"▾";display:inline-block;margin-right:4px;transform:rotate(-180deg)}.MiniQuoteData-quoteDown{color:#d0021b}.MiniQuoteData-quoteDown:before{content:"▾";margin-right:4px}.MiniQuoteData-details{grid-column-gap:4%;display:grid;grid-template-columns:1fr 1fr}.MiniQuoteData-container,.MiniQuoteData-withTopBorder{border-bottom:.5px solid #747474}.MiniQuoteData-halfDetail{color:#747474;display:flex;font-size:10px;font-weight:700;justify-content:space-between;margin:0}.MiniQuoteData-halfDetail :nth-child(2n){color:#171717}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-halfDetail{font-size:18px;line-height:40px;margin:0 0 20px}}.MiniQuoteData-halfDetail:nth-of-type(odd){grid-column:1/2}.MiniQuoteData-halfDetail:nth-of-type(2n){grid-column:2/3}.DynamicLoadingIndicator-spinnerParent{display:block;padding:10px}.DynamicLoadingIndicator-spinner{animation:DynamicLoadingIndicator-spin 2s linear infinite;border:3px solid #f3f3f3;border-radius:50%;border-top-color:#666;display:block;margin:0 auto}@keyframes DynamicLoadingIndicator-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.AddToWatchlistDropdown-container{align-content:center;align-items:center;background-color:#fff;display:flex;flex-direction:column;font-family:Proxima Nova,Helvetica,Arial,sans-serif;justify-content:center;padding:20px 0;position:fixed;z-index:1001}.AddToWatchlistDropdown-container.AddToWatchlistDropdown-withWatchlists{align-items:normal;justify-content:normal}@media (max-width:1019px){.AddToWatchlistDropdown-container{bottom:0;left:0;right:0;top:0;z-index:9999}}@media (min-width:1020px){.AddToWatchlistDropdown-container{border:.5px solid #9e9e9e;border-top:0;box-shadow:0 1px 6px #00000040,0 -3px 0 #002f6c;display:block;left:0;padding:0;position:absolute;width:auto}.AddToWatchlistDropdown-container.AddToWatchlistDropdown-mini{left:0;right:auto}}.AddToWatchlistDropdown-container .AddToWatchlistDropdown-miniQuoteDataContainer{align-items:center;border-bottom:.5px solid #747474;display:flex;justify-content:center;min-height:156px}@media (min-width:1020px){.AddToWatchlistDropdown-container .AddToWatchlistDropdown-miniQuoteDataContainer{min-height:156px}}@media (max-width:759px){.AddToWatchlistDropdown-container .AddToWatchlistDropdown-miniQuoteDataContainer{min-height:156px;min-width:320px}}@media (min-width:760px) and (max-width:1019px){.AddToWatchlistDropdown-container .AddToWatchlistDropdown-miniQuoteDataContainer{min-height:274px;min-width:560px}}.AddToWatchlistDropdown-container .AddToWatchlistDropdown-signInMessage,.AddToWatchlistDropdown-container .AddToWatchlistDropdown-simpleText{display:block;font-size:12px;line-height:12px;text-align:center}.AddToWatchlistDropdown-container .AddToWatchlistDropdown-signInMessage{color:#000;font-weight:700;margin-bottom:-10px;margin-top:20px}.AddToWatchlistDropdown-container .AddToWatchlistDropdown-simpleText{font-weight:500}.AddToWatchlistDropdown-container .AddToWatchlistDropdown-simpleText:last-child{margin-bottom:20px}.AddToWatchlistDropdown-chicletContainer{align-content:center;align-items:center;background-color:#fff;border:.5px solid #9e9e9e;border-top:0;box-shadow:0 1px 6px #00000040,0 -3px 0 #002f6c;display:block;flex-direction:column;font-family:Proxima Nova,Helvetica,Arial,sans-serif;justify-content:center;left:0;padding:0;position:absolute;top:27px!important;width:auto;z-index:1001}.AddToWatchlistDropdown-chicletContainer.AddToWatchlistDropdown-withWatchlists{align-items:normal;justify-content:normal}.AddToWatchlistDropdown-chicletContainer.AddToWatchlistDropdown-mini{left:0;right:auto}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-miniQuoteDataContainer{align-items:center;border-bottom:.5px solid #747474;display:flex;justify-content:center;min-height:156px}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-closeButton{display:none}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-signInMessage,.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-simpleText{display:block;font-size:12px;line-height:12px;text-align:center}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-signInMessage{color:#000;font-weight:700;margin-bottom:-10px;margin-top:20px}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-simpleText{font-weight:500}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-simpleText:last-child{margin-bottom:20px}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-headerForWatchlistTag{align-items:center;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:11px;height:32px;margin:0 0 0 8px}@media (max-width:1019px){.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-headerForWatchlistTag{font-size:11px!important;height:32px!important;line-height:inherit!important;margin-left:8px!important;padding:0!important}}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-watchlistScrollContainer{max-height:100px}@media (max-width:1019px){.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-watchlistScrollContainer:before{bottom:32px}}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-footer{bottom:0}@media (max-width:1019px){.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink:first-child{margin-bottom:12px;margin-top:12px}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink{font-size:11px;margin-left:10px}}.AddToWatchlistDropdown-chicletGhostDropdownCloser{display:block!important}.AddToWatchlistDropdown-wrapper{max-height:calc(100vh - 158px);overflow:auto}@media (min-width:1020px){.AddToWatchlistDropdown-wrapper{max-height:118px}}.AddToWatchlistDropdown-watchlistContainer{border:.5px solid #cfd8e2;box-shadow:0 -3px 0 #002f6c;padding:unset;right:-1px;top:27px;width:calc(100% + 2px)}@media (max-width:1019px){.AddToWatchlistDropdown-watchlistContainer{top:0}}.AddToWatchlistDropdown-container.AddToWatchlistDropdown-isFetching{padding-top:0}.AddToWatchlistDropdown-closeButton{display:block;font-size:12px;position:absolute;right:15px;top:20px}@media (min-width:1020px){.AddToWatchlistDropdown-closeButton{display:none}}.AddToWatchlistDropdown-closeButton.AddToWatchlistDropdown-closeButtonForSymbolTag{font-size:15px;top:27px}.AddToWatchlistDropdown-header{color:#9e9e9e;font-size:12px;font-weight:600;letter-spacing:.01em;line-height:12px;margin:20px 30px;text-indent:0}.AddToWatchlistDropdown-header.AddToWatchlistDropdown-headerForWatchlistTag{align-items:center;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:11px;height:32px;margin:0 0 0 8px}@media (max-width:1019px){.AddToWatchlistDropdown-header.AddToWatchlistDropdown-headerForWatchlistTag{font-size:18px;height:68px;line-height:normal;margin-left:30px;padding:8px 0}}.AddToWatchlistDropdown-footer{display:block;padding:15px 15px 20px;position:relative;width:100%;z-index:1}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-footerLink,.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink{color:#005594;display:block;font-size:11px;font-weight:600;line-height:13px;padding-left:10px;padding-top:10px;text-indent:0}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-footerLink.AddToWatchlistDropdown-signIn,.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink.AddToWatchlistDropdown-signIn{background-color:#005594;border:none;bottom:0;color:#fff;position:static}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink{line-height:11px;margin-left:10px;padding:unset;text-decoration:underline}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink:first-child{margin-bottom:12px;margin-top:12px}@media (max-width:1019px){.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink:first-child{margin-bottom:30px;margin-top:48px}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink{font-size:18px;margin-left:30px}}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink:hover{color:#005594}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-footerLink{border:1px solid #071d39;color:#071d39;line-height:12px;padding:15px;text-align:center;width:100%}@media (max-width:1019px){.AddToWatchlistDropdown-footer{bottom:20px;position:absolute}}.AddToWatchlistDropdown-watchlistTagFooter{padding:unset;position:relative}.AddToWatchlistDropdown-signInContainer{bottom:0;min-width:240px;position:relative;width:50%}.AddToWatchlistDropdown-createWatchlistContainer{bottom:0;padding-bottom:10px;position:relative}@media (max-width:1019px){.AddToWatchlistDropdown-createWatchlistContainer{text-align:center;top:20px;width:50%}}.AddToWatchlistDropdown-message{color:#e8802a;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;line-height:100%;padding:15px 15px 0;text-align:center}@media (max-width:1019px){.AddToWatchlistDropdown-message{font-size:18px;font-weight:600;line-height:18px}}.AddToWatchlistDropdown-message.AddToWatchlistDropdown-watchListEmptyMsg{color:#171717}.AddToWatchlistDropdown-symbolIssueError{border-bottom:1px solid #bababa;color:#ce2b2b;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;line-height:18px;padding:35px 20px;text-align:center;white-space:normal}.AddToWatchlistDropdown-ghostDropdownCloser{bottom:0;display:none;left:0;position:fixed;right:0;top:0;z-index:98}@media (min-width:1020px){.AddToWatchlistDropdown-ghostDropdownCloser{display:block}}.AddToWatchlistDropdown-watchlistContainerAddTag{left:-1px;min-width:300px;top:27px;width:calc(100% + 2px)}@media (max-width:1019px){.AddToWatchlistDropdown-watchlistContainerAddTag{top:0}}.AddToWatchlistDropdown-watchlistContainerAddTag .AddToWatchlistDropdown-message{font-size:11px;font-weight:700;letter-spacing:-.004em;line-height:13px;padding-left:8px;padding-right:8px;text-align:center}@media (max-width:1019px){.AddToWatchlistDropdown-watchlistContainerAddTag .AddToWatchlistDropdown-message{align-items:center;display:flex;font-size:18px;font-weight:700;letter-spacing:-.002em;line-height:18px;text-align:center}}.AddToWatchlistDropdown-loggedOutAddTag{padding:unset}.AddToWatchlistDropdown-loggedOutAddTag .AddToWatchlistDropdown-signInContainer .AddToWatchlistDropdown-watchlistTagFooterLink{position:relative;right:9px;top:8px}@media (max-width:1019px){.AddToWatchlistDropdown-loggedOutAddTag .AddToWatchlistDropdown-signInContainer .AddToWatchlistDropdown-watchlistTagFooterLink{font-size:14px;margin-left:unset;padding-top:50px;right:0;text-align:center;top:0}}.AddToWatchlistDropdown-loggedOutAddTag .AddToWatchlistDropdown-createWatchlistContainer .AddToWatchlistDropdown-watchlistTagFooterLink{padding-bottom:8px;position:relative}@media (max-width:1019px){.AddToWatchlistDropdown-loggedOutAddTag .AddToWatchlistDropdown-createWatchlistContainer .AddToWatchlistDropdown-watchlistTagFooterLink{font-size:14px;margin-left:unset;padding-top:50px}}.AddToWatchlistDropdown-signInContainerAddTag{display:block;margin:0 10%;padding:8px}@media (min-width:1020px){.AddToWatchlistDropdown-signInContainerAddTag{min-width:unset;width:unset}}.AddToWatchlistDropdown-buttonLink{border:1px solid #005594;color:#005594;display:block;font-size:10px;font-weight:600;line-height:12px;padding:8px;text-align:center;width:100%}.AddToWatchlistDropdown-buttonLink.AddToWatchlistDropdown-signIn{background-color:#005594;border:none;bottom:0;color:#fff;margin-top:20px;position:static}.AddToWatchlistDropdown-buttonLink.AddToWatchlistDropdown-createWatchlist{background-color:#005594;border:none;bottom:0;color:#fff;margin:auto;max-width:100%;min-width:120px;padding:15px;position:static;text-decoration:none;width:90%}.AddToWatchlistDropdown-buttonLink.AddToWatchlistDropdown-createWatchlist:hover{color:#fff}@media (max-width:1019px){.AddToWatchlistDropdown-buttonLink.AddToWatchlistDropdown-createWatchlist{min-width:200px}.AddToWatchlistDropdown-buttonLink{font-size:14px;font-weight:700}}.AddToWatchlistDropdown-signInButtonAddTag{align-items:center;font-size:10px;font-weight:700;letter-spacing:.5px;line-height:12px;padding:8px;text-align:center}.AddToWatchlistDropdown-signInButtonAddTag.AddToWatchlistDropdown-signIn{background-color:#005594}.AddToWatchlistDropdown-signInButtonAddTag.AddToWatchlistDropdown-signIn:hover{background-color:#002f6c}.AddToWatchlistDropdown-signInButtonAddTag.AddToWatchlistDropdown-createWatchlist{background-color:#005594;color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;padding:8px;text-decoration:none}.AddToWatchlistDropdown-signInButtonAddTag.AddToWatchlistDropdown-createWatchlist:hover{background-color:#002f6c;color:#fff}@media (max-width:1019px){.AddToWatchlistDropdown-signInButtonAddTag.AddToWatchlistDropdown-createWatchlist{padding:12px}.AddToWatchlistDropdown-buttonLink{font-size:14px;letter-spacing:1.1px;line-height:16px;margin:auto;max-width:260px;padding:12px}}.AddToWatchlistDropdown-watchlistScrollContainer{display:block;max-height:100px;overflow-y:scroll}.AddToWatchlistDropdown-watchlistScrollContainer:before{bottom:32px;content:"";display:block;height:40px;pointer-events:none;position:absolute;width:100%;z-index:1}@media (max-width:1019px){.AddToWatchlistDropdown-watchlistScrollContainer:before{bottom:100px}}.AddToWatchlistDropdown-watchlistScrollContainer.AddToWatchlistDropdown-fade:before{background:linear-gradient(180deg,#fff0,25%,#fff)}@media (max-width:1019px){.AddToWatchlistDropdown-watchlistScrollContainer{max-height:70%}}@keyframes WatchlistNotification-showAndFadeOut{0%{opacity:0;transform:translateY(5px)}5%{opacity:1;transform:translateY(0)}80%{opacity:1}to{opacity:0}}.WatchlistNotification-notificationContainer{display:flex;justify-content:center;position:absolute;width:100%}.WatchlistNotification-notificationContainer .WatchlistNotification-notification{animation:WatchlistNotification-showAndFadeOut 3s linear;font-family:Proxima Nova,Helvetica,Arial,sans-serif;opacity:0;text-align:center;z-index:4000}.AddToWatchlistDropdownCheckbox-container{border-top:1px solid #bababa;display:block}.AddToWatchlistDropdownCheckbox-container:last-of-type{border-bottom:1px solid #bababa}@media (max-width:1019px){.AddToWatchlistDropdownCheckbox-chicletWatchlist.AddToWatchlistDropdownCheckbox-watchlistForSymbolTag{font-size:11px!important;height:32px!important;padding-left:8px!important}}.AddToWatchlistDropdownCheckbox-watchlist{align-items:center;color:#071d39;display:flex;font-size:14px;font-weight:700;padding:8px 29px;width:100%}.AddToWatchlistDropdownCheckbox-watchlist:first-child{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.AddToWatchlistDropdownCheckbox-watchlist.AddToWatchlistDropdownCheckbox-watchlistForSymbolTag{color:#002f6c;font-size:11px;font-weight:600;height:32px;padding-left:8px}@media (max-width:1019px){.AddToWatchlistDropdownCheckbox-watchlist.AddToWatchlistDropdownCheckbox-watchlistForSymbolTag{font-size:18px;height:50px;padding-left:30px}}.AddToWatchlistDropdownCheckbox-checkbox{border:1px solid #bababa;border-radius:2px;flex-shrink:0;height:14px;margin-right:12px;position:relative;width:14px}.AddToWatchlistDropdownCheckbox-watchlistNameForSymbolTag{line-height:normal;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.AddToWatchlistDropdownCheckbox-hasSymbols .AddToWatchlistDropdownCheckbox-checkbox:after{border-color:#071d39;border-style:solid;border-width:0 2px 2px 0;content:"";display:block;height:12px;left:5px;position:absolute;top:-4px;transform:rotate(45deg);width:5px}.AddToWatchlistDropdownCheckbox-hasSymbols .AddToWatchlistDropdownCheckbox-checkboxForSymbolTag{background:#2077b6;border:none}.AddToWatchlistDropdownCheckbox-hasSymbols .AddToWatchlistDropdownCheckbox-checkboxForSymbolTag:after{border-color:#fff;height:7px;left:5px;top:1px;width:3px}.AddToWatchlistDropdownCheckbox-isLoading{cursor:wait}.AddToWatchlistDropdownCheckbox-isLoading>*{opacity:.5}.AddToWatchlistDropdownCheckbox-error{color:#ce2b2b;display:block;font-size:12px;font-weight:600;padding:0 10px 8px 56px}.AddToWatchlistDropdownCheckboxes-notificationContainer{font-size:11px;line-height:18px;padding:2px 6px 0;top:150px}.AddToWatchlistDropdownCheckboxes-notificationContainer .AddToWatchlistDropdownCheckboxes-notification{background-color:#2077b6;border-radius:3px;box-shadow:0 1px 3px 1px #00000014;color:#fff;font-weight:700;line-height:16px;padding:10px;white-space:nowrap;width:224px}.AddToWatchlistDropdownCheckboxes-notificationContainer .AddToWatchlistDropdownCheckboxes-notification.AddToWatchlistDropdownCheckboxes-error{background-color:#ce2b2b;width:204px}@media (max-width:1019px){.AddToWatchlistDropdownCheckboxes-notificationContainer{top:165px}}.AddToWatchlistButton-container{display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;position:relative}.AddToWatchlistButton-watchlistContainer{display:inline-block}.AddToWatchlistButton-button{align-items:center;border:1px solid #002f6c;box-sizing:border-box;color:#002f6c;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;justify-content:center;line-height:12px;padding:8px}@media (min-width:1020px){.AddToWatchlistButton-button{padding:14px 15px}}.AddToWatchlistButton-button .AddToWatchlistButton-mobileText{font-size:26px;font-weight:600;line-height:12px}.AddToWatchlistButton-button .AddToWatchlistButton-desktopText{display:none}@media (min-width:1020px){.AddToWatchlistButton-button .AddToWatchlistButton-desktopText{display:initial;margin:0 10px 0 0}}.AddToWatchlistButton-button .AddToWatchlistButton-embeddedText{letter-spacing:1px;margin-right:10px}.AddToWatchlistButton-watchlistFromTagItem{border:.5px solid #cfd8e2;border-radius:7px;display:flex;position:relative}.AddToWatchlistButton-watchlistFromTagItem:hover{border:.5px solid #747474}.AddToWatchlistButton-watchlistFromTagItem.AddToWatchlistButton-dropdownVisible{border:.5px solid #cfd8e2}.AddToWatchlistButton-addWatchListFromTag{background-image:url(https://static-redesign.cnbcfm.com/dist/3d3257ad9e8a242b5362.svg);background-repeat:no-repeat;height:12px;width:12px}.AddToWatchlistButton-watchlistButton{align-items:center;color:#002f6c;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;line-height:12px;padding:8px 8px 8px 4px}.AddToWatchlistButton-watchlistButton.AddToWatchlistButton-dropdownOpen .AddToWatchlistButton-addWatchListFromTag,.AddToWatchlistButton-watchlistButton:focus .AddToWatchlistButton-addWatchListFromTag,.AddToWatchlistButton-watchlistButton:hover .AddToWatchlistButton-addWatchListFromTag{background-image:url(https://static-redesign.cnbcfm.com/dist/8eafdf125d3d82d5a92f.svg)}.QuoteStrip-container{font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin-top:-7px}@media (min-width:760px){.QuoteStrip-container{margin-top:0}}.QuoteStrip-changeDown{color:#424858;color:#ce2b2b;font-size:18px;font-weight:700;white-space:nowrap}@media (min-width:760px){.QuoteStrip-changeDown{font-size:25px;line-height:28px}}@media (min-width:1020px){.QuoteStrip-changeDown{font-size:20px;line-height:23px}}@media (min-width:1340px){.QuoteStrip-changeDown{font-size:32px;line-height:36px}}.QuoteStrip-changeUp{color:#424858;color:#008456;font-size:18px;font-weight:700;white-space:nowrap}@media (min-width:760px){.QuoteStrip-changeUp{font-size:25px;line-height:28px}}@media (min-width:1020px){.QuoteStrip-changeUp{font-size:20px;line-height:23px}}@media (min-width:1340px){.QuoteStrip-changeUp{font-size:32px;line-height:36px}}.QuoteStrip-changeIcon{display:inline;margin-right:10px}@media (min-width:1340px){.QuoteStrip-changeIcon{height:22px;margin-top:3px;width:22px}}.QuoteStrip-afterHoursIcon{display:inline;padding-right:10px}.QuoteStrip-unchanged{color:#424858;font-size:18px;font-size:22px;font-weight:700;white-space:nowrap}@media (min-width:760px){.QuoteStrip-unchanged{font-size:25px;line-height:28px}}@media (min-width:1020px){.QuoteStrip-unchanged{font-size:20px;line-height:23px}}@media (min-width:1340px){.QuoteStrip-unchanged{font-size:32px;line-height:36px}}.QuoteStrip-companyName{color:#002f6c;display:flex;font-size:24px;font-weight:700;justify-content:space-between;line-height:27px}.QuoteStrip-companyName .QuoteStrip-quoteTitle{font-size:inherit;margin:0}.QuoteStrip-companyName .QuoteStrip-quoteTitleLink{color:#002f6c;font-size:inherit;padding:0}.QuoteStrip-companyName .QuoteStrip-quoteTitleLink :hover{color:#005594}.QuoteStrip-companyName .QuoteStrip-name{display:table;padding:0 0 1px}.QuoteStrip-companyName .QuoteStrip-rightSideButtonsWrappers{display:flex;margin:10px 0 15px}.QuoteStrip-companyName a{padding:3px}@media (min-width:760px){.QuoteStrip-companyName{font-size:28px;line-height:30px}}@media (min-width:0px) and (max-width:759px){.QuoteStrip-companyName.QuoteStrip-companyName_quoteStripEnabled{flex-direction:column}}@media (min-width:1020px) and (max-width:1339px){.QuoteStrip-companyName.QuoteStrip-companyName_quoteStripEnabled{flex-direction:column}}.QuoteStrip-addToWatchlistButton{height:42px;min-width:42px}.QuoteStrip-symbolAndExchange{color:#747474;display:table;font-size:18px;font-weight:500;padding-bottom:2px}@media (min-width:760px){.QuoteStrip-symbolAndExchange{font-size:20px}}.QuoteStrip-quoteStripSubHeader{color:#bababa;font-size:14px;font-weight:600;line-height:18px}.QuoteStrip-extendedLastTradeTime,.QuoteStrip-lastTradeTime{color:#171717;font-size:16px;font-weight:600;line-height:18px}@media (min-width:760px){.QuoteStrip-extendedLastTradeTime,.QuoteStrip-lastTradeTime{padding-bottom:10px}}@media (min-width:1020px){.QuoteStrip-lastTradeTime{padding-bottom:15px}}.QuoteStrip-dataContainer{align-items:center;display:flex;flex-direction:row;justify-content:space-between;padding-top:5px}@media (min-width:760px){.QuoteStrip-dataContainer{padding-top:25px}}.QuoteStrip-extendedHours{border-top:1px solid #bababa;padding-top:10px}@media (min-width:1020px){.QuoteStrip-extendedHours{padding-top:5px}.QuoteStrip-extendedHours .QuoteStrip-lastTimeAndPriceContainer{width:58%}}@media (min-width:1340px){.QuoteStrip-extendedHours .QuoteStrip-lastTimeAndPriceContainer{width:66%}}@media (min-width:1020px){.QuoteStrip-extendedHours .QuoteStrip-lastTimeAndPriceSideDrawerContainer{width:58%}}@media (min-width:1340px){.QuoteStrip-extendedHours .QuoteStrip-lastTimeAndPriceSideDrawerContainer{width:50%}}.QuoteStrip-extendedHours .QuoteStrip-lastPrice{font-size:32px}@media (min-width:760px){.QuoteStrip-extendedHours .QuoteStrip-lastPrice{font-size:40px;line-height:45px;padding-right:40px}}@media (min-width:1020px){.QuoteStrip-extendedHours .QuoteStrip-lastPrice{font-size:25px;line-height:28px;padding-right:25px}}@media (min-width:1340px){.QuoteStrip-extendedHours .QuoteStrip-lastPrice{font-size:46px;line-height:52px;padding-right:30px}}@media (min-width:760px){.QuoteStrip-extendedHours .QuoteStrip-lastTradeTime{padding-bottom:0}}@media (min-width:1020px){.QuoteStrip-extendedHours .QuoteStrip-lastTradeTime{padding-bottom:10px}}@media (min-width:1340px){.QuoteStrip-extendedHours .QuoteStrip-lastTradeTime{padding-bottom:0}}.QuoteStrip-extendedHours .QuoteStrip-changeDown,.QuoteStrip-extendedHours .QuoteStrip-changeUp,.QuoteStrip-extendedHours .QuoteStrip-unchanged{font-size:18px;line-height:20px}@media (min-width:760px){.QuoteStrip-extendedHours .QuoteStrip-changeDown,.QuoteStrip-extendedHours .QuoteStrip-changeUp,.QuoteStrip-extendedHours .QuoteStrip-unchanged{font-size:20px;line-height:23px}}@media (min-width:1340px){.QuoteStrip-extendedHours .QuoteStrip-changeDown,.QuoteStrip-extendedHours .QuoteStrip-changeUp,.QuoteStrip-extendedHours .QuoteStrip-unchanged{font-size:25px;line-height:28px}}.QuoteStrip-extendedHours .QuoteStrip-fiftyTwoWeekRange,.QuoteStrip-extendedHours .QuoteStrip-volume{font-size:16px}@media (min-width:1020px){.QuoteStrip-extendedHours .QuoteStrip-fiftyTwoWeekRange,.QuoteStrip-extendedHours .QuoteStrip-volume{font-size:18px}}@media (min-width:1340px){.QuoteStrip-extendedHours .QuoteStrip-fiftyTwoWeekRange,.QuoteStrip-extendedHours .QuoteStrip-volume{font-size:16px}.QuoteStrip-extendedHours .QuoteStrip-changeIcon{height:21px;width:21px}}@media (min-width:760px){.QuoteStrip-extendedDataContainer{max-width:496px;padding-top:20px}}@media (min-width:1020px){.QuoteStrip-extendedDataContainer{max-width:460px;padding-bottom:8px}}@media (min-width:1340px){.QuoteStrip-extendedDataContainer{max-width:760px}}.QuoteStrip-extendedDataContainer .QuoteStrip-lastTimeAndPriceContainer{width:100%}.QuoteStrip-extendedDataContainer .QuoteStrip-volume{font-size:18px}@media (min-width:760px){.QuoteStrip-extendedDataContainer .QuoteStrip-volume{font-size:16px}}@media (min-width:1020px){.QuoteStrip-extendedDataContainer .QuoteStrip-volume{font-size:18px}}.QuoteStrip-extendedDataContainer .QuoteStrip-volumeContainer{padding-top:25px}@media (min-width:1020px){.QuoteStrip-extendedDataContainer .QuoteStrip-volumeContainer{padding-top:15px}}.QuoteStrip-dataLabel{color:#747474;font-size:18px;font-weight:600;padding-bottom:10px}.QuoteStrip-extendedLabel{color:#e8802a}.QuoteStrip-lastPriceStripContainer{align-items:center;display:flex;flex-wrap:wrap}.QuoteStrip-lastPrice{color:#171717;font-size:40px;font-weight:700;padding-right:20px;pointer-events:none}.QuoteStrip-lastPrice a{color:#171717;text-decoration:none}@media (min-width:760px){.QuoteStrip-lastPrice{font-size:46px;line-height:52px}}@media (min-width:1020px){.QuoteStrip-lastPrice{font-size:32px;line-height:36px}}@media (min-width:1340px){.QuoteStrip-lastPrice{font-size:51px;line-height:42px}}.QuoteStrip-lastTimeAndPriceContainer{width:100%}@media (min-width:760px){.QuoteStrip-lastTimeAndPriceContainer{width:53%}}@media (min-width:1020px){.QuoteStrip-lastTimeAndPriceContainer{width:51%}}@media (min-width:1340px){.QuoteStrip-lastTimeAndPriceContainer{width:67%}}.QuoteStrip-lastTimeAndPriceSideDrawerContainer{width:100%}@media (min-width:760px){.QuoteStrip-lastTimeAndPriceSideDrawerContainer{width:53%}}@media (min-width:1020px){.QuoteStrip-lastTimeAndPriceSideDrawerContainer{width:51%}}@media (min-width:1340px){.QuoteStrip-lastTimeAndPriceSideDrawerContainer{width:50%}}.QuoteStrip-fiftyTwoWeek,.QuoteStrip-volumeContainer{display:none}@media (min-width:760px){.QuoteStrip-fiftyTwoWeek,.QuoteStrip-volumeContainer{display:block;padding-top:10px}}.QuoteStrip-fiftyTwoWeekRange,.QuoteStrip-volume{font-size:18px;font-weight:600;line-height:20px}.QuoteStrip-watchLiveBtn{align-items:center;background:none;border:1px solid #002f6c;border-radius:0;color:#002f6c;display:flex;font-weight:600;height:42px;line-height:12px;margin:0 0 0 18px;padding:14px 5px}.QuoteStrip-watchLiveBtn,.QuoteStrip-watchLiveLogo{-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:100%;box-sizing:border-box;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px}.QuoteStrip-watchLiveLogo{color:#fff!important;cursor:pointer;display:block;font-weight:700;width:18px}.QuoteStrip-watchLiveLink{-webkit-text-size-adjust:100%;background:#ce2b2b;color:#fff!important;cursor:pointer;display:flex!important;font-weight:700;height:30px;justify-content:space-evenly!important;margin-right:.5rem;padding:6px 4px;text-decoration:none;width:4rem}.QuoteStrip-watchLiveBtnV2,.QuoteStrip-watchLiveLink{-webkit-font-smoothing:antialiased;align-items:center;box-sizing:border-box;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px}.QuoteStrip-watchLiveBtnV2{-webkit-text-size-adjust:100%;background:linear-gradient(#fff,#fff) padding-box,linear-gradient(to bottom right,#fccc12,#ff7112,#ef1541,#6e55dc,#069de0,#05ac3f) border-box;border:1px solid #0000;border-radius:4px;bottom:4px;color:#002f6c;display:flex;font-weight:600;height:48px;line-height:12px;margin:0 0 0 18px;padding:4px;position:relative}@media (max-width:759px){.QuoteStrip-watchLiveBtnV2{width:100%}}.QuoteStrip-watchLiveLinkV2{-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:100%;align-items:center;background:#0053cf;border-radius:2px;box-sizing:border-box;color:#fff!important;cursor:pointer;display:flex!important;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-weight:700;height:40px;justify-content:center!important;line-height:17.05px;margin-right:.5rem;padding:12px!important;text-decoration:none;width:127px}.QuoteStrip-watchLiveLinkV2:hover{background:#002f6c}.QuoteStrip-livePlayIcon{animation:QuoteStrip-pulse 1.5s infinite;animation-timing-function:ease-in-out;background-color:#fff;border-radius:100%;box-shadow:0 0 0 0 #fff;display:inline-block;height:8px;margin-right:7px;position:relative;transform:scale(1);width:8px}@keyframes QuoteStrip-pulse{0%{box-shadow:0 0 0 1px #0053cf;opacity:1}70%{border:1px solid #0053cf;box-shadow:0 0 0 1px #fff;opacity:.9;padding:2px;transform:scale(1.2)}to{box-shadow:0 0 0 1px #fff;opacity:1;transform:scale(1)}}.QuoteStrip-liveShowTitleV2{color:#002f6c;font-size:14px;font-weight:800;line-height:18px;text-transform:none}@media (prefers-color-scheme:dark){.webview .QuoteStrip-extendedLastTradeTime,.webview .QuoteStrip-lastPrice,.webview .QuoteStrip-lastTradeTime{color:#dce0e4}}.DownloadChartPopup-wrapper{background-color:#16161680;display:block;height:100%;left:0;position:absolute;top:0;visibility:visible;width:100%}.DownloadChartPopup-wrapper input{font-size:26px}.DownloadChartPopup-wrapper .DownloadChartPopup-message{font-family:Proxima Nova Semi Bold,Helvetica,Arial,sans-serif;font-size:22px;width:710px}.DownloadChartPopup-wrapper .DownloadChartPopup-closeBtnWrapper{float:right;margin:0 0 10px}.DownloadChartPopup-wrapper .DownloadChartPopup-closeBtnWrapper .DownloadChartPopup-closeBtn{background:#fff;color:#9b9b9b;cursor:pointer;font-size:24px;font-weight:700;left:10px;line-height:15px;position:relative;text-align:center}.DownloadChartPopup-wrapper .DownloadChartPopup-downloadChartModal{background:#fff;border-radius:5px;box-shadow:0 0 10px #0006;margin:0 auto;padding:10px 30px 10px 20px;position:relative;top:10%;width:748px;z-index:41}.DownloadChartPopup-wrapper .DownloadChartPopup-downloadChartModal .DownloadChartPopup-hiddenCanvas{display:none}.DownloadChartPopup-wrapper .DownloadChartPopup-downloadChartModal .DownloadChartPopup-visibleCanvas{display:block}.DownloadChartPopup-wrapper .DownloadChartPopup-downloadChartModal .DownloadChartPopup-downloadButton{float:right}.DownloadChartPopup-wrapper .DownloadChartPopup-downloadChartModal .DownloadChartPopup-downloadButton a{background:#3da7f1;border:none;border-radius:4px;font:14px Proxima Nova Semi Bold,Helvetica,Arial,sans-serif;font-weight:800;height:30px;padding:8px;position:relative;text-transform:uppercase;top:-55px}.DownloadChartPopup-wrapper .DownloadChartPopup-downloadChartModal .DownloadChartPopup-downloadButton a:hover{color:#000}.DownloadChartButton-button{align-items:center;border:1px solid #002f6c;box-sizing:border-box;color:#002f6c;display:none;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;height:42px;line-height:12px;margin:0 18px 0 0;padding:14px 15px}@media (min-width:1020px){.DownloadChartButton-button{display:flex}}.DownloadChartButton-button .DownloadChartButton-icon{margin:0 0 0 10px;width:12px}.Summary-container{margin:0 auto 32px;width:960px}@media (max-width:1339px){.Summary-container{width:630px}}@media (max-width:1019px){.Summary-container{width:678px}}@media (max-width:759px){.Summary-container{margin:0 auto 30px;min-width:318px;width:100%}}.Summary-sideDrawerContainer{width:auto!important}.Summary-adContainer{display:block;height:250px}.Summary-adContainer+.Summary-subsection{margin-top:30px}@media (max-width:759px){.Summary-adContainer{padding-top:0}.Summary-adContainer+.Summary-subsection{margin-top:32px}}@media (min-width:1020px){.Summary-adContainer{display:none}}.Summary-subsection{margin-top:32px;width:100%}@media (max-width:759px){.Summary-subsection{margin-top:24px}}.Summary-title{color:#002f6c;font-size:18px;font-weight:700;height:30px;line-height:22px;margin:0;text-transform:uppercase}.Summary-label,.Summary-title{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-style:normal}.Summary-label{color:#747474;font-size:16px;font-weight:600;line-height:18px;text-transform:capitalize}@media (max-width:759px){.Summary-label{color:#171717}}.Summary-value{color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-style:normal;font-weight:700;line-height:18px;margin-left:8px;pointer-events:none}.Summary-value a{color:#171717;text-decoration:none}.Summary-data{grid-column-gap:30px;display:grid;width:100%}.Summary-stat{align-items:center;border-bottom:1px solid #d9d9d9;display:flex;font-size:14px;font-weight:600;justify-content:space-between}@media (max-width:759px){.Summary-stat{border-bottom:none}.Summary-stat:nth-child(odd){background-color:#f8f8f8}}.Summary-exchangeTradedFund,.Summary-stock{grid-auto-flow:column;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(5,1fr);height:200px}@media (max-width:1339px){.Summary-exchangeTradedFund,.Summary-stock{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(8,1fr);height:320px}}@media (max-width:1019px){.Summary-exchangeTradedFund,.Summary-stock{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(5,1fr);height:240px}}@media (max-width:759px){.Summary-exchangeTradedFund,.Summary-stock{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(15,1fr);height:480px}}@media (min-width:1340px){.Summary-exchangeTradedFund .Summary-_10DayAverageVolume,.Summary-stock .Summary-_10DayAverageVolume{grid-column:1/2;grid-row:5/6}}@media (min-width:760px) and (max-width:1019px){.Summary-exchangeTradedFund .Summary-_10DayAverageVolume,.Summary-stock .Summary-_10DayAverageVolume{grid-column:1/2;grid-row:5/6}}@media (min-width:1340px){.Summary-exchangeTradedFund .Summary-beta,.Summary-stock .Summary-beta{grid-column:2/3;grid-row:5/6}}@media (min-width:760px) and (max-width:1019px){.Summary-exchangeTradedFund .Summary-beta,.Summary-stock .Summary-beta{grid-column:2/3;grid-row:5/6}}@media (min-width:1020px) and (max-width:1179px){.Summary-exchangeTradedFund .Summary-_10DayAverageVolume{grid-column:2/3;grid-row:5/6}}@media (min-width:1180px) and (max-width:1339px){.Summary-exchangeTradedFund .Summary-_10DayAverageVolume{grid-column:2/3;grid-row:5/6}}.Summary-ratios{grid-auto-flow:column;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(3,1fr);height:120px}@media (max-width:1339px){.Summary-ratios{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(5,1fr);height:200px}}@media (max-width:1019px){.Summary-ratios{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(3,1fr);height:144px}}@media (max-width:759px){.Summary-ratios{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(9,1fr);height:288px}}@media (min-width:1340px){.Summary-ratios .Summary-revenue{grid-column:2/3;grid-row:1/2}}@media (min-width:760px) and (max-width:1019px){.Summary-ratios .Summary-revenue{grid-column:2/3;grid-row:1/2}}@media (min-width:1340px){.Summary-ratios .Summary-roe{grid-column:2/3;grid-row:2/3}}@media (min-width:760px) and (max-width:1019px){.Summary-ratios .Summary-roe{grid-column:2/3;grid-row:2/3}}.Summary-events-stock{grid-auto-flow:row;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(2,1fr);height:80px}@media (max-width:1339px){.Summary-events-stock{grid-auto-flow:column;grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(3,1fr);height:120px}}@media (max-width:1019px){.Summary-events-stock{grid-auto-flow:row;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(2,1fr);height:96px}}@media (max-width:759px){.Summary-events-stock{grid-auto-flow:column;grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(5,1fr);height:160px}}.Summary-events-exchangeTradedFund{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(2,1fr);height:80px}@media (max-width:1339px){.Summary-events-exchangeTradedFund{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(2,1fr);height:80px}}@media (max-width:1019px){.Summary-events-exchangeTradedFund{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(2,1fr);height:96px}}@media (max-width:759px){.Summary-events-exchangeTradedFund{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(4,1fr);height:128px}}.Summary-mutualFund{grid-auto-flow:column;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(5,1fr);height:200px}@media (max-width:1339px){.Summary-mutualFund{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(7,1fr);height:280px}}@media (max-width:1019px){.Summary-mutualFund{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(5,1fr);height:240px}}@media (max-width:759px){.Summary-mutualFund{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(14,1fr);height:448px}}.Summary-index{grid-auto-flow:column;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(4,1fr);height:160px}@media (max-width:1339px){.Summary-index{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(5,1fr);height:200px}}@media (max-width:1019px){.Summary-index{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(4,1fr);height:192px}}@media (max-width:759px){.Summary-index{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(10,1fr);height:320px}}@media (min-width:1020px) and (max-width:1179px){.Summary-index .Summary-ytdPercChange{grid-column:1/2;grid-row:5/6}}@media (min-width:1180px) and (max-width:1339px){.Summary-index .Summary-ytdPercChange{grid-column:1/2;grid-row:5/6}}.Summary-ftse{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(1,1fr);height:40px}@media (max-width:1339px){.Summary-ftse{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(1,1fr);height:40px}}@media (max-width:1019px){.Summary-ftse{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(1,1fr);height:48px}}@media (max-width:759px){.Summary-ftse{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(2,1fr);height:64px}}.Summary-governmentBond{grid-auto-flow:column;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(4,1fr);height:160px}@media (max-width:1339px){.Summary-governmentBond{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(6,1fr);height:240px}}@media (max-width:1019px){.Summary-governmentBond{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(4,1fr);height:192px}}@media (max-width:759px){.Summary-governmentBond{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(12,1fr);height:384px}}@media (min-width:1180px) and (max-width:1339px){.Summary-governmentBond .Summary-coupon{grid-column:1/2;grid-row:5/6}}@media (min-width:1020px) and (max-width:1179px){.Summary-governmentBond .Summary-coupon{grid-column:1/2;grid-row:5/6}}@media (min-width:1180px) and (max-width:1339px){.Summary-governmentBond .Summary-maturity{grid-column:1/2;grid-row:6/7}}@media (min-width:1020px) and (max-width:1179px){.Summary-governmentBond .Summary-maturity{grid-column:1/2;grid-row:6/7}}.Summary-cnbcSynthetic,.Summary-forex{grid-auto-flow:row;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(2,1fr);height:80px}@media (max-width:1339px){.Summary-cnbcSynthetic,.Summary-forex{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(2,1fr);height:80px}}@media (max-width:1019px){.Summary-cnbcSynthetic,.Summary-forex{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(2,1fr);height:96px}}@media (max-width:759px){.Summary-cnbcSynthetic,.Summary-forex{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(4,1fr);height:128px}}@media (min-width:760px){.Summary-cnbcSynthetic .Summary-prevClose,.Summary-forex .Summary-prevClose{grid-column:1/2;grid-row:2/3}}.Summary-future{grid-auto-flow:column;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(3,1fr);height:120px}@media (max-width:1339px){.Summary-future{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(5,1fr);height:200px}}@media (max-width:1019px){.Summary-future{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(3,1fr);height:144px}}@media (max-width:759px){.Summary-future{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(9,1fr);height:288px}}@media (min-width:1180px) and (max-width:1339px){.Summary-future .Summary-_10DayAverageVolume{grid-column:2/3;grid-row:2/3}}@media (min-width:1020px) and (max-width:1179px){.Summary-future .Summary-_10DayAverageVolume{grid-column:2/3;grid-row:2/3}}.Summary-analystConsensusContainer{margin-top:30px}@media (min-width:760px) and (max-width:1019px){.Summary-_52WeekHighDate .Summary-label,.Summary-_52WeekLowDate .Summary-label{max-width:90px}}.ErrorHandler-container{background:#ff5053;height:100%;position:relative;width:100%;word-break:break-word}.CharitableTrustHeader-sectionDivider{margin-top:16px}.CharitableTrustHeader-sectionDivider .CharitableTrustHeader-headerWrap{display:flex;margin-bottom:20px;margin-top:20px}.CharitableTrustHeader-sectionDivider .CharitableTrustHeader-headerWrap .CharitableTrustHeader-tableHeader{color:#002f6c;font-size:24px;font-weight:900;letter-spacing:.25px;line-height:24px}@media (max-width:759px){.CharitableTrustHeader-sectionDivider .CharitableTrustHeader-headerWrap .CharitableTrustHeader-tableHeader{font-size:20px;line-height:20px}}.CharitableTrustHeader-sectionDivider .CharitableTrustHeader-smallSpan{background-color:#071d39;display:block;height:6px;width:110px}@media (max-width:360px){.CharitableTrustHeader-sectionDivider .CharitableTrustHeader-smallSpan{width:88px}}.CharitableTrustHeader-sectionDivider .CharitableTrustHeader-border{background-color:#747474;display:block;height:1px;width:100%}.TrustActivityTable-trustActivityTable{display:flex;flex-wrap:wrap;max-width:1000px}.TrustActivityTable-activityTable{max-height:170px;max-width:1000px;overflow-x:hidden;overflow-y:auto;transition:max-height .3s ease-out;width:100%}@media (max-width:320px){.TrustActivityTable-activityTable{overflow-x:auto}}.TrustActivityTable-activityTable.TrustActivityTable-noActivity{align-items:center;display:flex;overflow-y:hidden;padding-right:20px;width:50%}@media (max-width:550px){.TrustActivityTable-activityTable.TrustActivityTable-noActivity{width:100%}}.TrustActivityTable-activityTable::-webkit-scrollbar{height:3px;width:3px}.TrustActivityTable-activityTable::-webkit-scrollbar-track{background:#d9d9d9;border-radius:3px}.TrustActivityTable-activityTable::-webkit-scrollbar-thumb{background:#9e9e9e}.TrustActivityTable-activityRow{align-items:center;background-color:#cfd8e240;border-left:3px solid #0496ff;border-radius:3px;display:flex;height:36px;margin-bottom:4px;margin-right:8px;min-width:310px;position:relative}.TrustActivityTable-activityRow:last-child{margin-bottom:0}.TrustActivityTable-activityLogo{align-items:center;display:flex;justify-content:center;min-width:48px;width:48px}@media (max-width:550px){.TrustActivityTable-activityLogo{min-width:40px;width:40px}}.TrustActivityTable-activityLogo span{background-color:#071d39;height:16px;width:16px}.TrustActivityTable-activityLogo .TrustActivityTable-tradeAlertIcon{mask-image:url(https://static-redesign.cnbcfm.com/dist/aad91182e297b128069c.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/aad91182e297b128069c.svg)}.TrustActivityTable-activityLogo .TrustActivityTable-earningsIcon{mask-image:url(https://static-redesign.cnbcfm.com/dist/3f94109d9f51677fee8d.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/3f94109d9f51677fee8d.svg)}.TrustActivityTable-activityLogo .TrustActivityTable-dividendIcon{mask-image:url(https://static-redesign.cnbcfm.com/dist/3635286e4568e237edcf.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/3635286e4568e237edcf.svg)}.TrustActivityTable-activityLogo .TrustActivityTable-highIcon{mask-image:url(https://static-redesign.cnbcfm.com/dist/4ecf1f23053f2b129fc4.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/4ecf1f23053f2b129fc4.svg)}.TrustActivityTable-activityLogo .TrustActivityTable-lowIcon{mask-image:url(https://static-redesign.cnbcfm.com/dist/68d05358c2f6a94bf78a.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/68d05358c2f6a94bf78a.svg)}.TrustActivityTable-activityType{color:#071d39;font-size:16px;font-weight:600;min-width:25%;padding:0 5px;white-space:nowrap}@media (max-width:760px){.TrustActivityTable-activityType{flex-grow:1;font-size:14px;margin-right:15px;min-width:25%}}@media (max-width:550px){.TrustActivityTable-activityType{margin-right:0;min-width:50%;padding:0}}.TrustActivityTable-quoteWrapper{max-width:20%}@media (max-width:760px){.TrustActivityTable-quoteWrapper{max-width:25%}}@media (max-width:759px){.TrustActivityTable-quoteWrapper{width:unset}}.TrustActivityTable-activityQuoteData{border:1px solid #9e9e9e;border-radius:8px;display:flex;font-size:12px;font-weight:800;justify-content:center;padding:8px;white-space:nowrap;width:130px}@media (max-width:550px){.TrustActivityTable-activityQuoteData{width:47px}}.TrustActivityTable-activityQuoteData:hover{background-color:#071d39}.TrustActivityTable-activityQuoteData:hover .TrustActivityTable-quoteGain{color:#34d07a}.TrustActivityTable-activityQuoteData:hover .TrustActivityTable-quoteDecline{color:#e64d55}.TrustActivityTable-activityQuoteData .TrustActivityTable-symbolDecline,.TrustActivityTable-activityQuoteData .TrustActivityTable-symbolGain{color:#071d39;margin-right:8px}.TrustActivityTable-activityQuoteData:hover .TrustActivityTable-symbolDecline,.TrustActivityTable-activityQuoteData:hover .TrustActivityTable-symbolGain{color:#fff}@media (max-width:550px){.TrustActivityTable-activityQuoteData:hover .TrustActivityTable-symbolDecline{color:#e64d55}.TrustActivityTable-activityQuoteData:hover .TrustActivityTable-symbolGain{color:#34d07a}.TrustActivityTable-activityQuoteData .TrustActivityTable-symbolGain{color:#008456;margin-right:0}.TrustActivityTable-activityQuoteData .TrustActivityTable-symbolDecline{color:#ce2b2b;margin-right:0}}.TrustActivityTable-activityQuoteData .TrustActivityTable-quoteGain{color:#008456}.TrustActivityTable-activityQuoteData .TrustActivityTable-quoteDecline{color:#ce2b2b}.TrustActivityTable-activityQuoteData .TrustActivityTable-quoteDecline span:nth-child(2),.TrustActivityTable-activityQuoteData .TrustActivityTable-quoteGain span:nth-child(2){margin-left:4px}@media (max-width:550px){.TrustActivityTable-activityQuoteData .TrustActivityTable-quoteDecline,.TrustActivityTable-activityQuoteData .TrustActivityTable-quoteGain{display:none}}.TrustActivityTable-descriptionWrap{max-width:calc(75% - 98px)}@media (min-width:550px){.TrustActivityTable-descriptionWrapWithQuote{width:calc(65% - 98px)}}@media (max-width:550px){.TrustActivityTable-descriptionWrapWithQuote{max-width:25%}}@media (min-width:1020px){.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription{margin-left:64px!important}}@media (max-width:1020px){.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription{margin-left:0;width:calc(65% - 98px)}}@media (max-width:760px){.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription{display:none}}@media (min-width:760px) and (max-width:1019px){.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription{text-align:center}}.TrustActivityTable-descriptionWrap{min-width:0}.TrustActivityTable-descriptionWrap,.TrustActivityTable-descriptionWrapWithQuote{display:flex;font-size:16px;justify-content:space-between;line-height:28px}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityLink,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityLink{font-family:Lyon Text;max-width:100%}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityDescription,.TrustActivityTable-descriptionWrap .TrustActivityTable-activityLink a,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityLink a{display:block;flex:1 2 auto;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityDescription,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription{color:#071d39;font-family:Proxima Nova}@media (max-width:760px){.TrustActivityTable-descriptionWrap .TrustActivityTable-activityDescription,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription{text-align:center}}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityLink a,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityLink a{color:#2077b6;position:relative}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityDescription a,.TrustActivityTable-descriptionWrap .TrustActivityTable-activityLink a,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription a,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityLink a{text-decoration:underline;-webkit-text-decoration-color:#2077b6;text-decoration-color:#2077b6}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityDescription a:hover,.TrustActivityTable-descriptionWrap .TrustActivityTable-activityLink a:hover,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription a:hover,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityLink a:hover{color:#fcb700;-webkit-text-decoration-color:#fcb700;text-decoration-color:#fcb700}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityLink a:before,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityLink a:before{bottom:5px;content:"";display:inline-block;left:0;position:absolute;width:99.5%}.TrustActivityTable-closeButton{align-items:center;display:flex;justify-content:flex-end;padding-left:20px;padding-right:14px;width:100%}@media (max-width:550px){.TrustActivityTable-closeButton{padding-left:0}}.TrustActivityTable-closeButton .TrustActivityTable-closeIcon{background-color:#071d39;height:16px;mask-image:url(https://static-redesign.cnbcfm.com/dist/ca2bb28892b3278d0e95.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/ca2bb28892b3278d0e95.svg);width:16px}@media (max-width:550px){.TrustActivityTable-closeButton .TrustActivityTable-closeIcon{margin-left:10px}}.TrustActivityTable-activityFooter{align-items:center;display:flex;flex:1;font-size:16px;justify-content:flex-end;line-height:28px;margin-top:16px;max-width:1000px;overflow-y:hidden;padding-right:1%;text-align:right;transition:max-height .3s ease-out;width:100%}.TrustActivityTable-activityFooter .TrustActivityTable-recentAlertMessage{color:#2077b6;font-family:Lyon Text;text-decoration:underline}.TrustActivityTable-noActivity+.TrustActivityTable-activityFooter{flex:unset;line-height:36px;margin-top:0;width:max-content}.TrustActivityTable-noActivityMessage{color:#071d39;font-size:16px;font-weight:600;line-height:24px}.TrustActivityTable-hiddenRowLink{height:36px;position:absolute;right:50px;top:0;width:calc(100% - 50px);z-index:0}@media (min-width:760px){.TrustActivityTable-hiddenRowLink{display:none}}.TrustActivityTable-closeButtonWrap{flex-grow:1}@media (max-width:759px){.TrustActivityTable-closeButtonWrap{display:flex;justify-content:flex-end}}@media (max-width:760px){.TrustActivityTable-activityDescription,.TrustActivityTable-viewQuote{display:none!important}}.HistoricalTrustActivity-historicalTrustActivity{margin-bottom:50px;margin-top:40px}.HistoricalTrustActivity-filterButtonWrap{overflow-x:auto;white-space:nowrap}.HistoricalTrustActivity-filterButtonWrap::-webkit-scrollbar{height:0;width:0}.HistoricalTrustActivity-filterButtonWrap::-webkit-scrollbar-track{background:#0000}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButton,.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButtonActive{border:1px solid #002f6c;border-radius:20px;height:28px;margin-left:12px}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButton:first-child,.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButtonActive:first-child{margin-left:0}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButton span,.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButtonActive span{color:#002f6c;display:block;font-size:12px;font-weight:600;letter-spacing:.79px;line-height:12px;margin:5px 10px;position:none;text-transform:uppercase}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButton{background-color:#fff}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButton span{color:#002f6c}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButtonActive{background-color:#002f6c}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButtonActive span{color:#fff}.HistoricalTrustActivity-date{color:#071d39;font-family:Proxima Nova;font-size:16px;font-weight:600;line-height:20px;margin-bottom:20px;margin-top:28px}.HistoricalTrustActivity-loadMoreWrap{display:flex;justify-content:flex-end;margin-top:20px;max-width:1000px;width:100%}.HistoricalTrustActivity-loadMoreWrap>a{margin-right:8px}.TodaysTrustActivity-trustActivity{margin-bottom:50px;margin-top:20px;max-width:100%;overflow:hidden}.TodaysTrustActivity-dropdownButton{align-items:center;color:#fff;display:flex}.TodaysTrustActivity-dropdownButton:active{-webkit-tap-highlight-color:transparent}.TodaysTrustActivity-dropdownButton .TodaysTrustActivity-dropdownArrow,.TodaysTrustActivity-dropdownButton .TodaysTrustActivity-dropdownUpArrow{background:#071d39;height:11px;margin-left:20px;width:19px}.TodaysTrustActivity-dropdownButton .TodaysTrustActivity-dropdownArrow,.TodaysTrustActivity-dropdownButton .TodaysTrustActivity-dropdownUpArrow{mask-image:url(https://static-redesign.cnbcfm.com/dist/b6891ac795b61eeb366b.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/b6891ac795b61eeb366b.svg)}.TodaysTrustActivity-dropdownButton .TodaysTrustActivity-dropdownUpArrow{transform:scaleY(-1)}.LivePill-watchLivePill{bottom:0;position:relative;vertical-align:initial;width:auto!important}.InvestingClubPill-investingClubPillLink,.LivePill-watchLivePill{display:inline-block;padding-right:4px}.InvestingClubPill-investingClubPill{bottom:0;display:inline-block;position:relative;vertical-align:initial;width:auto}.LatestNews-header{border-top:5px solid #002f6c}.LatestNews-header h2{color:#002f6c;font-size:24px;font-weight:900;letter-spacing:.5px;margin:12px 0 16px;text-transform:uppercase}@media (max-width:359px){.LatestNews-header h2{font-size:18px}}.LatestNews-item{border-bottom:1px solid #dedede;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin:0 0 12px;padding:0 0 10px}.LatestNews-item:last-child{margin:0 0 30px}.LatestNews-item:before{background:#fcb700;border-radius:100%;content:"";display:block;flex-shrink:0;height:8px;margin:7px 12px 0 0;width:8px}.LatestNews-item.LatestNews-iconCleared:before{background:none}.LatestNews-container{display:flex;flex-direction:column;margin:0 12px 0 0}.LatestNews-headline{color:#171717;font-size:16px;font-weight:700;line-height:18px;margin:0 10px 0 0}.LatestNews-videoIcon{display:inline;margin:0 0 -3px 5px;width:16px}.LatestNews-wrapper{white-space:nowrap}@media (min-width:360px) and (max-width:759px){.LatestNews-wrapper{display:block}}.LatestNews-source,.LatestNews-timestamp{color:#747474;display:inline-flex;font-size:12px;font-weight:700;letter-spacing:.2px;text-transform:uppercase}.LatestNews-investingClubPill,.LatestNews-proPill,.LatestNews-watchLivePill{margin-right:4px;padding:0!important;transform:translateY(2px)}.LatestNews-source:before{content:"-";display:block;margin:0 5px}@media (max-width:1019px){.LatestNews-isHomePage{background:#f7f7f7;padding:1px 16px 16px}}@media (min-width:1020px){.LatestNews-isHomePage{border-bottom:5px solid #002f6c}.LatestNews-isHomePage:after{background:linear-gradient(#fff0,#fff);bottom:5px;content:"";display:block;height:100px;pointer-events:none;position:absolute;width:96%}}.LatestNews-isHomePage.LatestNews-hideGradient:after{display:none}.LatestNews-isHomePage .LatestNews-header{border-top:none}@media (min-width:1020px){.LatestNews-isHomePage .LatestNews-header{border-top:1px solid #747474}.LatestNews-isHomePage .LatestNews-header:before{border-top:6px solid #0089d0;content:"";display:block;margin:-6px 0 0;width:110px}.LatestNews-isHomePage .LatestNews-header h2{font-size:18px;margin:10px 0}}.LatestNews-isHomePage .LatestNews-headline{font-weight:600;order:2}.LatestNews-isHomePage .LatestNews-headline:hover{color:#171717;text-decoration:underline}@media (min-width:1020px){.LatestNews-isHomePage .LatestNews-list{max-height:238px;overflow-y:auto;position:relative}}@media (min-width:1340px){.LatestNews-isHomePage .LatestNews-list{max-height:352px}}.LatestNews-isHomePage .LatestNews-item:last-child{border-bottom:none;margin:0 0 5px;padding:0 0 5px}.LatestNews-isHomePage .LatestNews-headlineWrapper{order:2}.LatestNews-isHomePage .LatestNews-wrapper{display:block;order:1}.LatestNews-isHomePage .LatestNews-visitedIcon{margin:2px 0 0}.LatestNews-isHomePage .LatestNews-source,.LatestNews-isHomePage .LatestNews-timestamp{letter-spacing:1.2px}@media (min-width:1020px){.LatestNews-isHomePage .LatestNews-buttonContainer{display:none}div.LatestNews-isIntlHomepage .LatestNews-list{max-height:378px}}@media (min-width:1340px){div.LatestNews-isIntlHomepage .LatestNews-list{max-height:472px}}@media (min-width:1020px){.LatestNews-noWatchLiveAbove .LatestNews-list{max-height:380px}}@media (min-width:1340px){.LatestNews-noWatchLiveAbove .LatestNews-list{max-height:472px}}.LatestNews-button,.LatestNews-newsTabButton{align-items:center;background:#fff;border:1px solid #002f6c;color:#002f6c;display:flex;font-family:Proxima Nova,sans-serif;font-size:14px;font-weight:600;justify-content:center;letter-spacing:1.09px;margin:15px 0;padding:10px;text-transform:uppercase;transition:background .15s,color .15s;width:100%}.LatestNews-button:after,.LatestNews-newsTabButton:after{border-bottom:2px solid #002f6c;border-right:2px solid #002f6c;content:"";display:block;height:7px;margin:-5px 0 0 7px;transform:rotate(45deg);transition:border .15s;width:7px}.LatestNews-button:hover,.LatestNews-newsTabButton:hover{background:#002f6c;color:#fff}.LatestNews-button:hover:after,.LatestNews-newsTabButton:hover:after{border-bottom-color:#fff;border-right-color:#fff}@media (min-width:760px){.LatestNews-button,.LatestNews-newsTabButton{margin:15px auto;padding:10px 30px;width:auto}}@media (min-width:1020px){.LatestNews-button,.LatestNews-newsTabButton{display:none}}.LatestNews-newsTabButton{display:none;margin:0 auto 30px}@media (min-width:760px){.LatestNews-newsTabButton{display:flex}}.LatestNews-tradeAlertLabel{background-color:#fff;border:.5px solid #071d39;border-radius:4px;color:#071d39;display:inline-block;font-family:Proxima Nova,sans-serif;font-size:11px;font-style:normal;font-weight:600;line-height:10px;margin-right:4px;margin-top:2px;padding:2.5px 4px;vertical-align:top}.QuoteNewsWithFilters-filterButtonWrap{margin:16px 0;overflow-x:auto;white-space:nowrap}.QuoteNewsWithFilters-filterButtonWrap::-webkit-scrollbar{height:0;width:0}.QuoteNewsWithFilters-filterButtonWrap::-webkit-scrollbar-track{background:#0000}.QuoteNewsWithFilters-filterButtonWrap .QuoteNewsWithFilters-filterButton{background-color:#fff;border:1px solid #002f6c;border-radius:20px;height:28px;margin-left:12px}.QuoteNewsWithFilters-filterButtonWrap .QuoteNewsWithFilters-filterButton:first-child{margin-left:0}.QuoteNewsWithFilters-filterButtonWrap .QuoteNewsWithFilters-filterButton span{color:#002f6c;display:block;font-size:12px;font-weight:600;letter-spacing:.79px;line-height:12px;margin:5px 10px;pointer-events:none;position:none;text-transform:uppercase}.QuoteNewsWithFilters-filterButtonWrap .QuoteNewsWithFilters-filterButtonActive{background-color:#002f6c}.QuoteNewsWithFilters-filterButtonWrap .QuoteNewsWithFilters-filterButtonActive span{color:#fff}.TableHeaderContent-headerRow .TableHeaderContent-headerCell,.TableHeaderContent-headerRow .TableHeaderContent-headerCellRight{background:#27313c;border-right:1px solid #fff;color:#f1f1f1;font-weight:500;line-height:1;padding:16px 8px;text-transform:uppercase}.TableHeaderContent-headerRow .TableHeaderContent-headerSortLabel{color:#f1f1f1!important;width:100%}.TableHeaderContent-headerRow .TableHeaderContent-headerSortLabel .TableHeaderContent-active,.TableHeaderContent-headerRow .TableHeaderContent-headerSortLabel svg{color:#f1f1f1!important;margin-left:auto;margin-right:0}.TableHeaderContent-headerRow .TableHeaderContent-headerSortLabel:hover svg{background:#fff;border-radius:50%;color:#27313c!important;height:16px;margin-left:auto;margin-right:0;opacity:1;width:16px}.TableHeaderContent-headerRow .TableHeaderContent-headerCellRight{text-align:right}.TableHeaderContent-headerRow .TableHeaderContent-headerCellRight .TableHeaderContent-headerSortLabel{flex-direction:row-reverse}.TableHeaderContent-headerRow .TableHeaderContent-headerCellRight .TableHeaderContent-headerSortLabel .TableHeaderContent-active,.TableHeaderContent-headerRow .TableHeaderContent-headerCellRight .TableHeaderContent-headerSortLabel svg,.TableHeaderContent-headerRow .TableHeaderContent-headerCellRight .TableHeaderContent-headerSortLabel:hover svg{margin-left:0;margin-right:auto}.TableBodyContent-contentCell{border:none!important;color:#424242}.TableBodyContent-symbol{max-width:100px;min-width:100px;width:100px}.TableBodyContent-symbol:after{box-shadow:6px 0 4px -4px #82828226;content:"";height:100%;position:absolute;right:0;top:0;width:100%;z-index:-1}.TableBodyContent-company{color:#005594}.TableBodyContent-company,.TableBodyContent-industry,.TableBodyContent-sector{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.TableBodyContent-index{white-space:nowrap}.NumberRenderer-positive{color:#0a6630}.NumberRenderer-negativeCellValue{color:#ce2b2b}.PercentRenderer-positive{color:#0a6630}.PercentRenderer-negativeCellValue{color:#ce2b2b}.NumberUnitConversionRenderer-positive{color:#0a6630}.NumberUnitConversionRenderer-negativeCellValue{color:#ce2b2b}.ConsensusRatingRenderer-strongBuy{color:#145c42}.ConsensusRatingRenderer-buy{color:#0a6630}.ConsensusRatingRenderer-neutral{color:#747474}.ConsensusRatingRenderer-sell,.ConsensusRatingRenderer-strongSell{color:#002f6c}.CompanyRenderer-companyName{color:#0053cf;cursor:pointer}.CompanyRenderer-companyName:focus,.CompanyRenderer-companyName:hover{color:#001e5a}.SymbolRenderer-symbolName{align-items:center;display:flex;justify-content:space-between}.SymbolRenderer-buttonStyles{margin-right:7px;padding:0}@media (max-width:1019px){.SymbolRenderer-dropdownStyles{transform:none!important;width:100%!important}}.InvestorSentimentRenderer-veryPositive{color:#145c42}.InvestorSentimentRenderer-positive{color:#0a6630}.InvestorSentimentRenderer-neutral{color:#747474}.InvestorSentimentRenderer-negative,.InvestorSentimentRenderer-veryNegative{color:#ce2b2b}.SignalRenderer-positive{color:#0a6630}.SignalRenderer-neutral{color:#747474}.SignalRenderer-negative{color:#ce2b2b}.TableLoadingPlaceholder-tableRow:nth-child(odd){background:#fff!important}.TableLoadingPlaceholder-tableRow:nth-child(2n){background:#f8f8f8!important}.TableLoadingPlaceholder-tableCell{border-bottom:0!important;height:53px}.TableLoadingPlaceholder-tableCell .TableLoadingPlaceholder-tableCellLoadingPill{background:#0000000a;border-radius:5px;height:12px;width:auto}.TableWarningErrorPlaceholder-container{flex-grow:0;flex-shrink:0;height:calc(100vh - 500px);min-height:170px;overflow:auto;overscroll-behavior:none;position:relative}@media (min-width:1020px){.TableWarningErrorPlaceholder-container{height:auto}}@media screen and (min-width:1020px) and (hover:hover) and (pointer:fine){.TableWarningErrorPlaceholder-container{overscroll-behavior:auto}}.TableWarningErrorPlaceholder-container tfoot{position:relative!important}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-tableBody{position:relative}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-tableBody tr:nth-child(odd){background:#fff!important}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-tableBody tr:nth-child(2n){background:#f8f8f8!important}.TableWarningErrorPlaceholder-container table{border-collapse:collapse;border-spacing:0;width:100%}.TableWarningErrorPlaceholder-container td,.TableWarningErrorPlaceholder-container th{padding:8px;text-align:left;text-transform:capitalize}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-headerRow{height:53px}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-headerRow .TableWarningErrorPlaceholder-headerCell{background:#27313c;border-right:1px solid #fff;color:#f1f1f1;font-weight:500;line-height:1;padding:16px 8px;text-transform:uppercase}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-headerRow .TableWarningErrorPlaceholder-headerSortLabel{color:#f1f1f1!important;width:100%}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-headerRow .TableWarningErrorPlaceholder-headerSortLabel .TableWarningErrorPlaceholder-active,.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-headerRow .TableWarningErrorPlaceholder-headerSortLabel svg{color:#f1f1f1!important;margin-left:auto;margin-right:0}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-headerRow .TableWarningErrorPlaceholder-headerSortLabel:active svg,.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-headerRow .TableWarningErrorPlaceholder-headerSortLabel:focus svg,.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-headerRow .TableWarningErrorPlaceholder-headerSortLabel:hover svg{background:#fff;border-radius:50%;color:#27313c!important;height:16px;margin-left:auto;margin-right:0;opacity:1;width:16px}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-tableCell{border-bottom:0;height:53px}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-tableCell .TableWarningErrorPlaceholder-tableCellLoadingPill{background:#0000000a;border-radius:5px;height:12px;width:auto}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer{left:0;position:absolute;text-align:center;top:37%;width:100%}@media screen and (min-width:480px) and (orientation:portrait){.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer{top:40%}}@media (min-width:760px){.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer{top:40%}}@media screen and (min-width:760px) and (orientation:landscape){.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer{top:30%}}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer .TableWarningErrorPlaceholder-warningLabel{color:#424242;font-size:12px;font-weight:500}@media screen and (min-width:480px) and (orientation:portrait){.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer .TableWarningErrorPlaceholder-warningLabel{color:#424242;font-size:16px;font-weight:600;margin-top:20px}}@media (min-width:760px){.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer .TableWarningErrorPlaceholder-warningLabel{color:#424242;font-size:16px;font-weight:600;margin-top:20px}}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer .TableWarningErrorPlaceholder-icon{height:23px;width:23px}@media screen and (min-width:480px) and (orientation:portrait){.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer .TableWarningErrorPlaceholder-icon{height:48px;margin-bottom:20px;width:48px}}@media (min-width:760px){.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer .TableWarningErrorPlaceholder-icon{height:48px;margin-bottom:20px;width:48px}}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer .TableWarningErrorPlaceholder-icon.TableWarningErrorPlaceholder-warningIcon{color:#fcb700}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer .TableWarningErrorPlaceholder-icon.TableWarningErrorPlaceholder-errorIcon{color:#ce2b2b}.CustomColumnsTable-container table{border-collapse:initial;border-spacing:0;width:100%}.CustomColumnsTable-container tfoot{position:relative!important}.CustomColumnsTable-container thead{top:-1px!important}.CustomColumnsTable-container td,.CustomColumnsTable-container th{font-size:14px;padding:8px;text-transform:capitalize}@media (max-width:1019px){.CustomColumnsTable-fixedHeightContainer{height:calc(100vh - 394px);min-height:250px}}@media (min-width:1020px){.CustomColumnsTable-fixedHeightContainer{flex-grow:0;flex-shrink:0;overflow-x:auto}}.CustomColumnsTable-fixedHeightContainer .CustomColumnsTable-tableContainer{height:calc(100vh - 410px)!important;min-height:250px;overscroll-behavior:none}@media (min-width:1020px){.CustomColumnsTable-fixedHeightContainer .CustomColumnsTable-tableContainer{height:calc(100vh - 330px)!important}}@media screen and (min-width:1020px) and (hover:hover) and (pointer:fine){.CustomColumnsTable-fixedHeightContainer .CustomColumnsTable-tableContainer{overscroll-behavior:auto}}.CustomColumnsTable-container:not(.CustomColumnsTable-fixedHeightContainer) div[data-viewport-type=element]{position:relative!important}.PortfolioCalendarEventFields-eventLabel{color:#171717;font-size:20px;font-weight:500;padding:20px 0;text-transform:capitalize}.PortfolioCalendarEventFields-fieldRow{border-bottom:1px dotted #d9d9d9;clear:both;height:19px;line-height:19px;margin-bottom:20px}.PortfolioCalendarEventFields-fieldText{background-color:#fff;color:#171717;display:inline-block;font-size:14px}.PortfolioCalendarEventFields-fieldText:first-child{font-weight:400;padding-right:5px}.PortfolioCalendarEventFields-fieldText:last-child{float:right;font-weight:500;padding-left:5px}.PortfolioCalendarEventDetails-container{padding-bottom:5px}.PortfolioCalendarEventDetails-header{color:#171717;font-size:24px;font-weight:500;padding:40px 0;text-transform:capitalize}.PortfolioCalendarEventDetails-tableHeader{color:#171717;font-size:20px;font-weight:500;padding:20px 0;text-transform:capitalize}.PortfolioCalendarEventDetails-spacer{height:15px}.DrawerBuilder-container{margin:0 22px 40px;max-width:100%}@media (min-width:760px){.DrawerBuilder-container{margin:0 40px 40px}}.DrawerBuilder-safariContainer{margin:0 40px 100px}@media (max-width:759px){.DrawerBuilder-safariContainer{margin:0 22px 100px}}.DrawerBuilder-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.DrawerBuilder-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.DrawerBuilder-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.DrawerBuilder-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.DrawerBuilder-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.DrawerBuilder-col:last-child{margin-right:0}.DrawerBuilder-mainContent{margin:42px 0 15px}.DrawerBuilder-mainContent .DrawerBuilder-QuoteNewsFilterContainer{margin-top:40px}@media (min-width:760px){.DrawerBuilder-sidebar{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.DrawerBuilder-sidebar{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.DrawerBuilder-sidebar{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.DrawerBuilder-sidebar{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.DrawerBuilder-sidebar{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.DrawerBuilder-sidebar{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}}@media (min-width:1340px){.DrawerBuilder-sidebar{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}.DrawerBuilder-button,.DrawerBuilder-buttonActive{align-items:center;background:#fff;border:1px solid #002f6c;color:#002f6c;display:flex;font-family:Proxima Nova,sans-serif;font-size:12px;font-weight:700;justify-content:center;letter-spacing:1.09px;margin:15px 0 30px;padding:15px 20px;text-transform:uppercase;width:100%}.DrawerBuilder-button:after,.DrawerBuilder-buttonActive:after{border-bottom:2px solid #002f6c;border-right:2px solid #002f6c;content:"";display:block;height:7px;margin:-4px 0 0 5px;transform:rotate(45deg);width:7px}.DrawerBuilder-buttonActive:after{margin:5px 0 0 5px;transform:rotate(225deg)}.DrawerBuilder-showOnDesktop{display:none}@media (min-width:760px){.DrawerBuilder-showOnDesktop{display:initial}}.DrawerBuilder-showOnMobile{display:initial;margin-bottom:10px}@media (min-width:760px){.DrawerBuilder-showOnMobile{display:none}}@media (max-width:759px){.DrawerBuilder-hideOnMobile{display:none}}.DrawerBuilder-analystConsensusContainer{display:flex;justify-content:center;margin-bottom:25px;margin-top:30px}.DrawerBuilder-quoteDetailsLink{color:#002f6c;font-size:14px;font-weight:600;position:absolute;right:45px;text-decoration:underline;-webkit-text-decoration-color:#002f6c;text-decoration-color:#002f6c;top:10px}.DrawerBuilder-quoteDetailsLink:focus,.DrawerBuilder-quoteDetailsLink:hover{color:#005594;-webkit-text-decoration-color:#005594;text-decoration-color:#005594}.DrawerBuilder-quoteDetailsLink:hover .DrawerBuilder-arrowIcon:before{color:#005594}.DrawerBuilder-arrowIcon{display:inline-block;line-height:14px;margin-left:5px;vertical-align:middle}.DrawerBuilder-arrowIcon:before{color:#002f6c;font-size:12px}@media (min-width:760px){.DrawerBuilder-quoteDetailsLink{font-size:16px}}.cq-dialogs{position:absolute;z-index:2001}.cq-color-picker[cq-active]{z-index:2002}.ciq-window{z-index:2002!important}@keyframes DrawerLoader-pulsating{0%{background-color:#d9d9d9}50%{background-color:#f1f1f1}to{background-color:#d9d9d9}}.DrawerLoader-container{margin:0 22px 40px;max-width:100%}@media (min-width:760px){.DrawerLoader-container{margin:0 40px 40px}}.DrawerLoader-titleLoading{animation:DrawerLoader-pulsating 2s infinite;height:50px;margin:63px 0 54px;width:123px}@media (min-width:760px){.DrawerLoader-titleLoading{height:54px;margin:63px 0 78px;width:151px}}.DrawerLoader-graphLoading{animation:DrawerLoader-pulsating 2s infinite;height:251px;margin-bottom:90px;width:320px}@media (min-width:760px){.DrawerLoader-graphLoading{height:400px;margin-bottom:118px;width:680px}}.DrawerLoader-newsLoading{animation:DrawerLoader-pulsating 2s infinite;height:26px;margin-bottom:20px}@media (min-width:760px){.DrawerLoader-newsLoading{height:28px}}.DrawerLoader-newsLoading:nth-child(2n){margin-bottom:40px}.DrawerLoader-newsBarMedium{width:258px}@media (min-width:760px){.DrawerLoader-newsBarMedium{width:524px}}.DrawerLoader-newsBarExtraLong{width:318px}@media (min-width:760px){.DrawerLoader-newsBarExtraLong{width:682px}}.DrawerLoader-newsBarLong{width:318px}@media (min-width:760px){.DrawerLoader-newsBarLong{width:609px}}.DrawerLoader-newsBarShort{width:318px}@media (min-width:760px){.DrawerLoader-newsBarShort{width:435px}}.SideDrawerBackground-sideDrawerBackground{background:#000000b3;height:100%;left:0;overflow-y:auto;position:fixed;top:0;transition:background-color .5s;width:100%;z-index:2000}.SideDrawerProvider-sideDrawer{background:#fff;bottom:0;box-shadow:5px 5px 20px #1717171a;display:inline-block;height:100vh;margin-top:0!important;max-width:100%;overflow:scroll;overscroll-behavior:contain;position:fixed;right:0;top:0;transform:none;width:100vw;z-index:2001}@media (min-width:1020px){.SideDrawerProvider-sideDrawer{width:760px}}.SideDrawerProvider-closeButton{color:#a9a9a9;cursor:pointer;position:absolute;right:12px;top:12px}.Help-container{color:#6f6f6f;font-size:12px;font-weight:300;letter-spacing:.78px;line-height:14.62px;padding:5px 0 15px;text-align:left}.Help-container a.Help-helpLink{color:#0053cf}.Help-container a.Help-helpLink:focus,.Help-container a.Help-helpLink:hover{color:#fcb700}.LabelLink-container{border-top:1px solid #d9d9d9;display:flex;flex-direction:row;justify-content:space-between}.LabelLink-container .LabelLink-label{color:#767575;font-size:16px;font-weight:600;letter-spacing:.5px;line-height:19.49px;margin:18px 0;text-align:left;text-transform:uppercase}@media (min-width:760px){.LabelLink-container .LabelLink-label{font-size:18px;line-height:21.92px}}.LabelLink-container a.LabelLink-link{color:#0053cf;font-size:12px;font-weight:500;letter-spacing:1px;line-height:12px;margin:auto 0;text-align:left}.LabelLink-container a.LabelLink-link:focus,.LabelLink-container a.LabelLink-link:hover{color:#fcb700}.Account-container{display:block}.Subscriptions-container{padding:0 10px 10px}.Subscriptions-headline{color:#696868;font-size:12px;font-weight:500;letter-spacing:1px;line-height:14.62px;margin-bottom:10px;margin-top:0;text-align:left;text-transform:uppercase}.Subscriptions-noContent{color:#484848;font-size:12px;font-weight:300;letter-spacing:.5px;line-height:18px;text-align:left}.Subscriptions-included{color:#484848;font-size:12px;font-weight:300;line-height:14.62px}.Subscription-dateContainer,.Subscription-logoContainer,.Subscription-top{align-items:center;display:flex}.Subscription-logoContainer{flex-direction:column}.Subscription-top{justify-content:space-between;margin:15px 0 10px}.Subscription-bottom{align-items:center;display:flex;justify-content:flex-start}.Subscription-date,.Subscription-dateLabel{color:#424242;font-size:12px;font-weight:400;letter-spacing:.009em;line-height:12px}.Subscription-dateLabel{padding-right:5px}.Subscription-date{font-weight:600}.Subscription-secondaryLogo{height:16px;width:53px}.Divider-divider{font-size:12px;font-weight:600;margin:auto 5px}.IncludedWith-included{color:#484848;font-size:12px;font-weight:300;line-height:14.62px}.SubscriptionInfo-containerLogoAndMessage{display:flex}.SubscriptionInfo-appStoreMsg{color:#424242;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:400;letter-spacing:.009em;line-height:14px;margin-left:auto;max-width:234px;text-align:right}.SubscriptionInfo-helpCenterLink{color:#0053cf}.SubscriptionInfo-helpCenterLink :hover{color:#171717;text-decoration:underline}.Product-promoBanner{align-items:center;background-color:#ffbc05;border-radius:7px 7px 0 0;display:flex;font-size:14px;font-weight:600;height:37px;justify-content:center;letter-spacing:1.1px;line-height:17.05px;margin:7px 0 -16px;padding-bottom:5px;position:relative;text-transform:uppercase}.Product-container{background:#f8f8f8;background-image:url(https://static-redesign.cnbcfm.com/dist/44944463efaf14fd092f.svg);background-position:right top -10px;background-repeat:no-repeat;background-size:500px;border:1px solid #e3e3e380;border-radius:6px;box-shadow:0 4px 4px 0 #00000040;display:block;margin:10px auto;padding:10px;position:relative}@media (min-width:760px){.Product-container{padding-bottom:17px}}.Product-container .Product-body,.Product-container .Product-head{align-items:flex-start;display:flex;justify-content:space-between;margin-top:5px}.Product-container .Product-left,.Product-container .Product-right{display:block}.Product-container .Product-head .Product-left{align-self:center}@media (min-width:760px){.Product-container .Product-head .Product-left{align-self:flex-start}}.Product-container .Product-head .Product-left svg{max-height:26px;max-width:128px}.Product-container .Product-feature{align-items:center;display:flex;padding:5px 0}@media (min-width:760px){.Product-container .Product-feature{padding:0}}.Product-container .Product-feature svg{margin-left:5px}.Product-container .Product-featureText{color:#4b4f54;font-size:12px;font-weight:500;line-height:14px;margin-left:10px;text-align:left;width:153px}@media (min-width:760px){.Product-container .Product-featureText{font-size:14px;line-height:26px;width:auto}}.Product-container .Product-featureText.Product-all-access{line-height:14px;margin-left:5px;max-width:235px;width:235px}@media (min-width:760px){.Product-container .Product-featureText.Product-all-access{line-height:17px;max-width:275px;width:275px}}.Product-container .Product-subscribeButton{align-items:center;appearance:none;background-color:#005594;border:1px solid #002f6c;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.Product-container .Product-subscribeButton.Product-defaultButton.Product-all-access,.Product-container .Product-subscribeButton.Product-defaultButton.Product-investing-club,.Product-container .Product-subscribeButton.Product-defaultButton.Product-pro{border-radius:3px;height:44px;letter-spacing:.5px;padding:7px 15px}@media (min-width:760px){.Product-container .Product-subscribeButton.Product-defaultButton.Product-all-access,.Product-container .Product-subscribeButton.Product-defaultButton.Product-investing-club,.Product-container .Product-subscribeButton.Product-defaultButton.Product-pro{height:31px}}.Product-container .Product-subscribeButton>span{display:block;line-height:12px}.Product-container .Product-subscribeButton [class*=" icon-"],.Product-container .Product-subscribeButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.Product-container .Product-subscribeButton [class*=" icon-"]:before,.Product-container .Product-subscribeButton [class^=icon-]:before{line-height:12px}.Product-container .Product-subscribeButton:focus,.Product-container .Product-subscribeButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.Product-container .Product-subscribeButton[class*=touchButton]:hover{background-color:#005594;border-color:#002f6c;color:#fff}@media (hover:hover){.Product-container .Product-subscribeButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.Product-container .Product-subscribeButton{padding:0 30px;width:auto}}.Product-container .Product-subscribeButton.Product-pro{align-items:center;appearance:none;background-color:#047e2e;border:1px solid #047e2e;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.Product-container .Product-subscribeButton.Product-pro>span{display:block;line-height:12px}.Product-container .Product-subscribeButton.Product-pro [class*=" icon-"],.Product-container .Product-subscribeButton.Product-pro [class^=icon-]{height:12px;margin-left:5px;position:relative}.Product-container .Product-subscribeButton.Product-pro [class*=" icon-"]:before,.Product-container .Product-subscribeButton.Product-pro [class^=icon-]:before{line-height:12px}.Product-container .Product-subscribeButton.Product-pro:focus,.Product-container .Product-subscribeButton.Product-pro:hover{background-color:#005034;border-color:#005034;color:#fff}.Product-container .Product-subscribeButton.Product-pro[class*=touchButton]:hover{background-color:#047e2e;border-color:#047e2e;color:#fff}@media (hover:hover){.Product-container .Product-subscribeButton.Product-pro[class*=touchButton]:hover{background-color:#005034;border-color:#005034;color:#fff}}@media (min-width:760px){.Product-container .Product-subscribeButton.Product-pro{padding:0 30px;width:auto}}.Product-container .Product-subscribeButton.Product-investing-club{align-items:center;appearance:none;background-color:#0053cf;border:1px solid #0053cf;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.Product-container .Product-subscribeButton.Product-investing-club>span{display:block;line-height:12px}.Product-container .Product-subscribeButton.Product-investing-club [class*=" icon-"],.Product-container .Product-subscribeButton.Product-investing-club [class^=icon-]{height:12px;margin-left:5px;position:relative}.Product-container .Product-subscribeButton.Product-investing-club [class*=" icon-"]:before,.Product-container .Product-subscribeButton.Product-investing-club [class^=icon-]:before{line-height:12px}.Product-container .Product-subscribeButton.Product-investing-club:focus,.Product-container .Product-subscribeButton.Product-investing-club:hover{background-color:#171717;border-color:#171717;color:#fff}.Product-container .Product-subscribeButton.Product-investing-club[class*=touchButton]:hover{background-color:#0053cf;border-color:#0053cf;color:#fff}@media (hover:hover){.Product-container .Product-subscribeButton.Product-investing-club[class*=touchButton]:hover{background-color:#171717;border-color:#171717;color:#fff}}@media (min-width:760px){.Product-container .Product-subscribeButton.Product-investing-club{padding:0 30px;width:auto}}.Product-container .Product-subscribeButton.Product-all-access{align-items:center;appearance:none;background-color:#001e5a;border:1px solid #001e5a;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.Product-container .Product-subscribeButton.Product-all-access>span{display:block;line-height:12px}.Product-container .Product-subscribeButton.Product-all-access [class*=" icon-"],.Product-container .Product-subscribeButton.Product-all-access [class^=icon-]{height:12px;margin-left:5px;position:relative}.Product-container .Product-subscribeButton.Product-all-access [class*=" icon-"]:before,.Product-container .Product-subscribeButton.Product-all-access [class^=icon-]:before{line-height:12px}.Product-container .Product-subscribeButton.Product-all-access:focus,.Product-container .Product-subscribeButton.Product-all-access:hover{background-color:#171717;border-color:#171717;color:#fff}.Product-container .Product-subscribeButton.Product-all-access[class*=touchButton]:hover{background-color:#001e5a;border-color:#001e5a;color:#fff}@media (hover:hover){.Product-container .Product-subscribeButton.Product-all-access[class*=touchButton]:hover{background-color:#171717;border-color:#171717;color:#fff}}@media (min-width:760px){.Product-container .Product-subscribeButton.Product-all-access{padding:0 30px;width:auto}}.Product-container a.Product-learnMoreLink{align-items:center;color:#0053cf;display:flex;font-size:14px;font-weight:600;height:44px;line-height:17.05px;text-align:left}@media (min-width:760px){.Product-container a.Product-learnMoreLink{height:31px}}.Product-container .Product-footer{align-items:center;display:flex;justify-content:flex-start;margin-top:10px;padding-left:5px}.Product-container .Product-secondaryLogo{height:16px;width:53px}.Products-container{margin-bottom:20px}.Products-title{border-top:1px dashed #d9d9d9;color:#696868;font-size:12px;font-weight:500;letter-spacing:1px;line-height:14.62px;margin:0 10px;padding:15px 0 5px;text-align:left;text-transform:uppercase}.AccountSideDrawer-container{background-color:#fff;box-shadow:0 4px 4px 0 #00000040;display:flex;flex-direction:column;height:100%;padding:25px 15px 15px;position:fixed;right:0;top:0;width:100%;z-index:9999}@media (min-width:760px){.AccountSideDrawer-container{padding:25px 25px 15px;width:468px}}.AccountSideDrawer-backdrop{background:#000000b3;height:100%;left:0;overflow-y:auto;position:fixed;top:0;transition:background-color .5s;width:100%;z-index:2000}.AccountSideDrawer-greeting{font-size:18px;letter-spacing:.78px;line-height:21.92px;margin:0;text-align:left}@media (min-width:760px){.AccountSideDrawer-greeting{font-size:20px;font-weight:600;line-height:24.36px}}.AccountSideDrawer-head{align-items:flex-end;display:flex;flex-direction:column;justify-content:flex-end}.AccountSideDrawer-body{-ms-overflow-style:none;display:block;overflow:auto;scrollbar-width:none}.AccountSideDrawer-body::-webkit-scrollbar{display:none}.AccountSideDrawer-signout{align-items:flex-start;border-top:1px solid #d9d9d9;display:flex;flex-direction:column;justify-content:flex-start;margin:5px 0 25px;padding:15px 0 0}.AccountSideDrawer-signout .AccountSideDrawer-signOutLink{color:#0053cf;font-size:16px;font-weight:600;letter-spacing:.5px;line-height:19.49px;text-align:left;text-transform:uppercase}@media (min-width:760px){.AccountSideDrawer-signout .AccountSideDrawer-signOutLink{font-size:18px;line-height:21.92px}}.AccountSideDrawer-signout .AccountSideDrawer-signOutLink:focus,.AccountSideDrawer-signout .AccountSideDrawer-signOutLink:hover{color:#fcb700}.AccountSideDrawer-closeButton svg path{fill:#171717}.UniversalVideoPlayer-videoContainer{opacity:1;position:absolute;z-index:10}.hfsf{z-index:100}.hfsf .ot-sdk-show-settings.US{background-image:url(https://static-redesign.cnbcfm.com/dist/17269f1b6083fd5f61be.svg);background-position-y:2px;background-repeat:no-repeat;background-size:24px;padding:0 0 0 30px}.NavSpacer-navSpacer{display:block;height:45px}.NavSpacer-navSpacer.NavSpacer-navSpacerCountDownClock,.NavSpacer-navSpacer.NavSpacer-navSpacerFiveThings{height:112px}@media (min-width:760px){.NavSpacer-navSpacer{height:70px}.NavSpacer-navSpacer.NavSpacer-navSpacerCountDownClock,.NavSpacer-navSpacer.NavSpacer-navSpacerFiveThings{height:112px}}.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert{height:85px}.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerLiveAlert{height:125px}.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerCountDownClock,.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerFiveThings{height:192px}@media (min-width:760px){.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert{height:110px}.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerLiveAlert{height:150px}.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerCountDownClock{height:152px}.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerFiveThings{height:185px}}.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert{height:85px}@media (min-width:360px){.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert{height:125px}.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert.NavSpacer-NavSpacer-navSpacerFiveThings{height:162px}}@media (min-width:760px){.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert{height:150px}}@media (min-width:1020px){.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert{height:150px}}@media (min-width:1340px){.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert{height:150px}}.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerFiveThings{height:185px}.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerCountDownClock{height:192px}.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerCountDownClock,.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerFiveThings{height:152px}@media (min-width:760px){.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert{height:110px}}.SelectHFSNav-container{height:60px;margin-bottom:-20px;position:sticky;top:0;z-index:9999}@media screen and (min-width:759px){.SelectHFSNav-container{height:80px}}.SelectHFSNav-container #hfs-header{position:fixed;width:100%}@supports (-webkit-overflow-scrolling:touch){.hfsh .menu .inner:after{display:none!important}}.hfsh .ot-sdk-show-settings.US{background-image:url(https://static-redesign.cnbcfm.com/dist/17269f1b6083fd5f61be.svg);background-position-y:4px;background-repeat:no-repeat;background-size:24px;padding:0 0 0 28px}@supports (-webkit-overflow-scrolling:touch){.menu-select__copyright:after{content:"";display:block;height:88px;width:100%}}nav.hfsh{pointer-events:auto!important}.MobileAdhesion-container{display:none;margin:10px auto;overflow:hidden;text-align:center}.JumpLink-container{margin:0 auto;position:relative;width:100%;z-index:1000}@media (min-width:1020px){.JumpLink-container{margin:0 auto;max-width:100%}}@media (min-width:1020px) and (min-width:760px){.JumpLink-container{max-width:678px}}@media (min-width:1020px) and (min-width:1020px){.JumpLink-container{max-width:960px}}@media (min-width:1020px) and (min-width:1340px){.JumpLink-container{max-width:1290px}}.JumpLink-link{align-items:center;background-color:#e8e8e8;color:#002f6c;display:flex;font-size:14px;font-weight:700;height:1px;left:-10000px;line-height:1;overflow:hidden;padding:0 14px;position:absolute;text-transform:uppercase;top:0;width:1px}.JumpLink-link:focus-visible{height:40px;left:0;width:auto}.SidebarArticle-sidebar{position:relative}@media (min-width:1020px){.SidebarArticle-sticky{margin-bottom:20px;position:sticky}}.SidebarArticle-noSticky{position:static!important}.SidebarArticle-noSticky .SidebarArticle-sticky{position:sticky}.LazyLoaderPlaceholder-articleBody{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.LazyLoaderPlaceholder-articleBody{padding-left:0;padding-right:0}}.LazyLoaderPlaceholder-bodyText{color:#2e2e2e;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:18px;line-height:1.66;margin-bottom:30px}@media (min-width:760px){.LazyLoaderPlaceholder-bodyText{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){.LazyLoaderPlaceholder-bodyText{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){.LazyLoaderPlaceholder-bodyText{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){.LazyLoaderPlaceholder-bodyText{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){.LazyLoaderPlaceholder-bodyText{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){.LazyLoaderPlaceholder-bodyText{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){.LazyLoaderPlaceholder-bodyText{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){.LazyLoaderPlaceholder-bodyText{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){.LazyLoaderPlaceholder-bodyText{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){.LazyLoaderPlaceholder-bodyText{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){.LazyLoaderPlaceholder-bodyText{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){.LazyLoaderPlaceholder-bodyText{margin-left:14.28571%}}@media (min-width:760px){.LazyLoaderPlaceholder-listWrapper{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){.LazyLoaderPlaceholder-listWrapper{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){.LazyLoaderPlaceholder-listWrapper{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){.LazyLoaderPlaceholder-listWrapper{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){.LazyLoaderPlaceholder-listWrapper{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){.LazyLoaderPlaceholder-listWrapper{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){.LazyLoaderPlaceholder-listWrapper{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){.LazyLoaderPlaceholder-listWrapper{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){.LazyLoaderPlaceholder-listWrapper{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){.LazyLoaderPlaceholder-listWrapper{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){.LazyLoaderPlaceholder-listWrapper{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){.LazyLoaderPlaceholder-listWrapper{margin-left:14.28571%}}.LazyLoaderPlaceholder-listTitle{font-size:24px;font-weight:700;margin-bottom:15px}.LazyLoaderPlaceholder-gridContainer{grid-gap:30px;display:grid;font-size:18px;font-weight:600;grid-template-columns:auto auto auto;line-height:22px;padding:10px}@media (min-width:360px) and (max-width:759px){.LazyLoaderPlaceholder-gridContainer{display:block;padding-left:0}}.LazyLoaderPlaceholder-gridItem{border-bottom:1px dashed #8b8b8b80}.LazyLoaderPlaceholder-gridItem .LazyLoaderPlaceholder-author,.LazyLoaderPlaceholder-gridItem .LazyLoaderPlaceholder-headline,.LazyLoaderPlaceholder-gridItem .LazyLoaderPlaceholder-section{color:#000;display:block;margin-bottom:12px;margin-top:12px}.LazyLoaderPlaceholder-gridItem .LazyLoaderPlaceholder-headline:hover{text-decoration:underline}.LazyLoaderPlaceholder-gridItem .LazyLoaderPlaceholder-author,.LazyLoaderPlaceholder-gridItem .LazyLoaderPlaceholder-section{font-size:12px;line-height:12px;overflow-y:hidden}@media (min-width:360px) and (max-width:759px){.LazyLoaderPlaceholder-headline{word-break:break-word}}.LazyLoaderPlaceholder-moduleTitle{color:#000;display:block;font-size:32px;font-weight:800;line-height:37px;padding:10px}.LazyLoaderPlaceholder-moduleTitle:hover{color:#2077b6}@media (min-width:360px) and (max-width:759px){.LazyLoaderPlaceholder-moduleTitle{padding-left:0}}.AdvertorialFooter-advertorialFooter{background-color:#e1e1e1;color:#737373;font-size:14px;text-align:center;width:100%}.AdvertorialFooter-advertorialFooter .AdvertorialFooter-innerText{font-family:Proxima Nova,450,normal,sans-serif;font-weight:450;margin:0 auto;padding:15px 0;text-align:center}@media (min-width:360px){.AdvertorialFooter-advertorialFooter .AdvertorialFooter-innerText{width:85%}}@media (min-width:760px){.AdvertorialFooter-advertorialFooter .AdvertorialFooter-innerText{width:500px}}*{box-sizing:border-box}li,ol,ul{list-style:none;margin:0;padding:0}a{color:#fff;cursor:pointer;text-decoration:none}a:focus,a:hover{color:#fcb700}button{background:none;border:none;cursor:pointer;padding:0}table{border-collapse:collapse}td,th{padding:8px 15px 8px 0;text-align:left}img{display:block}html{-ms-overflow-style:-ms-autohiding-scrollbar}body{-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:100%;border:0;font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin:0;padding:0}body:after{content:"mobile";display:none}@media (min-width:760px){body:after{content:"tablet"}}@media (min-width:1020px){body:after{content:"small_desktop"}}@media (min-width:1180px){body:after{content:"medium_desktop"}}@media (min-width:1340px){body:after{content:"large_desktop"}}:focus{outline:none}button{border-radius:0;font-family:Proxima Nova,Helvetica,Arial,sans-serif}button::-moz-focus-inner{border:0}.openNav{position:fixed;width:100%}@media (min-width:1020px){.openNav{overflow-y:scroll}}.App-articleBody{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.App-articleBody{padding-left:0;padding-right:0}}.group{font-family:Lyon,Helvetica,Arial,sans-serif;font-size:18px;line-height:1.66;margin-bottom:30px}@media (min-width:760px){.group{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){.group{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){.group{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){.group{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){.group{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){.group{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){.group{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){.group{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){.group{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){.group{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){.group{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){.group{margin-left:14.28571%}}@media (max-width:759px){.hideOnMobile{display:none}}.App-bodyText{color:#2e2e2e;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:18px;line-height:1.66;margin-bottom:30px}@media (min-width:760px){.App-bodyText{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){.App-bodyText{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){.App-bodyText{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){.App-bodyText{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){.App-bodyText{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){.App-bodyText{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){.App-bodyText{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){.App-bodyText{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){.App-bodyText{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){.App-bodyText{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){.App-bodyText{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){.App-bodyText{margin-left:14.28571%}}@media (min-width:760px){.App-listWrapper{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){.App-listWrapper{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){.App-listWrapper{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){.App-listWrapper{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){.App-listWrapper{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){.App-listWrapper{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){.App-listWrapper{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){.App-listWrapper{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){.App-listWrapper{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){.App-listWrapper{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){.App-listWrapper{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){.App-listWrapper{margin-left:14.28571%}}@media (min-width:760px){#taboolaContainer{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){#taboolaContainer{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){#taboolaContainer{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){#taboolaContainer{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){#taboolaContainer{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){#taboolaContainer{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){#taboolaContainer{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){#taboolaContainer{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){#taboolaContainer{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){#taboolaContainer{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){#taboolaContainer{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){#taboolaContainer{margin-left:14.28571%}}@media (min-width:760px){#taboolaContainer{flex:none}}@media (min-width:1020px){#taboolaContainer{flex-grow:0;flex-shrink:0;flex:none;margin-left:calc(16.66667% + 5px);max-width:calc(83.33333% - 5px);min-width:calc(83.33333% - 5px)}}@media (min-width:1340px){#taboolaContainer{flex-grow:0;flex-shrink:0;flex:none;margin-left:calc(14.28571% + 4.28571px);max-width:calc(85.71429% - 4.28571px);min-width:calc(85.71429% - 4.28571px)}}.App-listTitle{font-size:24px;font-weight:700;margin-bottom:15px}.numeric{text-align:right}@media (prefers-color-scheme:dark){.webview,.webview #taboola-below-article-thumbnails-Bento-Feed,.webview #taboola-below-article-thumbnails-Bento-Feed .video-title,.webview .trc_rbox_header_span{background-color:#000;color:#dce0e4}.webview #taboola-below-article-thumbnails-Bento-Feed .video-title a,.webview #taboola-below-article-thumbnails-Bento-Feed a,.webview .trc_rbox_header_span a,.webview a{color:#dce0e4}}.grecaptcha-badge{display:none}@font-face{font-display:block;font-family:icomoon;font-style:normal;font-weight:400;src:url(https://static-redesign.cnbcfm.com/dist/icomoon.woff2) format("woff2")}[class*=" icon-"],[class^=icon-]{speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:icomoon!important;font-style:normal;font-variant:normal;font-weight:400;line-height:1;text-transform:none}.icon-social_apple_news:before{content:"\e900"}.icon-close-2:before{content:"\e901"}.icon-thumbs-up:before{content:"\e902"}.icon-chat-bubble:before{content:"\e903"}.icon-chat-bubble-hover:before{content:"\e904"}.icon-thumbs-down:before{content:"\e905"}.icon-buffett-pause:before{content:"\e906"}.icon-buffett-timeline:before{content:"\e907"}.icon-buffett-backtotop:before{content:"\e908"}.icon-buffett-sync:before{content:"\e909"}.icon-buffett-arrow-right-long:before{content:"\e90a"}.icon-buffett-arrow-left-long:before{content:"\e90b"}.icon-buffett-diamond:before{content:"\e90c"}.icon-check:before{content:"\e90d"}.icon-search:before{content:"\e90e"}.icon-hamburger:before{content:"\e90f"}.icon-close:before{content:"\e910"}.icon-social_facebook:before{content:"\e911"}.icon-social_instagram:before{content:"\e912"}.icon-social_linkedin:before{content:"\e913"}.icon-social_rss:before{content:"\e914"}.icon-social_twitter:before{content:"\e915"}.icon-social_youtube:before{content:"\e916"}.icon-tumblr:before{content:"\e917"}.icon-stumbleupon:before{content:"\e918"}.icon-reddit:before{content:"\e919"}.icon-quote-mark:before{content:"\e91a"}.icon-probug:before{content:"\e91b"}.icon-play-triangle:before{content:"\e91c"}.icon-pinterest:before{content:"\e91d"}.icon-more-dots:before{content:"\e91e"}.icon-pause:before{content:"\e906"}.icon-play:before{content:"\e91f"}.icon-email:before{content:"\e920"}.icon-digg:before{content:"\e921"}.icon-arrow-left:before{content:"\e922"}.icon-arrow-right:before{content:"\e923"}.icon-arrow-down-readmore:before{content:"\e924"}.icon-arrow-transporter-down:before{content:"\e925"}.icon-calendar:before{content:"\e926"}.icon-livebug:before{content:"\e927"}.icon-lock:before{content:"\e928"}.icon-sort:before{content:"\e929"}.icon-cnbctv:before{content:"\e92a"}.icon-markets:before{content:"\e92b"}.icon-menu:before{content:"\e92c"}.icon-news:before{content:"\e92d"}.icon-offsite-arrow:before{content:"\e92e"}.icon-short-arrow-left:before{content:"\e92f"}.icon-short-arrow-right:before{content:"\e930"}.icon-live:before{content:"\e931"}.icon-newsletter:before{content:"\e932"}.icon-caret-left:before{content:"\e933"}.icon-triangle-down:before{content:"\e934"}.icon-triangle-up:before{content:"\e935"}.icon-caret-right:before{content:"\e936"}.icon-buffett-arrow-left:before{content:"\e937"}.icon-buffett-arrow-right:before{content:"\e938"}.icon-buffett-chevron-down:before{content:"\e939"}.icon-buffett-chevron-left:before{content:"\e93a"}.icon-buffett-chevron-right:before{content:"\e93b"}.icon-buffett-chevron-up:before{content:"\e93c"}.icon-buffett-playlist:before{content:"\e93d"}.icon-buffett-slideshow:before{content:"\e93e"}.icon-buffett-video-fullscreen:before{content:"\e93f"}.icon-buffett-video-mute:before{content:"\e940"}.icon-buffett-video-volume:before{content:"\e941"}.icon-buffett-video:before{content:"\e91C"}.PlayButton-buffett .icon-buffett-video:before{content:"\e942"}.icon-video_back_to_top:before{content:"\e943"}.icon-video_close:before{content:"\e944"}.icon-logo-cnbc:before{content:"\e945"}.icon-minus:before{content:"\e946"}.icon-plus:before{content:"\e947"}.icon-watchlist:before{content:"\e948"}.icon-replay:before{content:"\e965"}.icon-full-screen-alt:before{content:"\e98b"}.icon-full-screen-close-alt:before{content:"\e98c"}@font-face{font-display:block;font-family:makeit-icons;font-style:normal;font-weight:400;src:url(https://static-redesign.cnbcfm.com/dist/makeit-icons.woff2) format("woff2")}[class*=" icon-makeit-"]:before,[class^=icon-makeit-]:before{display:inline-block;font-family:makeit-icons!important}.icon-makeit-arrow-down:before{content:"\e900"}.icon-makeit-arrow-left:before{content:"\e901"}.icon-makeit-arrow-right:before{content:"\e902"}.icon-makeit-arrow-up:before{content:"\e903"}.icon-makeit-backtotop:before{content:"\e904"}.icon-makeit-check:before{content:"\e905"}.icon-makeit-close:before{content:"\e906"}.icon-makeit-externallink:before{content:"\e907"}.icon-makeit-filter-closed:before{content:"\e908"}.icon-makeit-filter-open:before{content:"\e909"}.icon-makeit-fullscreen:before{content:"\e90a"}.icon-makeit-hamburger:before{content:"\e90b"}.icon-makeit-logo-cnbc:before{content:"\e919"}.icon-makeit-mail:before{content:"\e90d"}.icon-makeit-mute:before{content:"\e90e"}.icon-makeit-pause:before{content:"\e90f"}.icon-makeit-play:before{content:"\e910"}.icon-makeit-questionnaire:before{content:"\e911"}.icon-makeit-quote:before{content:"\e912"}.icon-makeit-search:before{border-top:1px solid #0000;content:"\e913"}.icon-makeit-trending-bug:before{content:"\e914"}.icon-makeit-unmute:before{content:"\e915"}.icon-makeit-plus:before{content:"\e916"}.icon-makeit-minus:before{content:"\e917"}.icon-makeit-newsletter:before{content:"\e918"}@font-face{font-display:swap;font-family:social-icons;font-style:normal;font-weight:400;src:url(https://static-redesign.cnbcfm.com/dist/social-icons.woff2) format("woff2")}[class*=" gig-button-container-"],[class^=gig-button-container-]{speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:social-icons!important;font-style:normal;font-variant:normal;font-weight:400;line-height:1;text-transform:none}.gig-button-container-facebook .icon-social:before{content:"\e911"}.gig-button-container-instagram .icon-social:before{content:"\e912"}.gig-button-container-linkedin .icon-social:before{content:"\e913"}.gig-button-container-rss .icon-social:before{content:"\e914"}.gig-button-container-twitter .icon-social:before{content:"\e915"}.gig-button-container-youtube .icon-social:before{content:"\e916"}.gig-button-container-tumblr .icon-social:before{content:"\e917"}.gig-button-container-stumbleupon .icon-social:before{content:"\e918"}.gig-button-container-reddit .icon-social:before{content:"\e919"}.gig-button-container-pinterest .icon-social:before{content:"\e91d"}.gig-button-container-share .icon-social:before{content:"\e91e"}.gig-button-container-email .icon-social:before{content:"\e920"}.gig-button-container-digg .icon-social:before{content:"\e921"}.transition-fade-enter{opacity:.01!important}.transition-fade-appear{opacity:.01}.transition-fade-appear.transition-fade-appear-active{opacity:1!important;transition:opacity .5s ease-in}.transition-fade-enter.transition-fade-enter-active{opacity:1!important;transition:opacity .3s ease-in}.transition-transform-y-appear{transform:translateY(20%);transition:transform .5s ease-in}.transition-transform-y-appear.transition-transform-y-appear-active{transform:translateY(0);transition:transform .5s ease-in}.transition-top-enter{transform:translateY(-100%)}.transition-search-fade-enter{opacity:.01!important}.transition-search-fade-enter.transition-search-fade-enter-active{opacity:1!important;transition:opacity .5s ease-in}.transition-top-enter.transition-top-enter-active{transform:translateY(0);transition:transform .5s}.transition-bottom-enter{transform:translateY(100%)}.transition-bottom-enter.transition-bottom-enter-active{transform:translateY(0);transition:transform .5s}.mega-menu-enter{opacity:.01!important}.mega-menu-enter .mega-menu-megaMenu{transform:translate3d(0,-100%,0)!important}.mega-menu-enter.mega-menu-enter-active{opacity:1!important;transition:opacity .3s ease-in}.mega-menu-enter.mega-menu-enter-active .mega-menu-megaMenu{transform:translateZ(0)!important;transition:transform .3s cubic-bezier(.645,.045,.355,1)}.mega-menu-exit{opacity:1!important}.mega-menu-exit .mega-menu-megaMenu{transform:translateZ(0)!important}.mega-menu-exit.mega-menu-exit-active{opacity:.01!important;transition:opacity .15s ease-in}.mega-menu-exit.mega-menu-exit-active .mega-menu-megaMenu{transform:translate3d(0,-100%,0)!important;transition:transform .15s cubic-bezier(.645,.045,.355,1)}.App-contentWrapper{margin-top:45px}@media (min-width:760px){.App-contentWrapper{margin-top:70px}}.App-contentWrapperClock{margin-top:112px}.App-containerClick a:focus,.App-containerClick button:focus,.App-containerClick input:focus,.App-containerClick textarea:focus{outline:none}.App-proContentRecommendation{bottom:0;position:fixed;width:100%;z-index:9999}@media (max-width:759px){.App-proContentRecommendation{bottom:55px}}.App-makeit.App-buttonContainer{margin-bottom:20px;position:relative;text-align:center;width:auto}@media (min-width:760px){.App-makeit.App-buttonContainer{margin-bottom:50px}}.App-makeit .App-buttonLink{background:#fff;border:3px solid #68ebca;color:#3e4855;display:inline-block;font-size:14px;font-weight:600;height:42px;letter-spacing:3px;line-height:12px;padding:12px 75px;text-transform:uppercase;width:auto}.App-makeit .App-buttonLink:hover{background-color:#68ebca}body .makeitBrand{font-family:Averta,Helvetica,Arial,sans-serif}body .makeitBrand #faceteddata div>a{color:#000}.HalfAndHalfBreaker-halfAndHalfBreaker{margin-left:-20px;margin-right:-20px;width:auto}@media (min-width:760px){.HalfAndHalfBreaker-halfAndHalfBreaker{margin:0}}@media (min-width:1020px){.HalfAndHalfBreaker-halfAndHalfBreaker{padding-left:0;padding-right:0}}.HalfAndHalfBreaker-container{margin:0 auto;max-width:100%;width:100%}@media (min-width:760px){.HalfAndHalfBreaker-container{max-width:678px}}@media (min-width:1020px){.HalfAndHalfBreaker-container{max-width:960px}}@media (min-width:1340px){.HalfAndHalfBreaker-container{max-width:1290px}}@media (min-width:1020px){.HalfAndHalfBreaker-container{display:flex;max-width:none}}.HalfAndHalfBreaker-wrapper{position:relative}.HalfAndHalfBreaker-section{background-position:50%;background-size:cover;padding:30px 20px;position:relative;width:100%}.HalfAndHalfBreaker-section:last-child{border-top:1px solid #fff}@media (min-width:760px){.HalfAndHalfBreaker-section{display:flex;padding-left:0;padding-right:0}}@media (min-width:1020px){.HalfAndHalfBreaker-section{flex-direction:column;height:auto;max-width:50%;min-width:50%;padding:30px}.HalfAndHalfBreaker-section:first-child{padding-left:0}.HalfAndHalfBreaker-section:last-child{border-left:1px solid #fff;border-top:none;padding-right:0}}.HalfAndHalfBreaker-newsletterIcon{display:flex;margin-right:15px}.HalfAndHalfBreaker-newsletterIcon .icon-newsletter:before{font-size:38px;line-height:.73;position:relative;top:4px}@media (min-width:760px){.HalfAndHalfBreaker-newsletterIcon .icon-newsletter:before{font-size:44px;top:-2px}}@media (min-width:1020px){.HalfAndHalfBreaker-newsletterIcon .icon-newsletter:before{top:4px}}@media (min-width:1340px){.HalfAndHalfBreaker-newsletterIcon .icon-newsletter:before{font-size:45px;top:3px}}.HalfAndHalfBreaker-logo{display:block;height:auto;margin-right:15px;width:160px}@media (min-width:760px){.HalfAndHalfBreaker-logo{width:265px}}@media (min-width:1020px){.HalfAndHalfBreaker-logo{width:265px}}.HalfAndHalfBreaker-title{align-items:center;color:#fff;display:flex;font-size:24px;font-weight:700;letter-spacing:-.16em;line-height:32px;margin-bottom:10px;max-width:100%;position:relative;z-index:2}@media (min-width:760px){.HalfAndHalfBreaker-title{align-items:flex-start;font-size:26px;line-height:30px;padding-right:30px;width:51%}}@media (min-width:1020px){.HalfAndHalfBreaker-title{align-items:center;font-size:32px;line-height:31px;min-height:40px;padding-right:20px;width:100%}}.HalfAndHalfBreaker-titleImage{display:block;margin-bottom:10px;max-width:100%;padding-right:20px;position:relative;z-index:2}@media (min-width:760px){.HalfAndHalfBreaker-titleImage{max-height:40px;padding-right:30px;width:51%}}@media (min-width:1020px){.HalfAndHalfBreaker-titleImage{padding-right:20px;width:100%}}.HalfAndHalfBreaker-content{max-width:100%;position:relative;z-index:2}@media (min-width:760px){.HalfAndHalfBreaker-content{float:left;width:60%}}@media (min-width:1020px){.HalfAndHalfBreaker-content{align-items:flex-start;display:flex;flex-direction:column;flex-grow:1;float:none;width:auto}}@media (min-width:1340px){.HalfAndHalfBreaker-content{display:flex;flex-direction:row;justify-content:space-between;width:100%}}.HalfAndHalfBreaker-description{color:#fff;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:16px;font-weight:500;line-height:24px;margin:0 0 20px;max-width:100%;position:relative;z-index:2}@media (min-width:760px){.HalfAndHalfBreaker-description{margin-top:0}}@media (min-width:1020px){.HalfAndHalfBreaker-description{margin-top:15px;padding-right:20px}}@media (min-width:1340px){.HalfAndHalfBreaker-description{margin-bottom:0;max-width:none;padding-right:40px}}.HalfAndHalfBreaker-button{background:#0000;border:1px solid #fff;color:#fff;display:inline-block;font-size:12px;font-weight:600;height:40px;letter-spacing:1.09px;line-height:40px;position:relative;text-align:center;text-transform:uppercase;white-space:nowrap;width:100%;z-index:2}.HalfAndHalfBreaker-button:hover{background-color:#fcb700;border-color:#fcb700;color:#071d39}@media (min-width:760px){.HalfAndHalfBreaker-button{padding:0 20px;width:auto}}@media (min-width:1020px){.HalfAndHalfBreaker-button{margin-top:auto}}@media (min-width:1340px){.HalfAndHalfBreaker-button{margin:20px 0 0 auto}}.HalfAndHalfBreaker-background1{background-position:50%;background-size:cover;border:none;height:100%;left:0;position:absolute;top:0;width:100%}@media (min-width:760px){.HalfAndHalfBreaker-background1{width:100%}}@media (min-width:1020px){.HalfAndHalfBreaker-background1{left:0;margin-left:calc(-50vw - -480px);width:50vw}}@media (min-width:1180px){.HalfAndHalfBreaker-background1{margin-left:calc(-50vw - -538.5px)}}@media (min-width:1340px){.HalfAndHalfBreaker-background1{margin-left:calc(-50vw - -645px)}}.HalfAndHalfBreaker-background1:after{background:linear-gradient(90deg,#071d39e6,#39bb7ae6);content:"";height:100%;left:0;position:absolute;top:0;width:100%;z-index:1}@media (min-width:1020px){.HalfAndHalfBreaker-background2{margin-left:0}}.HalfAndHalfBreaker-background2:after{background:linear-gradient(90deg,#071d39e6,#005594e6);content:"";height:100%;left:0;position:absolute;top:0;width:100%;z-index:1}.HalfAndHalfBreaker-proBackground:after{background:#2e2e2e linear-gradient(180deg,#2e2e2e 40%,#39bb7ae6)}@media (min-width:1020px){.HalfAndHalfBreaker-proBackground:after{background:#2e2e2e linear-gradient(90deg,#2e2e2e 40%,#39bb7ae6)}}.HalfAndHalfBreaker-watchlistBackground:after{background:linear-gradient(270deg,#071d39e6 10%,#005594)}@media (min-width:760px){.HalfAndHalfBreaker-watchlistBackground:after{background:linear-gradient(90deg,#2e2e2ee6 40%,#005594)}}.HalfAndHalfBreaker-newsletterBackground:after{background:linear-gradient(180deg,#2e2e2e80,#071d39)}@media (min-width:1020px){.HalfAndHalfBreaker-newsletterBackground:after{background:linear-gradient(90deg,#2e2e2ecc 40%,#071d39e6)}}.WatchlistPage-container{max-width:100%;min-height:500px;position:relative}@media (min-width:360px){.WatchlistPage-container{margin-bottom:0}}@media (min-width:760px){.WatchlistPage-container{margin:0 auto;max-width:678px}}@media (min-width:1020px){.WatchlistPage-container{margin-bottom:15px;max-width:960px}}@media (min-width:1340px){.WatchlistPage-container{margin-bottom:25px;max-width:1290px}}.WatchlistPage-header{display:flex;justify-content:space-between;margin-top:30px}.WatchlistPage-header h2{margin:0}.WatchlistPage-header button{border:1px solid #002f6c;color:#002f6c;padding:10px}.StickyProductMarketingPage-pnHeader{background-color:#fff;box-shadow:0 4px 4px #00000040;display:flex;height:80px;justify-content:center;position:fixed;top:0;width:100%;z-index:99}.StickyProductMarketingPage-staticHeader{align-items:center;display:flex;flex-direction:row;gap:24px;height:104px;justify-content:space-between;margin:auto;max-width:1290px;padding-bottom:20px;position:fixed;top:0;width:100%}.StickyProductMarketingPage-cnbcLogo{margin-left:25px}.StickyProductMarketingPage-cnbcLogo>img{height:23px;width:135px}.StickyProductMarketingPage-headerSubscribe{color:#000;font-size:20px;font-weight:600;letter-spacing:1.09091px;line-height:16px;margin-right:25px;text-align:center}.StickyProductMarketingPage-allAccessButtonHeader,.StickyProductMarketingPage-buttonHeaderBaseStyle,.StickyProductMarketingPage-freeAccountButtonHeader,.StickyProductMarketingPage-investingClubButtonHeader,.StickyProductMarketingPage-plusButtonHeader,.StickyProductMarketingPage-proButtonHeader{background:#ffbc05;border:0;border-radius:3px;color:#fff;font-size:14px;font-weight:600;height:46px;letter-spacing:1.09091px;line-height:16px;margin-left:12px;text-align:center;text-transform:uppercase;width:199px}.StickyProductMarketingPage-allAccessButtonHeader:hover,.StickyProductMarketingPage-buttonHeaderBaseStyle:hover,.StickyProductMarketingPage-freeAccountButtonHeader:hover,.StickyProductMarketingPage-investingClubButtonHeader:hover,.StickyProductMarketingPage-plusButtonHeader:hover,.StickyProductMarketingPage-proButtonHeader:hover{background:#0477c9}.StickyProductMarketingPage-plusButtonHeader{background:#001e5a;width:116px}.StickyProductMarketingPage-plusButtonHeader:hover{background:#002f6c}.StickyProductMarketingPage-allAccessButtonHeader{background:#0053cf}.StickyProductMarketingPage-allAccessButtonHeader:hover{background:#0477c9}.StickyProductMarketingPage-proButtonHeader{background:#008456;width:140px}.StickyProductMarketingPage-proButtonHeader:hover{background:#005034}.StickyProductMarketingPage-investingClubButtonHeader{background:#071d39}.StickyProductMarketingPage-investingClubButtonHeader:hover{background:#1896ff}.StickyProductMarketingPage-freeAccountButtonHeader{background:#336aa0}.StickyProductMarketingPage-freeAccountButtonHeader:hover{background:#002f6c}@media (max-width:759px){.StickyProductMarketingPage-pnHeader{height:52px}.StickyProductMarketingPage-staticHeader{gap:unset;height:72px;width:100%}.StickyProductMarketingPage-cnbcLogo{margin-left:10px}.StickyProductMarketingPage-cnbcLogo>img{height:15px;width:83px}.StickyProductMarketingPage-headerSubscribe{align-items:center;display:flex;font-size:12px;font-weight:600;letter-spacing:.09px;line-height:16px;margin-right:20px}.StickyProductMarketingPage-allAccessButtonHeader,.StickyProductMarketingPage-buttonHeaderBaseStyleMobileTablet,.StickyProductMarketingPage-freeAccountButtonHeader,.StickyProductMarketingPage-investingClubButtonHeader,.StickyProductMarketingPage-plusButtonHeader,.StickyProductMarketingPage-proButtonHeader{font-size:10px;font-weight:600;height:28px;letter-spacing:1.09091px;line-height:10px;margin-left:5px;text-transform:uppercase;width:120px}.StickyProductMarketingPage-plusButtonHeader{width:55px}.StickyProductMarketingPage-proButtonHeader{width:120px}}.SiteMapHeader-container{display:flex;flex-direction:row;flex-wrap:wrap;padding:0;width:100%}@media (min-width:760px){.SiteMapHeader-container{padding-left:0;padding-right:0}}.SiteMapHeader-heading{border-top:1px solid #747474;color:#002f6c;font-size:30px;font-weight:800;letter-spacing:.5px;line-height:37px;margin-bottom:20px;margin-top:0;padding-top:10px;position:relative;text-transform:uppercase;width:100%}@media (min-width:760px){.SiteMapHeader-heading{margin-bottom:30px}}@media (min-width:1020px){.SiteMapHeader-heading{font-size:32px;line-height:40px}}.SiteMapHeader-heading:before{background-color:#2077b6;content:"";height:6px;left:0;position:absolute;top:-6px;width:110px}.SiteMapSubMenuItems-sitemapSubMenuItem{color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.03em;line-height:22px;text-align:left}.SiteMapSubMenuItems-sitemapSubMenuItem:hover{text-decoration:underline}.SiteMapMenuItem-menuItemColumn{margin-bottom:20px;width:100%}@media (min-width:760px){.SiteMapMenuItem-menuItemColumn{margin-bottom:30px;width:33.33333%}}.SiteMapMenuItem-sitemapMenuItemLabel{color:#002f6c;display:inline-block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.06em;text-align:left;text-transform:uppercase}.SiteMapMenuItem-sitemapMenuItemLabel:hover{color:#fcb700}.SiteMapMenu-container{position:relative}.SiteMapMenu-sitemapMenuWrapper{display:flex;flex-wrap:wrap}.SiteMapBreadCrumb-container{border-bottom:1px dotted #747474;padding-bottom:4px}.SiteMapBreadCrumb-container li{color:#005594;display:inline;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:500;letter-spacing:.06em;line-height:1.375;list-style-type:none;padding-bottom:12px;padding-right:10px;position:relative;text-transform:uppercase}.SiteMapBreadCrumb-container li:after{color:#ffbc05;content:">";display:inline;font-size:16px;padding-left:10px}.SiteMapBreadCrumb-container li:last-child{font-weight:700}.SiteMapBreadCrumb-container li:last-child:after{content:""}.SiteMapBreadCrumb-container .SiteMapBreadCrumb-link{word-break:break-word}.SiteMapBreadCrumb-container a{color:#005594}.SiteMapBreadCrumb-container a:hover{color:#ffbc05}@media (max-width:759px){.SiteMapBreadCrumb-container li:nth-child(4):before{content:"\A";white-space:pre}}.SiteMapMonth-container{margin-bottom:30px;width:100%}.SiteMapMonth-container h3{color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:700;letter-spacing:.06em;margin-bottom:6px;padding-bottom:8px;text-transform:uppercase}.SiteMapMonth-monthData ul{display:flex;flex-direction:column;flex-wrap:wrap;height:300px}@media (max-width:759px){.SiteMapMonth-monthData ul{display:table}}.SiteMapMonth-monthData li{color:#2e2e2e;cursor:pointer;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.03em;line-height:1.375;list-style-type:none;padding-bottom:12px;padding-right:10px;position:relative}.SiteMapMonth-monthData .SiteMapMonth-link{word-break:break-word}.SiteMapMonth-monthData a{color:#2e2e2e}.SiteMapMonth-monthData a:hover{color:#2e2e2e;text-decoration:underline}.SiteMapDay-container{margin:0 0 30px;width:100%}.SiteMapDay-container h3{color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:700;letter-spacing:.06em;margin-bottom:6px;padding-bottom:8px;text-transform:uppercase}.SiteMapDay-fullDate ul{display:flex;flex-direction:column;flex-wrap:wrap;height:375px}@media (max-width:759px){.SiteMapDay-fullDate ul{display:table}}.SiteMapDay-fullDate li{color:#2e2e2e;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.03em;line-height:1.375;list-style-type:none;margin:0 10px 12px 0;position:relative}.SiteMapDay-fullDate .SiteMapDay-link{word-break:break-word}.SiteMapDay-fullDate a{color:#2e2e2e}.SiteMapDay-fullDate a:hover{color:#2e2e2e;text-decoration:underline}.SiteMapArticleList-container{display:flex;flex-direction:row;flex-wrap:wrap;padding:0;width:100%}@media (min-width:760px){.SiteMapArticleList-container{padding-left:0;padding-right:0}}.SiteMapArticleList-content{width:100%}.SiteMapArticleList-content h3{color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:700;letter-spacing:.06em;margin-bottom:6px;padding-bottom:8px;text-transform:uppercase}.SiteMapArticleList-articleData li,.SiteMapArticleList-emptyPage{color:#2e2e2e;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.03em}.SiteMapArticleList-articleData li{line-height:1.3;list-style-type:none;padding-bottom:14px;padding-right:10px;position:relative}.SiteMapArticleList-articleData li .SiteMapArticleList-link{word-break:break-word}.SiteMapArticleList-articleData li a{color:#2e2e2e}.SiteMapArticleList-articleData li a:hover{color:#2e2e2e;text-decoration:underline}.SiteMapYear-container{margin-bottom:30px;width:100%}.SiteMapYear-container h3{border-bottom:1px dotted #005594;color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.06em;margin-bottom:10px;text-transform:uppercase}.SiteMapYear-yearData{padding-top:15px}.SiteMapYear-yearData ul{column-count:3;column-gap:0}@media (max-width:759px){.SiteMapYear-yearData ul{display:table}}.SiteMapYear-yearData li{color:#005594;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.03em;line-height:1.375;list-style-type:none;padding-bottom:12px;padding-right:10px;position:relative}.SiteMapYear-yearData .SiteMapYear-link{word-break:break-word}.SiteMapYear-yearData a{color:#005594}.SiteMapYear-yearData a:hover{color:#ffbc05}.SiteMap-container{margin:0 22px;max-width:100%;padding-top:5px}@media (min-width:360px){.SiteMap-container{margin-bottom:0}}@media (min-width:760px){.SiteMap-container{margin:0 auto;max-width:678px}}@media (min-width:1020px){.SiteMap-container{margin-bottom:15px;max-width:960px}}@media (min-width:1340px){.SiteMap-container{margin-bottom:25px;max-width:1290px}}.SiteMap-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.SiteMap-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.SiteMap-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.SiteMap-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.SiteMap-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.SiteMap-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.SiteMap-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.SiteMap-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}.SiteMap-col-9{padding-top:30px}.SiteMap-col-9 .BrandBanner-container{margin-bottom:30px;z-index:99}@media (min-width:1340px){.SiteMap-col-9 .BrandBanner-container{margin-left:calc(-50vw - -538.5px)}}@media (min-width:760px){.SiteMap-col-9 .BrandBanner-container{margin-bottom:-100px;margin-top:50px}.SiteMap-col-9{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.SiteMap-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.SiteMap-col-9{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.SiteMap-col-9{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.SiteMap-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.SiteMap-col-9{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.SiteMap-col-9:last-child{margin-right:0}}@media (min-width:1340px){.SiteMap-col-9{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}}.ExclusiveContentBucket-exclusiveContentBucket{font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin-bottom:40px;margin-top:40px}@media (min-width:760px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-29.16667%;max-width:677px}}@media (min-width:760px) and (min-width:760px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-29.16667%}}@media (min-width:760px) and (min-width:1020px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-29.16667%}}@media (min-width:760px) and (min-width:1340px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-29.16667%}}@media (min-width:1020px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-20.83333%;width:630px}}@media (min-width:1020px) and (min-width:760px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-20.83333%}}@media (min-width:1020px) and (min-width:1020px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-20.83333%}}@media (min-width:1020px) and (min-width:1340px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-20.83333%}}@media (min-width:1340px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-16.66667%}}@media (min-width:1340px) and (min-width:760px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-16.66667%}}@media (min-width:1340px) and (min-width:1020px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-16.66667%}}@media (min-width:1340px) and (min-width:1340px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-16.66667%}}.ExclusiveContentBucket-exclusiveContentBucket .ExclusiveContentBucket-exclusiveContentHeading{color:#002f6c;font-size:20px;font-weight:900;letter-spacing:.25px;line-height:24px;text-transform:uppercase}.ExclusiveContentBucket-smallSpan{background-color:#002f6c;display:block;height:6px;width:88px}.ExclusiveContentBucket-border{background-color:#747474;display:block;height:1px;width:100%}.ExclusiveContentBucket-contentContainer{display:flex;flex-direction:column;justify-content:space-between;overflow-x:scroll}@media (min-width:760px){.ExclusiveContentBucket-contentContainer{overflow-x:unset}}@media (prefers-color-scheme:dark){.webview .ExclusiveContentBucket-exclusiveContentBucket .ExclusiveContentBucket-exclusiveContentHeading{color:#dce0e4}.webview .ExclusiveContentBucket-smallSpan{background-color:#dce0e4}.webview .ExclusiveContentBucket-border{background-color:#f8f8f8}}.BucketItemByline-author{display:none;font-family:Lyon,Helvetica,Arial,sans-serif;font-weight:600;letter-spacing:.5px;line-height:16px;margin-right:10px}@media (min-width:760px){.BucketItemByline-author{display:inline}}.BucketItemByline-author a{color:#002f6c!important;font-size:12px;margin-right:8px;text-decoration:none!important}@media (prefers-color-scheme:dark){.webview .BucketItemByline-author a{font-size:12px}}.BucketItem-bucketItem{border-bottom:1px dashed #9e9e9e;display:flex;padding-bottom:10px;padding-top:20px}.BucketItem-bucketItem .BucketItem-title{font-size:18px;font-weight:600;line-height:22px;margin-bottom:16px}.BucketItem-bucketItem .BucketItem-title a{color:#171717;text-decoration:none!important}@media (max-width:759px){.BucketItem-bucketItem .BucketItem-title{font-size:16px;font-weight:500;line-height:20px;margin-bottom:0}}.BucketItem-bucketItem .BucketItem-publishTime{color:#747474;display:inline;font-size:12px;font-weight:600;letter-spacing:1.5px;line-height:16px;margin-top:9px;text-transform:uppercase}.BucketItem-bucketItem .BucketItem-textContainer{display:flex;flex-direction:column;justify-content:space-between;margin-left:-20px}@media (max-width:759px){.BucketItem-bucketItem .BucketItem-textContainer{margin-left:-25px}}.BucketItem-bucketItem .BucketItem-bylineContainer{display:flex;margin-top:10px}@media (max-width:759px){.BucketItem-bucketItem .BucketItem-bylineContainer{margin-top:0}}.BucketItem-bucketItem .BucketItem-icTextContainer{margin-left:-25px}.BucketItem-bucketImage{height:95px;object-fit:cover;width:190px}@media (max-width:759px){.BucketItem-bucketImage{height:75px;width:100px}}.BucketItem-bucketImageContainer{display:flex}.BucketItem-proPill{height:30px}.BucketItem-proPillContainer{position:relative;right:40px}@media (max-width:759px){.BucketItem-proPillContainer{right:40px}}.BucketItem-investingClubPill{height:25px}.BucketItem-investingClubPillContainer{position:relative;right:45px}@media (max-width:759px){.BucketItem-investingClubPillContainer{right:40px}}.BucketItem-investingClubItem{border-bottom-left-radius:15px;border-bottom-right-radius:15px}.BucketItem-proItem{border-bottom-right-radius:15px;border-top-left-radius:15px}@media (prefers-color-scheme:dark){.webview .BucketItem-bucketItem .BucketItem-textContainer .BucketItem-title a{color:#dce0e4}}.PlayerLoadingIndicator-loadingContainer{margin-bottom:30px;padding-bottom:56.25%;position:relative;text-align:center}.PlayerLoadingIndicator-loadingOverlay{align-items:center;background-color:#000;display:flex;height:100%;justify-content:center;left:0;position:absolute;top:0;width:100%}.LiveStreamPlayer-container.LiveStreamPlayer-isNotLoaded{display:block;max-width:100%;padding-bottom:57%}.LiveStreamPlayer-languageContainer{align-items:center;display:flex;font-size:14px;margin:13px 0}.LiveStreamPlayer-bold,.LiveStreamPlayer-toggle{margin-right:12px}.LiveStreamPlayer-bold{font-weight:800}.LiveStreamPlayer-toggle{margin-right:12px}.LiveStreamPlayer-toggle:hover{cursor:pointer}.jw-settings-audioTracks{display:none!important}.AudioButton-container{border-top:6px solid #0496ff;height:100%;left:0;position:absolute;top:0;width:100%;z-index:1}.AudioButton-base{align-items:center;background-color:#0496ff;color:#fff;display:flex;font-size:12px;height:50px;justify-content:center;position:absolute;right:0;top:-5px;transition:all .15s linear;width:50px;z-index:1}@media (min-width:760px){.AudioButton-base{font-size:22px;height:80px;width:80px}}.AudioButton-audioIcon{align-items:center;background-image:url(https://static-redesign.cnbcfm.com/dist/3416c1156c67ef487325.svg);border:2px solid #0496ff;display:flex;height:40px;justify-content:center;transition:border .15s linear;width:40px;z-index:2}.AudioButton-base:hover .AudioButton-audioIcon,.AudioButton-container:focus .AudioButton-audioIcon,.AudioButton-container:hover .AudioButton-audioIcon,a:focus .AudioButton-audioIcon,a:hover .AudioButton-audioIcon,button:focus .AudioButton-audioIcon,button:hover .AudioButton-audioIcon{border:2px solid #fff}@media (min-width:760px){.AudioButton-audioIcon{height:60px;width:60px}}.AudioButton-flyout{align-items:center;background-color:#0496ff;color:#fff;display:flex;font-size:9px;font-weight:800;height:100%;justify-content:center;letter-spacing:1px;line-height:1;position:absolute;right:35px;text-align:left;text-transform:uppercase;top:0;transform:scaleX(0);transform-origin:center right;transition:color .15s linear,transform .15s linear .15s;width:90px;z-index:1}.AudioButton-base:hover .AudioButton-flyout,.AudioButton-container:focus .AudioButton-flyout,.AudioButton-container:hover .AudioButton-flyout,a:focus .AudioButton-flyout,a:hover .AudioButton-flyout,button:focus .AudioButton-flyout,button:hover .AudioButton-flyout{color:#fff;transform:scaleX(1);transition:color .15s linear .15s,transform .15s linear}@media (min-width:760px){.AudioButton-flyout{font-size:20px;letter-spacing:2.2px;right:80px;text-align:center;width:200px}}@media (max-width:1019px){.AudioButton-base:hover .AudioButton-flyout.AudioButton-suppressFlyout,a:focus .AudioButton-flyout.AudioButton-suppressFlyout,a:hover .AudioButton-flyout.AudioButton-suppressFlyout,button:focus .AudioButton-flyout.AudioButton-suppressFlyout,button:hover .AudioButton-flyout.AudioButton-suppressFlyout{transform:scaleX(0)}}.Timer-progress{stroke:#fcb700;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%) rotate(-90deg)}.Timer-progress circle{stroke-dasharray:302;stroke-dashoffset:302;animation:Timer-dash 5s linear}.Timer-sticky .Timer-progress circle{stroke-dasharray:151;stroke-dashoffset:151;animation:Timer-sticky-dash 5s linear}@keyframes Timer-dash{0%{stroke-dashoffset:302}to{stroke-dashoffset:0}}@keyframes Timer-sticky-dash{0%{stroke-dashoffset:151}to{stroke-dashoffset:0}}.Timer-buttonWrapper{align-items:center;border:1px solid #cfd8e266;color:#fff;display:flex;height:40px;justify-content:center;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);width:40px}.Timer-buttonWrapper span{display:flex}.Timer-buttonWrapperEnded{border-radius:50%;box-shadow:inset 0 0 2px 0 #cfd8e2,0 0 2px 0 #cfd8e2;font-size:24px;height:66px;width:66px}@media (min-width:360px){.Timer-buttonWrapperEnded{font-size:36px;height:96px;width:96px}}.Timer-sticky .Timer-buttonWrapperEnded{font-size:18px;height:48px;width:48px}.Timer-buttonWrapperEnded:hover{color:#fcb700}.Timer-buttonWrapperEnded .icon-buffett-video{margin-left:5px}.Recommend-sticky .Recommend-buttonWrapperEnded .icon-buffett-video{margin-left:3px}.ScaledTimer-cancel{color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;left:50%;letter-spacing:.06em;position:absolute;text-transform:uppercase;top:calc(50% + 60px);transform:translateX(-50%)}.ScaledTimer-cancel:hover{color:#fcb700}.Recommend-endCardWrapper{background-color:#002f6ccc;background-image:url(https://static-redesign.cnbcfm.com/dist/8e3639eed7df32fad761.jpg);background-size:cover;cursor:pointer;height:0;padding-bottom:56.25%;position:relative;width:100%}.Recommend-endCardWrapper .Recommend-title{color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:18px;font-weight:600;line-height:1.1em}.Recommend-replay .Recommend-endCardWrapper .Recommend-title{font-size:16px}@media (min-width:1020px){.Recommend-endCardWrapper .Recommend-title{font-size:18px;letter-spacing:.17px}}@media (min-width:1340px){.Recommend-endCardWrapper .Recommend-title{font-size:24px}}.Recommend-endCardWrapper:before{background:linear-gradient(#0000,#002f6c);bottom:0;content:"";height:100%;left:0;position:absolute;width:100%}@media (min-width:760px){.Buffett-wrapper{max-width:100%}}.Recommend-buttons{display:flex;justify-content:space-between;left:15px;position:absolute;text-align:right;top:15px;width:calc(100% - 30px)}.Recommend-buttons span{color:#fff;font-size:15px}.Recommend-buttons span:hover{color:#fcb700}.Recommend-content{bottom:15px;left:15px;padding-right:55px;position:absolute}.Recommend-eyebrow,.Recommend-eyebrow.Recommend-compact,.Recommend-mobile .Recommend-compact{color:#fcb700;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;letter-spacing:2px;line-height:15px;margin-bottom:3px;text-transform:uppercase}.Recommend-replay
.Recommend-eyebrow.Recommend-compact,.Recommend-replay
.Recommend-mobile .Recommend-compact,.Recommend-replay .Recommend-eyebrow{font-size:10px}.Recommend-mobile .Recommend-replay .Recommend-eyebrow,.Recommend-mobile .Recommend-replay .Recommend-title,.Recommend-replay .Recommend-compact{display:none}.Recommend-mobile .Recommend-replay .Recommend-compact{color:#fff;display:initial}.Recommend-mobile .Recommend-replay .Recommend-eyebrow.Recommend-compact{padding-left:4px}.Recommend-endCardWrapper.Recommend-sticky .Recommend-eyebrow{font-size:10px;letter-spacing:.83px}.Recommend-endCardWrapper.Recommend-sticky .Recommend-title{font-size:12px;font-weight:700;letter-spacing:.5px;line-height:1.25}.Recommend-titleDark{color:#fff}.Recommend-slideshowItem .Recommend-titleDark{font-size:16px;letter-spacing:.15px;margin-top:5px}@media (min-width:760px){.Recommend-slideshowItem .Recommend-titleDark{font-size:24px;letter-spacing:.22px}}.PlaceHolder-buffettLongFormWrapper .Buffett-endCardWrapper{padding-bottom:calc(50% + 10px)}@media (min-width:760px){.PlaceHolder-buffettLongFormWrapper .Buffett-endCardWrapper{padding-bottom:calc(50% + 20px)}}@media (min-width:1020px){.PlaceHolder-buffettLongFormWrapper .Buffett-endCardWrapper{padding-bottom:680.625px}}.Recommend-content.Recommend-replay{bottom:auto;top:15px}.Recommend-sticky{padding-bottom:0;position:fixed;top:auto}.Recommend-endCardWrapper .icon-close{display:none}.Recommend-endCardWrapper.Recommend-sticky .icon-close{align-items:center;background:#fcb700;color:#fff;display:flex;font-size:15px;font-weight:900;height:28px;justify-content:center;left:0;position:relative;top:-28px;width:28px}.Recommend-endCardWrapper.Recommend-sticky .Recommend-cancel{display:none}.LiveEventDescription-container{margin-bottom:58px}.LiveEventDescription-container.LiveEventDescription-berkshireHathaway{margin-bottom:42px}.LiveEventDescription-container.LiveEventDescription-berkshireHathaway .group{max-width:unset}.LiveEventDescription-container.LiveEventDescription-berkshireHathaway .group p{font-family:Lyon,Helvetica,Arial,sans-serif;font-weight:400}.LiveEventDescription-container.LiveEventDescription-berkshireHathaway.LiveEventDescription-homepage p{font-family:Proxima Nova,Helvetica,Arial,sans-serif}@media (max-width:1019px){.LiveEventDescription-container.LiveEventDescription-berkshireHathaway{margin-bottom:30px}}@media (max-width:759px){.LiveEventDescription-container.LiveEventDescription-berkshireHathaway{margin-bottom:16px}}.LiveEventDescription-tagContainer{display:flex;flex-direction:row;margin:0 0 16px}.LiveEventDescription-title{color:#000;display:block;font-family:Proxima Nova,sans-serif;font-size:14px;font-weight:600;line-height:18px;margin:0;padding-right:18px;white-space:nowrap}@media (max-width:759px){.LiveEventDescription-title{display:none}}.LiveEventDescription-description{display:block}.LiveEventDescription-headline{color:#000;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:22px;font-weight:700;letter-spacing:.03px;line-height:26px;margin-bottom:16px;text-align:left}.LiveEventDescription-details{color:#000;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:18px;font-weight:400;letter-spacing:.4444px;line-height:26px}.LiveEventDescription-timestamp{color:#747474;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;letter-spacing:1.5px;line-height:16px;margin-top:16px;text-transform:uppercase}.LiveEventDescription-description .group{font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin-left:0}.LiveEventDescription-description .group a{color:#2077b6;text-decoration:underline}.LiveEventDescription-description .group a:hover{color:#fcb700}.LiveEventDescription-description .group ol,.LiveEventDescription-description .group ol li,.LiveEventDescription-description .group ul,.LiveEventDescription-description .group ul li{list-style:revert;margin-left:10px}.CreateFreeAccountButton-buttonContainer{background:#002f6c;border-radius:2px;color:#fff;height:100%;padding:10px;width:100%}.CreateFreeAccountButton-buttonContainer:hover{color:#ffe895}@media (min-width:760px){.CreateFreeAccountButton-buttonContainer{max-height:50px;order:2;width:180px}}.CreateFreeAccountButton-buttonContainer .CreateFreeAccountButton-buttonText{align-items:center;display:flex;font-size:11px;font-weight:400;justify-content:center}@media (min-width:760px){.CreateFreeAccountButton-buttonContainer .CreateFreeAccountButton-buttonText{flex-direction:column}}.CreateFreeAccountButton-buttonContainer .CreateFreeAccountButton-buttonText .CreateFreeAccountButton-buttonTextBold{font-size:12px;font-weight:800;letter-spacing:.5px;margin-left:8px}@media (min-width:760px){.CreateFreeAccountButton-buttonContainer .CreateFreeAccountButton-buttonText .CreateFreeAccountButton-buttonTextBold{font-size:11px;margin-left:0}}.QuoteItem-item{border:.5px solid #cfd8e2;border-radius:7px;display:flex;margin:0 15px 10px 0;position:relative}.QuoteItem-item:before{content:"";display:none}.QuoteItem-item:hover{border:.5px solid #747474}.QuoteItem-item.QuoteItem-hideHoverBorder{border:.5px solid #cfd8e2}.QuoteItem-link{align-items:center;display:flex;padding:8px;text-decoration:none!important;white-space:nowrap}.QuoteItem-link.QuoteItem-extHours{padding:7px 8px}.QuoteItem-link.QuoteItem-updated{border-color:#002f6c;transition:border-color .25s}.QuoteItem-symbol{color:#171717;font-family:Proxima Nova,sans-serif;font-size:12px;font-weight:700;line-height:12px;margin:0}@media (prefers-color-scheme:dark){.webview .QuoteItem-symbol{color:#fff}}.QuoteItem-quote,.QuoteItem-quoteDown,.QuoteItem-quoteUp{color:#747474;font-family:Proxima Nova,sans-serif;font-size:12px;font-weight:700;line-height:12px;margin:0 0 0 5px}.QuoteItem-quoteUp{color:#008456}.QuoteItem-quoteDown{color:#d0021b}.QuoteItem-afterHoursIcon{display:inline;height:14px;margin-left:8px}.RelatedQuotes-relatedQuotes{display:flex;flex-direction:column;margin:0 0 28px}@media (max-width:1019px){.RelatedQuotes-relatedQuotes{overflow-x:hidden}}@media (min-width:760px){.RelatedQuotes-relatedQuotes{align-items:center;display:grid;grid-template-columns:auto 1fr}}.RelatedQuotes-relatedQuotes .RelatedQuotes-titleAndTime{align-items:center;display:flex;margin:0 15px 10px 0}.RelatedQuotes-relatedQuotes .RelatedQuotes-subtext,.RelatedQuotes-relatedQuotes .RelatedQuotes-text{color:#171717;font-family:Proxima Nova,sans-serif;font-size:12px;font-weight:700;line-height:16px;margin:0;padding:0;white-space:nowrap}.RelatedQuotes-relatedQuotes .RelatedQuotes-subtext{color:#747474;font-size:9px;font-weight:700;margin:0;text-transform:uppercase}.RelatedQuotes-relatedQuotes .RelatedQuotes-list{-webkit-overflow-scrolling:touch;display:flex;line-height:0;margin:0;padding:0;text-indent:0;width:100%}@media (min-width:760px){.RelatedQuotes-relatedQuotes .RelatedQuotes-list{flex-wrap:wrap}}@media (max-width:759px){.RelatedQuotes-relatedQuotes .RelatedQuotes-list{overflow-x:scroll}}.RelatedQuotes-relatedQuotes .RelatedQuotes-list.RelatedQuotes-isMobileWebview{flex-wrap:wrap}.RelatedQuotes-relatedQuotes .RelatedQuotes-list:before{content:"";display:none}.RelatedQuotes-relatedQuotes .RelatedQuotes-list::-webkit-scrollbar{display:none}.RelatedQuotes-relatedQuotes .RelatedQuotes-quotesContainer{order:2}@media (min-width:760px){.RelatedQuotes-relatedQuotes .RelatedQuotes-quotesContainer{flex-wrap:wrap;order:1}}.RelatedQuotes-relatedQuotes .RelatedQuotes-cfaButtonContainer{margin-bottom:12px;order:1}@media (min-width:760px){.RelatedQuotes-relatedQuotes .RelatedQuotes-cfaButtonContainer{align-items:center;display:flex;margin-bottom:0;margin-left:auto;order:2}}@media (max-width:759px){.RelatedQuotes-listDropdownVisible{overflow-x:unset!important}}@media (prefers-color-scheme:dark){.RelatedQuotes-relatedQuotes .webview .RelatedQuotes-subtext,.webview .RelatedQuotes-relatedQuotes .RelatedQuotes-subtext,.webview .RelatedQuotes-text{color:#fff}.webview .RelatedQuotes-subtext{color:#9a9fa7!important}}.LiveEventSlate-container .LiveEventSlate-liveEventSlate{background-repeat:no-repeat;background-size:contain;display:block;margin-bottom:30px;max-width:100%;padding-bottom:57%}.LiveEventSlate-container .LiveEventSlate-error{background-image:url(https://static-redesign.cnbcfm.com/dist/54f3d8c60727fdd092ad.png)}.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-investingClub{background-image:url(https://static-redesign.cnbcfm.com/dist/261db0afca7926c9c4d5.png)}@media (max-width:759px){.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-investingClub{background-image:url(https://static-redesign.cnbcfm.com/dist/635637529f397c6b0b99.png)}}.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/c4b2ab67f20d4702a761.png)}@media (max-width:759px){.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-morningMeeting{height:300px}}@media (min-width:760px){.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/05644c6301c29d5f98e1.png)}}@media (min-width:1020px){.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/0907dbcaa9e6b98f1590.png)}}@media (min-width:1340px){.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/4c02522e1899983c236e.png)}}.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-pro{background-image:url(https://static-redesign.cnbcfm.com/dist/603bc0c9eee2fffcf418.png)}.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-berkshireHathawayMeeting,.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-free{background-image:url(https://static-redesign.cnbcfm.com/dist/aa7e1174aeed08b7bd0f.png)}.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-etfEdge{background-image:url(https://static-redesign.cnbcfm.com/dist/fe6c30a870e27a7c6358.png)}.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-berkshireHathawayMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/5c142c155da6b42bf23b.png)}@media (max-width:759px){.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-berkshireHathawayMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/acff13a99fc3cb2c8406.png)}}.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-investingClub{background-image:url(https://static-redesign.cnbcfm.com/dist/9b60e1df4c50583b02fa.png)}@media (max-width:759px){.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-investingClub{background-image:url(https://static-redesign.cnbcfm.com/dist/00e4560338770d5246e7.png)}}.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/189c780e2af6e2b69066.png)}@media (max-width:759px){.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-morningMeeting{height:300px}}@media (min-width:760px){.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/b055b5b9f509671e0d77.png)}}@media (min-width:1020px){.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/00daf039d9d82c7296e8.png)}}@media (min-width:1340px){.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/b6108ecbb43ceecfdd4b.png)}}.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-pro{background-image:url(https://static-redesign.cnbcfm.com/dist/351cbae0bbe7fd326046.png)}.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-free{background-image:url(https://static-redesign.cnbcfm.com/dist/fe3c67caf861a2022cf7.png)}.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-etfEdge{background-image:url(https://static-redesign.cnbcfm.com/dist/64b2b9ef1609dc7d850a.png)}.StandaloneLiveEventPlayerWrapper-standaloneContainer{font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin-top:20px}.StandaloneLiveEventPlayerWrapper-eventState{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:20px;font-weight:600}.StandaloneLiveEventPlayerWrapper-webview{display:flex;justify-content:center;padding:15px 0}@media (max-width:359px){.StandaloneLiveEventPlayerWrapper-webview img{width:100%}}.QuoteInBody-quoteNameContainer{white-space:nowrap}.QuoteInBody-inlineButton{margin-right:-6px;position:relative}.QuoteInBody-dropdownInBody{border-radius:unset;color:#000;left:0;top:22px;width:200px}@media (max-width:1019px){.QuoteInBody-dropdownInBody{top:0;width:100%}}.CollapsibleContainer-collapsibleContainer,.CollapsibleContainer-collapsibleContent{position:relative}.CollapsibleContainer-collapsibleContent{height:auto;overflow:hidden;transition:max-height .2s ease}.CollapsibleContainer-collapsed .CollapsibleContainer-collapsibleContent{max-height:300px}@media (min-width:760px){.CollapsibleContainer-collapsed .CollapsibleContainer-collapsibleContent{max-height:140px}}.CollapsibleContainer-collapsed .CollapsibleContainer-fadingGradient{background-image:linear-gradient(180deg,#fff0,#fff 49.23%);background-image:linear-gradient(180deg,#fff0,#ffffffe6);content:"";height:80px;height:300px;left:0;position:absolute;right:0;top:calc(100% - 80px);top:0}@media (min-width:760px){.CollapsibleContainer-collapsed .CollapsibleContainer-fadingGradient{max-height:140px}}.CollapsibleContainer-expanded .CollapsibleContainer-collapsibleContent{max-height:4000px}@media (min-width:1020px){.CollapsibleContainer-expanded .CollapsibleContainer-collapsibleContent{max-height:3000px}}.CollapsibleContainer-toggleContainer{align-items:center;border-top:1px solid #d9d9d9;display:flex;height:42px;justify-content:center;position:relative;text-align:center}.CollapsibleContainer-toggle{align-items:center;color:#0477c9;cursor:pointer;display:flex;font-family:Lato,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:900;line-height:20px;transition:all .2s ease}.CollapsibleContainer-webview-normal .CollapsibleContainer-toggle{font-size:14px}.CollapsibleContainer-webview-large .CollapsibleContainer-toggle{font-size:17.5px;line-height:normal}.CollapsibleContainer-webview-larger .CollapsibleContainer-toggle{font-size:21px;line-height:normal}.CollapsibleContainer-webview-xlarge .CollapsibleContainer-toggle{font-size:24.5px;line-height:normal}.CollapsibleContainer-webview-xxlarge .CollapsibleContainer-toggle{font-size:28px;line-height:normal}.CollapsibleContainer-webview-xxxlarge .CollapsibleContainer-toggle{font-size:31.5px;line-height:normal}.CollapsibleContainer-toggle span{display:inline-block;line-height:1}.CollapsibleContainer-toggle:active,.CollapsibleContainer-toggle:focus,.CollapsibleContainer-toggle:hover,.CollapsibleContainer-toggle:link{color:#0477c9}.CollapsibleContainer-toggle .icon-arrow-down-readmore:before{font-size:13px;font-weight:400;margin-left:8px}.CollapsibleContainer-expanded .icon-arrow-down-readmore:before{display:inline-block;transform:rotate(180deg)}.Collapsible-proliveCollapsableContainer{align-items:center;border:1px solid #d9d9d9;border-top-left-radius:4px;border-top-right-radius:4px;display:flex;height:40px}.Collapsible-proliveCollapsableContainer path{fill:#747474}.Collapsible-proliveCollapsedContainer{border-radius:4px}.Collapsible-proLivePlayerCloseOrExpand{cursor:pointer;margin-left:auto;position:relative;right:20px;transition:all .1s linear}.Collapsible-dismissButton{height:16px;pointer-events:none;width:16px}.Collapsible-stockChartIcon{height:55%;margin-left:15px}.InteractiveChart-caption{color:#171717;font-size:12px;font-weight:600;line-height:1.5;margin-bottom:5px}.InteractiveChart-addToWatchlistButton{height:42px;min-width:42px;padding:8px 12px}@media (max-width:450px){.InteractiveChart-addToWatchlistButton{height:30px;min-width:30px;padding:8px}}.InteractiveChart-quoteDetailsButton{align-items:center;background:#002f6c;border:1px solid #002f6c;box-sizing:border-box;color:#fff;display:flex;font-size:12px;font-weight:600;height:42px;justify-content:center;letter-spacing:1px;line-height:12px;padding:8px 12px;text-transform:uppercase}@media (max-width:450px){.InteractiveChart-quoteDetailsButton{height:30px}}.InteractiveChart-quoteDetailsLink{text-decoration:none}.InteractiveChart-container{padding:15px 30px}.InteractiveChart-headerColumns{align-items:center;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;gap:8px;margin-bottom:10px}.InteractiveChart-headerColumn1{display:flex;flex-direction:column;flex-grow:1}.InteractiveChart-companyName{color:#000;font-size:24px;font-weight:800;line-height:32px}.InteractiveChart-quoteStripSubHeader{color:#747474;font-size:10px;font-weight:700;line-height:16px}.InteractiveChart-lastPriceStripContainer{align-items:center;display:flex;font-size:12px;font-weight:700;letter-spacing:-.1px;line-height:18px;margin-top:10px}.InteractiveChart-extendedHoursStripContainer{font-size:20px;font-weight:700;letter-spacing:-.1px}.InteractiveChart-lastPrice{color:#000;font-size:24px;font-weight:800;line-height:28px;margin-right:10px}.InteractiveChart-changeDown{color:#ce2b2b}.InteractiveChart-changeUp{color:#008456}.InteractiveChart-changeIcon{display:inline;height:8px;margin-right:4px;width:10px}.InteractiveChart-lastTradeTime{color:#424242;font-size:10px;font-weight:800;line-height:16px}.InteractiveChart-mobileButtonRow{align-items:center;display:flex;gap:10px;margin-top:10px}@media (max-width:450px){.InteractiveChart-showRange div{padding:0 8px!important}}.InteractiveChart-watchlistDropdown{border-radius:unset;color:#000;left:-4px;top:44px;width:250px}@media (max-width:1019px){.InteractiveChart-watchlistDropdown{top:0;width:100%}}@media (prefers-color-scheme:dark){.webview .InteractiveChart-caption,.webview .InteractiveChart-companyName,.webview .InteractiveChart-lastPrice,.webview .InteractiveChart-lastTradeTime{color:#dce0e4}}.Slide-name{-webkit-box-orient:vertical;-webkit-line-clamp:3;color:#171717;display:-webkit-box;font-size:14px;font-weight:800;margin:0 0 5px;overflow:hidden}.Slide-lastTime{align-items:flex-start;color:#424242;display:flex;font-size:11px;font-weight:700}.Slide-last,.Slide-lastRegMktPrice{color:#171717;display:block;font-size:20px;font-weight:800}.Slide-lastRegMkt{align-items:center;display:flex;gap:5px;margin:8px 0 0}.Slide-lastRegMktPrice{font-size:14px}.Slide-changeRegMkt{font-size:8px}.Slide-change{align-items:center;color:#171717;display:flex;font-size:10px;font-weight:800}.Slide-changeIndicator{margin:0 2px 0 0;width:10px}.Slide-changeUp{color:#008456}.Slide-changeDown{color:#ce2b2b}.Slide-changeUnchanged{color:#424858}.Slide-afterHours{color:#e8802a;margin:0 5px 0 0}.Carousel-carousel{align-items:center;display:flex;gap:10px;margin:0 0 20px}@media (max-width:759px){.Carousel-carousel{position:relative}.Carousel-carousel:before{background:linear-gradient(90deg,#0000,#fff);content:"";height:120px;position:absolute;right:0;top:0;width:30px}}.Carousel-list{display:flex;gap:10px;overflow-x:hidden;scroll-behavior:smooth;scroll-snap-type:x mandatory;scrollbar-width:none;width:100%}@media not all and (min-resolution:0.001dpcm){@supports (-webkit-appearance:none){.Carousel-list{overflow-x:auto}}}.Carousel-list::-webkit-scrollbar{height:0}@media (max-width:759px){.Carousel-list{overflow-x:auto}}.Carousel-slideWrapper{background:#f8f8f8;display:grid;grid-template-rows:1fr auto;min-width:calc(33.33333% - 6.66667px);padding:8px 10px;scroll-snap-align:start}@media (max-width:759px){.Carousel-slideWrapper{min-width:70%}}@media (min-width:760px){.Carousel-slideWrapperTwo{min-width:calc(50% - 5px)}}.Carousel-arrow{border-right:7px solid #0477c9;border-top:7px solid #0477c9;box-sizing:border-box;cursor:pointer;padding:8px;rotate:45deg}@media (max-width:759px){.Carousel-arrow{display:none}}.Carousel-arrowBack{rotate:-135deg}.Carousel-arrowDisabled{border-right-color:#cfd8e2;border-top-color:#cfd8e2;cursor:auto}.LiveBlogTimestamp-liveBlogTimeStamp>div,.LiveBlogTimestamp-time,.LiveBlogTimestamp-timeHidden{color:#747474;font-size:10px;font-weight:600;letter-spacing:1.2px;margin-bottom:10px;margin-right:4px;text-transform:uppercase;white-space:normal}.LiveBlogTimestamp-liveBlogTimeStamp>div time,.LiveBlogTimestamp-time time,.LiveBlogTimestamp-timeHidden time{white-space:nowrap}@media (min-width:760px){.LiveBlogTimestamp-liveBlogTimeStamp>div,.LiveBlogTimestamp-time,.LiveBlogTimestamp-timeHidden{font-size:12px;margin-bottom:16px}}.LiveBlogTimestamp-timeHidden{opacity:1}.LiveBlogTimestamp-liveBlogTimeStamp{align-items:center;display:flex;margin-top:0}.LiveBlogTimestamp-datetimeDivider:before{content:"•";display:inline-block;padding:0 3px}.NavigationArrows-styles-select-arrow--A1aiV{align-items:center;color:#0477c9;display:flex;font-size:48px;height:30px;line-height:30px}.NavigationArrows-styles-select-arrow--A1aiV:first-child{margin:0 30px 0 0}.NavigationArrows-styles-select-controller--qImJR>.NavigationArrows-styles-select-arrow--A1aiV:focus-visible{outline:3px solid #57ad57;outline-offset:1px}.NavigationArrows-styles-select-arrowInactive--U0brL{cursor:default;opacity:.3;-webkit-user-select:none;user-select:none}.NavigationArrows-styles-select-controller--qImJR{align-items:center;display:flex;justify-content:flex-end}.Pill-styles-select-pill--u1O5c{border-radius:3px;font-size:10px;height:-moz-fit-content;height:fit-content;min-height:14px;padding:1px 3px 1px 4px;width:-moz-fit-content;width:fit-content}.Pill-styles-select-pillDefault--rov0j{background-color:#a3cd39;color:#000}.Title-styles-select-title--VMqTu{color:#3e4855;font-family:Lato,Helvetica,Arial,sans-serif;font-size:24px;font-weight:900;line-height:normal}.Disclaimer-styles-select-disclaimer--D2JJf,.Title-styles-select-title--VMqTu{width:-moz-fit-content;width:fit-content}.Disclaimer-styles-select-disclaimerDefault--U71Mv{color:#3e4855;font-family:Lato,Helvetica,Arial,sans-serif;font-size:12px;font-weight:400;line-height:normal}.Tooltip-styles-select-tooltipContainer--UHEZW{position:relative}.Tooltip-styles-select-inline--GmIPe{display:inline-block}.Tooltip-styles-select-tooltipBody--vrNp6{background:#fff;border-radius:5px;bottom:24px;box-shadow:0 0 4px 0 #00000040;color:#757575;font-size:12px;font-weight:400;max-width:200px;padding:10px;position:absolute;transform:translate(-50%);transition:opacity .2s ease;width:max-content;z-index:999}.Tooltip-styles-select-mobileShiftRight--gtWUW{left:-90px;transform:unset}.Tooltip-styles-select-mobileShiftLeft--Hs2Fx{right:-20px;transform:unset}.Tooltip-styles-select-tooltipArrow--_4zoC{border-left:10px solid #0000;border-right:10px solid #0000;border-top:10px solid #fff;bottom:20px;content:"";height:0;left:-3px;position:absolute;width:0;z-index:999}.Tooltip-styles-select-tooltipIcon--a_uq0{fill:#757575;stroke:#757575;cursor:pointer}.Tooltip-styles-select-tooltipIcon--a_uq0:hover{fill:#005594;stroke:#005594}.Tooltip-styles-select-tooltipIcon--a_uq0:focus-visible{outline:3px solid #57ad57}.Tooltip-styles-select-iconActive--P0wah{fill:#0477c9;fill-opacity:.5;stroke:#0477c9;stroke-opacity:.5}.LearnMore-styles-select-container--dNiRG{align-items:center;color:#757575;display:flex;flex-basis:30%;flex-direction:column;font-family:Lato,Helvetica,Arial,sans-serif;font-weight:400;gap:8px}.LearnMore-styles-select-container--dNiRG>.LearnMore-styles-select-learnMoreButton--YCW2h{text-decoration:none}.LearnMore-styles-select-learnMoreButton--YCW2h{align-items:center;background-color:#1277ba;border-radius:24px;color:#fff!important;display:flex;font-family:Lato,Helvetica,Arial,sans-serif;font-size:14px;font-weight:700;height:28px;justify-content:center;letter-spacing:1.4px;position:relative;text-align:center;text-transform:uppercase;width:150px}.LearnMore-styles-select-learnMoreButton--YCW2h:hover{background-color:#005594;color:#fff;cursor:pointer}.LearnMore-styles-select-learnMoreButton--YCW2h:focus-visible:before{content:"";inset:-1px;outline:3px solid #57ad57;position:absolute}.LearnMore-styles-select-termsTextTop--kLmHQ{display:inline-block;font-size:12px;text-align:center}.LearnMore-styles-select-termsTextTop--kLmHQ .LearnMore-styles-select-icon--U2rIM{margin-right:4px;position:relative;top:2px}.LearnMore-styles-select-termsTextTop--kLmHQ a{text-decoration:underline;-webkit-text-decoration-color:#757575;text-decoration-color:#757575}.LearnMore-styles-select-termsTextTop--kLmHQ .LearnMore-styles-select-sourceText--VWYO5>p{background-color:initial;font-size:var(--pop-font-size)}.LearnMore-styles-select-container--dNiRG .LearnMore-styles-select-termsTextBottom--_t3TD{color:#171717;font-size:var(--pop-font-size)}.LearnMore-styles-select-container--dNiRG .LearnMore-styles-select-termsTextBottom--_t3TD>p{background-color:initial;font-size:var(--pop-font-size)}.LearnMore-styles-select-container--dNiRG .LearnMore-styles-select-termsTextBottom--_t3TD>p>a{color:#0477c9;text-decoration:none}.ProductDataGridItem-styles-select-item--SJoD3{display:flex;flex-direction:column;gap:8px;padding:10px;text-align:left;width:100%}.ProductDataGridItem-styles-select-item--SJoD3:first-child{border:none;border-right:1px solid #e4f0f9}.ProductDataGridItem-styles-select-item--SJoD3:nth-child(2){border-left:none}.ProductDataGridItem-styles-select-headingContainer--eqm00{display:flex;gap:4px}.ProductDataGridItem-styles-select-heading--c2XsX{color:#3e4855;font-weight:400;margin:0}.ProductDataGridItem-styles-select-item--SJoD3>.ProductDataGridItem-styles-select-contentContainer--KbRmj>.ProductDataGridItem-styles-select-content--wwq_l{background-color:initial;font-size:var(--pop-font-size)}.ProductDataGridItem-styles-select-content--wwq_l{color:#171717;font-weight:700;margin:0}.ProductDataGridItem-styles-select-item--SJoD3 .ProductDataGridItem-styles-select-content--wwq_l>p{background-color:initial;font-size:var(--pop-font-size)}div.CreditHistoryGridItem-styles-select-content--yZuwr{align-items:center;display:flex;flex-direction:column;width:max-content}div.CreditHistoryGridItem-styles-select-content--yZuwr>p{background-color:initial;display:block;font-size:var(--pop-font-size);margin-bottom:8px!important}.ProductDataGrid-styles-select-container--nV33Z{border:1px solid #e4f0f9;border-radius:5px;display:grid;font-family:Lato,Helvetica,Arial,sans-serif;font-size:var(--pop-font-size);font-style:normal;grid-template-columns:repeat(2,1fr);height:-moz-fit-content;height:fit-content;justify-content:space-evenly;line-height:normal;max-width:535px;min-width:261px;width:100%}.ProductDataGrid-styles-select-singleItem--CmmEU{grid-template-columns:repeat(1,1fr)}.PartnerOfferCard-headingContainer{align-items:center;display:flex;margin-bottom:10px}.PartnerOfferCard-headingContainer>.PartnerOfferCard-titleLink{text-decoration:none}.PartnerOfferCard-partnerOfferCard{background:#fff;border-radius:5px;box-shadow:0 0 2px 1px #ddd;display:flex;padding:12px;width:280px}.PartnerOfferCard-partnerOfferCard.PartnerOfferCard-fullWidth{width:100%}.PartnerOfferCard-outerImage{display:none}.PartnerOfferCard-fullWidth .PartnerOfferCard-learnMore{justify-content:center;margin:0 0 0 20px}@media (min-width:1340px){.PartnerOfferCard-fullWidth .PartnerOfferCard-outerImage{display:block}.PartnerOfferCard-fullWidth .PartnerOfferCard-innerImage{display:none}}@media (min-width:760px){.PartnerOfferCard-fullWidth .PartnerOfferCard-learnMoreAndHeadingContainer{flex-direction:row}}.PartnerOfferCard-title{color:#000;font-family:Lato,Helvetica,Arial,sans-serif;font-size:14px;font-weight:700;line-height:normal}.PartnerOfferCard-title:hover{color:#005594}.PartnerOfferCard-image{height:60px;margin-right:12px;object-fit:contain;width:118px}.PartnerOfferCard-partnerOfferGrid{margin-bottom:12px}@media (max-width:759px){.PartnerOfferCard-partnerOfferGrid{max-width:100%}}.PartnerOfferCard-headingAndGridContainer,.PartnerOfferCard-learnMoreAndHeadingContainer{--pop-font-size:12px;display:flex;flex-direction:column;width:100%}@media (min-width:760px){.PartnerOfferCard-learnMore{text-align:center}.PartnerOfferCard-learnMore a{margin:0}}.PartnerOffers-container{background:#f8f8f8;border-left:3px solid #0477c9;margin:24px 0}@media (min-width:760px){.PartnerOffers-container{margin-right:118px}}@media (min-width:1020px){.PartnerOffers-container{margin-left:calc(11.11111% + 3.33333px);margin-right:0;max-width:unset}}@media (min-width:1340px){.PartnerOffers-container{margin-left:calc(8.33333% + 32.5px)}}.PartnerOffers-sponsored{background:#ebf5fc}.PartnerOffers-topSection{display:flex;flex-direction:column;gap:8px;padding:12px 12px 0}.PartnerOffers-bottomSection{color:#000;padding:16px 12px}.PartnerOffers-bottomSection p{color:inherit!important;display:inline;margin:0!important}@media (max-width:759px){.PartnerOffers-topController{display:none}}.PartnerOffers-bottomController{align-items:center;display:flex;flex-direction:column;padding-bottom:16px}@media (min-width:760px){.PartnerOffers-bottomController{display:none}}.PartnerOffers-headlineRow{display:flex;justify-content:space-between}.PartnerOffers-disclosures{align-items:center;display:flex;gap:4px}.PartnerOffers-disclosures p{margin:0!important}.PartnerOffers-shiftLastTooltip [class*=tooltipBody]{right:-20px;transform:unset}.Carousel-styles-select-carousel--aEtWQ{overflow:hidden;width:100%}.Carousel-styles-select-carouselSlide--WUqSd{-webkit-overflow-scrolling:touch;display:flex;gap:12px;overflow-x:auto;scroll-snap-type:x mandatory;scrollbar-width:none;transition:transform .5s}.Carousel-styles-select-carouselSlide--WUqSd::-webkit-scrollbar{display:none}.Carousel-styles-select-carouselCard--OzvLG{display:flex;flex:0 0 auto;justify-content:center;min-width:280px;scroll-snap-align:start;width:50%}.Carousel-styles-select-carouselCard--OzvLG.Carousel-styles-select-oneCard--kZasP{max-width:100%;width:100%}.Carousel-styles-select-carouselCard--OzvLG.Carousel-styles-select-twoCards--kayn6{max-width:unset;width:calc(50% - 6px)}.Carousel-styles-select-carouselCard--OzvLG.Carousel-styles-select-threePlusCards--uqbMy{max-width:280px;width:280px}@media (min-width:760px){.Carousel-styles-select-carouselCard--OzvLG.Carousel-styles-select-threePlusCards--uqbMy{width:280px}}@media (min-width:1020px){.Carousel-styles-select-carouselCard--OzvLG.Carousel-styles-select-threePlusCards--uqbMy{width:330px}}@media (min-width:1340px){.Carousel-styles-select-carouselCard--OzvLG.Carousel-styles-select-threePlusCards--uqbMy{width:320px}}.OneTrustLoadingPlaceholder-container{align-items:center;background:#fff;display:flex;justify-content:center}.OneTrustBlockedPlaceholder-container{align-items:center;background-color:#d1d9dc;background-image:url(https://static-redesign.cnbcfm.com/dist/1eaf28c48f6e504fb498.svg);background-repeat:no-repeat;background-size:auto 100%;display:flex;justify-content:center}.OneTrustBlockedPlaceholder-innerCopy{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:18px;font-weight:800;padding:20px;text-align:center}@media (prefers-color-scheme:dark){.OneTrustBlockedPlaceholder-innerCopy{color:#111}}.OneTrustBlockedPlaceholder-link{color:#1876b8;cursor:pointer}a.OneTrustBlockedPlaceholder-onetrustSettingsDeepLink{text-decoration:none!important}.withOneTrustPlaceholder-placeholderDimensions{width:100%}@media (max-width:759px){.withOneTrustPlaceholder-placeholderDimensions{height:196px}}@media (min-width:760px){.withOneTrustPlaceholder-placeholderDimensions{height:235px}}body .videoResponsive{height:0;margin-bottom:18px;overflow:hidden;padding-bottom:56.25%;position:relative}body .videoResponsive iframe{border:0;height:100%;left:0;position:absolute;top:0;width:100%}body .postContainer iframe{display:flex;left:0;position:absolute;top:0}body .postContainer [src*=post]{position:relative;width:335px}body .postContainer [src*=video]{position:relative;width:100%}body .instagram-media iframe{width:99%}body .instagramWrapper iframe,body .tiktokWrapper iframe{left:0;right:0;width:99%}.WebService-wrapper{margin-top:20px;max-width:630px;min-height:auto;position:relative;text-align:center}@media (min-width:760px){.WebService-wrapper{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){.WebService-wrapper{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){.WebService-wrapper{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){.WebService-wrapper{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){.WebService-wrapper{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){.WebService-wrapper{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){.WebService-wrapper{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){.WebService-wrapper{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){.WebService-wrapper{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){.WebService-wrapper{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){.WebService-wrapper{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){.WebService-wrapper{margin-left:14.28571%}}@media (max-width:759px){.WebService-wrapper{margin-bottom:20px}}@media (min-width:1020px){.WebService-wrapper{margin-left:calc(16.66667% + 5px);min-width:auto}}@media (min-width:1340px){.WebService-wrapper{margin-bottom:20px;margin-left:calc(14.28571% + 4.28571px);min-width:auto}}.WebService-wsod_stock_screener.WebService-wrapper{margin-left:0;max-width:100%}.WebService-giphy{text-align:start}@media (min-width:360px){body .giphyContainer iframe{width:100%}}@media (min-width:760px){body .postContainer [src*=post]{width:395px}body .giphyContainer iframe{height:none;min-height:0;min-width:0;width:none}}@media (min-width:1020px){body .postContainer iframe{left:0;position:absolute;top:0}}@media (min-width:1180px){body .postContainer{padding-bottom:0}body .postContainer [src*=video]{display:flex}body .postContainer [src*=post]{display:flex;width:560px}}.ArticleNode-anchorWrapper{pointer-events:none;position:relative}.ArticleNode-anchorWrapper .ArticleNode-anchor{left:0;position:absolute;top:-230px;visibility:hidden}.QuoteKeyPoints-keyPointsHeader{align-items:center;color:#071d39;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:18px;font-style:normal;font-weight:900;line-height:22px;text-transform:uppercase}.QuoteKeyPoints-keyPointsContainer{margin:12px 0}.QuoteKeyPoints-keyPointsContainer .group{margin-bottom:0;margin-left:0;max-width:unset;min-width:unset}.QuoteKeyPoints-keyPointsContainer ul{padding-left:16px}.QuoteKeyPoints-keyPointsContainer ul li{color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:500;letter-spacing:.029999999329447746px;line-height:20px;list-style:disc;margin:12px 0;text-align:left}.QuoteKeyPoints-keyPointsContainer a{color:#2077b6;text-decoration:underline}.QuoteKeyPoints-keyPointsContainer a:hover{color:#fcb700}.ICBanner-icBannerContainer{display:flex;flex-direction:column}.ICBanner-icBannerComponent{align-items:center;background:#071d39;border-radius:3px;display:flex;flex:none;flex-direction:row;flex-grow:0;gap:16px;height:44px;margin-bottom:40px;order:0;padding:0;position:relative;width:100%}@media (max-width:759px){.ICBanner-icBannerComponent{gap:8px}}.ICBanner-icBannerComponentExpanded{margin-bottom:12px}@media (max-width:759px){.ICBanner-icBannerComponentExpanded{margin-bottom:4px}}.ICBanner-icBannerContainerExpanded{border-bottom:5px solid #071d39;margin-bottom:40px;padding-bottom:5px}.ICBanner-investingClubPill{height:24px;margin-left:10px;top:1px;width:49.71px!important}@media (max-width:759px){.ICBanner-investingClubPill{height:20px}}.ICBanner-portfolioLink{align-items:center;color:#005594;cursor:pointer;display:flex;float:right;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:18px;font-weight:400;letter-spacing:.444444px;line-height:28px}@media (max-width:759px){.ICBanner-portfolioLink{text-decoration:underline}}.ICBanner-icBannerHeader,.ICBanner-signInLink,.ICBanner-signInText,.ICBanner-signedOutHeader{align-items:center;color:#fff;display:flex;flex:none;flex-grow:0;font-size:12px;font-weight:700;letter-spacing:1.5px;line-height:16px;order:1;text-transform:uppercase}.ICBanner-dropdownButton{align-items:center;color:#fff;display:flex;flex:none;float:right;order:2;position:absolute;right:16px}.ICBanner-dropdownButton:active{-webkit-tap-highlight-color:transparent}.ICBanner-dropdownButton .ICBanner-dropdownArrow,.ICBanner-dropdownButton .ICBanner-dropdownUpArrow{background:#fff;height:11px;margin-left:32px;width:12px}@media (max-width:1019px){.ICBanner-dropdownButton .ICBanner-dropdownArrow,.ICBanner-dropdownButton .ICBanner-dropdownUpArrow{margin-left:78px}}@media (max-width:759px){.ICBanner-dropdownButton .ICBanner-dropdownArrow,.ICBanner-dropdownButton .ICBanner-dropdownUpArrow{margin-bottom:4px;margin-left:10px}}.ICBanner-dropdownButton .ICBanner-dropdownArrow{margin-bottom:6px;mask-image:url(https://static-redesign.cnbcfm.com/dist/95a89411c4cb62dc5920.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/95a89411c4cb62dc5920.svg)}@media (max-width:759px){.ICBanner-dropdownButton .ICBanner-dropdownArrow{margin-bottom:4px}}.ICBanner-dropdownButton .ICBanner-dropdownUpArrow{margin-bottom:0;mask-image:url(https://static-redesign.cnbcfm.com/dist/24f214b19a613fd9a0e2.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/24f214b19a613fd9a0e2.svg)}@media (max-width:759px){.ICBanner-dropdownButton .ICBanner-dropdownUpArrow{margin-top:2px}}.ICBanner-expandedComponent{display:flex;flex-direction:column}.ICBanner-expandedComponentRow{border-bottom:2px solid #e5e5e5;display:flex;flex-direction:row;margin-bottom:10px;padding-bottom:10px;width:100%}.ICBanner-rowComponent{display:flex;flex-direction:row;justify-content:space-between;width:50%}.ICBanner-heading{color:#747474;font-size:18px;font-weight:600;line-height:22px}.ICBanner-rowValue{float:right;position:relative;right:14px}.ICBanner-firstRow,.ICBanner-rowValue{color:#171717;font-size:18px;font-weight:600;line-height:22px}.ICBanner-firstRow{width:100px}@media (min-width:1340px){.ICBanner-firstRow{width:220px}}.ICBanner-mobileExpandedComponent{display:flex;flex-direction:column}.ICBanner-mobileExpandedComponentRow{border-bottom:2px solid #e5e5e5;display:flex;flex-direction:row;justify-content:space-between;margin-bottom:10px;padding-bottom:10px}.ICBanner-mobileHeading{color:#747474;font-size:18px;font-weight:700;line-height:22px;margin-left:10px}.ICBanner-mobileRowValue{color:#171717;font-size:18px;font-weight:700;line-height:22px;margin-right:10px}.ICBanner-icBannerComponentSignedOut{align-items:center;background:#071d39;border-radius:3px;color:#fff;display:flex;height:56px;margin-bottom:40px;position:relative;text-transform:uppercase;width:100%}.ICBanner-icBannerComponentSignedOut .ICBanner-investingClubPillLink{margin-top:2px}.ICBanner-icBannerComponentSignedOutMobile{height:44px}.ICBanner-signInLink,.ICBanner-signedOutHeader{order:unset}.ICBanner-clubMemberButton{border:1px solid #fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:600;height:40px;letter-spacing:1.09px;line-height:40px;text-align:center;text-transform:uppercase;width:191px}.ICBanner-signInLink{margin-right:6px;text-decoration:underline}.ICBanner-signInLink a:focus,.ICBanner-signInLink a:hover{color:#fff}.ICBanner-signInText{margin-left:10px;order:unset}.ICBanner-memberButtonContainer{margin-left:auto;margin-right:16px}.ICBanner-memberButtonContainer:focus,.ICBanner-memberButtonContainer:hover{color:#fff}.ICBanner-mobileSubscribeButton{margin-left:6px;text-decoration:underline}.QuotePageBuilder-container{margin:0 22px;max-width:100%;padding-top:15px}@media (min-width:360px){.QuotePageBuilder-container{margin-bottom:0}}@media (min-width:760px){.QuotePageBuilder-container{margin:0 auto;max-width:678px}}@media (min-width:1020px){.QuotePageBuilder-container{margin-bottom:15px;max-width:960px}}@media (min-width:1340px){.QuotePageBuilder-container{margin-bottom:25px;max-width:1290px}}@media (min-width:760px){.QuotePageBuilder-row{margin-bottom:20px;padding-top:30px}}@media (min-width:1020px){.QuotePageBuilder-row{display:flex}}.QuotePageBuilder-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.QuotePageBuilder-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.QuotePageBuilder-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.QuotePageBuilder-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.QuotePageBuilder-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.QuotePageBuilder-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.QuotePageBuilder-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.QuotePageBuilder-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}.QuotePageBuilder-mainContent{padding-top:15px}@media (min-width:1020px){.QuotePageBuilder-mainContent{padding-top:30px}}.QuotePageBuilder-mainContent .BrandBanner-container{margin-bottom:30px;z-index:99}@media (min-width:1340px){.QuotePageBuilder-mainContent .BrandBanner-container{margin-left:calc(-50vw - -538.5px)}}@media (min-width:760px){.QuotePageBuilder-mainContent .BrandBanner-container{margin-bottom:-100px;margin-top:50px}.QuotePageBuilder-mainContent{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px);padding-top:0}}@media (min-width:760px) and (min-width:760px){.QuotePageBuilder-mainContent{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.QuotePageBuilder-mainContent{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.QuotePageBuilder-mainContent{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.QuotePageBuilder-mainContent{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.QuotePageBuilder-mainContent{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.QuotePageBuilder-mainContent:last-child{margin-right:0}}@media (min-width:1340px){.QuotePageBuilder-mainContent{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}}@media (min-width:760px){.QuotePageBuilder-sidebar{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.QuotePageBuilder-sidebar{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.QuotePageBuilder-sidebar{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.QuotePageBuilder-sidebar{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.QuotePageBuilder-sidebar{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.QuotePageBuilder-sidebar{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}}@media (min-width:1340px){.QuotePageBuilder-sidebar{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}.QuotePageBuilder-button,.QuotePageBuilder-buttonActive{align-items:center;background:#fff;border:1px solid #002f6c;color:#002f6c;display:flex;font-family:Proxima Nova,sans-serif;font-size:12px;font-weight:700;justify-content:center;letter-spacing:1.09px;margin:15px 0 30px;padding:15px 20px;text-transform:uppercase;width:100%}.QuotePageBuilder-button:after,.QuotePageBuilder-buttonActive:after{border-bottom:2px solid #002f6c;border-right:2px solid #002f6c;content:"";display:block;height:7px;margin:-4px 0 0 5px;transform:rotate(45deg);width:7px}.QuotePageBuilder-buttonActive:after{margin:5px 0 0 5px;transform:rotate(225deg)}.QuotePageBuilder-showOnDesktop{display:none}@media (min-width:760px){.QuotePageBuilder-showOnDesktop{display:initial}}.QuotePageBuilder-showOnMobile{display:initial;margin-bottom:10px}@media (min-width:760px){.QuotePageBuilder-showOnMobile{display:none}}.QuotePageBuilder-analystConsensusContainer{display:flex;justify-content:center;margin-bottom:25px;margin-top:30px}.LiveTVScheduleHeader-header{color:#071d39;font-style:normal;position:relative;width:100%}.LiveTVScheduleHeader-header .LiveTVScheduleHeader-heading{font-size:40px;font-weight:800;line-height:42px;padding:36px 8px 0;text-align:center}@media (max-width:759px){.LiveTVScheduleHeader-header .LiveTVScheduleHeader-heading{font-size:36px}}@media (max-width:359px){.LiveTVScheduleHeader-header .LiveTVScheduleHeader-heading{font-size:24px}}.LiveTVScheduleHeader-header .LiveTVScheduleHeader-headerUnderline{background:#fcb700;height:7px;margin-bottom:40px;width:100%}.LiveTVDatePicker-container{margin:0 auto 38px;max-width:1145px;width:90%}.LiveTVDatePicker-modal{bottom:0;height:100%;left:0;position:absolute;right:0;top:0;width:100%;z-index:99}.LiveTVDatePicker-tveDropdown{background:#aeaeae;border-radius:3px;color:#171717;display:block;height:34px;padding:1px;position:relative;width:272px}.LiveTVDatePicker-head{background:linear-gradient(#e7e7e7,#fff);background-image:linear-gradient(#f6f6f6,#fafafa);border-radius:3px;cursor:pointer;text-shadow:0 1px 0 #fff;width:100%}.LiveTVDatePicker-arrowWrap,.LiveTVDatePicker-head{border-top:1px solid #fff;display:inline-block;height:32px}.LiveTVDatePicker-arrowWrap{background-image:-o-linear-gradient(top,#dbdbdb 0,#fcfcfc 100%);border-left:1px solid #fff;border-radius:0 3px 3px 0;box-shadow:-1px 0 0 0 #c9c9c9;float:right;position:absolute;right:1px;top:1px;width:31px}.LiveTVDatePicker-arrow{background-image:url(https://static-redesign.cnbcfm.com/dist/3f3502c997d472bd03be.png);background-repeat:no-repeat;border:none;box-shadow:none;height:25px;left:-10%;margin:-15px 0 0;position:absolute;top:50%;width:29px}.LiveTVDatePicker-openArrow{border-color:#171717 #0000 #0000;border-style:solid;border-width:7px 7px 0;box-shadow:0 -1px 0 0 #171717;height:0;margin-left:10px;margin-top:-2px;width:0}.LiveTVDatePicker-close{background:none;background-image:none;border-color:#0000;border-radius:0;box-shadow:none}.LiveTVDatePicker-today{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-style:normal;font-weight:800;line-height:28px;text-transform:uppercase}.LiveTVDatePicker-datesContainer{float:left}.LiveTVDatePicker-dates{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-style:normal;font-weight:500;line-height:28px;margin-left:6px}.LiveTVDatePicker-selectDateContainer{text-align:left}.LiveTVDatePicker-selectDate{font-size:18px;font-style:normal;font-weight:500;line-height:28px;margin-left:6px}.LiveTVDatePicker-menu{background:#fff;border:1px solid #c3c3c3;border-radius:3px;height:200px;overflow:scroll;padding:6px 0 6px 7px;position:absolute;width:272px;z-index:100}.LiveTVDatePicker-menu button{border-radius:3px;display:block;font-family:Proxima Nova Semi Bold,Helvetica,Arial,sans-serif;font-size:16px;line-height:23px;margin-right:6px;padding:5px 12px 4px 8px;position:relative;text-align:initial;text-overflow:ellipsis;white-space:nowrap;width:100%}.LiveTVDatePicker-menu button:hover{color:#fff}.LiveTVDatePicker-menu li:hover{background-color:#2077b6;border-radius:3px;cursor:pointer;width:254px}.LiveTVDatePicker-filterDayWeek{display:inline-block;text-align:left;width:87px}.LiveTVDatePicker-filterMonth{display:inline-block;width:40px}.LiveTVDatePicker-hide{display:none}.LiveTVCurrentShow-container{border:4px solid #002f6c;color:#002f6c;margin:0 auto 41px;max-width:1145px;padding:8px 16px;position:relative;width:90%}.LiveTVCurrentShow-liveScheduleContainer{align-items:center;display:flex;justify-content:space-between;margin:0 22px}@media (max-width:1019px){.LiveTVCurrentShow-liveScheduleContainer{display:block}}.LiveTVCurrentShow-link,.LiveTVCurrentShow-link:hover{color:#002f6c}.LiveTVCurrentShow-onNow{align-items:center;background:#fff;display:flex;font-size:14px;font-style:normal;font-weight:700;justify-content:center;line-height:20px;position:absolute;text-align:center;top:-11px;width:114px}.LiveTVCurrentShow-onNow:before{animation:LiveTVCurrentShow-pulse 2s infinite;background-color:#ff5053;border-radius:100%;box-shadow:0 0 0 0 #ce2b2b;content:"";display:block;height:6px;margin:6px 8px;transform:scale(1);width:6px}@keyframes LiveTVCurrentShow-pulse{0%{box-shadow:0 0 0 1px #ce2b2b;opacity:1;transform:scale(.95)}70%{box-shadow:0 0 0 2px #ce2b2b;opacity:.9;transform:scale(1)}to{box-shadow:0 0 0 1px #ce2b2b;opacity:1;transform:scale(.95)}}.LiveTVCurrentShow-currShow{font-size:28px;font-style:normal;font-weight:400;line-height:18px;padding:16px 0}@media (max-width:759px){.LiveTVCurrentShow-currShow{font-size:24px}}@media (max-width:479px){.LiveTVCurrentShow-currShow{font-size:18px}}.LiveTVCurrentShow-currShow .LiveTVCurrentShow-onNowTitle{font-weight:800}.LiveTVCurrentShow-currShow .LiveTVCurrentShow-separator{font-weight:700}.LiveTVCurrentShow-nextShow{font-size:20px;font-style:normal;font-weight:400;line-height:14px;padding:16px 0}@media (max-width:479px){.LiveTVCurrentShow-nextShow{display:none}}@media (max-width:759px){.LiveTVCurrentShow-nextShow{font-size:16px}}.LiveTVCurrentShow-nextShow .LiveTVCurrentShow-nextTitle{font-weight:800}.LiveTVSchedule-container{margin:auto;max-width:1145px;width:100%}.MobileAppChart-container{max-width:100%}.WelcomeMessage-container{font-family:Proxima Nova,Arial,Helvetica,sans-serif;font-size:16px;font-style:normal;font-weight:500;letter-spacing:.03px;line-height:20px;margin-bottom:10px;padding:0 20px}.WelcomeMessage-container a{color:#005594}@media (min-width:1020px){.WelcomeMessage-container{margin:0 40px 15px}}@media (min-width:1340px){.WelcomeMessage-container{margin:0 275px 15px}}.WelcomeMessage-blockText{display:block}.NewslettersHeader-container{display:flex;flex-direction:column;margin:0 auto;max-width:100%;padding:30px 0;text-align:center}@media (min-width:760px){.NewslettersHeader-container{max-width:678px}}@media (min-width:1020px){.NewslettersHeader-container{max-width:960px}}@media (min-width:1340px){.NewslettersHeader-container{max-width:1290px}}@media (min-width:760px){.NewslettersHeader-container{padding:20px 0}}@media (min-width:1020px){.NewslettersHeader-container{padding:30px 0}}.NewslettersHeader-header{color:#002f6c;font-family:Proxima Nova,Arial,Helvetica,sans-serif;font-size:28px;font-weight:700;letter-spacing:-.5px;line-height:32px;margin-bottom:10px;margin-top:0;padding:0 20px}@media (min-width:760px){.NewslettersHeader-header{font-size:40px;line-height:42px;padding:0}}@media (min-width:1020px){.NewslettersHeader-header{font-size:54px;line-height:60px;margin-bottom:20px}}.NewslettersHeader-paragraph{font-family:Proxima Nova,Arial,Helvetica,sans-serif;font-size:16px;font-style:normal;font-weight:500;letter-spacing:.03px;line-height:20px;margin-bottom:10px;padding:0 20px}@media (min-width:1020px){.NewslettersHeader-paragraph{margin:0 40px 15px;padding:0}}@media (min-width:1340px){.NewslettersHeader-paragraph{margin:0 275px 15px}}.NewslettersHeader-email{color:#747474}.NewslettersHeader-signInContainer{align-items:center;display:flex;flex-direction:row;font-family:Proxima Nova,Arial,Helvetica,sans-serif;font-size:14px;font-style:normal;font-weight:500;justify-content:center;letter-spacing:.03px;line-height:16px;padding:0 20px}.NewslettersHeader-signInContainer .NewslettersHeader-question{color:#000}.NewslettersHeader-signInContainer .NewslettersHeader-question:after{content:" ";white-space:pre}.NewslettersHeader-signInContainer .NewslettersHeader-signIn a{color:#005594}.NewslettersHeader-signInContainer .NewslettersHeader-signIn a:hover{color:#fcb700}.ExclusivePill-baseExclusiveStyles,.ExclusivePill-icExclusive,.ExclusivePill-proExclusive{background-color:#fffc;border-radius:4px;bottom:10px;font-size:12px;font-weight:600;left:10px;padding:2px 5px;position:absolute}.ExclusivePill-proExclusive{color:#008456}.ExclusivePill-icExclusive{color:#005594}.BecomeAPaidUserPill-icLink,.BecomeAPaidUserPill-proLink{color:#005594;display:block;font-size:11px;font-weight:500;margin:10px 0;width:-moz-fit-content;width:fit-content}.BecomeAPaidUserPill-proLink{color:#008456}.AuthenticatedSubscriptionButton-subscriptionButton{background-color:#fff;border:1px solid #002f6c;border-radius:100%;color:#fff;display:block;font-size:16px;height:18px;line-height:1;position:absolute;right:10px;text-align:center;top:1px;width:18px}.AuthenticatedSubscriptionButton-unchecked{background-color:#fff;border:1px solid #002f6c;color:#002f6c}@media (min-width:1020px){.AuthenticatedSubscriptionButton-unchecked:focus-visible,.AuthenticatedSubscriptionButton-unchecked:hover{background-color:#002f6c;border:1px solid #002f6c;color:#fff}}.AuthenticatedSubscriptionButton-checked{background-color:#002f6c;border:1px solid #002f6c;color:#fff}@media (min-width:1020px){.AuthenticatedSubscriptionButton-checked:focus-visible:before,.AuthenticatedSubscriptionButton-checked:hover:before{align-items:center;background-color:#002f6c;border:1px solid #002f6c;border-radius:9px;color:#fff;content:"Unsubscribe";display:flex;font-size:10px;font-weight:300;height:17px;justify-content:center;margin-right:-1px;margin-top:-1px;position:absolute;right:0;top:0;width:70px;z-index:1}}.AuthenticatedSubscriptionButton-checkmarkIcon{background-color:#002f6c;border:1px solid #002f6c;border-radius:100%;color:#fff;height:18px;position:absolute;right:-1px;top:-1px;width:18px}.AuthenticatedSubscriptionButton-checkmarkIcon circle{fill:#002f6c;opacity:1}.AuthenticatedSubscriptionButton-checkmarkIcon path{fill:#fff}.AuthenticatedSubscriptionButton-wide{border-radius:9px;font-size:10px;font-weight:300;width:72px}.AuthenticatedSubscriptionButton-subscribed{background-color:#002f6c;border:1px solid #002f6c;color:#fff}.AuthenticatedSubscriptionButton-subscribed span{left:4px;position:absolute;top:3px}.AuthenticatedSubscriptionButton-subscribed .AuthenticatedSubscriptionButton-checkmarkIcon{border-radius:100%;color:#fff;height:18px;position:absolute;right:0;top:-1px;width:17px}.AuthenticatedSubscriptionButton-unsubscribed{background-color:#fff;border:1px solid #002f6c;color:#002f6c}.AuthenticatedSubscriptionButton-loading{background-color:#d9d9d9;border:#d9d9d9;color:#0000;cursor:default;pointer-events:none}.AuthenticatedSubscriptionButton-loading span{background-image:url(https://static-redesign.cnbcfm.com/dist/994bcb47d39748c1b663.gif);background-position:50%;background-repeat:no-repeat;background-size:contain;border-radius:100%;display:inline-block;height:18px;margin:auto;width:18px}.AddNewsletter-selectedToggle{background-color:#9e9e9e;border:1px solid #9e9e9e;color:#fff!important}.AddNewsletter-selectedToggle:before{color:#424242;content:"Remove";font-size:10px;font-weight:300;line-height:14px;position:absolute;right:calc(100% + 5px);text-align:right}.AddNewsletter-selectedToggle:after{content:"﹣";display:inline}.AddNewsletter-selectedToggle:focus-visible,.AddNewsletter-selectedToggle:hover{background-color:#424242;border:1px solid #424242}.AddNewsletter-deselectedToggle,.AddNewsletter-selectedToggle{border-radius:100%;display:block;font-size:16px;height:18px;line-height:1;position:absolute;right:10px;text-align:center;top:1px;width:18px}.AddNewsletter-deselectedToggle{background-color:#fff;border:1px solid #002f6c;color:#002f6c!important}.AddNewsletter-deselectedToggle:after{content:"+";display:inline}.AddNewsletter-deselectedToggle:focus-visible,.AddNewsletter-deselectedToggle:hover{background-color:#002f6c;border:1px solid #002f6c;color:#fff!important}.NewslettersCard-container{background-color:#fff;border:1px solid #f8f8f8;box-shadow:0 1px 4px 0 #00000040;display:inline-block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;height:294px;position:relative;vertical-align:top;width:165px}@media (min-width:1020px){.NewslettersCard-container:focus,.NewslettersCard-container:hover{transform:scale3d(1.1,1.1,1);transition:transform .3s}}@media (max-width:759px){.NewslettersCard-container{width:100%}}.NewslettersCard-thumbnailWrapper{background-color:#f8f8f8;height:120px;left:-1px;overflow:hidden;position:relative;top:-1px;width:calc(100% + 2px)}.NewslettersCard-thumbnail{height:100%;object-fit:cover;width:100%}.NewslettersCard-body{padding:10px}.NewslettersCard-title{-webkit-box-orient:vertical;-webkit-line-clamp:2;display:-webkit-box;font-size:16px;font-weight:500;line-height:1.1;overflow:hidden}@media (max-width:759px){.NewslettersCard-title{font-size:12px}}.NewslettersCard-description{-webkit-box-orient:vertical;-webkit-line-clamp:2;display:-webkit-box;font-size:11px;font-weight:300;margin:10px 0;overflow:hidden}.NewslettersCard-sampleLink{color:#005594;display:block;font-size:11px;font-weight:500;margin:10px 0;width:-moz-fit-content;width:fit-content}.NewslettersCard-bottomRow{background-image:url(https://static-redesign.cnbcfm.com/dist/757f1cf1b09912b51cd0.png);background-position:10px 1px;background-repeat:no-repeat;background-size:15px;bottom:0;left:0;padding:0 10px 10px 30px;position:absolute;width:100%}.NewslettersCard-cadence{font-size:11px;font-weight:500;line-height:18px}.NewslettersCard-cadenceSelected{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:60px}.NewslettersCard-errorContainer{background:#fff;bottom:0;height:calc(100% - 120px);left:0;opacity:.97;position:absolute;width:100%;z-index:2}.NewslettersCard-errorMessage{color:#ce2b2b;font-size:16px;font-weight:600;line-height:19.49px;margin-top:40px;padding:10px;text-align:left}.NewslettersCard-errorPill{background:#b40909;border-radius:9px;bottom:10px;color:#fff;font-size:10px;font-weight:500;height:18px;line-height:12.18px;padding:3px;position:absolute;right:10px;text-align:center;width:46px}.NewslettersCategory-smallSpan{background-color:#0477c9;display:block;height:6px;margin-top:10px;width:110px}@media (max-width:360px){.NewslettersCategory-smallSpan{width:88px}}@media (min-width:760px){.NewslettersCategory-smallSpan{margin-top:20px}}.NewslettersCategory-smallSpanPro{background-color:#008456}.NewslettersCategory-smallSpanInvestingClub{background-color:#0496ff}.NewslettersCategory-border{background-color:#747474;display:block;height:1px;width:100%}.NewslettersCategory-categoryTitle{font-size:20px;font-weight:700;letter-spacing:-.5px;line-height:32px;margin-bottom:0;margin-top:0;text-transform:uppercase}@media (min-width:760px){.NewslettersCategory-categoryTitle{font-size:28px}}.NewslettersCategory-categoryTopContainer{align-items:center;display:flex;justify-content:space-between;margin-bottom:10px;margin-top:5px}@media (min-width:760px){.NewslettersCategory-categoryTopContainer{margin-top:11px}}.NewslettersCategory-checkboxAndCollapseButtonContainer{color:#336aa0;display:flex;font-family:Proxima Nova,Arial,Helvetica,sans-serif;font-size:13px;font-style:normal;font-weight:600;gap:10px;line-height:normal;text-transform:uppercase}.NewslettersCategory-selectAllCheckbox{cursor:pointer;height:0;opacity:0;position:absolute;right:0;width:0}.NewslettersCategory-checkmark{border:2px solid #336aa0;border-radius:3px;display:block;height:18px;position:relative;width:18px}.NewslettersCategory-dropdownArrow{border:1px solid #0000}.NewslettersCategory-dropdownArrow:focus-visible{border:1px solid #336aa0}.NewslettersCategory-subCategoriesContainer{display:flex;flex-wrap:wrap;gap:20px;justify-content:space-between;max-width:100%;padding-bottom:30px}@media (min-width:760px){.NewslettersCategory-subCategoriesContainer{justify-content:flex-start;padding-bottom:50px}}@media (min-width:1020px){.NewslettersCategory-subCategoriesContainer{padding-bottom:10px}}.NewslettersCategory-checkboxLabel:focus-within input:not(:checked)~.NewslettersCategory-checkmark{border:4px solid #336aa0}.NewslettersCategory-checkboxLabel input:checked~.NewslettersCategory-checkmark{background-color:#336aa0}.NewslettersCategory-checkmark:after{content:"";display:none;position:absolute}.NewslettersCategory-checkboxLabel input:checked~.NewslettersCategory-checkmark:after{display:block}.NewslettersCategory-checkboxLabel .NewslettersCategory-checkmark:after{border:solid #fff;border-width:0 2px 2px 0;height:9px;left:4px;top:0;transform:rotate(45deg);width:5px}@media (max-width:759px){.NewslettersCategory-cardContainer{max-width:185px;width:46%}}.NewslettersCategory-disabledCheckbox{cursor:not-allowed;opacity:.5}.NewslettersOverlay-overlayContainer{background:#fff;border-top:1px solid #bababa;bottom:0;left:0;padding:20px 20px 15px;position:sticky;right:0;z-index:1000}@media (min-width:760px){.NewslettersOverlay-overlayContainer{padding:30px 39px 15px}}@media (min-width:1020px){.NewslettersOverlay-overlayContainer{padding:30px 20px 15px}}@media (max-width:759px){.NewslettersOverlay-overlayContainer{bottom:54px}}.NewslettersOverlay-contentContainer{margin:0 auto}@media (min-width:1020px){.NewslettersOverlay-contentContainer{max-width:960px}}@media (min-width:1340px){.NewslettersOverlay-contentContainer{max-width:1290px}}.NewslettersOverlay-overlayText{font-family:Proxima Nova,Arial,Helvetica,sans-serif;font-size:20px;font-style:normal;font-weight:500;letter-spacing:.03px;line-height:20px}@media (min-width:760px){.NewslettersOverlay-overlayText{font-size:28px;line-height:30px}}@media (min-width:1020px){.NewslettersOverlay-overlayText{font-size:36px;line-height:38px}}.NewslettersOverlay-overlayText span{font-weight:700}.NewslettersOverlay-tosContainer{color:#747474;font-size:8px;font-weight:600;line-height:10px;margin:10px 0;max-width:1140px}.NewslettersOverlay-tosContainer a{color:#005594}@media (min-width:760px){.NewslettersOverlay-tosContainer{font-size:10px;line-height:12px;margin:15px 0;padding-right:106px}}@media (min-width:1020px){.NewslettersOverlay-tosContainer{font-size:12px;line-height:14px;padding-right:270px}}.NewslettersOverlay-emailInput{border:1px solid #747474;border-radius:4px;font-family:Proxima Nova,Arial,Helvetica,sans-serif;font-size:14px;font-weight:700;height:54px;letter-spacing:1px;line-height:12px;padding-left:20px;width:100%}.NewslettersOverlay-emailInput::placeholder{color:#424242;opacity:1}@media (min-width:760px){.NewslettersOverlay-emailInput{border-radius:0;border-bottom-left-radius:4px;border-top-left-radius:4px;width:325px}}.NewslettersOverlay-submitButton{background-color:#005594;border-radius:4px;color:#fff;font-size:18px;font-weight:600;height:54px;letter-spacing:1px;text-align:center;width:100%}.NewslettersOverlay-submitButton:focus,.NewslettersOverlay-submitButton:hover{background-color:#071d39}@media (min-width:760px){.NewslettersOverlay-submitButton{border-radius:0;border-bottom-right-radius:4px;border-top-right-radius:4px;width:177px}}.NewslettersOverlay-recaptchaText{color:#747474;font-size:12px;font-weight:700;line-height:normal}.NewslettersOverlay-inputAndSubmit{display:flex;flex-direction:column;gap:10px;margin-bottom:10px}@media (min-width:760px){.NewslettersOverlay-inputAndSubmit{flex-direction:row;gap:0;margin-bottom:15px}}.NewslettersOverlay-disabledButton,.NewslettersOverlay-disabledButton:focus,.NewslettersOverlay-disabledButton:hover{background-color:#d9d9d9}.NewslettersOverlay-errorMessage{color:red;height:18px}.NewslettersOverlay-footerContainer{display:flex;flex-flow:column}@media (min-width:760px){.NewslettersOverlay-footerContainer{flex-flow:row}}.NewslettersOverlay-signin{font-size:14px;font-weight:500;letter-spacing:.029px;line-height:16px;margin:8px 0;text-align:left}.NewslettersOverlay-signin a{color:#005594;margin-left:5px}.NewslettersOverlay-signin a:hover{color:#fcb700}@media (min-width:760px){.NewslettersOverlay-signin{margin:0 20px 0 0}}.NewslettersConfirmation-container{background-image:url(https://static-redesign.cnbcfm.com/dist/44944463efaf14fd092f.svg);background-position:right -300px top -40px;background-repeat:no-repeat;background-size:900px;color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:15px;font-style:normal;font-weight:400;line-height:1.2;margin-top:-30px;text-align:center}@media (max-width:759px){.NewslettersConfirmation-container{background-position:right -300px bottom -40px;height:100%;width:100%}}@media (min-width:760px) and (max-width:1019px){.NewslettersConfirmation-container{margin-top:10px}}.NewslettersConfirmation-logo{margin:0 auto 40px}@media (max-width:759px){.NewslettersConfirmation-logo{margin:0 auto 30px}}.NewslettersConfirmation-emailText,.NewslettersConfirmation-thankYou,.NewslettersConfirmation-titlesList{margin:0 auto 10px;max-width:410px}.NewslettersConfirmation-thankYou{font-size:28px;font-weight:700;letter-spacing:-.5px;line-height:32px}@media (max-width:759px){.NewslettersConfirmation-thankYou{line-height:30px}}.NewslettersConfirmation-emailText{margin-bottom:18px}.NewslettersConfirmation-emailAddress{font-weight:600}.NewslettersConfirmation-signUpPrompt{font-size:16px;font-weight:500;line-height:16px;margin:20px auto;text-align:center}.NewslettersCategories-container{margin:0 auto 40px;max-width:100%;padding:0 20px}@media (min-width:760px){.NewslettersCategories-container{max-width:678px}}@media (min-width:1020px){.NewslettersCategories-container{max-width:960px}}@media (min-width:1340px){.NewslettersCategories-container{max-width:1290px}}@media (min-width:760px){.NewslettersCategories-container{padding:0}}.UnsubscribeConfirmationModal-container{color:#171717;display:flex;flex-direction:column;font-size:18px;font-weight:600;line-height:20px;min-height:277px;padding:30px 12px 50px;text-align:center;width:500px}.UnsubscribeConfirmationModal-container .UnsubscribeConfirmationModal-text{margin:0 auto}@media (min-width:760px){.UnsubscribeConfirmationModal-container .UnsubscribeConfirmationModal-text{width:70%}}@media (max-width:759px){.UnsubscribeConfirmationModal-container{height:unset;padding:45px 28px;width:100%}}.UnsubscribeConfirmationModal-logo{height:23px;margin:0 auto 40px}@media (max-width:759px){.UnsubscribeConfirmationModal-logo{margin:0 auto 30px}}.UnsubscribeConfirmationModal-buttons{display:flex;justify-content:space-between;margin:40px auto 0;width:90%}.UnsubscribeConfirmationModal-buttons button{border:1px solid #005594;border-radius:3px;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-weight:600;height:50px;letter-spacing:1.09px;line-height:12px;text-align:center;text-transform:uppercase;width:200px}.UnsubscribeConfirmationModal-buttons button:hover{background:#002f6c}@media (max-width:759px){.UnsubscribeConfirmationModal-buttons button{margin:0 auto;width:100%}}.UnsubscribeConfirmationModal-buttons .UnsubscribeConfirmationModal-cancelButton{color:#005594}.UnsubscribeConfirmationModal-buttons .UnsubscribeConfirmationModal-cancelButton:hover{color:#fff}@media (max-width:759px){.UnsubscribeConfirmationModal-buttons .UnsubscribeConfirmationModal-cancelButton{margin-bottom:22px}}.UnsubscribeConfirmationModal-buttons .UnsubscribeConfirmationModal-yesButton{background-color:#005594;color:#fff}.UnsubscribeConfirmationModal-buttons .UnsubscribeConfirmationModal-loading{background-color:#d9d9d9;border:#d9d9d9;transition:none}.UnsubscribeConfirmationModal-buttons .UnsubscribeConfirmationModal-loading:hover{background-color:#d9d9d9;border:#d9d9d9}@media (max-width:759px){.UnsubscribeConfirmationModal-buttons{flex-direction:column}}.UnsubscribeConfirmationModal-error{word-wrap:break-word;color:#f44336;font-size:14px;font-weight:400;line-height:16px;position:relative;text-align:center;top:10px}.NewslettersFooter-container{color:#000;font-size:12px;font-weight:500;line-height:12px;margin-bottom:20px;padding:0 20px 20px;text-align:center}@media (min-width:760px){.NewslettersFooter-container{line-height:28px}}.NewslettersFooter-unsubscribeButton{color:#005594;font-size:12px;font-weight:500}.NewslettersFooter-unsubscribe{display:block}@media (min-width:760px){.NewslettersFooter-unsubscribe{display:inline}}.ZephrLandingPage-main{min-height:90vh}.WatchlistSortableColumnHeader-defaultSort{fill:#bababa}.WatchlistSortableColumnHeader-sortActive{color:#005594!important}.WatchlistSortableColumnHeader-sortActive .WatchlistSortableColumnHeader-asc,.WatchlistSortableColumnHeader-sortActive .WatchlistSortableColumnHeader-desc{fill:#005594}button.WatchlistSortableColumnHeader-sortButton{align-items:center;border-right:1px solid #ccc;display:flex;float:right;margin-right:4px;padding-right:4px}button.WatchlistSortableColumnHeader-sortButton:last-child{border:0;margin:0;padding:0}.WatchlistSortableColumnHeader-sortingIcons{display:flex;flex-direction:column;margin-left:8px}.SymbolTable-symbolTable{border-bottom:1px solid #d9d9d9;font-family:Proxima Nova,Helvetica,Arial,sans-serif;position:relative;table-layout:fixed;width:100%}.SymbolTable-symbolTable.SymbolTable-zeroQuotes{border-bottom:none}.SymbolTable-symbolTable:before{bottom:0;content:"";display:block;height:40px;pointer-events:none;position:absolute;width:100%;z-index:1}.SymbolTable-symbolTable.SymbolTable-fade:before{background:linear-gradient(180deg,#fff0,25%,#fff)}.SymbolTable-symbolTable thead{display:table;width:100%}.SymbolTable-symbolTable thead th{color:#747474;font-size:12px;font-style:normal;font-weight:700;line-height:15px;padding-bottom:5px}.SymbolTable-symbolTable td,.SymbolTable-symbolTable th{font-size:14px;padding:unset;padding-right:10px;text-align:end;width:25%}@media (max-width:1339px){.SymbolTable-symbolTable td,.SymbolTable-symbolTable th{font-size:12px}}.SymbolTable-symbolTable tr{box-sizing:border-box;display:table;width:100%}.SymbolTable-symbolTable tbody{display:block;max-height:240px;overflow-y:scroll;width:100%}.SymbolTable-symbolTable tbody tr{width:100%}.SymbolTable-symbolTable tbody tr:nth-child(odd){background:#f1f1f1}.SymbolTable-symbolTable tbody td{font-size:14px;font-style:normal;font-weight:600;height:30px;padding:4px 10px 4px 0}.SymbolTable-symbolTable tbody td.SymbolTable-symbol{overflow:hidden;padding-left:12px;text-align:start;text-overflow:ellipsis;white-space:nowrap}.SymbolTable-symbolTable tbody td a:hover{color:#005594;text-decoration:none}th{color:#9e9e9e}.SymbolTable-symbolLink{color:#000;cursor:pointer}.SymbolTable-positive{color:#00a857}.SymbolTable-negative{color:#ce2b2b}.SymbolTable-extendedHours{align-items:center;color:#e8802a;justify-content:flex-end;position:relative;text-align:end}.SymbolTable-extendedHours>svg{position:absolute;right:-3px;top:10px}.WatchlistSymbolAdder-container .WatchlistSymbolAdder-dropdownContent{left:0;right:auto}.WatchlistSymbolAdder-marketBanner{border:1px solid #005594!important}.WatchlistSymbolAdder-form{position:relative;white-space:nowrap;z-index:99}.WatchlistSymbolAdder-input{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:700;letter-spacing:.07em;padding:3px 3px 3px 6px;width:auto}@media (max-width:759px){.WatchlistSymbolAdder-input{width:100px}}input::placeholder{color:#ccc}.WatchlistSymbolAdder-addButton{background-color:#005594;border-radius:4px;color:#fff;font-size:12px;font-weight:700;letter-spacing:.07em;padding:3px 5px}.WatchlistSymbolAdder-addButton:hover{background-color:#002f6c;color:#fff;cursor:pointer;font-size:12px;font-weight:700;letter-spacing:.07em}.WatchlistSymbolAdder-dropdownContent{background-color:#fff;border-radius:4px;color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-weight:500;position:absolute;text-align:left;white-space:normal;width:392px;z-index:5000}@media (max-width:759px){.WatchlistSymbolAdder-dropdownContent{padding:10px;width:270px}}.WatchlistSymbolAdder-dropdownContent table{border-collapse:collapse;table-layout:fixed;white-space:nowrap;width:100%}.WatchlistSymbolAdder-dropdownContent table td{font-size:16px;padding:6px 6px 6px 0}.WatchlistSymbolAdder-dropdownItem{border-bottom:1px solid #ccd6d8;color:#333;display:table-row;line-height:20px;padding:2px 0;text-decoration:none}.WatchlistSymbolAdder-dropdownItem:last-of-type{border-bottom:0}.WatchlistSymbolAdder-dropdownItem.WatchlistSymbolAdder-active,.WatchlistSymbolAdder-dropdownItem:hover{background-color:#d5dee2;cursor:pointer}.WatchlistSymbolAdder-dropdownItem .WatchlistSymbolAdder-symbolName{overflow:hidden;text-overflow:ellipsis;width:90px}.WatchlistSymbolAdder-dropdownItem .WatchlistSymbolAdder-companyName{overflow:hidden;text-overflow:ellipsis;width:auto}.WatchlistSymbolAdder-dropdownItem .WatchlistSymbolAdder-countryCode{padding-right:0;width:25px}.WatchlistSymbolAdder-dropdownContent.WatchlistSymbolAdder-hasHighlightedSymbol .WatchlistSymbolAdder-dropdownItem:hover{background-color:none}.WatchlistSymbolAdder-ghostDropdownCloser{bottom:0;left:0;position:fixed;right:0;top:0;z-index:98}.WatchlistSymbolAdder-watchlistPage{background:#fff;border:1px solid #9e9e9e;border-bottom-left-radius:6px;border-bottom-right-radius:6px;border-top-right-radius:6px;display:flex;margin-right:20px;padding:10px;position:absolute;top:35px;z-index:98}.WatchlistSymbolAdder-watchlistPage.WatchlistSymbolAdder-rightAlign{border-bottom-left-radius:6px;border-bottom-right-radius:6px;border-top-left-radius:6px;border-top-right-radius:0;right:0}@media (min-width:760px){.WatchlistSymbolAdder-watchlistPage.WatchlistSymbolAdder-rightAlign{margin-right:40px}}@media (min-width:1020px){.WatchlistSymbolAdder-watchlistPage.WatchlistSymbolAdder-rightAlign{margin-right:0}}.WatchlistSymbolAdder-watchlistPage .WatchlistSymbolAdder-searchOptions{border-bottom:1px solid #bababa;display:flex;justify-content:space-between;padding-bottom:8px}.WatchlistSymbolAdder-watchlistPage .WatchlistSymbolAdder-form{width:307px}.WatchlistSymbolAdder-watchlistPage .WatchlistSymbolAdder-form .WatchlistSymbolAdder-input{border:none;font-size:14px;font-weight:600;line-height:20px;padding:unset;text-transform:unset;width:85%}.WatchlistSymbolAdder-watchlistPage .WatchlistSymbolAdder-form .WatchlistSymbolAdder-dropdownContent{border:unset;box-shadow:unset;display:flex;padding:unset;padding-top:8px;position:inherit;width:auto;z-index:inherit}@media (max-width:759px){.WatchlistSymbolAdder-watchlistPage .WatchlistSymbolAdder-form{width:240px}}.WatchlistSymbolAdder-embedded .WatchlistSymbolAdder-form{width:100%}.WatchlistSymbolAdder-embedded .WatchlistSymbolAdder-form .WatchlistSymbolAdder-input{border:unset;border-bottom:1px solid #747474;border-radius:unset;color:#747474;font-size:12px;font-weight:600;letter-spacing:.15px;line-height:15px;margin-bottom:5px;text-transform:unset;width:100%}.WatchlistSymbolAdder-embedded .WatchlistSymbolAdder-form .WatchlistSymbolAdder-dropdownContent{border:1px solid #ccd6d8;box-shadow:0 1px 10px #d9d9d9;padding:8px;text-align:center;width:100%}.WatchlistSymbolAdder-embedded .WatchlistSymbolAdder-form .WatchlistSymbolAdder-dropdownContent table tr{line-height:16px}.WatchlistSymbolAdder-embedded .WatchlistSymbolAdder-form .WatchlistSymbolAdder-dropdownContent table tr td{font-size:14px}.EmbeddedWatchlist-container{display:flex;flex-direction:column;font-weight:800;height:100%;position:relative}.EmbeddedWatchlist-container,.EmbeddedWatchlist-container .EmbeddedWatchlist-notify{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal}.EmbeddedWatchlist-container .EmbeddedWatchlist-notify{color:#747474;font-weight:500;line-height:15px;padding:16px 0;text-align:center}.EmbeddedWatchlist-dropdownAnchor{position:relative}.icon-offsite-arrow{color:#9e9e9e;font-size:10px;font-weight:600}.EmbeddedWatchlist-dropdownButton{align-items:center;display:flex;justify-content:left;margin-bottom:18px;text-align:left;width:-moz-fit-content;width:fit-content;z-index:2}.EmbeddedWatchlist-dropdownButton:hover{cursor:pointer}.EmbeddedWatchlist-dropdownButton:hover h2{color:#071d39}.EmbeddedWatchlist-dropdownButton div{align-items:center;border-bottom:1px solid #002f6c;display:flex;height:33px;max-width:200px;min-width:118px}.EmbeddedWatchlist-dropdownButton svg{margin-left:5px;margin-right:5px}.EmbeddedWatchlist-watchlistName{color:#002f6c;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:18px;font-style:normal;font-weight:600;letter-spacing:.33px;line-height:20px;margin:unset;margin-left:5px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%}.EmbeddedWatchlist-chevron{border-radius:1px;border-style:solid;border-width:2px 2px 0 0;color:#005594;height:10px;margin-left:10px;margin-right:7px;position:relative;transform:rotate(135deg);width:12px}.EmbeddedWatchlist-dropdown{background:#fff;box-shadow:1px 4px 16px #00000029;padding:0 10px;position:absolute;top:-18px;width:200px;z-index:2}.EmbeddedWatchlist-watchlistDropdownLink,.EmbeddedWatchlist-watchlistTools{border-bottom:1px solid #ccc;color:#424242;cursor:pointer;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:600;letter-spacing:.05em;line-height:15px;max-height:25px;overflow:hidden;padding-bottom:5px;padding-top:5px;text-align:left;text-overflow:ellipsis;white-space:nowrap;width:100%;word-break:break-word}.EmbeddedWatchlist-watchlistDropdownLink.EmbeddedWatchlist-activeWatchlist,.EmbeddedWatchlist-watchlistTools.EmbeddedWatchlist-activeWatchlist{color:#336aa0}.EmbeddedWatchlist-addIcon{fill:#005594}.EmbeddedWatchlist-watchlistDropdownLink:focus,.EmbeddedWatchlist-watchlistDropdownLink:hover{color:#002f6c}.EmbeddedWatchlist-selectedWatchlist{color:#005594}.EmbeddedWatchlist-watchlistTools a:last-of-type{border-bottom:0}.EmbeddedWatchlist-watchlistTools a:last-of-type:focus,.EmbeddedWatchlist-watchlistTools a:last-of-type:hover{color:#002f6c;text-decoration:none}.EmbeddedWatchlist-watchlistTools{align-items:center;border:none;display:flex;justify-content:space-between}.EmbeddedWatchlist-watchlistTools:focus .EmbeddedWatchlist-watchlistDropdownLink{color:#005594;text-decoration:none}.EmbeddedWatchlist-watchlistTools a{color:#005594}.EmbeddedWatchlist-watchlistTools .EmbeddedWatchlist-watchlistDropdownLink{padding:unset}.EmbeddedWatchlist-watchlistTools .EmbeddedWatchlist-watchlistDropdownLink:hover{color:#171717}.EmbeddedWatchlist-ghostDropdownCloser{bottom:0;left:0;position:fixed;right:0;top:0;z-index:1}.EmbeddedWatchlist-addWatchlistContainer,.EmbeddedWatchlist-errorContainer{align-items:center;background:#f1f1f1;display:flex;flex-direction:column;height:240px;justify-content:center}@media (max-width:1339px){.EmbeddedWatchlist-addWatchlistContainer,.EmbeddedWatchlist-errorContainer{height:269px}}.EmbeddedWatchlist-addWatchlistContainer>p,.EmbeddedWatchlist-errorContainer>p{color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:600;letter-spacing:.05em;line-height:17px;margin-bottom:24px;margin-top:0;max-width:197px;text-align:center}.EmbeddedWatchlist-addWatchlistContainer>a,.EmbeddedWatchlist-errorContainer>a{align-items:center;background:#00a857;border-radius:3px;color:#fff;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;justify-content:center;letter-spacing:1.09091px;line-height:16px;min-height:40px;min-width:191px;text-transform:uppercase}.EmbeddedWatchlist-addWatchlistContainer>a:hover,.EmbeddedWatchlist-errorContainer>a:hover{background-color:#008456;color:#fff;text-decoration:none}.EmbeddedWatchlist-errorContainer>p{margin-bottom:unset;margin-top:unset}.EmbeddedWatchlist-linkContainer{display:flex;font-size:12px;font-style:normal;font-weight:500;justify-content:flex-end;line-height:15px;margin-right:10px;margin-top:13px}.EmbeddedWatchlist-linkContainer a{align-items:center;color:#005594;display:flex}.EmbeddedWatchlist-linkContainer a>div{margin-right:3px;text-decoration:underline}.EmbeddedWatchlist-linkContainer a:hover,.EmbeddedWatchlist-linkContainer a:hover .icon-offsite-arrow{color:#002f6c}.EmbeddedWatchlist-linkContainer .icon-offsite-arrow{color:#336aa0;font-size:9px;font-weight:800}.EmbeddedWatchlist-tableOptions{align-items:baseline;display:flex;flex-direction:row;justify-content:flex-end;margin-bottom:12px}.EmbeddedWatchlist-tableOptions a,.EmbeddedWatchlist-tableOptions button{color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:500;line-height:15px;-webkit-text-decoration-line:underline;text-decoration-line:underline}.EmbeddedWatchlist-tableOptions a:hover,.EmbeddedWatchlist-tableOptions button:hover{color:#002f6c}.EmbeddedWatchlist-tableOptions a:hover svg,.EmbeddedWatchlist-tableOptions button:hover svg{fill:#002f6c}.EmbeddedWatchlist-tableOptions a svg,.EmbeddedWatchlist-tableOptions button svg{margin-left:5px}.EmbeddedWatchlist-tableOptions a:first-child{margin-right:10px}.EmbeddedWatchlist-notificationContainer{right:0;top:86px}.EmbeddedWatchlist-notificationContainer .EmbeddedWatchlist-notification{background-color:#2077b6;border-radius:3px;box-shadow:0 1px 3px 1px #00000014;color:#fff;font-weight:700;line-height:16px;padding:10px;width:224px}.EmbeddedWatchlist-notificationContainer .EmbeddedWatchlist-notification.EmbeddedWatchlist-error{background-color:#ce2b2b;width:204px}.ArticleGate-proGate{display:flex;justify-content:flex-end;margin-bottom:50px;margin-left:0;padding-bottom:50px;position:relative;width:100%}.ArticleGate-proGate:before{background:linear-gradient(180deg,#fff0,#fff);bottom:calc(100% + 30px);content:"";height:160px;position:absolute;width:100%}.ArticleGate-proGate .ArticleGate-spacer{overflow:hidden;width:100%}@media (min-width:760px){.ArticleGate-proGate{margin-bottom:40px;padding-bottom:0}.ArticleGate-proGate:before{height:135px}.ArticleGate-proGate .ArticleGate-spacer{margin-left:16.66667%}}@media (min-width:1020px){.ArticleGate-proGate{margin-bottom:50px}.ArticleGate-proGate:before{height:105px}.ArticleGate-proGate .ArticleGate-spacer{margin-left:calc(14.28571% + 4.28571px)}}.ArticleGate-pianoGateWebview{position:relative}.ArticleGate-pianoGateWebview:before{background:linear-gradient(180deg,#fff0,#fff);bottom:calc(100% + 30px);content:"";height:160px;position:absolute;width:100%}@media (prefers-color-scheme:dark){.ArticleGate-pianoGateWebview:before{background:linear-gradient(180deg,#0000,#000)}}.ArticleGate-dynamicPaywall{display:flex;margin-bottom:50px}.ArticleGate-dynamicPaywall:before{background:none}.ArticleGate-dynamicPaywall .ArticleGate-spacer{overflow:hidden;width:100%}@media (min-width:760px){.ArticleGate-dynamicPaywall{margin-bottom:40px;padding-bottom:0}.ArticleGate-dynamicPaywall .ArticleGate-spacer{margin-left:16.66667%}}@media (min-width:1020px){.ArticleGate-dynamicPaywall{margin-bottom:50px}.ArticleGate-dynamicPaywall .ArticleGate-spacer{margin-left:calc(14.28571% + 4.28571px)}}.UpdatePill-updatePill{align-items:center;background:#ce2b2b;border-radius:14px;color:#fff;cursor:pointer;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;height:28px;justify-content:center;line-height:17px;margin-right:7.78px;pointer-events:auto;-webkit-user-select:none;user-select:none;width:120px}.UpdatePill-displayText{margin-left:7.78px}.BackToTopPill-pillContainer{align-items:center;background:#fff;border:2px solid #27313c;border-radius:60px;color:#27313c;cursor:pointer;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;height:28px;justify-content:center;line-height:17px;pointer-events:auto;-webkit-user-select:none;user-select:none;width:120px}.BackToTopPill-pillContainer svg{fill:#27313c}.BackToTopPill-backPillStickyPosition{align-items:center;display:block;display:flex;justify-content:center;pointer-events:none;position:sticky;right:0;top:0;z-index:95}.BackToTopPill-backPillStickyPosition .BackToTopPill-backPillVerticalOffset{pointer-events:none;position:relative;top:10px}.BackToTopPill-displayText{margin-left:5.78px;margin-top:-1px;padding-right:2px}.LiveCommentaryFeed-scrollContainer{height:100%;overflow-x:hidden;overflow-y:auto;position:relative;width:100%}.LiveCommentaryFeed-scrollContainer .LiveCommentaryFeed-fade:before{box-shadow:0 0 93px 93px #fff;content:"";display:block;height:.1px;pointer-events:none;position:sticky;top:100%;width:100%;z-index:1}@media (min-width:760px){.LiveCommentaryFeed-scrollContainer .LiveCommentaryFeed-fade:before{box-shadow:0 0 76px 76px #fff}}@media (min-width:1020px){.LiveCommentaryFeed-scrollContainer .LiveCommentaryFeed-fade:before{box-shadow:0 0 93px 93px #fff}}.LiveCommentaryFeed-slate,.LiveCommentaryFeed-slate a{color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:18px;font-style:normal;font-weight:600;line-height:24px}.LiveCommentaryFeed-slate{align-items:center;background-color:#f8f8f8;border:1px solid #d9d9d9;display:flex;flex-direction:column;height:100%;justify-content:center;padding:18px;text-align:center}.LiveCommentaryFeed-slate a{text-decoration:underline}.LiveCommentaryFeed-slate a:hover{color:#00a857}.LiveCommentaryFeed-slateContainer{border-top:3px solid #9e9e9e;height:120px}.LiveCommentaryFeed-slateContainer p{font-size:12px;line-height:20px;margin:0}.LiveCommentaryFeed-slateContainer p a{font-size:12px}.LiveCommentaryFeed-slateContainer p:first-child{font-size:14px}.LiveCommentaryFeed-slateContainer p:not(:first-child):not(:last-child){margin-top:8px}.LiveCommentaryFeed-slateContainer p:last-child{line-height:22px;margin-top:8px}@media (min-width:760px){.LiveCommentaryFeed-slateContainer p{font-size:16px;line-height:36px}.LiveCommentaryFeed-slateContainer p a{font-size:16px}.LiveCommentaryFeed-slateContainer p:first-child{font-size:18px;line-height:24px}.LiveCommentaryFeed-slateContainer p:not(:first-child):not(:last-child){margin-top:unset}.LiveCommentaryFeed-slateContainer p:last-child{line-height:28px}}@media (min-width:1020px){.LiveCommentaryFeed-slateContainer{margin-top:unset}.LiveCommentaryFeed-slateContainer p:not(:first-child):not(:last-child){line-height:58px}}@media (min-width:760px){.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-offline{height:180px}}@media (min-width:1020px){.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-offline{height:302px}}@media (min-width:1340px){.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-offline{height:425px}}.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-coverageEnded{height:0;overflow:visible;position:sticky;top:0;transform:translateY(-62px);z-index:90}.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-coverageEnded .LiveCommentaryFeed-slate{height:62px}@media (min-width:760px){.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-coverageEnded{transform:translateY(-120px)}.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-coverageEnded .LiveCommentaryFeed-slate{height:120px}}.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-shadow .LiveCommentaryFeed-slate{box-shadow:0 6px 4px -4px #c4c4c4}.LiveCommentaryFeed-coverageEndedFeedWrapper{padding-top:62px}@media (min-width:760px){.LiveCommentaryFeed-coverageEndedFeedWrapper{padding-top:120px}}.LiveCommentaryHeader-liveUpdatesPill{height:28px;margin-bottom:12px;text-align:center;width:142px}.LiveCommentaryHeader-liveUpdatesPill .LiveCommentaryHeader-liveUpdatesPillContent{background:#002f6c;color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-weight:600;height:100%;line-height:28px;margin:0;width:100%}.LiveCommentaryHeader-timestampContainer{align-items:baseline;height:18px;width:288px}@media (max-width:759px){.LiveCommentaryHeader-timestampContainer{flex-direction:column;margin-bottom:16px}}.LiveCommentaryHeader-liveCommentaryHeader{position:relative}.LiveCommentaryHeader-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(100% - 30px);max-width:100%;min-width:calc(100% - 30px);padding-left:2px;position:relative}@media (min-width:760px){.LiveCommentaryHeader-wrapper{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.LiveCommentaryHeader-wrapper{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.LiveCommentaryHeader-wrapper{max-width:100%;min-width:100%}}@media (min-width:1340px){.LiveCommentaryHeader-wrapper{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:760px){.LiveCommentaryHeader-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.LiveCommentaryHeader-wrapper{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.LiveCommentaryHeader-wrapper{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.LiveCommentaryHeader-wrapper{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.LiveCommentaryHeader-wrapper{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.LiveCommentaryHeader-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(88.88889% - 3.33333px);min-width:calc(88.88889% - 3.33333px)}}@media (min-width:1340px){.LiveCommentaryHeader-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(72.72727% + 21.81818px);min-width:calc(72.72727% + 21.81818px);padding-right:70px}}.LiveCommentaryHeader-headerContentContainer{margin:0 auto;position:relative}@media (min-width:760px){.LiveCommentaryHeader-headerContentContainer{padding:0}}@media (min-width:1020px){.LiveCommentaryHeader-headerContentContainer{max-width:960px}}@media (min-width:1340px){.LiveCommentaryHeader-headerContentContainer{max-width:1290px}}.LiveCommentaryHeader-liveBlogTimeStamp>div,.LiveCommentaryHeader-time,.LiveCommentaryHeader-timeHidden{color:#747474;font-size:11px;font-weight:600;letter-spacing:1.2px;margin-bottom:4px;margin-right:4px;text-transform:uppercase}.LiveCommentaryHeader-liveBlogTimeStamp>div time,.LiveCommentaryHeader-time time,.LiveCommentaryHeader-timeHidden time{white-space:nowrap}@media (min-width:760px){.LiveCommentaryHeader-liveBlogTimeStamp>div,.LiveCommentaryHeader-time,.LiveCommentaryHeader-timeHidden{font-size:12px;margin-bottom:6px}}.LiveCommentaryHeader-timeHidden{opacity:1}.LiveCommentaryHeader-datetimeDivider:before{content:"•";display:inline-block;padding:0 3px}.LiveCommentaryHeader-title{color:#171717;font-family:Proxima Nova,sans-serif;font-size:16px;font-style:normal;font-weight:700;letter-spacing:0;line-height:20px;margin:0 0 1px}@media (min-width:760px){.LiveCommentaryHeader-title{font-size:28px;line-height:32px;margin:0 0 6px}}@media (max-width:759px){.LiveCommentaryHeader-about.LiveCommentaryHeader-proUserAboutSection{display:none}}.LiveCommentaryHeader-about>div{color:#747474;font-family:Lyon,serif;font-size:18px;font-style:italic;font-weight:400;line-height:26px;margin-left:0;max-width:unset}@media (max-width:759px){.LiveCommentaryHeader-about>div{font-size:14px;line-height:20px}}.LiveCommentaryHeader-about>div p{margin-bottom:10px;margin-top:10px}.LiveCommentaryHeader-about>div p a{color:#747474;text-decoration:underline}.LiveCommentaryHeader-about>div p a:hover{color:#00a857}.PlayerSlate-slateOverlay{display:block;height:auto;top:0;width:100%;z-index:2}.PlayerSlate-clickable{cursor:pointer}.ProLivePlayer-container{aspect-ratio:16/9;background-color:#171717;width:100%}.ProLivePlayer-nofs .jw-icon-fullscreen{display:none!important}#jw-cnbc-live-stream-player .jw-text-live:before{color:#ce2b2b}#jw-cnbc-live-stream-player .jw-text-live.jw-dvr-live:before{color:#fff}#jw-cnbc-live-stream-player .jw-text-live.jw-dvr-live{color:#747474}#jw-cnbc-live-stream-player .jw-slider-time .jw-progress{background:#f2f2f2}.LiveCommentaryPlayer-container{background-color:#171717;left:0;padding-top:56.25%;position:relative;top:0;width:100%}@media (max-width:1019px){.LiveCommentaryPlayer-container{margin-bottom:16px}}.LiveCommentaryPopularQuotes-tableContainer{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='100%25' height='100%25' fill='none' stroke='%239E9E9EFF' stroke-dasharray='1, 2' stroke-linecap='square'/%3E%3C/svg%3E");display:flex;flex-direction:column;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:800;height:100%;padding:30px 18px}.LiveCommentaryPopularQuotes-title{border-top:3px solid #cfd8e2;color:#002f6c;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-style:bold;font-weight:700;line-height:20px;max-width:365px;padding:4px 0 20px}.ProLiveCommentary-outerContainer{align-items:center;display:flex;flex-direction:column;margin:0 auto;max-width:1290px;min-height:900px;padding:20px;width:100%}@media (min-width:760px){.ProLiveCommentary-outerContainer{padding:40px 20px}}@media (min-width:1020px){.ProLiveCommentary-outerContainer{padding:40px 0}}.ProLiveCommentary-nonProMainContainer,.ProLiveCommentary-proMainContainer{display:flex;flex-direction:column;width:100%}@media (min-width:1020px){.ProLiveCommentary-nonProMainContainer,.ProLiveCommentary-proMainContainer{flex-direction:row;margin:0 auto;max-width:960px}}@media (min-width:1340px){.ProLiveCommentary-nonProMainContainer,.ProLiveCommentary-proMainContainer{max-width:1290px}}.ProLiveCommentary-nonProMainContainer{flex-direction:column}.ProLiveCommentary-leftColumn{padding:0;width:100%}@media (min-width:1020px){.ProLiveCommentary-leftColumn{width:555px}}@media (min-width:1340px){.ProLiveCommentary-leftColumn{width:770px}}.ProLiveCommentary-rightColumn{height:700px;margin:0 auto;padding:0;width:100%}@media (min-width:1020px){.ProLiveCommentary-rightColumn{height:651px;margin:0 0 20px 26px;width:410px}}@media (min-width:1340px){.ProLiveCommentary-rightColumn{height:794px;width:520px}}.ProLiveCommentary-title{color:#171717;font-family:Proxima Nova,sans-serif;font-size:16px;font-style:normal;font-weight:700;letter-spacing:0;line-height:20px;margin:16px 0 12px}@media (min-width:760px){.ProLiveCommentary-title{font-size:28px;line-height:32px;margin:24px 0 12px}}.ProLiveCommentary-about>div{color:#747474;font-family:Lyon,serif;font-size:18px;font-style:italic;font-weight:400;line-height:26px;margin-left:0;max-width:unset}@media (max-width:759px){.ProLiveCommentary-about>div{font-size:14px;line-height:20px}}.ProLiveCommentary-about>div p{margin-bottom:10px;margin-top:10px}.ProLiveCommentary-about>div p a{color:#747474;text-decoration:underline}.ProLiveCommentary-about>div p a:hover{color:#00a857}@media (max-width:759px){.ProLiveCommentary-proMainContainer .ProLiveCommentary-about{display:none}}.ProLiveCommentary-headerAndMainContainer{display:flex;flex-direction:column;width:100%}.ProLiveCommentary-nonProTextContainer{width:100%}@media (min-width:1020px){.ProLiveCommentary-nonProTextContainer{max-width:648px}}@media (min-width:1340px){.ProLiveCommentary-nonProTextContainer{max-width:739px}}.ProLiveCommentary-nonProTextContainer .ProLiveCommentary-title{margin-top:0}@media (min-width:760px){.ProLiveCommentary-nonProTextContainer .ProLiveCommentary-title{margin-top:2px}}.ProLiveCommentary-nonProTextContainer .ProLiveCommentary-about{margin-bottom:-6px}@media (min-width:760px){.ProLiveCommentary-nonProTextContainer .ProLiveCommentary-about{margin-bottom:-2px}}.ProLiveCommentary-tableTitle{border-top:3px solid #cfd8e2;color:#002f6c;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-style:bold;font-weight:700;line-height:20px;padding:4px 0 20px}.ProLiveCommentary-symbolTablesContainer{display:flex;justify-content:space-between;margin-top:33px}.ProLiveCommentary-symbolTablesContainer>div:first-child{margin-right:9px}.ProLiveCommentary-symbolTablesContainer>div{flex-basis:0;flex-grow:1}@media (max-width:1019px){.ProLiveCommentary-symbolTablesContainer{display:none}}.ProLiveCommentary-symbolTablesContainer .ProLiveCommentary-popularQuotesContainer{margin-bottom:11px}@media (max-width:1339px){.ProLiveCommentary-symbolTablesContainer .ProLiveCommentary-popularQuotesContainer{height:269px}}.ProLiveCommentary-symbolTablesContainer .ProLiveCommentary-watchlistContainer{margin-bottom:11px}.ProLiveCommentary-symbolTablesContainer .ProLiveCommentary-popularQuotesContainer>div,.ProLiveCommentary-symbolTablesContainer .ProLiveCommentary-watchlistContainer>div{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='100%25' height='100%25' fill='none' stroke='%239E9E9EFF' stroke-dasharray='1, 2' stroke-linecap='square'/%3E%3C/svg%3E");padding:14px 18px}.PageBuilder-container{display:flex;flex-flow:column;height:calc(100vh - 110px);max-height:-webkit-fill-available;min-height:-webkit-fill-available;overflow:auto}.PageBuilder-container,.PageBuilder-container *{font-family:Proxima Nova,Helvetica,Arial,sans-serif!important}.PageBuilder-container .PageBuilder-filterManagerContainer{margin-bottom:132px;margin-top:-103px;order:2}.PageBuilder-container .PageBuilder-filterManagerContainer.PageBuilder-closed{height:0;opacity:0;position:fixed;top:1000px;visibility:hidden;width:0}@media screen and (max-width:1019px) and (orientation:landscape){.PageBuilder-container .PageBuilder-filterManagerContainer{margin-bottom:70px}}@media screen and (min-width:480px) and (orientation:portrait){.PageBuilder-container .PageBuilder-filterManagerContainer{margin-top:-120px}}@media (min-width:1020px){.PageBuilder-container .PageBuilder-filterManagerContainer{margin:0;order:1;padding:0}}.PageBuilder-container .PageBuilder-mainContentContainer{margin-bottom:70px;order:1;padding:20px 21px}@media screen and (min-width:480px) and (orientation:portrait){.PageBuilder-container .PageBuilder-mainContentContainer{padding:41px 41px 20px}}@media screen and (max-width:759px) and (orientation:landscape){.PageBuilder-container .PageBuilder-mainContentContainer{padding:20px 21px}}@media screen and (min-width:480px) and (orientation:portrait){.PageBuilder-container{height:calc(100vh - 170px);max-height:-webkit-fill-available;min-height:-webkit-fill-available;overflow:hidden}}@media (min-width:1020px){.PageBuilder-container{flex-flow:row;height:auto;margin-bottom:0;overflow-x:hidden}.PageBuilder-container .PageBuilder-filterManagerContainer{animation:PageBuilder-slideIn .35s ease-out}.PageBuilder-container .PageBuilder-filterManagerContainer.PageBuilder-closed{animation:PageBuilder-slideOutPanel .35s ease-out;animation-fill-mode:forwards;opacity:1;position:static;visibility:visible}.PageBuilder-container .PageBuilder-mainContentContainer{flex:auto;margin-left:50px;order:2;padding:0 38px 0 16px;position:relative}.PageBuilder-container .PageBuilder-ep{animation:PageBuilder-slideOutMainContent .35s ease-out}.PageBuilder-container .PageBuilder-defaultViewOpen{animation:PageBuilder-slideIn .35s ease-out;padding:0 20px 0 16px}.PageBuilder-container .PageBuilder-defaultViewOpenSelected{animation:PageBuilder-slideIn .35s ease-out;padding:0 0 0 16px}.PageBuilder-container .PageBuilder-defaultViewCloseSelected{animation:PageBuilder-slideOutMainContent .35s ease-out;padding:0 0 0 16px}}@media (min-width:1340px){.PageBuilder-container .PageBuilder-mainContentContainer{padding:0 33px 0 16px}.PageBuilder-container .PageBuilder-defaultViewOpen{animation:PageBuilder-slideIn .35s ease-out;padding:0 23px 0 16px}.PageBuilder-container .PageBuilder-defaultViewOpenSelected{animation:PageBuilder-slideIn .35s ease-out;padding:0 0 0 16px}.PageBuilder-container .PageBuilder-ep{animation:PageBuilder-slideOutMainContent .35s ease-out}}@media (min-width:1850px){.PageBuilder-container .PageBuilder-mainContentContainer{padding:0 277px 0 237px}.PageBuilder-container .PageBuilder-defaultViewOpen{animation:PageBuilder-slideInWide .35s ease-out;padding:0 277px 0 16px}.PageBuilder-container .PageBuilder-defaultViewOpenSelected{animation:PageBuilder-slideInWide .35s ease-out;padding:0 0 0 16px}.PageBuilder-container .PageBuilder-defaultViewCloseSelected{animation:PageBuilder-slideOutMainContent .35s ease-out;padding:0 43px 0 16px}.PageBuilder-container .PageBuilder-ep{animation:PageBuilder-slideOutMainContentWide .35s ease-out;padding-left:237px}}@keyframes PageBuilder-slideIn{0%{transform:translateX(-300px)}to{transform:translateX(0)}}@keyframes PageBuilder-slideOutPanel{0%{transform:translateX(0)}to{transform:translateX(-300px)}}@keyframes PageBuilder-slideOutMainContent{0%{transform:translateX(300px)}to{transform:translateX(0)}}@keyframes PageBuilder-slideInWide{0%{transform:translateX(-100px)}to{transform:translateX(0)}}@keyframes PageBuilder-slideOutMainContentWide{0%{transform:translateX(100px)}to{transform:translateX(0)}}.StockScreenerPage-container{min-height:500px}.PortfolioNews-container{container-type:inline-size;container-name:outerCard;background-color:#fff;border-radius:4px;box-shadow:0 6px 24px 0 #82828226;color:#171717;flex:1;font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin-bottom:30px;padding:12px;width:100%}.PortfolioNews-header{align-items:center;display:flex;flex-direction:row;justify-content:space-between}.PortfolioNews-headerTitle{font-size:20px;font-weight:600;letter-spacing:.03px;line-height:26px}.PortfolioNews-ctaLinkContainer{align-items:center;color:#0053cf;display:flex;flex-direction:row;gap:8px}.PortfolioNews-ctaLinkContainer .PortfolioNews-chevronDownImage{fill:#0053cf}.PortfolioNews-ctaLinkContainer:focus,.PortfolioNews-ctaLinkContainer:hover{color:#001e5a}.PortfolioNews-ctaLinkContainer:focus .PortfolioNews-chevronDownImage,.PortfolioNews-ctaLinkContainer:hover .PortfolioNews-chevronDownImage{fill:#001e5a}.PortfolioNews-ctaTitle{font-size:12px;font-weight:600;letter-spacing:0;line-height:15px}.PortfolioNews-chevronDownImage{fill:#0053cf}.PortfolioNews-containerSubheader{color:#171717;font-size:12px;font-weight:500;line-height:16px;padding:20px 0}.PortfolioNews-asset{display:flex;flex-direction:row;padding:10px 0}.PortfolioNews-asset:not(:last-child){border-bottom:1px dashed #9e9e9e}.PortfolioNews-infoContainer{flex:1;padding-right:8px}.PortfolioNews-tag{color:#0053cf;font-size:12px;font-weight:700;letter-spacing:1.5px;line-height:16px;text-transform:uppercase}.PortfolioNews-tag:focus,.PortfolioNews-tag:hover{color:#001e5a}.PortfolioNews-articleTitle{-webkit-line-clamp:2;-webkit-box-orient:vertical;color:#171717;display:-webkit-box;font-weight:500;letter-spacing:.03px;margin-bottom:20px;max-width:100%;overflow:hidden}.PortfolioNews-articleTitle:hover{color:#171717;text-decoration:underline}.PortfolioNews-assetFooter{align-items:flex-start;display:flex;flex-direction:column;gap:12px;justify-content:flex-end;padding:0}.PortfolioNews-date{align-items:flex-end;color:#424242;display:flex;font-size:12px;font-weight:600;letter-spacing:1.5px;line-height:16px;text-transform:uppercase;white-space:nowrap}.PortfolioNews-videoIndicator{background-color:#fcb700;display:inline-block;height:16px;margin-bottom:4px;margin-right:4px;position:relative;vertical-align:middle;width:16px}.PortfolioNews-videoIndicator:after{border-bottom:3px solid #0000;border-left:5px solid #fff;border-top:3px solid #0000;content:"";height:0;left:6px;position:absolute;top:5px;width:0}.PortfolioNews-investingClubPill,.PortfolioNews-proPill{bottom:-2px!important}.PortfolioNews-imageContainer{height:78px;max-height:78px;max-width:138.6px;min-height:78px;min-width:138.6px;overflow:hidden;width:138.6px}.PortfolioNews-imageContainer img{object-fit:cover;position:relative;top:50%;transform:translateY(-50%)}.PortfolioNews-bold{font-weight:600}.PortfolioNews-forMore{padding-top:50px}.PortfolioNews-forMoreLink{color:#0053cf;font-weight:600}.PortfolioNews-forMoreLink:focus,.PortfolioNews-forMoreLink:hover{color:#001e5a}@container outerCard (max-width: 385px){.PortfolioNews-imageContainer{display:none}}.PortfolioMovers-container{background-color:#fff;border-radius:4px;box-shadow:0 6px 24px 0 #82828226;color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin-bottom:30px;padding:12px;width:100%}@media (min-width:760px){.PortfolioMovers-containerHeader{align-items:center;display:flex;justify-content:space-between}}.PortfolioMovers-headerTitle{color:#171717;font-size:20px;font-weight:600;line-height:26px}.PortfolioMovers-headerTime{color:#424242;font-size:10px;font-weight:600}@media (max-width:759px){.PortfolioMovers-headerTime{padding-top:20px}}.PortfolioMovers-listsContainer{display:flex;flex-wrap:wrap;gap:16px;padding-top:20px}.PortfolioMovers-moversList{display:flex;flex:1;flex-direction:column;min-width:240px}.PortfolioMovers-tableHeader{font-size:14px;font-weight:600;line-height:18px;padding:8px}.PortfolioMovers-tableContainer{width:100%}.PortfolioMovers-dataContainer{background:#f8f8f8;padding:8px}.PortfolioMovers-dataContainer:nth-child(2n){background:#fff}.PortfolioMovers-dataRow{display:flex;justify-content:space-between}.PortfolioMovers-dataRow:first-child{padding-bottom:8px}.PortfolioMovers-symbolName{color:#0053cf;cursor:pointer;font-size:12px;font-weight:500;line-height:16px}.PortfolioMovers-symbolName:focus,.PortfolioMovers-symbolName:hover{color:#001e5a}.PortfolioMovers-companyName{font-size:12px;overflow:hidden;padding-right:8px;text-overflow:ellipsis;white-space:nowrap}.PortfolioMovers-triangle-DOWN,.PortfolioMovers-triangle-UP{border-left:4px solid #0000;border-right:4px solid #0000;height:0;position:relative;width:0}.PortfolioMovers-triangle-UP{border-bottom:8px solid #0a6630;bottom:11px}.PortfolioMovers-triangle-DOWN{border-top:8px solid #ce2b2b;top:11px}.PortfolioMovers-quoteChange{font-size:12px;font-weight:500;line-height:16px}.PortfolioMovers-quoteChange-UP{color:#0a6630}.PortfolioMovers-quoteChange-DOWN{color:#ce2b2b}.PortfolioMovers-changeValue{padding:0 5px 0 8px}.PortfolioMovers-changeValue:empty{padding:0 0 0 8px}.PortfolioMovers-lastPrice{color:#171717;font-size:12px;font-weight:600;line-height:16px}.PortfolioCalendarEvent-eventRow{background-color:#f8f8f8;border-radius:4px;display:block;font-size:12px;height:33px;line-height:33px;overflow:hidden;padding:0 10px;text-align:left;text-overflow:ellipsis;white-space:nowrap;width:100%}.PortfolioCalendarEvent-eventRow:hover{background-color:#f1f1f1}.PortfolioCalendarEvent-eventRow:not(:last-child){margin-bottom:2px}.PortfolioCalendarEvent-categoryDot{border-radius:100%;display:inline-block;height:8px;margin-right:4px;pointer-events:none;vertical-align:middle;width:8px}.PortfolioCalendarEvent-symbol{color:#171717;display:inline-block;font-size:14px;font-weight:500;padding:0 10px;vertical-align:middle;width:80px}.PortfolioCalendarEvent-label{color:#171717;display:inline-block;overflow:hidden;text-overflow:ellipsis;text-transform:capitalize;vertical-align:middle;white-space:nowrap}.PortfolioCalendarFilterButton-filterButton{background-color:#fff;border:1px solid #424242;border-radius:100px;color:#171717;font-size:12px;height:20px;margin:5px 0;padding:0 8px}.PortfolioCalendarFilterButton-filterButton[data-selected=true]{background-color:#171717;color:#fff}.PortfolioCalendarFilterButton-filterButton:disabled{cursor:default}.PortfolioCalendarFilterButton-filterButton:not(:last-child){margin-right:5px}.PortfolioCalendarFilterButton-categoryDot{border-radius:100%;display:inline-block;height:8px;margin-right:4px;pointer-events:none;width:8px}.PortfolioCalendar-container{container-type:inline-size;container-name:outerCard;background-color:#fff;border-radius:4px;box-shadow:0 6px 24px 0 #82828226;color:#171717;flex:1;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:0;margin-bottom:30px;padding:12px;width:100%}.PortfolioCalendar-containerHeader{color:#171717;font-size:20px;font-weight:600;line-height:26px}.PortfolioCalendar-containerSubheader{color:#171717;font-size:12px;font-weight:500;line-height:16px;padding:20px 0}.PortfolioCalendar-calendarWrapper,.PortfolioCalendar-listWrapper{display:inline-block;font-size:12px;height:488px;vertical-align:top;width:50%}.PortfolioCalendar-listWrapper{padding-left:10px;padding-top:40px;position:relative}.PortfolioCalendar-filterRow{height:48px;min-width:360px;overflow-x:auto;overflow-y:hidden;padding-left:10px;position:absolute;right:0;top:0;white-space:nowrap;width:100%}.PortfolioCalendar-list{font-size:16px;height:100%;overflow-x:hidden;overflow-y:auto;position:relative}.PortfolioCalendar-emptyList{padding:20px 10px}.PortfolioCalendar-listItem{line-height:28px;padding:10px 0;text-transform:capitalize}.PortfolioCalendar-listItem:last-child:not(:only-child){margin-bottom:360px}.PortfolioCalendar-listItemHeader{height:36px;line-height:20px;padding:8px 10px}.PortfolioCalendar-listItemDate{font-weight:600}.PortfolioCalendar-eventCount{border:1px solid #008456;border-radius:100%;color:#008456;float:right;font-size:12px;font-weight:500;height:20px;line-height:18px;text-align:center;width:20px}.PortfolioCalendar-muiCalendar{height:auto!important;max-height:none!important;width:auto!important}.PortfolioCalendar-muiCalendarHeader{margin-bottom:20px!important;margin-top:0!important;padding:0!important}.PortfolioCalendar-muiCalendarHeader div:empty{width:0!important}.PortfolioCalendar-muiCalendarHeader div[role=presentation]{margin-right:0!important;width:130px!important}.PortfolioCalendar-muiCalendarHeader button[title="Next month"],.PortfolioCalendar-muiCalendarHeader button[title="Previous month"]{border-radius:50%!important;margin:0!important;padding:0!important}.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) button:not([aria-selected=true]):focus{background-color:inherit!important}.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) div[role=presentation]{min-height:360px!important}.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) div[role=rowgroup]{bottom:0!important;left:0!important;right:0!important;top:0!important}.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) div[role=row]:not(:last-child){margin-bottom:26px!important}.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) [role=gridcell]{margin:0!important}.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) [role=columnheader]{min-width:36px!important}.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) [role=columnheader],.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) span:has([role=gridcell]){margin:0!important}.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) [role=columnheader]:not(:last-child),.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) span:has([role=gridcell]):not(:last-child){margin-right:calc(14% - 34px)!important}@container outerCard (max-width: 568px){.PortfolioCalendar-calendarWrapper{height:auto;width:100%}.PortfolioCalendar-listWrapper{padding-left:0;width:100%}.PortfolioCalendar-filterRow{min-width:0;padding-left:0}.PortfolioCalendar-listItem:last-child:not(:only-child){margin-bottom:0}.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) *{display:none}}.PortfolioHoldingsTable-container{background-color:#fff;border-radius:4px;box-shadow:0 6px 24px 0 #82828226;color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin-bottom:30px;min-height:304px;padding:12px;width:100%}.PortfolioHoldingsTable-containerHeader{color:#171717;font-size:20px;font-weight:600;line-height:26px}.PortfolioHoldingsTable-containerSubheader{color:#171717;font-size:12px;font-weight:500;line-height:16px;padding:20px 0}.PortfolioOverview-container{color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin:30px 0}.PortfolioOverview-containerHeader{font-size:28px;font-weight:700;line-height:32px}.PortfolioOverview-containerSubheader{color:#424242;font-size:12px;font-weight:500;line-height:16px;padding:20px 0 40px}.PortfolioOverview-aggregateHeader{font-size:16px;font-weight:400;line-height:20px;padding-bottom:20px;text-transform:uppercase}.PortfolioOverview-aggregateContainer{padding-bottom:80px}.PortfolioOverview-aggregateColumn{display:inline-block;vertical-align:top}.PortfolioOverview-aggregateMarketValue{font-size:56px;font-weight:500;line-height:60px}.PortfolioOverview-aggregateMarketValueText{color:#424242;font-size:16px;font-weight:500;line-height:16px;text-align:right}.PortfolioOverview-aggregateChangePercent{font-size:24px;font-weight:500;line-height:30px;padding-left:40px;vertical-align:middle}.PortfolioOverview-aggregateChangePercentText{font-size:16px;font-weight:500;letter-spacing:2.5px;line-height:27px;padding-left:10px;vertical-align:middle}.PortfolioOverview-listContainer{color:#171717;display:flex;flex-direction:row;gap:15px;overflow-x:auto;overflow-y:hidden;padding-bottom:10px;width:100%}.PortfolioOverview-sticky{background-color:#f8f8f8;display:flex;flex-direction:column;justify-content:center;left:0;position:sticky;z-index:2}.PortfolioOverview-sticky:after{background-color:inherit;content:"";height:10px;left:0;position:absolute;top:100%;width:100%}.PortfolioOverview-linkAccountButton{color:#0a6630;cursor:pointer;display:inline-block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:30px;font-weight:500;height:34px;width:34px}.PortfolioOverview-portfolioCardContainer{background:#fff;border:1px solid #0000;border-radius:8px;display:flex;flex-direction:row;flex-shrink:0;gap:8px;min-width:200px;padding:8px;position:relative;text-align:left;white-space:nowrap}.PortfolioOverview-portfolioCardContainer:after{background-color:initial;border-radius:12px;bottom:-8px;content:"";display:block;height:4px;left:0;pointer-events:none;position:absolute;width:100%}.PortfolioOverview-portfolioCardContainer:disabled{box-shadow:0 6px 24px 0 #82828226;color:#171717;cursor:default}.PortfolioOverview-portfolioCardContainer:disabled:after{background-color:#0a6630}.PortfolioOverview-portfolioCardContainer:hover:not(:disabled){border-color:#9e9e9e;box-shadow:0 2px 4px 0 #82828233}.PortfolioOverview-portfolioCardContainer:hover:not(:disabled):after{background-color:#9e9e9e}.PortfolioOverview-brokerageIcon{height:24px;position:relative;top:50%;transform:translateY(-50%);width:24px}.PortfolioOverview-portfolioCardColumn{display:flex;flex-direction:column;font-size:12px;gap:8px;line-height:16px}.PortfolioOverview-portfolioCardColumn:last-child{margin-left:auto}.PortfolioOverview-brokerageName{max-width:100px;overflow:hidden;text-overflow:ellipsis}.PortfolioOverview-portfolioCardMarketValue{font-size:16px;font-weight:500}.PortfolioOverview-portfolioCardChange{font-weight:500}.PortfolioOverview-portfolioCardToday{font-size:10px;font-weight:600;letter-spacing:1.5px}.PortfolioOverview-positiveChange{color:#0a6630}.PortfolioOverview-negativeChange{color:#ce2b2b}.SegmentDataAllocation-segment{display:flex;margin-bottom:12px}.SegmentDataAllocation-tileSegment{background:#0471e6;border-radius:2px;display:flex;height:16px;width:16px}.SegmentDataAllocation-segmentName{color:#171717;font-size:12px;font-weight:700;line-height:16px;margin-left:10px;text-transform:uppercase}.SegmentDataAllocation-segmentPercentContainer,.SegmentDataAllocation-segmentPercentData{color:#171717;font-size:12px;font-weight:700;line-height:16px;margin-left:auto}.SegmentDataAllocation-segmentPercentContainer{display:flex;gap:16px}.SegmentDataAllocation-sectorPercentData{color:#171717;font-size:12px;font-weight:700;line-height:16px}.SegmentDataAllocation-chevron{background:#171717;cursor:pointer;height:8px;mask-image:url(https://static-redesign.cnbcfm.com/dist/6d2e721986ddae3d97e6.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/6d2e721986ddae3d97e6.svg);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;position:relative;top:3.5px;width:15px}.SegmentDataAllocation-chevronOpen{transform:scaleY(-1)}.SegmentDataAllocation-disabledTile{background-color:#878eb6;cursor:default}.SegmentDataAllocation-disabled{color:#747474}.SegmentDataAllocation-industryTile{margin-left:8px}.DataTileGrid-gridContainer{container-type:inline-size;container-name:gridDataContainer;align-content:flex-start;display:flex;flex-direction:column;flex-wrap:wrap;height:70px;justify-content:flex-start;margin:0 auto 20px;max-width:386px}.DataTileGrid-gridItem{align-items:center;background-color:#ccc;display:flex;height:12px;justify-content:center;margin:1px;text-align:center;width:17px}@container gridDataContainer (max-width: 300px){.DataTileGrid-gridItem{height:12px;width:12px}}.Composition-container{background:#fff;margin-bottom:30px;padding:10px 12px 30px}.Composition-containerHeader{font-size:20px;font-weight:600;line-height:26px;padding-bottom:18px}.Composition-description{font-size:12px;font-weight:600;line-height:16px;padding-bottom:20px}.Composition-buttonContainer{display:flex;gap:12px;margin-bottom:20px}.Composition-buttonAssetSector{border:1px solid #001e5a;border-radius:100px;color:#001e5a;display:flex;font-size:12px;font-weight:400;line-height:16px;padding:2px 3px}.Composition-buttonAssetSector.Composition-selected,.Composition-buttonAssetSector:hover{background-color:#001e5a;color:#fff}.PortfolioLinkAccountGate-mainContainer{padding:40px 0}.PortfolioLinkAccountGate-leadContainer{background-image:url(https://static-redesign.cnbcfm.com/dist/66c912ab17167b75719a.svg);background-position:right 20px;background-repeat:no-repeat;box-shadow:0 6px 24px 0 #82828226;margin-bottom:40px;width:100%}.PortfolioLinkAccountGate-leadPropsContainer{display:flex;flex-direction:row;padding:65px 25px 0}.PortfolioLinkAccountGate-leadHeading{color:#101418;font-size:48px;font-weight:700;line-height:36px}.PortfolioLinkAccountGate-sublead{color:#424242;font-size:24px;font-weight:400;line-height:36px}.PortfolioLinkAccountGate-linkButton,.PortfolioLinkAccountGate-linkButtonFooter{background-color:#008456;border-radius:4px;color:#fff;font-size:18px;font-weight:700;height:50px;letter-spacing:.04em;line-height:18px;width:354px}.PortfolioLinkAccountGate-linkButton:hover,.PortfolioLinkAccountGate-linkButtonFooter:hover{background-color:#005034}.PortfolioLinkAccountGate-linkButtonFooter{width:100%}.PortfolioLinkAccountGate-leadHeadingContainer{display:flex;flex-basis:0;flex-direction:column;flex-grow:1;gap:40px;min-width:0}.PortfolioLinkAccountGate-leadLogo{align-items:center;display:flex;flex-basis:0;flex-grow:1;justify-content:center;min-width:0}.PortfolioLinkAccountGate-leadFooterContainer{align-items:flex-end;display:flex;flex-direction:column;gap:8px;margin-right:25px;padding-bottom:16px}.PortfolioLinkAccountGate-leadFooterLogoContainer{display:flex;flex-direction:row;gap:8px}.PortfolioLinkAccountGate-contentContainer{display:flex;flex-direction:column;gap:40px}.PortfolioLinkAccountGate-valuePropRowContainer{display:flex;flex-direction:row;gap:20px}.PortfolioLinkAccountGate-valuePropContainer{background-color:#fff;box-shadow:0 6px 24px 0 #82828226;display:flex;flex-basis:0;flex-direction:column;flex-grow:1;gap:24px;min-width:0}.PortfolioLinkAccountGate-valuePropHeading{align-items:center;color:#171717;display:flex;font-size:24px;font-weight:700;gap:8px;line-height:36px;padding:24px 24px 0}.PortfolioLinkAccountGate-valuePropDescription{color:#424242;font-size:16px;font-weight:500;line-height:20.8px;padding:24px 24px 0;text-align:left}.PortfolioLinkAccountGate-valuePropImageContainer{align-items:center;display:flex;height:168px;margin:auto}.PortfolioLinkAccountGate-valuePropLink{align-items:center;color:#101418;display:flex;flex-direction:row;font-size:16px;font-weight:600;gap:8px;justify-content:flex-end;letter-spacing:.03px;line-height:26px;margin:0 25px 25px 0}.PortfolioLinkAccountGate-valuePropImageContainer>img{width:100%}.PortfolioContainer-containerFluidWidths{margin:0 auto;width:100%}@media (min-width:1020px){.PortfolioContainer-containerFluidWidths{max-width:960px}}@media (min-width:1340px){.PortfolioContainer-containerFluidWidths{max-width:1290px}}.PortfolioContainer-page{display:block;margin-bottom:25px;overflow:visible}@media (min-width:760px){.PortfolioContainer-page{margin-bottom:28px}}.PortfolioContainer-pageWrapper{margin:0 auto;max-width:100%}@media (min-width:760px){.PortfolioContainer-pageWrapper{max-width:678px}}@media (min-width:1020px){.PortfolioContainer-pageWrapper{max-width:960px}}@media (min-width:1340px){.PortfolioContainer-pageWrapper{max-width:1290px}}@media (min-width:760px){.PortfolioContainer-pageWrapper{max-width:100%!important}}.PortfolioContainer-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.PortfolioContainer-pageRow{padding-left:0;padding-right:0}}@media (min-width:1020px){.PortfolioContainer-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}}@media (min-width:1020px) and (min-width:760px){.PortfolioContainer-pageRow{padding-left:0;padding-right:0}}@media (max-width:1019px){.PortfolioContainer-pageRow{margin:0;padding:0}}@media (min-width:360px) and (max-width:759px){.PortfolioContainer-pageRow.PortfolioContainer-containerFluidWidths{padding:0 21px}}@media (min-width:760px) and (max-width:1019px){.PortfolioContainer-pageRow.PortfolioContainer-containerFluidWidths{padding:0 45px}}.PortfolioContainer-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.PortfolioContainer-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.PortfolioContainer-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.PortfolioContainer-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.PortfolioContainer-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.PortfolioContainer-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.PortfolioContainer-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.PortfolioContainer-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}.PortfolioContainer-containerFluidWidths .PortfolioContainer-col{max-width:678px!important;min-width:678px}}@media (min-width:760px){.PortfolioContainer-col-3{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.PortfolioContainer-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.PortfolioContainer-col-3{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.PortfolioContainer-col-3{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.PortfolioContainer-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.PortfolioContainer-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}.PortfolioContainer-col-3:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.PortfolioContainer-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}@media (min-width:760px){.PortfolioContainer-col-4{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.PortfolioContainer-col-4{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.PortfolioContainer-col-4{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.PortfolioContainer-col-4{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.PortfolioContainer-col-4{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.PortfolioContainer-col-4{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}.PortfolioContainer-col-4:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.PortfolioContainer-col-4{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}}@media (min-width:760px){.PortfolioContainer-col-6{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.PortfolioContainer-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.PortfolioContainer-col-6{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.PortfolioContainer-col-6{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.PortfolioContainer-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.PortfolioContainer-col-6{flex-grow:0;flex-shrink:0;margin-left:0;margin-right:0;max-width:calc(44.44444% - 16.66667px);min-width:calc(44.44444% - 16.66667px)}.PortfolioContainer-col-6:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.PortfolioContainer-col-6{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(50% - 15px);min-width:calc(50% - 15px)}}@media (min-width:760px){.PortfolioContainer-col-8{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.PortfolioContainer-col-8{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.PortfolioContainer-col-8{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.PortfolioContainer-col-8{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.PortfolioContainer-col-8{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.PortfolioContainer-col-8{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.PortfolioContainer-col-8:last-child{margin-right:0}}@media (min-width:1340px){.PortfolioContainer-col-8{flex-grow:0;flex-shrink:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}}@media (min-width:760px){.PortfolioContainer-col-9{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.PortfolioContainer-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.PortfolioContainer-col-9{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.PortfolioContainer-col-9{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.PortfolioContainer-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.PortfolioContainer-col-9{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.PortfolioContainer-col-9:last-child{margin-right:0}}@media (min-width:1340px){.PortfolioContainer-col-9{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}}@media (min-width:760px){.PortfolioContainer-col-12{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.PortfolioContainer-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.PortfolioContainer-col-12{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.PortfolioContainer-col-12{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.PortfolioContainer-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.PortfolioContainer-col-12{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.PortfolioContainer-col-12:last-child{margin-right:0}}@media (min-width:1340px){.PortfolioContainer-col-12{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}.PortfolioContainer-col-full{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.PortfolioContainer-col-full .MyComponentName-container{width:100vw}@media (min-width:1340px){.PortfolioContainer-col-full .MyComponentName-container{max-width:none}}.PortfolioContainer-col-full:last-child{margin-right:0}.PortfolioPage-pageBackground{background-color:#f8f8f8}.PortfolioPage-container{min-height:500px}@media (min-width:1020px){.PortfolioPage-container{margin:0 auto;max-width:100%}}@media (min-width:1020px) and (min-width:760px){.PortfolioPage-container{max-width:678px}}@media (min-width:1020px) and (min-width:1020px){.PortfolioPage-container{max-width:960px}}@media (min-width:1020px) and (min-width:1340px){.PortfolioPage-container{max-width:1290px}}.omega_tapToUnmuteBtn{align-items:center;background:#fcb700;border:0;display:flex;height:44px;justify-content:center;margin:15px 0 0 15px;padding:0;width:44px;z-index:var(--z-index-tap-to-unmute);.omega_tapToUnmuteBtn-icon{color:#071d39;height:22px;width:22px}}.omega_rackWithDVR{align-items:center;bottom:0;box-sizing:border-box;display:grid;gap:10px 25px;grid-template-columns:repeat(5,auto) 1fr repeat(2,auto);opacity:0;padding:15px;position:fixed;transition:var(--fade-transition);width:100%;z-index:var(--z-index-control-rack);&.omega_rackWithDVR-show{opacity:1;transition:none}.omega_slider{&.omega_slider-scrubber{grid-column:1/-1;grid-row:1;justify-self:center}}.omega_btnSubtitle,.omega_btnSubtitleVOD,.omega_playPauseDesktop,.omega_playPauseMobile,.omega_rewind{align-items:center;background:#0000;border:none;display:flex;height:100%;justify-content:center;padding:0;&:focus{outline:none}}.omega_btnSubtitleVOD{justify-content:end}}.omega_volume{--volumeTransition:0.05s ease-in-out 0.5s;align-items:center;display:flex;&:hover{.omega_volume-muteBtn{margin:0 6px 0 0;transition-delay:0s}.omega_volume-container{transition-delay:0s;visibility:visible;width:88px}}.omega_volume-muteBtn{border:none;margin:0;padding-left:24px;transition:margin var(--volumeTransition)}.omega_volume-container{align-items:center;transition:width var(--volumeTransition),visibility var(--volumeTransition);visibility:hidden;width:0}}.omega_time{font-size:14px;letter-spacing:1.2px}.omega_liveBtn{align-items:center;display:flex;gap:8px;.omega_liveBtn-dot{background:red;border-radius:100%;display:block;height:8px;width:8px}.omega_liveBtn-label{font-size:14px;font-weight:700;letter-spacing:1.1px;line-height:normal;text-transform:uppercase}}.omega_slider{--sliderColor:#888;--sliderProgressColor:#fff;--sliderThumbColor:var(--sliderProgressColor);--sliderProgress:linear-gradient(to right,var(--sliderProgressColor) 0% var(--sliderPosition),var(--sliderColor) var(--sliderPosition) 100%);--sliderThumbShadow:0 1px 2px #00000040;--sliderThumbSize:15px;--sliderTrackHeight:5px;appearance:none;background:#0000;cursor:pointer;justify-self:center;width:100%;&::-webkit-slider-runnable-track{appearance:none;background:var(--sliderProgress);height:var(--sliderTrackHeight)}&::-webkit-slider-thumb{appearance:none;background:var(--sliderThumbColor);border:none;border-radius:100%;box-shadow:var(--sliderThumbShadow);height:var(--sliderThumbSize);margin-top:-5px;width:var(--sliderThumbSize)}&::-moz-range-track{background:var(--sliderColor);height:var(--sliderTrackHeight)}&::-moz-range-progress{background:var(--sliderProgressColor);height:var(--sliderTrackHeight)}&::-moz-range-thumb{background:var(--sliderThumbColor);border:none;border-radius:100%;box-shadow:var(--sliderThumbShadow);height:var(--sliderThumbSize);width:var(--sliderThumbSize)}}:root{--fade-transition:opacity 0.667s ease-in-out;--z-index-omega-overlay:50}.omega_aspectRatioContainer{margin:auto}.omega_videoContainer{container-name:video-container dvr-rack;container-type:size;--z-index-video:0;--z-index-captions:10;--z-index-control-rack-backdrop:20;--z-index-control-rack:30;--z-index-pip-close:30;--z-index-tap-to-unmute:40;--transition-backdrop-fade:var(--fade-transition);color:#fff;font-family:FoundersGroteskCond,Arial Narrow,Arial,sans-serif;height:100%;left:0;max-height:100vh;position:absolute;top:0;width:100%}.omega_videoContainer button{color:#fff}@container video-container (max-width: 312px){.omega_playPauseDesktop{display:none}}.omega_playPauseMobile{display:none}.omega_volume-container{display:flex}@container video-container (max-width: 480px){.omega_playPauseDesktop,.omega_volume-container{display:none}.omega_volume:hover .omega_volume-muteBtn{margin:0}.omega_playPauseMobile{align-self:center;background-color:initial;border:none;color:#fff;display:block;justify-self:center;z-index:var(--z-index-control-rack)}.omega_playPauseMobile svg{height:58px;width:58px}}@container dvr-rack (max-width: 435px){.omega_videoContainer .omega_rackWithDVR{grid-template-columns:repeat(4,auto) 1fr auto}.omega_videoContainer .omega_rackWithDVR .omega_btnSubtitle,.omega_videoContainer .omega_rackWithDVR .omega_liveBtn,.omega_videoContainer .omega_rackWithDVR .omega_volume-container{display:none}.omega_videoContainer .omega_rackWithDVR .omega_btnFullScreen{grid-column:auto/-1}}.omega_gridStackWrapper{display:grid;grid-template-columns:auto;grid-template-rows:auto}.omega_gridStackWrapper>*{grid-column:1/2;grid-row:1/2}.omega_coreVideoContainer video{left:0;position:absolute;top:0}.omega_controlRackBackdrop.omega_uiVisible{opacity:1}.omega_controlRackBackdrop{align-self:stretch;background-image:linear-gradient(180deg,#0000 50%,#000000e6);justify-self:stretch;z-index:var(--z-index-control-rack-backdrop)}.omega_controlRackBackdrop:not(.omega_uiVisible){opacity:0;transition:var(--fade-transition)}.omega_playPauseMobileContainer.omega_uiVisible{opacity:1}.omega_playPauseMobileContainer:not(.omega_uiVisible){opacity:0;transition:var(--fade-transition)}.omega_center{display:flex;justify-content:center}.omega_controlRack.omega_uiVisible{opacity:1}.omega_controlRack:not(.omega_uiVisible){opacity:0;transition:var(--fade-transition)}@media only screen and (min-width:758px){.omega_controlRack{padding:0 24px 13px}}.omega_controlRack{align-items:center;align-self:end;display:flex;justify-content:space-between;overflow:hidden;padding:0 24px 16px 0;z-index:var(--z-index-control-rack)}.omega_left,.omega_right{column-gap:12px;display:flex}.omega_left{justify-content:flex-start}.omega_right{justify-content:flex-end}.omega_adPlaying{font-size:.9rem;font-weight:600;padding:0 1em;text-transform:uppercase;white-space:nowrap}.omega_sections{align-items:center;flex-basis:0;flex-grow:1}.omega_controlRack button{background:none;border:none}.omega_right button{padding:0 .5em}.omega_right button:first-child{margin-left:-.5em}.omega_right button:last-child{margin-right:-.5em}svg:not(:root){overflow:hidden}.omega_captionOn{background-color:#fff;border-radius:2px}.omega_captionOn path{fill:#000}.omega_captionOff{border-radius:2px}.omega_captionOff path{fill:#fff}.omega_subtitles{background:#000;bottom:15%;color:#fff;font-family:var(--founders-mono,sans-serif);justify-self:center;padding:.5em 1em;position:absolute}.sr-only{clip:rect(0,0,0,0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.omega_slate{container-type:inline-size;display:flex;flex-direction:column;height:100%;justify-content:center;margin:auto;width:100%;z-index:var(--z-index-omega-overlay)}.omega_slate a{text-decoration:underline}.omega_slate p{color:#fff;font-size:calc(2cqi + 6px);font-weight:500;line-height:2;text-align:center}.omega_overlay{container-name:overlay;container-type:size;background-color:#000;color:#fff;height:100%;position:absolute;width:100%;z-index:var(--z-index-omega-overlay)}.omega_overlay_clickthrough{pointer-events:none}.omega_overlay_content{display:block;left:50%;max-height:100%;max-width:100%;position:relative;top:50%;transform:translate(-50%,-50%)}@container overlay (aspect-ratio > 16 /9){.omega_overlay .omega_overlay_image{height:100%;width:auto}}.omega_overlay_image{aspect-ratio:16/9;width:100%}.omega_overlay_text{font-size:10cqh;text-align:center}.FullEpisodePlayer-container{align-items:center;display:flex;flex-direction:row;font-size:22px;justify-content:space-between}.FullEpisodePlayer-fullEpisodePlayerContainer{display:flex;flex-direction:column;gap:20px}.FullEpisodePlayer-fullEpisodePlayer{container:video-player/inline-size;aspect-ratio:16/9;background-color:#000;position:relative;top:0;width:100%}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR{font-family:Proxima Nova,Helvetica,Arial,sans-serif;position:absolute;will-change:opacity}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_slider{--sliderColor:#ddd;--sliderProgressColor:#fff;--sliderThumbColor:#fff}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_volume{--volumeTransition:0.1s ease-in-out 0.5s;flex-direction:column-reverse}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_volume .omega_volume-muteBtn{padding:0}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_volume:hover .omega_volume-container{opacity:1;transition-delay:0s;visibility:visible;width:88px}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_volume:hover .omega_volume-muteBtn{margin:0}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_volume .omega_volume-container{opacity:0;position:absolute;rotate:-90deg;top:-50px;transition:opacity var(--volumeTransition),visibility var(--volumeTransition),width 0s .75s;visibility:hidden}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_liveBtn{display:flex;white-space:nowrap}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_liveBtn .omega_liveBtn-label{align-items:center;display:flex;font-weight:500;justify-content:center;letter-spacing:-.1px;position:relative}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_liveBtn .omega_liveBtn-label:before{border:2px solid #fff;content:"";display:block;height:100%;padding:5px 11px;position:absolute;width:100%}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_liveBtn .omega_liveBtn-dot+.omega_liveBtn-label:before{display:none}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_time{font-size:13px;letter-spacing:.5px;margin:0 0 1px}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR button{opacity:.8;transition:opacity .2s}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR button:hover{opacity:1}@container video-player (max-width: 460px){.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR{gap:5px 20px;grid-template-columns:repeat(2,auto) 1fr repeat(3,auto)}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR div:empty{display:none}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_slider{grid-row:1}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_playPauseDesktop{grid-row:2;height:30px}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_playPauseDesktop svg{height:24px;width:24px}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_volume .omega_volume-container{top:0;z-index:100}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_btnSubtitle{display:block}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_liveBtn .omega_liveBtn-label:before{padding:2px 6px}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_rewind{display:none}}.FullEpisodePlayer-fullEpisodePlayer .omega_controlRackBackdrop{align-self:end;aspect-ratio:16/9;background:#000;height:100%;max-height:75px;width:100%}.FullEpisodePlayer-fullEpisodePlayer .omega_tapToUnmuteBtn{background:#fff}@container video-player (max-width: 630px){.FullEpisodePlayer-fullEpisodePlayer .omega_subtitles{bottom:2%;display:flex;max-width:600px;overflow:hidden;text-align:center;white-space:normal}}@container video-player (max-width: 460px){.FullEpisodePlayer-fullEpisodePlayer .omega_controlRackBackdrop{max-height:65px}.FullEpisodePlayer-fullEpisodePlayer .omega_subtitles{bottom:2%;display:flex;font-size:13px;max-width:280px;overflow:hidden;text-align:center;white-space:normal}}.FullEpisodePlayer-episodeInfoContianer{display:flex;flex-direction:column;gap:15px}.FullEpisodePlayer-seriesTitle{color:#2077b6;font-size:12px;font-weight:800;letter-spacing:1.5px;line-height:16px}.FullEpisodePlayer-episodeTitle{color:#f8f8f8;font-size:18px;font-weight:600;letter-spacing:.029999999329447746px;line-height:22px}.FullEpisodePlayer-episodeDescription{color:#f8f8f8;font-size:14px;font-weight:400;letter-spacing:.029999999329447746px;line-height:22px}.FullEpisodePlayer-videoThumbnail{width:100%}@media (min-width:760px) and (max-width:1019px){.FullEpisodePlayer-videoThumbnail{min-height:430px}}@media (min-width:360px) and (max-width:759px){.FullEpisodePlayer-videoThumbnail{min-height:230px}}.FullEpisodePlayer-PlayButton{position:relative}.FullEpisodePlayer-episodeDate{color:#9a9fa7;font-size:12px;font-weight:700;letter-spacing:1.5px;line-height:16px;text-align:left}.FullEpisodePlayer-videoThumbnailContainer{position:relative}.FullEpisodePlayer-videoFooter{background:linear-gradient(180deg,#1e579900 0,#000);bottom:0;filter:progid:dximagetransform.microsoft.gradient(startColorstr="#001e5799",endColorstr="#000000",GradientType=0);height:40px;padding-left:10px;padding-top:15px;position:absolute;text-align:left;width:100%}.FullEpisodePlayer-videoLabel{color:#fcb700;font-size:10px;font-weight:800;letter-spacing:1.67px;line-height:12px}@media (min-width:760px){.FullEpisodePlayer-videoLabel{font-size:12px;letter-spacing:2px;line-height:15px}}.FullEpisodePlayer-videoTime{color:#fffc;font-weight:600;letter-spacing:1.2px;padding-left:10px}@media (min-width:760px){.FullEpisodePlayer-videoTime{letter-spacing:1.44px}}.FullEpisodePlayer-slate{display:flex;height:100%;justify-content:center;margin:auto;width:100%}.FullEpisodePlayer-slate img{width:100%}.FullEpisodePlayer-slate+.omega_aspectRatioContainer{display:none}.EpisodePlayListItem-videoItem{margin-bottom:10px}.EpisodePlayListItem-episodeButtonContainer{display:flex;flex-direction:row;justify-content:space-between}@media (max-width:1019px){.EpisodePlayListItem-episodeButtonContainer{justify-content:flex-start;width:100%}}.EpisodePlayListItem-thumbnailContainer{height:72px;margin-right:10px;max-width:129px;overflow:hidden;position:relative}.EpisodePlayListItem-thumbnailContainer.EpisodePlayListItem-spacer{height:0}.EpisodePlayListItem-thumbnailContainer img{width:100%}.EpisodePlayListItem-headline{color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:500;letter-spacing:.03px;line-height:16px;margin:0;text-align:left}.EpisodePlayListItem-episodeDuration{bottom:5px;color:#fff;font-size:12px;font-weight:700;letter-spacing:1.5px;line-height:16px;margin:0;position:absolute;text-align:left}.EpisodePlayListItem-episodeDetailsContainer{border-bottom:.5px dashed #9e9e9e;display:flex;min-height:72px;min-width:160px;position:relative}@media (max-width:1019px){.EpisodePlayListItem-episodeDetailsContainer{margin-left:10px;width:inherit}}@media (min-width:1340px){.EpisodePlayListItem-episodeDetailsContainer{width:410px}}.EpisodePlayListItem-activeEpisodeContainer{border:2px solid #fcb700}.EpisodePlayListItem-activeEpisodeIndicator{background:linear-gradient(180.76deg,#00081a 18.7%,rgba(42,48,64,.836) 29.88%,rgba(74,80,93,.707) 37.74%,hsla(220,6%,47%,.553) 45.6%,#fdfeff00 99.35%);color:#fff;font-size:10px;font-weight:700;height:72px;line-height:16px;padding-left:8px;position:absolute;text-align:left;width:129px}.FullEpisodeVideoList-container{margin-bottom:20px;margin-top:24px}.FullEpisodeVideoList-episodeContainer{height:500px;margin-bottom:200px;overflow-x:clip;overflow-y:scroll;position:relative}@media (max-width:1019px){.FullEpisodeVideoList-episodeContainer{margin-bottom:0}}.ShowsListDropdown-showContainer{align-items:center;border-top:.5px solid #d9d9d9;display:flex;flex-direction:row;gap:12px;padding-top:12px}.ShowsListDropdown-showText{color:#9a9fa7;font-size:12px;font-weight:800;line-height:18px;padding:7px 5px}.ShowsListDropdown-buttonContainer{align-items:center;background-color:#fff;border:.5px solid #fff;border-radius:100px;display:flex;gap:4px;justify-content:center;padding:5px}.ShowsListDropdown-showName{color:#00081a;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:400;letter-spacing:.4px;line-height:16px;text-transform:uppercase}.ShowsListDropdown-chevron{background:#00081a;height:7px;mask-image:url(https://static-redesign.cnbcfm.com/dist/6d2e721986ddae3d97e6.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/6d2e721986ddae3d97e6.svg);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;position:relative;top:-.5px;width:11px}.ShowsListDropdown-chevronOpen{transform:scaleY(-1)}.ShowsListDropdown-dropdownContainer{background:#00081a;padding:24px 20px;position:absolute;width:300px;z-index:999}@media (max-width:1019px){.ShowsListDropdown-dropdownContainer{height:100%;left:0;padding:24px 41px;top:200px;width:100%}}@media (max-width:759px){.ShowsListDropdown-dropdownContainer{padding:24px 20px;top:0}}.ShowsListDropdown-dropdownItem{align-items:center;border-bottom:1px solid #2e3337;cursor:pointer;display:flex;height:37px;padding:8px}.ShowsListDropdown-dropdownItem:hover .ShowsListDropdown-dropDownShowTitle,.ShowsListDropdown-dropdownItem:hover .ShowsListDropdown-nbcShowContainer{color:#fcb700}.ShowsListDropdown-dropdownItem:hover .ShowsListDropdown-nbcIcon{background-color:#fcb700}.ShowsListDropdown-dropdownItem:last-child{border-bottom:0}.ShowsListDropdown-dropDownShowTitle{color:#fff;font-size:12px;font-weight:600;letter-spacing:1.32px;line-height:37px;text-align:justify;text-transform:uppercase;width:100%}.ShowsListDropdown-closeButtonContainer{display:flex;justify-content:flex-end}.ShowsListDropdown-closeButton{align-items:center;color:#fff;cursor:pointer;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;gap:10px;letter-spacing:1.32px;line-height:37px;text-align:right;width:70px}.ShowsListDropdown-closeButton:hover{color:#fcb700}.ShowsListDropdown-closeButton:hover .ShowsListDropdown-closeIcon{background-color:#fcb700}.ShowsListDropdown-closeIcon{background-color:#fff;display:inline-block;height:12px;mask-image:url(https://static-redesign.cnbcfm.com/dist/6118770fb27b2d9fb92e.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/6118770fb27b2d9fb92e.svg);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;position:relative;top:-2px;width:12px}.ShowsListDropdown-nbcShowContainer{display:flex;justify-content:space-between}.ShowsListDropdown-nbcIcon{background-color:#fff;display:inline-block;height:11px;margin-left:5px;mask-image:url(https://static-redesign.cnbcfm.com/dist/102cc85fdaab546b3ee8.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/102cc85fdaab546b3ee8.svg);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;width:14px}.ShowsVideosRightRail-rightRailContainer{margin-bottom:20px}.ShowsVideosRightRail-watchLivestreamButton{align-items:center;background-color:#0053cf;border-radius:5px;color:#fff;display:flex;font-size:14px;font-weight:600;justify-content:center;line-height:17px;margin-bottom:30px;min-height:51px;min-width:300px}@media (max-width:1019px){.ShowsVideosRightRail-watchLivestreamButton{margin-top:30px}}.ShowsVideosRightRail-watchLivestreamButton span{animation:ShowsVideosRightRail-pulse 1.5s infinite;animation-timing-function:ease-in-out;background-color:#fff;border-radius:100%;box-shadow:0 0 0 0 #fff;display:inline-block;height:8px;margin-right:8px;position:relative;transform:scale(1);width:8px}@keyframes ShowsVideosRightRail-pulse{0%{box-shadow:0 0 0 1px #0053cf;opacity:1}70%{border:1px solid #0053cf;box-shadow:0 0 0 1px #fff;opacity:.9;padding:2px;transform:scale(1.2)}to{box-shadow:0 0 0 1px #fff;opacity:1;transform:scale(1)}}.ShowsVideosRightRail-watchLivestreamButton:hover{background-color:#002f6c;color:#fff}.PlusLogoHeader-headerContainer{display:inline-flex;margin-bottom:20px;margin-top:20px}@media (max-width:759px){.PlusLogoHeader-headerContainer{justify-content:space-between}}.PlusLogoHeader-headerText{color:#fff;font-size:24px;font-weight:700;letter-spacing:.03px;line-height:26px}.PlusLogoHeader-plusLogo{display:inline;margin-right:20px}.FullEpisodeContainer-containerFluidWidths{margin:0 auto;width:100%}@media (min-width:1020px){.FullEpisodeContainer-containerFluidWidths{max-width:960px}}@media (min-width:1340px){.FullEpisodeContainer-containerFluidWidths{max-width:1290px}}.FullEpisodeContainer-container{min-height:500px}@media (min-width:1020px){.FullEpisodeContainer-container{margin:0 auto;max-width:100%}}@media (min-width:1020px) and (min-width:760px){.FullEpisodeContainer-container{max-width:678px}}@media (min-width:1020px) and (min-width:1020px){.FullEpisodeContainer-container{max-width:960px}}@media (min-width:1020px) and (min-width:1340px){.FullEpisodeContainer-container{max-width:1290px}}@media (max-width:1019px){.FullEpisodeContainer-container{padding:0 30px}}@media (max-width:759px){.FullEpisodeContainer-container{margin-top:-1px;padding:0 20px}}.FullEpisodeContainer-page{display:block;overflow:visible;padding-bottom:25px}@media (min-width:760px){.FullEpisodeContainer-page{padding-bottom:28px}}.FullEpisodeContainer-pageWrapper{margin:0 auto;max-width:100%}@media (min-width:760px){.FullEpisodeContainer-pageWrapper{max-width:678px}}@media (min-width:1020px){.FullEpisodeContainer-pageWrapper{max-width:960px}}@media (min-width:1340px){.FullEpisodeContainer-pageWrapper{max-width:1290px}}@media (min-width:760px){.FullEpisodeContainer-pageWrapper{max-width:100%!important}}.FullEpisodeContainer-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.FullEpisodeContainer-pageRow{padding-left:0;padding-right:0}}@media (min-width:1020px){.FullEpisodeContainer-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}}@media (min-width:1020px) and (min-width:760px){.FullEpisodeContainer-pageRow{padding-left:0;padding-right:0}}@media (max-width:1019px){.FullEpisodeContainer-pageRow{margin:0;padding:0}}.FullEpisodeContainer-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.FullEpisodeContainer-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.FullEpisodeContainer-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.FullEpisodeContainer-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.FullEpisodeContainer-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.FullEpisodeContainer-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.FullEpisodeContainer-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.FullEpisodeContainer-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}.FullEpisodeContainer-containerFluidWidths .FullEpisodeContainer-col{max-width:678px!important;min-width:678px}}@media (min-width:760px){.FullEpisodeContainer-col-3{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.FullEpisodeContainer-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.FullEpisodeContainer-col-3{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.FullEpisodeContainer-col-3{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.FullEpisodeContainer-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.FullEpisodeContainer-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}.FullEpisodeContainer-col-3:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.FullEpisodeContainer-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);max-width:calc(25% + 77.5px);min-width:calc(25% - 22.5px);min-width:calc(25% + 77.5px)}}@media (min-width:760px){.FullEpisodeContainer-col-6{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.FullEpisodeContainer-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.FullEpisodeContainer-col-6{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.FullEpisodeContainer-col-6{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.FullEpisodeContainer-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.FullEpisodeContainer-col-6{flex-grow:0;flex-shrink:0;margin-left:0;margin-right:0;max-width:calc(44.44444% - 16.66667px);min-width:calc(44.44444% - 16.66667px)}.FullEpisodeContainer-col-6:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.FullEpisodeContainer-col-6{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(50% - 15px);min-width:calc(50% - 15px)}}.FullEpisodeContainer-col-9 .BrandBanner-container{margin-bottom:30px;z-index:99}@media (min-width:1340px){.FullEpisodeContainer-col-9 .BrandBanner-container{margin-left:calc(-50vw - -538.5px)}}@media (min-width:760px){.FullEpisodeContainer-col-9 .BrandBanner-container{margin-bottom:-100px;margin-top:50px}.FullEpisodeContainer-col-9{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.FullEpisodeContainer-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.FullEpisodeContainer-col-9{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.FullEpisodeContainer-col-9{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.FullEpisodeContainer-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.FullEpisodeContainer-col-9{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.FullEpisodeContainer-col-9:last-child{margin-right:0}}@media (min-width:1340px){.FullEpisodeContainer-col-9{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);max-width:calc(75% - 107.5px);min-width:calc(75% - 7.5px);min-width:calc(75% - 107.5px)}.FullEpisodeContainer-col-9.FullEpisodeContainer-article{flex-grow:0;flex-shrink:0;margin-left:calc(8.33333% + 2.5px);max-width:calc(58.33333% - 12.5px);min-width:calc(58.33333% - 12.5px)}}@media (min-width:760px){.FullEpisodeContainer-col-12{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.FullEpisodeContainer-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.FullEpisodeContainer-col-12{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.FullEpisodeContainer-col-12{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.FullEpisodeContainer-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.FullEpisodeContainer-col-12{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.FullEpisodeContainer-col-12:last-child{margin-right:0}}@media (min-width:1340px){.FullEpisodeContainer-col-12{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}.FullEpisodeContainer-col-full{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.FullEpisodeContainer-col-full .MyComponentName-container{width:100vw}@media (min-width:1340px){.FullEpisodeContainer-col-full .MyComponentName-container{max-width:none}}.FullEpisodeContainer-col-full:last-child{margin-right:0}.FullEpisodeContainer-mvpdContainer{background-color:#000;bottom:0;left:0;padding-top:20px;position:absolute;right:0;top:0}.FullEpisodePage-container{min-height:800px}@media (max-width:1019px){.FullEpisodePage-container{min-height:1100px}}.LiveTVRightRail-rightRailContainer{margin-bottom:20px}.LiveTVRightRail-watchRecentEpisodesButton{align-items:center;background-color:#0053cf;border-radius:5px;color:#fff;display:flex;font-size:14px;font-weight:700;justify-content:center;letter-spacing:-.001em;line-height:13.3px;margin-bottom:30px;min-height:51px;min-width:300px;padding:16px 0}@media (max-width:1019px){.LiveTVRightRail-watchRecentEpisodesButton{margin-top:30px}}.LiveTVRightRail-watchRecentEpisodesButton span{background-image:url(https://static-redesign.cnbcfm.com/dist/8f814ea5e4aca99eb1cc.svg);background-repeat:no-repeat;display:inline-block;height:15px;margin-right:8px;position:relative;width:14px}.LiveTVRightRail-watchRecentEpisodesButton:hover{background-color:#002f6c;color:#fff}.LiveTVRightRail-cableProviderContainer{align-items:flex-start;background:linear-gradient(#101418,#101418) padding-box,linear-gradient(to bottom right,#ef1541,#890c25) border-box;border:1px solid #0000;border-radius:5px;color:#fff;display:flex;flex-flow:column;justify-content:center;margin-bottom:30px;min-width:300px;padding:17px 10px}@media (min-width:760px) and (max-width:1019px){.LiveTVRightRail-cableProviderContainer{align-items:center;flex-flow:row;height:60px;justify-content:space-between;padding:12px 10px}}.LiveTVRightRail-mvpdContainer{background:linear-gradient(#101418,#101418) padding-box,linear-gradient(to bottom right,#fccc12,#ff7112,#ef1541,#6e55dc,#069de0,#05ac3f) border-box;border:1px solid #0000;height:92px;position:relative}.LiveTVRightRail-mvpdContainer>.LiveTVRightRail-buttonContainer>.LiveTVRightRail-linkButton{font-weight:600}@media (min-width:760px) and (max-width:1019px){.LiveTVRightRail-mvpdContainer>.LiveTVRightRail-buttonContainer>.LiveTVRightRail-linkButton{top:0}}.LiveTVRightRail-mvpdContainer>.LiveTVRightRail-textContainer{margin-bottom:12px}@media (min-width:760px) and (max-width:1019px){.LiveTVRightRail-mvpdContainer>.LiveTVRightRail-textContainer{margin-bottom:0}}.LiveTVRightRail-mvpdContainer>.LiveTVRightRail-textContainer>.LiveTVRightRail-cableProviderTitle{line-height:26px}@media (min-width:760px) and (max-width:1019px){.LiveTVRightRail-mvpdContainer{height:42px}}.LiveTVRightRail-rightArrow{background-color:#fff;display:inline-block;height:10px;margin-left:8px;mask-image:url(https://static-redesign.cnbcfm.com/dist/102cc85fdaab546b3ee8.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/102cc85fdaab546b3ee8.svg);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;position:absolute;top:8px;width:14px}.LiveTVRightRail-cableProviderTitle{font-size:14px;font-weight:700;letter-spacing:.03px;line-height:22px;margin:0 10px;position:relative}.LiveTVRightRail-textContainer{margin-bottom:15px}@media (min-width:760px) and (max-width:1019px){.LiveTVRightRail-textContainer{margin-bottom:0;width:263px}}.LiveTVRightRail-buttonContainer{align-items:flex-start;display:flex;flex-flow:column;gap:12px}@media (min-width:760px) and (max-width:1019px){.LiveTVRightRail-buttonContainer{gap:0;margin:0 10px;padding:0 10px}}.LiveTVRightRail-linkButton{color:#fff;font-size:12px;font-weight:400;height:14px;letter-spacing:.03px;line-height:26px;margin:0 10px;position:relative;top:-8px}.LiveTVRightRail-linkButton:hover{color:#fcb700}.LiveTVRightRail-linkButton:hover .LiveTVRightRail-rightArrow{background-color:#fcb700}@media (min-width:760px) and (max-width:1019px){.LiveTVRightRail-linkButton{height:unset;top:0}}.LiveTVRightRail-linkButtonMvpdAndSubscription{height:20px}@media (min-width:760px) and (max-width:1019px){.LiveTVRightRail-linkButtonMvpdAndSubscription{height:unset}}.LiveTVRightRail-blur{background:linear-gradient(45deg,#ef15414d,#0000);filter:blur(50px);height:107px;margin:15px;position:absolute;width:210px}@media (min-width:760px) and (max-width:1019px){.LiveTVRightRail-blur{height:40px;margin-left:150px;width:483px}}.LiveTVRightRail-mvpdBlur{background:linear-gradient(146.23deg,#121212 75.35%,#4d4855 126.39%),linear-gradient(0deg,#101418,#101418);border-radius:6px;filter:none;height:100%;left:0;margin:unset;width:100%}.LiveTVRightRail-rightRailScheduleContainer{background-color:#101418;background-image:url(https://static-redesign.cnbcfm.com/dist/a421642a37beaf56ee95.svg);background-size:cover;border-radius:12px;box-shadow:0 4px 16px 1px #00000026;display:flex;flex-direction:column;gap:18px;margin-bottom:30px;padding:12px;position:relative}@media (min-width:760px) and (max-width:1019px){.LiveTVRightRail-rightRailScheduleContainer{background-image:url(https://static-redesign.cnbcfm.com/dist/9d98cbc9c3d696aba29d.svg);background-position:120px 250px;gap:8px}}@media (min-width:360px) and (max-width:759px){.LiveTVRightRail-rightRailScheduleContainer{background-position:0 150px;gap:27px}}.LiveTVRightRail-rightRailScheduleTitle{color:#fff;font-size:20px;font-weight:700;letter-spacing:-.5px;line-height:24.36px}.LiveTVRightRail-rightRailScheduleText{color:#fff;font-size:14px;font-weight:400;line-height:18.2px}.LiveTVRightRail-rightRailScheduleLinkContainer{display:flex;justify-content:flex-end;width:100%}@media (min-width:760px) and (max-width:1019px){.LiveTVRightRail-rightRailScheduleLinkContainer{bottom:12px;position:absolute;right:18px}}.LiveTVRightRail-rightRailScheduleLink{color:#fff;font-size:12px;font-weight:700;line-height:14.62px}.LiveTVRightRail-rightRailScheduleLink .LiveTVRightRail-rightArrow{margin-left:3px;position:relative;top:unset}.LiveTVRightRail-rightRailScheduleLink:hover .LiveTVRightRail-rightArrow{background-color:#fcb700}.ProLiveTVWithSelections-container{background-color:#171717;border-radius:4px;height:100%;left:0;position:relative;top:0;width:100%}.ProLiveTVWithSelections-playerWithTabsContainer{background-color:initial}#standaloneLivePlayer .OmegaPlayer-omegaPlayerContainer{max-height:unset}.omega_coreVideoContainer{position:relative;z-index:10}.omega_subtitles{z-index:10}.OmegaPlayer-slate{container-type:inline-size;background:linear-gradient(#059,#026);display:flex;flex-direction:column;height:100%;justify-content:center;margin:auto;width:100%}.OmegaPlayer-slate.OmegaPlayer-loading{background:none}.OmegaPlayer-slate.OmegaPlayer-loading img{width:100%}.OmegaPlayer-slate a{text-decoration:underline}.OmegaPlayer-slate p{color:#fff;font-size:calc(2cqi + 6px);font-weight:500;line-height:2;text-align:center}.OmegaPlayer-windowBoxContainer .OmegaPlayer-slate{aspect-ratio:16/9;height:calc(100% - 96px);max-height:56.25cqw;width:unset}.OmegaPlayer-slate+.omega_aspectRatioContainer{display:none}@container (min-aspect-ratio: 16/9){@container (max-width: 470px){.omega_volume-container{--volumeTransition:0.01s ease-in-out 0.5s;bottom:50%;display:block;margin-bottom:-15px;padding-bottom:20px;position:absolute;transform:rotate(-90deg)}}}@media (max-width:1019px){.omega_volume-container{display:none}}@container (min-aspect-ratio: 15/8){.OmegaPlayer-windowBoxContainer .OmegaPlayer-slate{height:auto;max-height:100%;max-width:177cqh;width:calc(100% - 240px)}}@container (max-width: 320px){.omega_btnSubtitle,.omega_subtitles{display:none}}.OmegaPlayer-CNBCLogo{height:20%}.OmegaPlayer-container{aspect-ratio:16/9}.OmegaPlayer-windowBoxContainer{container-type:size;background:#000;display:flex;height:100vw;max-height:calc(100vh - 180px);min-height:350px}.OmegaPlayer-windowBoxContainer .omega_coreVideoContainer{margin:48px 0}@container (min-aspect-ratio: 15/8){.OmegaPlayer-windowBoxContainer .omega_coreVideoContainer{margin:0 120px}}.ProDAIPlayer-proDAIPlayer{container:video-player/inline-size;aspect-ratio:16/9;background-color:#000;position:relative;top:0;width:100%}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR{font-family:Proxima Nova,Helvetica,Arial,sans-serif;position:absolute;will-change:opacity}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR:has([aria-label=Picture-in-Picture]){grid-template-columns:repeat(5,auto) 1fr repeat(3,auto)}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR button:has([aria-label=Picture-in-Picture]){justify-self:center}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_slider{--sliderColor:#ddd;--sliderProgressColor:#fff;--sliderThumbColor:#fff}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_volume{--volumeTransition:0.1s ease-in-out 0.5s;flex-direction:column-reverse}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_volume .omega_volume-muteBtn{padding:0}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_volume:hover .omega_volume-container{opacity:1;transition-delay:0s;visibility:visible;width:88px}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_volume:hover .omega_volume-muteBtn{margin:0}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_volume .omega_volume-container{opacity:0;position:absolute;rotate:-90deg;top:-50px;transition:opacity var(--volumeTransition),visibility var(--volumeTransition),width 0s .75s;visibility:hidden}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_liveBtn{display:flex;white-space:nowrap}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_liveBtn .omega_liveBtn-label{align-items:center;display:flex;font-weight:500;justify-content:center;letter-spacing:-.1px;position:relative}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_liveBtn .omega_liveBtn-label:before{border:2px solid #fff;content:"";display:block;height:100%;padding:5px 11px;position:absolute;width:100%}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_liveBtn .omega_liveBtn-dot+.omega_liveBtn-label:before{display:none}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_time{font-size:13px;letter-spacing:.5px;margin:0 0 1px;min-width:45px}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR button{opacity:.8;transition:opacity .2s}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR button:hover{opacity:1}@media (max-width:1019px){.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_volume .omega_volume-container{display:none}}@container video-player (max-width: 460px){.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR{gap:5px;grid-template-columns:repeat(3,auto) 1fr repeat(3,auto)}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR:has([aria-label=Picture-in-Picture]){grid-template-columns:repeat(3,auto) 1fr repeat(3,auto);padding:8px}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR div:empty,.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR img[aria-label=Picture-in-Picture]{display:none}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_slider.omega_slider-scrubber{grid-row:1}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_playPauseDesktop{grid-row:2;height:30px}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_btnFullScreen svg,.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_playPauseDesktop svg{height:20px;width:20px}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_volume{margin-right:4px;position:relative;top:2px}@media (min-width:1020px){.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_volume .omega_volume-container{display:block!important;left:45px;rotate:0deg;top:-152px;z-index:100}}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR:has([aria-label="Exit full screen"]) .omega_volume{position:unset}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR:has([aria-label="Exit full screen"]) .omega_volume .omega_volume-container{left:unset;rotate:-90deg;top:-50px}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_btnSubtitle{display:block!important}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_liveBtn{display:flex!important;min-width:76px}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_liveBtn .omega_liveBtn-label:before{padding:2px 6px}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_rewind{display:none}}.ProDAIPlayer-proDAIPlayer .omega_controlRackBackdrop{align-self:end;aspect-ratio:16/9;background:#000;height:100%;max-height:75px;width:100%}.ProDAIPlayer-proDAIPlayer .omega_tapToUnmuteBtn{background:#fff}@container video-player (max-width: 630px){.ProDAIPlayer-proDAIPlayer .omega_subtitles{bottom:2%;display:flex;max-width:600px;overflow:hidden;text-align:center;white-space:normal}}@container video-player (max-width: 460px){.ProDAIPlayer-proDAIPlayer .omega_controlRackBackdrop{max-height:65px}.ProDAIPlayer-proDAIPlayer .omega_subtitles{bottom:2%;display:flex;font-size:13px;max-width:280px;overflow:hidden;text-align:center;white-space:normal}}.ProDAIPlayer-proDAIPlayer .ProDAIPlayer-slate{display:flex;height:100%;justify-content:center;margin:auto;width:100%}.ProDAIPlayer-proDAIPlayer .ProDAIPlayer-slate img{width:100%}.ProDAIPlayer-proDAIPlayer .ProDAIPlayer-slate+.omega_aspectRatioContainer{display:none}.ProPlayerChannel-channelContainer{background-color:#171717;display:block;overflow:hidden;width:100%}.ProPlayerChannel-channelContainer *{box-sizing:border-box}.ProPlayerChannel-pcpChannelContainer{border-radius:4px}.ProPlayerChannel-channelHolder{background-color:#171717;display:flex;flex-wrap:wrap;justify-content:center;padding:0 8px;width:100%}@media (max-width:1019px){.ProPlayerChannel-channelHolder{align-items:center;flex-direction:column}}.ProPlayerChannel-leftContainer{display:block;width:295px}@media (max-width:1339px){.ProPlayerChannel-leftContainer{display:none}}.ProPlayerChannel-channels,.ProPlayerChannel-rightContainer{display:flex;text-align:center}.ProPlayerChannel-channels{background:#3cb87833;border-radius:26px;flex-direction:row;height:31px;margin-bottom:16px;margin-top:16px;position:relative;width:336px}.ProPlayerChannel-channels .ProPlayerChannel-slider{background-color:#3cb878;border-radius:30px;height:31px;left:0;position:absolute;top:0;transition:left .2s ease-in-out;width:33.33%}@media (max-width:759px){.ProPlayerChannel-channels .ProPlayerChannel-slider{width:88px}}.ProPlayerChannel-channels .ProPlayerChannel-buttonContainer{display:flex;flex-wrap:nowrap;width:100%}.ProPlayerChannel-channels .ProPlayerChannel-buttonContainer .ProPlayerChannel-selector{color:#fff;cursor:pointer;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;height:31px;line-height:17px;transition:color .2s ease-in;width:33.33%;z-index:1}.ProPlayerChannel-channels .ProPlayerChannel-buttonContainer .ProPlayerChannel-activeStream{color:#000}@media (max-width:759px){.ProPlayerChannel-channels{width:264px}}.ProPlayerChannel-embeddedPlayerSpacing{align-items:center;flex-direction:column}.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-rightContainer{justify-content:space-around;padding:0 22px 16px;text-align:center;width:295px}@media (max-width:1019px){.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-rightContainer{padding:0 16px 16px;width:300px}}@media (max-width:759px){.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-rightContainer{padding:0 22px 16px;width:300px}}.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels{background:#3cb87833;border-radius:26px;flex-direction:row;height:31px;margin-bottom:16px;margin-top:16px;position:relative;width:336px}.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels .ProPlayerChannel-slider{background-color:#3cb878;border-radius:30px;height:31px;left:0;position:absolute;top:0;transition:left .2s ease-in-out;width:33.33%}.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels .ProPlayerChannel-buttonContainer{display:flex;flex-wrap:nowrap;width:100%}.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels .ProPlayerChannel-buttonContainer .ProPlayerChannel-selector{color:#fff;cursor:pointer;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;height:31px;line-height:17px;transition:color .2s ease-in;width:33.33%;z-index:1}.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels .ProPlayerChannel-buttonContainer .ProPlayerChannel-activeStream{color:#000}@media (max-width:1019px){.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels{width:276px}}@media (max-width:759px){.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels{width:264px}}.ProPlayerChannel-rightContainer{justify-content:space-around;padding:16px 22px;text-align:center;width:295px}@media (max-width:1019px){.ProPlayerChannel-rightContainer{padding:0 16px 16px;width:300px}}@media (max-width:759px){.ProPlayerChannel-rightContainer{padding:0 22px 16px;width:300px}}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton{cursor:pointer;display:flex;text-decoration:none;transition:background-color .15s ease-in 50ms}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton>.ProPlayerChannel-withEmphasis{height:26px;justify-content:center;padding:4px 0;transition:color .1s ease-in;width:133px}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton>.ProPlayerChannel-noEmphasis{height:26px;justify-content:center;padding:4px 0;transition:color .1s ease-in}.ProPlayerChannel-rightContainer .ProPlayerChannel-noEmphasisIcon,.ProPlayerChannel-rightContainer .ProPlayerChannel-withEmphasisIcon{fill:#d9d9d9;margin-right:8px;margin-top:2px;transition:fill .1s ease-in}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton:hover .ProPlayerChannel-noEmphasis,.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton:hover .ProPlayerChannel-withEmphasis{color:#3cb878}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton:hover .ProPlayerChannel-noEmphasisIcon,.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton:hover .ProPlayerChannel-withEmphasisIcon{fill:#3cb878}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton:active .ProPlayerChannel-withEmphasis{background-color:#3cb878;border-radius:30px;color:#171717}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton:active .ProPlayerChannel-withEmphasisIcon{fill:#171717}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton>span>img{display:inline-block;padding-right:8px;width:24px}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton>span{color:#d9d9d9;display:inline-flex;flex-wrap:nowrap;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:700;text-decoration:none}@media (max-width:1019px){.ProPlayerChannel-rightContainer{flex-direction:row;margin-left:0;text-align:center;top:40px}}.ProPlayerToast-overlay{background-color:#171717;position:absolute;top:0;width:100%;z-index:1}.ProPlayerToast-toastMessageContainer{color:#fff;left:0;padding-top:12px;position:absolute;text-align:center;top:0;width:100%}.StreamToast-toastMessage{background-color:#171717;border-radius:3px;display:flex;flex-direction:column;justify-content:center;margin:auto;opacity:.85!important;width:-moz-fit-content;width:fit-content}.StreamToast-textAndButton{color:#fff;display:flex;flex-direction:row;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-style:normal;font-weight:600;justify-content:center;line-height:22px;padding:12px 24px}.StreamToast-textAndButton .StreamToast-dismissButton{margin-left:18px}@media (max-width:425px){.StreamToast-textAndButton{font-size:12px;line-height:16px;padding:8px 12px}.StreamToast-textAndButton .StreamToast-dismissButton{height:14px;margin-left:10px;width:14px}}@media (max-width:1020px){.StreamToast-embeddedPlayerContainer{font-size:12px;line-height:16px;padding:8px 12px}.StreamToast-embeddedPlayerContainer .StreamToast-dismissButton{height:14px;margin-left:10px;width:14px}}@media (max-width:759px){.StreamToast-embeddedPlayerContainer{font-size:16px;line-height:24px;padding:12px 24px}.StreamToast-embeddedPlayerContainer .StreamToast-dismissButton{margin-left:18px}}@media (max-width:425px){.StreamToast-embeddedPlayerContainer{font-size:12px;line-height:16px;padding:8px 12px}.StreamToast-embeddedPlayerContainer .StreamToast-dismissButton{height:14px;margin-left:10px;width:14px}}.StreamToastWithCTA-toastMessage{background-color:#171717;border-radius:3px;color:#fff;display:flex;flex-direction:column;justify-content:center;margin:auto;opacity:.85!important;width:-moz-fit-content;width:fit-content}.StreamToastWithCTA-textAndButton{display:flex;flex-direction:row;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-style:normal;font-weight:600;justify-content:center;line-height:22px;padding:12px 24px}.StreamToastWithCTA-textAndButton .StreamToastWithCTA-dismissButton{margin-left:18px}.StreamToastWithCTA-textAndButton .StreamToastWithCTA-switchButton{border:1px solid #fff;color:#fff;font-size:12px;font-style:normal;font-weight:700;letter-spacing:1.09px;line-height:12px;margin-left:18px;padding:10px 31px;text-transform:uppercase}@media (max-width:425px){.StreamToastWithCTA-textAndButton{font-size:12px;line-height:16px;padding:8px 12px}.StreamToastWithCTA-textAndButton .StreamToastWithCTA-switchButton{font-size:10px;line-height:12px;margin-left:10px;padding:5.5px 14.5px}.StreamToastWithCTA-textAndButton .StreamToastWithCTA-dismissButton{height:14px;margin-left:10px;width:14px}}@media (max-width:1020px){.StreamToastWithCTA-embeddedPlayerContainer{font-size:12px;line-height:16px;padding:8px 12px}.StreamToastWithCTA-embeddedPlayerContainer .StreamToastWithCTA-switchButton{font-size:10px;line-height:12px;margin-left:10px;padding:5.5px 14.5px}.StreamToastWithCTA-embeddedPlayerContainer .StreamToastWithCTA-dismissButton{height:14px;margin-left:10px;width:14px}}@media (max-width:759px){.StreamToastWithCTA-embeddedPlayerContainer{font-size:16px;line-height:24px;padding:12px 24px}.StreamToastWithCTA-embeddedPlayerContainer .StreamToastWithCTA-switchButton{font-size:12px;line-height:12px;margin-left:10px;padding:10px 31px}.StreamToastWithCTA-embeddedPlayerContainer .StreamToastWithCTA-dismissButton{margin-left:18px}}@media (max-width:425px){.StreamToastWithCTA-embeddedPlayerContainer{font-size:12px;line-height:16px;padding:8px 12px}.StreamToastWithCTA-embeddedPlayerContainer .StreamToastWithCTA-switchButton{font-size:10px;line-height:12px;margin-left:10px;padding:5.5px 14.5px}.StreamToastWithCTA-embeddedPlayerContainer .StreamToastWithCTA-dismissButton{height:14px;margin-left:10px;width:14px}}.StreamToastWithCTA-text{align-self:center}.StreamToastAutoSwitch-toastMessage{background-color:#171717;border-radius:3px;display:flex;flex-direction:column;justify-content:center;margin:auto;opacity:.85!important;width:-moz-fit-content;width:fit-content}.StreamToastAutoSwitch-textAndButton{color:#fff;display:flex;flex-direction:row;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-style:normal;font-weight:600;justify-content:center;line-height:22px;padding:12px 24px}.StreamToastAutoSwitch-textAndButton .StreamToastAutoSwitch-dismissButton{margin-left:18px}@media (max-width:425px){.StreamToastAutoSwitch-textAndButton{font-size:12px;line-height:16px;padding:8px 12px}.StreamToastAutoSwitch-textAndButton .StreamToastAutoSwitch-dismissButton{height:14px;margin-left:10px;width:14px}}@media (max-width:1020px){.StreamToastAutoSwitch-embeddedPlayerContainer{font-size:12px;line-height:16px;padding:8px 12px}.StreamToastAutoSwitch-embeddedPlayerContainer .StreamToastAutoSwitch-dismissButton{height:14px;margin-left:10px;width:14px}}@media (max-width:759px){.StreamToastAutoSwitch-embeddedPlayerContainer{font-size:16px;line-height:24px;padding:12px 24px}.StreamToastAutoSwitch-embeddedPlayerContainer .StreamToastAutoSwitch-dismissButton{margin-left:18px}}@media (max-width:425px){.StreamToastAutoSwitch-embeddedPlayerContainer{font-size:12px;line-height:16px;padding:8px 12px}.StreamToastAutoSwitch-embeddedPlayerContainer .StreamToastAutoSwitch-dismissButton{height:14px;margin-left:10px;width:14px}}.ProPlayerTabs-channelContainer{background-color:initial;display:block;overflow:hidden;width:100%}.ProPlayerTabs-channelContainer *{box-sizing:border-box}.ProPlayerTabs-pcpChannelContainer{border-radius:4px}.ProPlayerTabs-channelHolder{background-color:initial;display:flex;flex-wrap:wrap;justify-content:space-between;padding:0 8px;width:100%}@media (max-width:1019px){.ProPlayerTabs-channelHolder{flex-direction:column}}.ProPlayerTabs-standaloneChannelHolder{align-items:center;justify-content:center}.ProPlayerTabs-standaloneChannelContainer{background-color:#171717}.ProPlayerTabs-tabsHolder{justify-content:space-between}.ProPlayerTabs-leftContainer{display:block;width:295px}@media (max-width:1339px){.ProPlayerTabs-leftContainer{display:none}}.ProPlayerTabs-channels,.ProPlayerTabs-rightContainer{display:flex;text-align:center}.ProPlayerTabs-proChannels{width:100%!important}.ProPlayerTabs-channels{flex-direction:row;height:40px;margin-bottom:16px;position:relative;width:50%}@media (max-width:759px){.ProPlayerTabs-channels{width:100%}}.ProPlayerTabs-channels .ProPlayerTabs-slider{background-color:#3cb878;border-radius:30px;height:31px;left:0;position:absolute;top:0;transition:left .2s ease-in-out;width:33.33%}@media (max-width:759px){.ProPlayerTabs-channels .ProPlayerTabs-slider{width:88px}}.ProPlayerTabs-channels .ProPlayerTabs-buttonContainer{display:flex;flex-wrap:nowrap;width:100%}.ProPlayerTabs-channels .ProPlayerTabs-buttonContainer .ProPlayerTabs-proSelector{width:183px}.ProPlayerTabs-channels .ProPlayerTabs-buttonContainer .ProPlayerTabs-plusSelector{width:165px}.ProPlayerTabs-channels .ProPlayerTabs-buttonContainer .ProPlayerTabs-selector{color:#747474;cursor:pointer;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:600;height:40px;line-height:22px;transition:color .2s ease-in;white-space:nowrap;z-index:1}@media (max-width:759px){.ProPlayerTabs-channels .ProPlayerTabs-buttonContainer .ProPlayerTabs-selector{width:100%}}.ProPlayerTabs-channels .ProPlayerTabs-buttonContainer .ProPlayerTabs-activeStream{border-bottom:2px solid #171717;color:#171717}@media (max-width:759px){.ProPlayerTabs-plusTab{flex-basis:0;flex-grow:1;width:unset}}.ProPlayerTabs-darkThemeButtonContainer .ProPlayerTabs-selector{color:#9e9e9e!important}.ProPlayerTabs-darkThemeButtonContainer .ProPlayerTabs-activeStream{border-bottom:2px solid #f8f8f8!important;color:#f8f8f8!important}.ProPlayerTabs-rightContainer{gap:20px;padding:16px 16px 16px 0;text-align:center;width:230px}.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton{cursor:pointer;display:flex;text-decoration:none;transition:background-color .15s ease-in 50ms}.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton>.ProPlayerTabs-withEmphasis{height:26px;justify-content:flex-start;padding:4px 0;transition:color .1s ease-in;width:133px}.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton>.ProPlayerTabs-noEmphasis{height:26px;justify-content:flex-start;padding:4px 0;transition:color .1s ease-in}.ProPlayerTabs-rightContainer .ProPlayerTabs-noEmphasisIcon,.ProPlayerTabs-rightContainer .ProPlayerTabs-withEmphasisIcon{fill:#171717;margin-right:8px;margin-top:2px;transition:fill .1s ease-in}.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton:hover .ProPlayerTabs-noEmphasis,.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton:hover .ProPlayerTabs-withEmphasis{color:#fcb700}.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton:hover .ProPlayerTabs-noEmphasisIcon,.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton:hover .ProPlayerTabs-withEmphasisIcon{fill:#fcb700}.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton>span>img{display:inline-block;padding-right:8px;width:24px}.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton>span{color:#171717;display:inline-flex;flex-wrap:nowrap;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:700;line-height:16px;text-decoration:none}.ProPlayerTabs-darkThemeRightContainer .ProPlayerTabs-linkButton>span{color:#f8f8f8}.ProPlayerTabs-darkThemeRightContainer .ProPlayerTabs-noEmphasisIcon,.ProPlayerTabs-darkThemeRightContainer .ProPlayerTabs-withEmphasisIcon{fill:#d9d9d9;margin-right:8px;margin-top:2px;transition:fill .1s ease-in}.ProPlayerTabs-darkThemeRightContainer .ProPlayerTabs-linkButton:hover .ProPlayerTabs-noEmphasis,.ProPlayerTabs-darkThemeRightContainer .ProPlayerTabs-linkButton:hover .ProPlayerTabs-withEmphasis{color:#fcb700}.ProPlayerTabs-darkThemeRightContainer .ProPlayerTabs-linkButton:hover .ProPlayerTabs-noEmphasisIcon,.ProPlayerTabs-darkThemeRightContainer .ProPlayerTabs-linkButton:hover .ProPlayerTabs-withEmphasisIcon{fill:#fcb700}.MvpdLogout-mvpdLogout{background-position:50%;background-repeat:no-repeat;background-size:contain;font-weight:700;height:50px;position:absolute;right:10px;top:5px;width:100px}.MvpdLogout-mvpdLogout:hover .MvpdLogout-mvpdLogoutDropdown{display:block}.MvpdLogout-mvpdLogoutDropdown{background-color:#f2f2f2;color:#000;cursor:pointer;display:none;font-weight:700;padding:10px 20px;position:absolute;right:0;top:50px;white-space:nowrap}.MvpdServiceProvider-mvpdProvider{display:flex;position:relative}.MvpdServiceProvider-mvpdProvider--twc:after{color:#fff;content:"*";font-size:1.5rem;position:absolute;right:10px;top:8px}.MvpdServiceProvider-mvpdProviderFeatured{background:#383838;box-sizing:border-box;height:70px;margin:0 2px 2px 0;max-width:122px;padding:10px;width:calc(33% - 2px)}.MvpdServiceProvider-mvpdProviderFeatured:nth-child(3n){margin-right:0}@media (min-width:1020px){.MvpdServiceProvider-mvpdProviderFeatured{height:68px;margin:0 3px 3px 0;max-width:122px;width:calc(20% - 3px)}.MvpdServiceProvider-mvpdProviderFeatured:nth-child(3n){margin-right:3px}.MvpdServiceProvider-mvpdProviderFeatured:nth-child(5n){margin-right:0}}@media (min-width:1340px){.MvpdServiceProvider-mvpdProviderFeatured{height:92px;max-width:190px}}.MvpdServiceProvider-mvpdProviderFeatured:hover{background-color:#484848}.MvpdServiceProvider-mvpdProviderFeatured .MvpdServiceProvider-mvpdProviderContent{height:100%;margin:auto;max-height:28px;max-width:97px;position:relative;width:100%}@media (min-width:1020px){.MvpdServiceProvider-mvpdProviderFeatured .MvpdServiceProvider-mvpdProviderContent{max-height:30px;max-width:102px}}@media (min-width:1340px){.MvpdServiceProvider-mvpdProviderFeatured .MvpdServiceProvider-mvpdProviderContent{max-height:35px;max-width:138px}}.MvpdServiceProvider-mvpdProviderFeatured img{bottom:0;left:0;margin:auto;max-height:100%;max-width:100%;position:absolute;right:0;top:0}.MvpdServiceProvider-mvpdProviderFull .MvpdServiceProvider-mvpdProviderContent{color:#000;padding:7px 30px;text-transform:none}.MvpdServiceProvider-mvpdProviderFull .MvpdServiceProvider-mvpdProviderContent:hover{background:#fff}.MvpdPredictiveResults-mvpdPredictive{position:relative}@media (min-width:760px){.MvpdPredictiveResults-mvpdPredictive{margin:0}}.MvpdPredictiveResults-mvpdPredictiveResults{background-color:#eee;border:1px solid #e6e6e6;list-style-type:none;margin-top:18px;padding:0}.MvpdPredictiveResults-mvpdPredictiveItem{border-bottom:1px solid #e6e6e6;box-sizing:border-box;color:#000;font-size:1.25rem;height:48px;line-height:1.125rem;padding:14px 15px;text-align:left}@media (min-width:1020px){.MvpdPredictiveResults-mvpdPredictiveItem{font-size:1.125rem;height:50px;padding:16px 15px}}@media (min-width:1340px){.MvpdPredictiveResults-mvpdPredictiveItem{height:54px;line-height:1.5rem}}.MvpdPredictiveResults-mvpdPredictiveItem:hover{background-color:#e6e6e6;cursor:pointer}.MvpdPredictiveResults-mvpdPredictiveItem a{text-transform:none}.MvpdPredictiveResults-mvpdPredictiveItemSelected{background-color:#e6e6e6;cursor:pointer}.MvpdPredictiveResults-mvpdPredictiveResultsList{position:relative}.MvpdPredictiveResults-mvpdPredictiveResultsFull{margin-bottom:18px;margin-top:0;max-height:352px;overflow-y:scroll}@media (min-width:1020px){.MvpdPredictiveResults-mvpdPredictiveResultsFull{margin-bottom:26px;max-height:246px}}@media (min-width:1340px){.MvpdPredictiveResults-mvpdPredictiveResultsFull{margin-bottom:42px;max-height:308px}}.MvpdPredictiveInput-mvpdPredictive{position:relative}@media (min-width:760px){.MvpdPredictiveInput-mvpdPredictive{margin:0}}.MvpdPredictiveInput-mvpdPredictiveIcon{height:26px;pointer-events:none;position:absolute;right:15px;top:50%;transform:translateY(-50%);width:26px}@media (min-width:1020px){.MvpdPredictiveInput-mvpdPredictiveIcon{height:24px;width:24px}}@media (min-width:1340px){.MvpdPredictiveInput-mvpdPredictiveIcon{height:26px;width:26px}}.MvpdPredictiveInput-mvpdPredictiveIcon:before{color:#666;font-size:12px;pointer-events:all;position:relative}.MvpdPredictiveInput-mvpdPredictiveIconClose:before{cursor:pointer;font-size:18px;top:3px}.MvpdPredictiveInput-mvpdPredictiveIconSearch:before{font-size:20px;top:2px}.MvpdPredictiveInput-mvpdPredictiveInput{border:none;box-sizing:border-box;color:#1e1e1e;font-size:1.25rem;height:48px;padding:0 15px;pointer-events:all;width:100%}@media (min-width:1020px){.MvpdPredictiveInput-mvpdPredictiveInput{font-size:1.125rem;height:50px;padding:0 20px}}@media (min-width:1340px){.MvpdPredictiveInput-mvpdPredictiveInput{font-size:1.5rem}}.MvpdFooter-mvpdDialogFaq{color:#fff;display:block;font-size:1.25rem;margin-top:20px;text-align:left}.MvpdFooter-mvpdDialogFaq a{text-transform:none!important}@media (min-width:1020px){.MvpdFooter-mvpdDialogFaq{font-size:1.125rem;margin-top:24px;text-align:center}}@media (min-width:1340px){.MvpdFooter-mvpdDialogFaq{font-size:1.375rem;margin-top:42px}}.MvpdDialog-episodePageEmbed{background:#000}.MvpdDialog-episodePageEmbed .MvpdDialog-mvpdDialog{padding:20px 15px}.MvpdDialog-mvpdDialogContainer{background:#000}.MvpdDialog-mvpdDialog{background:#000;padding:20px 15px}@media (min-width:760px){.MvpdDialog-mvpdDialog{padding:15px}}@media (min-width:1020px){.MvpdDialog-mvpdDialog{padding:32px 15px}}@media (min-width:1340px){.MvpdDialog-mvpdDialog{padding:48px 15px 235px}}.MvpdDialog-mvpdDialog a{color:#005594;cursor:pointer;text-decoration:none;text-transform:uppercase}.MvpdDialog-mvpdDialog a:hover{opacity:.7}.MvpdDialog-mvpdDialog a.MvpdDialog-mvpdDialogBack{text-transform:none}.MvpdDialog-mvpd-dialog__animate-appear{opacity:.01}.MvpdDialog-mvpd-dialog__animate-appear.MvpdDialog-mvpd-dialog__animate-enter-active{opacity:1;transition:opacity .6s ease-in-out}.MvpdDialog-mvpd-dialog__animate-enter{opacity:.01}.MvpdDialog-mvpd-dialog__animate-enter.MvpdDialog-mvpd-dialog__animate-enter-active{opacity:1;transition:opacity .6s ease-in-out}.MvpdDialog-mvpdDialogIframe{box-sizing:border-box;display:table;margin:auto;max-width:370px;text-align:center}@media (min-width:1020px){.MvpdDialog-mvpdDialogIframe{max-width:612px}}@media (min-width:1340px){.MvpdDialog-mvpdDialogIframe{max-width:832px}}.MvpdDialog-mvpdDialogIframe iframe{border:none;max-width:100%}.MvpdDialog-mvpdDialogIframe .MvpdDialog-mvpdDialogBack{margin-bottom:1rem;position:static}.MvpdDialog-mvpdDialogFeatured,.MvpdDialog-mvpdDialogFull{margin:0 auto;text-align:center}.MvpdDialog-mvpdDialogFeatured{margin:auto;max-width:370px}@media (min-width:760px){.MvpdDialog-mvpdDialogFeatured{max-width:370px;min-height:475px}}@media (min-width:1020px){.MvpdDialog-mvpdDialogFeatured{max-width:612px;min-height:475px}}@media (min-width:1340px){.MvpdDialog-mvpdDialogFeatured{max-width:832px}}.MvpdDialog-mvpdDialogFeatured .MvpdDialog-mvpdDialogProviders{display:flex;flex-wrap:wrap;justify-content:center;margin-bottom:30px}.MvpdDialog-mvpdDialogFull{max-width:370px;position:relative}@media (min-width:1020px){.MvpdDialog-mvpdDialogFull{max-width:612px}}@media (min-width:1340px){.MvpdDialog-mvpdDialogFull{max-width:832px}}.MvpdDialog-mvpdDialogFull .MvpdDialog-mvpdDialogProviders{text-align:left}.MvpdDialog-mvpdDialogTitle{color:#fff;font-size:1.5rem;line-height:1.5rem;margin-bottom:20px;text-transform:uppercase}@media (min-width:760px){.MvpdDialog-mvpdDialogTitle{margin-bottom:10px}}@media (min-width:1020px){.MvpdDialog-mvpdDialogTitle{font-size:1.75rem;margin-bottom:20px}}@media (min-width:1340px){.MvpdDialog-mvpdDialogTitle{font-size:1.875rem}}.MvpdDialog-mvpdDialogDescription{color:#fff;font-size:1.25rem;line-height:24px;margin-bottom:1rem;text-align:left}@media (min-width:760px){.MvpdDialog-mvpdDialogDescription{margin-bottom:11px}}@media (min-width:1020px){.MvpdDialog-mvpdDialogDescription{font-size:1.125rem;margin-bottom:24px;text-align:center}}@media (min-width:1340px){.MvpdDialog-mvpdDialogDescription{font-size:1.375rem}}.MvpdDialog-mvpd-dialog__twc{color:#f1f1f1;font-size:1rem;text-align:left}@media (min-width:1020px){.MvpdDialog-mvpd-dialog__twc{text-align:center}}.MvpdDialog-mvpdDialogFullLink{color:#fff;display:block;font-size:1.25rem;line-height:24px;margin:14px 0 12px;text-align:left}@media (min-width:1020px){.MvpdDialog-mvpdDialogFullLink{font-size:1.125rem;margin:26px 0 18px;text-align:center}}@media (min-width:1340px){.MvpdDialog-mvpdDialogFullLink{font-size:1.375rem;margin:42px 0 18px}}.MvpdDialog-mvpdDialogFullLink a{text-transform:none}.MvpdDialog-mvpdDialogBack{display:block;font-size:1.375rem;line-height:20px;margin-bottom:18px;text-align:left;text-transform:none}@media (min-width:1020px){.MvpdDialog-mvpdDialogBack{left:0;line-height:33px;position:absolute;top:42px}}@media (min-width:1340px){.MvpdDialog-mvpdDialogBack{top:45px}}.MvpdDialog-mvpd-dialog__predictive-input{border:none;width:100%}.MvpdDialog-mvpdDialogPredictive{position:relative}.MvpdDialog-mvpdDialogPredictive .MvpdDialog-mvpdPredictiveResults{left:0;max-height:240px;overflow-y:scroll;position:absolute;right:0;z-index:1}@media (min-width:1020px){.MvpdDialog-mvpdDialogPredictive .MvpdDialog-mvpdPredictiveResults{max-height:250px}}.MvpdDialog-mvpdDialogFullList{position:relative}.MvpdDialog-mvpdDialogFullList .MvpdDialog-mvpdDialogDescription{margin-top:20px}@media (min-width:760px){.MvpdDialog-mvpdDialogFullList .MvpdDialog-mvpdDialogDescription{font-size:1.375rem;margin-bottom:18px}}@media (min-width:1020px){.MvpdDialog-mvpdDialogFullList .MvpdDialog-mvpdDialogDescription{font-size:1.125rem;margin-top:32px}}@media (min-width:1340px){.MvpdDialog-mvpdDialogFullList .MvpdDialog-mvpdDialogDescription{font-size:1.375rem;margin-top:48px}}.MvpdDialog-mvpdDialogSubscribe{background-color:#383838;margin-bottom:5.5rem}.MvpdConcurrencyMessage-container{align-items:center;background:radial-gradient(51.05% 62.78% at 50% 26.48%,#062f62 0,#062956 37.18%,#051838 100%);display:flex;flex-direction:column;justify-content:center;padding:23px;width:100%}.MvpdConcurrencyMessage-logo{height:27px;margin-bottom:10px;width:185px}.MvpdConcurrencyMessage-message{margin-bottom:32px;width:350px}@media (max-width:359px){.MvpdConcurrencyMessage-message{width:266px}}.MvpdConcurrencyMessage-message p{color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:23px;font-weight:700;line-height:28px;text-align:center}@media (max-width:359px){.MvpdConcurrencyMessage-message p{font-size:18px;line-height:24px}}.MvpdConcurrencyMessage-tryAgainButton{align-items:center;appearance:none;background-color:#005594;border:1px solid #002f6c;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px!important;justify-content:center;letter-spacing:1px;margin:0 auto;padding:0 20px;padding:0!important;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:191px}.MvpdConcurrencyMessage-tryAgainButton>span{display:block;line-height:12px}.MvpdConcurrencyMessage-tryAgainButton [class*=" icon-"],.MvpdConcurrencyMessage-tryAgainButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.MvpdConcurrencyMessage-tryAgainButton [class*=" icon-"]:before,.MvpdConcurrencyMessage-tryAgainButton [class^=icon-]:before{line-height:12px}.MvpdConcurrencyMessage-tryAgainButton:focus,.MvpdConcurrencyMessage-tryAgainButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.MvpdConcurrencyMessage-tryAgainButton[class*=touchButton]:hover{background-color:#005594;border-color:#002f6c;color:#fff}@media (hover:hover){.MvpdConcurrencyMessage-tryAgainButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.MvpdConcurrencyMessage-tryAgainButton{padding:0 30px;width:auto}}@media (max-width:359px){.MvpdConcurrencyMessage-tryAgainButton{width:100%}}@media (min-width:760px){.MvpdConcurrencyMessage-tryAgainButton{width:191px}}.MvpdConcurrencyMessage-tryAgainButton:last-child{margin-bottom:7px}.MvpdRedirect-unsupportedDevice{position:relative}.MvpdRedirect-redirectScreenMobile,.MvpdRedirect-redirectScreenTablet{height:auto;width:100%}.MvpdRedirect-appleButtonMobile{display:block;left:10%;position:absolute;top:55%;width:35%}.MvpdRedirect-appleButtonTablet{display:block;left:17%;position:absolute;top:70%;width:25%}.MvpdRedirect-androidButtonMobile{display:block;position:absolute;right:10%;top:55%;width:35%}.MvpdRedirect-androidButtonTablet{display:block;position:absolute;right:17%;top:70%;width:25%}.MvpdRedirect-downloadButton{height:auto;width:100%}.BionicPlayer-videoPlayer{height:100%;width:100%}.BionicPlayer-playerContainer{background-color:#000;height:90%;padding:60px 0}.BionicPlayer-playerContainer iframe{border:none}@media (min-width:760px){.BionicPlayer-playerContainer{margin:0 auto;max-height:calc(100vh - 130px);max-width:calc(177.77778vh - 231.11111px);padding:30px 120px}}.BionicPlayer-playerContainerUninitialized{background-color:initial;position:absolute;top:0;width:100%}.BionicPlayer-playerContainerHidden{display:none}.BionicPlayer-slate{display:flex;height:100%;padding-top:20px;vertical-align:middle}.BionicPlayer-slateimg{margin:auto;max-height:50vh;max-width:100%}.video-player-progress{display:none!important}.video-player__controls{margin:0 auto 8%!important}@media (min-width:760px){.video-player__controls{margin:0 auto 6%!important}}.video-player__controls__container{background-color:initial!important;height:39px!important}.PlayerLoader{position:unset!important}.video-ccoptions__overlay{display:block!important;position:unset!important;width:200px!important}.ccoptions-menu__content{bottom:40%!important;float:right!important;height:60px!important;position:absolute!important;right:12%!important;top:unset!important;width:unset!important;z-index:20!important}#ccPageOptions-audio-main,#ccPageOptions-captions-en,#ccPageOptions-edge-none{display:none!important}.video-ccoptions__header{border-bottom:1px solid #fcb700!important;color:#fcb700!important;font-family:Proxima Nova,Helvetica,Arial,sans-serif!important;font-size:20px!important;font-weight:700!important;margin-left:15px!important;padding:unset!important;padding-top:30px!important;width:90%!important}.video-ccoptions__close-button:before{margin-right:12px!important;margin-top:4px!important}.video-ccoptions__menu--item .video-ccoptions__menu--checkbox .checkbox__content{font-family:Proxima Nova,Helvetica,Arial,sans-serif!important;font-size:18px}.video-ccoptions__menu--item .video-ccoptions__menu--checkbox .checkbox__icon{float:right!important;position:absolute!important;right:0}.video-ccoptions__menu--item .video-ccoptions__item--icon{float:right;height:16px;margin-right:7px;position:absolute;right:0;width:16px}.video-ccoptions__submenu--title{font-family:Proxima Nova,Helvetica,Arial,sans-serif!important;font-size:16px!important}#audio-label{padding-top:20px}.video-ccoptions__close-button--wrapper .video-ccoptions__close-button:before{margin-top:10px!important}.ccpreferences-overlay__content,.video-ccpreferences__overlay{font-family:Proxima Nova,Helvetica,Arial,sans-serif!important}.ccpreferences-overlay__content{left:0!important}.video-ccpreferences__header{font-family:Proxima Nova,Helvetica,Arial,sans-serif!important}#captions-label{padding-top:10px!important}.video-ccoptions__panel{background-color:#000000b3!important}.BionicPlayer-geoErrorSlate{background:linear-gradient(#005594,#002f6c);height:50vh;margin:auto;position:relative;top:5vh;width:80vh}.BionicPlayer-geoErrorSlateText{color:#fff;font-size:26px;font-weight:500;line-height:2.5;margin:auto;position:relative;text-align:center;top:10vh}.BionicPlayer-geoRedirectLink{color:#fff;font-size:27px;font-weight:500;text-decoration:underline}.BionicPlayer-geoCNBCLogo{height:100px;margin:auto;position:relative;top:65px}@media only screen and (min-height:360px) and (max-height:700px){.BionicPlayer-geoErrorSlateText{font-size:18px;line-height:2;margin-top:10px}.BionicPlayer-geoRedirectLink{font-size:18px}.BionicPlayer-geoCNBCLogo{height:80px}}@media only screen and (max-width:1440px){.ccoptions-menu__content{right:8%!important}}@media only screen and (max-width:1340px){.ccoptions-menu__content{right:4%!important}}@media only screen and (min-width:1180px) and (max-width:1250px){.ccoptions-menu__content{height:70px!important}}@media only screen and (max-width:1020px){.ccoptions-menu__content{height:85px!important}.video-ccoptions__header{font-size:16px!important}.video-ccoptions__menu--item .video-ccoptions__menu--checkbox .checkbox__content{font-size:14px!important}.video-ccoptions__menu--item .video-ccoptions__item--icon{height:12px;width:12px}.video-ccoptions__submenu--title{font-size:12px!important}}@media only screen and (max-width:1180px){.ccoptions-menu__content{height:100px!important}}@media only screen and (max-height:800px){.ccoptions-menu__content{height:100px!important}}@media only screen and (max-height:700px){.ccoptions-menu__content{height:120px!important}.video-ccoptions__header{font-size:16px!important}.video-ccoptions__menu--item .video-ccoptions__menu--checkbox .checkbox__content{font-size:14px!important}.video-ccoptions__menu--item .video-ccoptions__item--icon{height:12px;width:12px}.video-ccoptions__submenu--title{font-size:12px!important}}.BionicPlayer-tempPassPlayerContainer{height:100%;width:100%}.BionicPlayer-tempPassPlayerContainer video{display:flex}.BionicPlayer-tempPassPlayerContainer .video-player__controls--cc,.BionicPlayer-tempPassPlayerContainer .video-player__controls--fullscreen{display:none!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls{margin-bottom:0!important;padding:0!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls__container{align-items:center;border-radius:0!important;height:28px!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls--button{bottom:auto!important;height:24px!important;width:24px!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls--button img,.BionicPlayer-tempPassPlayerContainer .video-player__controls--button svg{height:50%!important;transform:translate(-50%,-50%)!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls--button:first-child{margin-left:5px!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls__volume{bottom:auto!important;display:flex;left:30px!important;position:absolute!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls--slider{display:none!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls__top-button--icon{height:18px!important;width:18px!important}.LivePlayerChannel-channelContainer{background-color:#171717;display:block;overflow:visible;padding:10px;position:relative;width:100%}.LivePlayerChannel-channelContainer *{box-sizing:border-box}.LivePlayerChannel-channelHolder{background-color:#171717;display:flex;flex-wrap:wrap;justify-content:center;padding:5px 8px;width:100%}@media (max-width:1019px){.LivePlayerChannel-channelHolder{align-items:center;flex-direction:column;padding:5px 8px}}.LivePlayerChannel-leftContainer{display:block;width:295px}@media (max-width:1339px){.LivePlayerChannel-leftContainer{display:none}}.LivePlayerChannel-channels,.LivePlayerChannel-rightContainer{display:flex;text-align:center}.LivePlayerChannel-channels{background:#3cb87833;border-radius:26px;flex-direction:row;height:31px;margin-bottom:16px;margin-top:16px;position:relative;width:336px}.LivePlayerChannel-channels .LivePlayerChannel-slider{background-color:#3cb878;border-radius:30px;height:31px;left:0;position:absolute;top:0;transition:left .2s ease-in-out;width:112px}@media (max-width:759px){.LivePlayerChannel-channels .LivePlayerChannel-slider{width:88px}}.LivePlayerChannel-channels .LivePlayerChannel-buttonContainer{display:flex;flex-wrap:nowrap;width:336px}.LivePlayerChannel-channels .LivePlayerChannel-buttonContainer .LivePlayerChannel-selector{color:#000;cursor:pointer;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;height:31px;line-height:17px;transition:color .2s ease-in;width:112px;z-index:1}@media (max-width:759px){.LivePlayerChannel-channels .LivePlayerChannel-buttonContainer .LivePlayerChannel-selector{width:88px}}.LivePlayerChannel-channels .LivePlayerChannel-buttonContainer .LivePlayerChannel-buttonInactive{color:#fff;transition:color .2s ease-in}@media (max-width:759px){.LivePlayerChannel-channels{width:264px}}.LivePlayerChannel-embeddedPlayerSpacing{align-items:center;flex-direction:column}.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-rightContainer{justify-content:space-around;padding:0 22px 16px;text-align:center;width:295px}@media (max-width:1019px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-rightContainer{padding:0 16px 16px;width:300px}}@media (max-width:759px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-rightContainer{padding:0 22px 16px;width:300px}}.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels{background:#3cb87833;border-radius:26px;flex-direction:row;height:31px;margin-bottom:16px;margin-top:16px;position:relative;width:336px}.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-slider{background-color:#3cb878;border-radius:30px;height:31px;left:0;position:absolute;top:0;transition:left .2s ease-in-out;width:112px}@media (max-width:1019px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-slider{width:92px}}@media (max-width:759px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-slider{width:88px}}.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-buttonContainer{display:flex;flex-wrap:nowrap;width:336px}.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-buttonContainer .LivePlayerChannel-selector{color:#000;cursor:pointer;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;height:31px;line-height:17px;transition:color .2s ease-in;width:112px;z-index:1}@media (max-width:1019px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-buttonContainer .LivePlayerChannel-selector{width:92px}}@media (max-width:759px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-buttonContainer .LivePlayerChannel-selector{width:88px}}.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-buttonContainer .LivePlayerChannel-buttonInactive{color:#fff;transition:color .2s ease-in}@media (max-width:1019px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels{width:276px}}@media (max-width:759px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels{width:264px}}.LivePlayerChannel-rightContainer{justify-content:space-around;padding:8px 16px 22px;text-align:center;width:295px}@media (max-width:1019px){.LivePlayerChannel-rightContainer{padding:0 16px 16px;width:300px}}@media (max-width:759px){.LivePlayerChannel-rightContainer{padding:0 22px 16px;width:300px}}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton{cursor:pointer;display:flex;text-decoration:none;transition:background-color .15s ease-in 50ms}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton>.LivePlayerChannel-withEmphasis{height:26px;justify-content:center;padding:4px 0;transition:color .1s ease-in;width:133px}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton>.LivePlayerChannel-noEmphasis{height:26px;justify-content:center;padding:4px 0;transition:color .1s ease-in}.LivePlayerChannel-rightContainer .LivePlayerChannel-noEmphasisIcon,.LivePlayerChannel-rightContainer .LivePlayerChannel-withEmphasisIcon{fill:#d9d9d9;margin-right:8px;margin-top:2px;transition:fill .1s ease-in}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton:hover .LivePlayerChannel-noEmphasis,.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton:hover .LivePlayerChannel-withEmphasis{color:#fcb700}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton:hover .LivePlayerChannel-noEmphasisIcon,.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton:hover .LivePlayerChannel-withEmphasisIcon{fill:#fcb700}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton:active .LivePlayerChannel-withEmphasis{background-color:#fcb700;border-radius:30px;color:#171717}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton:active .LivePlayerChannel-withEmphasisIcon{fill:#171717}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton>span>img{display:inline-block;padding-right:8px;width:24px}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton>span{color:#d9d9d9;display:inline-flex;flex-wrap:nowrap;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:700;text-decoration:none}@media (max-width:1019px){.LivePlayerChannel-rightContainer{flex-direction:row;margin-left:0;text-align:center;top:40px}}.LiveTvGate-liveTvMvpd{height:100%;position:relative}.LiveTvGate-closeButton{align-items:center;background-color:#fff;border-radius:23px;display:flex;height:24px;justify-content:center;position:absolute;right:20px;width:24px}.LiveTvGate-closeButton svg path{fill:#00081a}.WatchLiveRightRail-containerFluidWidths{margin:0 auto;width:100%}@media (min-width:1020px){.WatchLiveRightRail-containerFluidWidths{max-width:960px}}@media (min-width:1340px){.WatchLiveRightRail-containerFluidWidths{max-width:1290px}}.WatchLiveRightRail-containerWidth100{width:100%}.WatchLiveRightRail-page{display:block;margin-bottom:25px;overflow:visible}@media (min-width:760px){.WatchLiveRightRail-page{margin-bottom:28px}}.WatchLiveRightRail-advertorialPage{display:block;overflow:visible}.WatchLiveRightRail-pageGrid{margin-left:auto;margin-right:auto;max-width:1290px;overflow:visible;width:100%}.WatchLiveRightRail-pageWrapper{margin:0 auto;max-width:100%}@media (min-width:760px){.WatchLiveRightRail-pageWrapper{max-width:678px}}@media (min-width:1020px){.WatchLiveRightRail-pageWrapper{max-width:960px}}@media (min-width:1340px){.WatchLiveRightRail-pageWrapper{max-width:1290px}}@media (min-width:760px){.WatchLiveRightRail-pageWrapper{max-width:100%!important}}.WatchLiveRightRail-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.WatchLiveRightRail-pageRow{padding-left:0;padding-right:0}}@media (min-width:1020px){.WatchLiveRightRail-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}}@media (min-width:1020px) and (min-width:760px){.WatchLiveRightRail-pageRow{padding-left:0;padding-right:0}}@media (max-width:1019px){.WatchLiveRightRail-pageRow{margin:0;padding:0}}@media (min-width:360px) and (max-width:759px){.WatchLiveRightRail-pageRow.WatchLiveRightRail-containerFluidWidths{padding:0 21px}}@media (min-width:760px) and (max-width:1019px){.WatchLiveRightRail-pageRow.WatchLiveRightRail-containerFluidWidths{padding:0 45px}}.WatchLiveRightRail-pageRowFlex{display:flex}.WatchLiveRightRail-rowUnderAd{margin-top:-29px}@media (min-width:1020px){.WatchLiveRightRail-rowUnderAd{margin-top:-50px}}@media (min-width:1340px){.WatchLiveRightRail-rowUnderAd{margin-top:-44px}}.WatchLiveRightRail-rowWithBackground{background:#cfd8e2;position:relative}.WatchLiveRightRail-rowWithBackground:after,.WatchLiveRightRail-rowWithBackground:before{background:#cfd8e2;content:"";display:block;height:100%;position:absolute;width:25vw}.WatchLiveRightRail-rowWithBackground:before{right:100%;top:0}.WatchLiveRightRail-rowWithBackground:after{left:100%;top:0}.WatchLiveRightRail-isAdvertorial{display:block;margin-bottom:50px!important}.WatchLiveRightRail-flipRowOrder .WatchLiveRightRail-col:first-child{order:2}@media (min-width:1020px){.WatchLiveRightRail-flipRowOrder .WatchLiveRightRail-col:first-child{order:1}}.WatchLiveRightRail-flipRowOrder .WatchLiveRightRail-col:last-child{order:1}@media (min-width:1020px){.WatchLiveRightRail-flipRowOrder .WatchLiveRightRail-col:last-child{order:2}}.WatchLiveRightRail-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.WatchLiveRightRail-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.WatchLiveRightRail-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.WatchLiveRightRail-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.WatchLiveRightRail-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.WatchLiveRightRail-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.WatchLiveRightRail-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.WatchLiveRightRail-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}.WatchLiveRightRail-containerFluidWidths .WatchLiveRightRail-col{max-width:678px!important;min-width:678px}}@media (min-width:760px){.WatchLiveRightRail-col-3{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.WatchLiveRightRail-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.WatchLiveRightRail-col-3{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.WatchLiveRightRail-col-3{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.WatchLiveRightRail-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.WatchLiveRightRail-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}.WatchLiveRightRail-col-3:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.WatchLiveRightRail-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}@media (min-width:760px){.WatchLiveRightRail-col-6{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.WatchLiveRightRail-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.WatchLiveRightRail-col-6{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.WatchLiveRightRail-col-6{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.WatchLiveRightRail-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.WatchLiveRightRail-col-6{flex-grow:0;flex-shrink:0;margin-left:0;margin-right:0;max-width:calc(44.44444% - 16.66667px);min-width:calc(44.44444% - 16.66667px)}.WatchLiveRightRail-col-6:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.WatchLiveRightRail-col-6{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(50% - 15px);min-width:calc(50% - 15px)}}.WatchLiveRightRail-col-9 .BrandBanner-container{margin-bottom:30px;z-index:99}@media (min-width:1340px){.WatchLiveRightRail-col-9 .BrandBanner-container{margin-left:calc(-50vw - -538.5px)}}@media (min-width:760px){.WatchLiveRightRail-col-9 .BrandBanner-container{margin-bottom:-100px;margin-top:50px}.WatchLiveRightRail-col-9{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.WatchLiveRightRail-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.WatchLiveRightRail-col-9{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.WatchLiveRightRail-col-9{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.WatchLiveRightRail-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.WatchLiveRightRail-col-9{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.WatchLiveRightRail-col-9:last-child{margin-right:0}}@media (min-width:1340px){.WatchLiveRightRail-col-9{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}.WatchLiveRightRail-col-9.WatchLiveRightRail-article{flex-grow:0;flex-shrink:0;margin-left:calc(8.33333% + 2.5px);max-width:calc(58.33333% - 12.5px);min-width:calc(58.33333% - 12.5px)}}@media (min-width:760px){.WatchLiveRightRail-col-12{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.WatchLiveRightRail-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.WatchLiveRightRail-col-12{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.WatchLiveRightRail-col-12{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.WatchLiveRightRail-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.WatchLiveRightRail-col-12{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.WatchLiveRightRail-col-12:last-child{margin-right:0}}@media (min-width:1340px){.WatchLiveRightRail-col-12{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}.WatchLiveRightRail-col-full{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.WatchLiveRightRail-col-full .MyComponentName-container{width:100vw}@media (min-width:1340px){.WatchLiveRightRail-col-full .MyComponentName-container{max-width:none}}.WatchLiveRightRail-col-full:last-child{margin-right:0}.WatchLiveRightRail-clear-col-padding{padding-bottom:0;padding-top:0}.WatchLiveRightRail-paddedWrapper{padding-bottom:15px;padding-top:15px}@media (min-width:1020px){.WatchLiveRightRail-paddedWrapper{padding-bottom:20px;padding-top:25px}.WatchLiveRightRail-hasBanner{margin-bottom:130px}}.WatchLiveRightRail-sidebar{flex-grow:0;flex-shrink:0;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.WatchLiveRightRail-sidebar{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.WatchLiveRightRail-sidebar{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.WatchLiveRightRail-sidebar{max-width:100%;min-width:100%}}@media (min-width:1340px){.WatchLiveRightRail-sidebar{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:360px){.WatchLiveRightRail-sidebar{min-width:100%}}@media (min-width:760px){.WatchLiveRightRail-sidebar{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}@media (min-width:1020px){.WatchLiveRightRail-sidebar{flex-grow:0;flex-shrink:0;margin-bottom:40px;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}}@media (min-width:1340px){.WatchLiveRightRail-sidebar{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}.WatchLiveRightRail-sidebarLeft{flex-grow:0;flex-shrink:0;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.WatchLiveRightRail-sidebarLeft{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.WatchLiveRightRail-sidebarLeft{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.WatchLiveRightRail-sidebarLeft{max-width:100%;min-width:100%}}@media (min-width:1340px){.WatchLiveRightRail-sidebarLeft{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:360px){.WatchLiveRightRail-sidebarLeft{min-width:100%}}@media (min-width:760px){.WatchLiveRightRail-sidebarLeft{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}@media (min-width:1020px){.WatchLiveRightRail-sidebarLeft{flex-grow:0;flex-shrink:0;margin-bottom:40px;margin-left:0;margin-right:30px;max-width:calc(22.22222% - 23.33333px);min-width:calc(22.22222% - 23.33333px);z-index:1}}@media (min-width:1340px){.WatchLiveRightRail-sidebarLeft{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}@media (min-width:1020px){.WatchLiveRightRail-sidebarLeftNav{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}}@media (min-width:1340px){.WatchLiveRightRail-sidebarLeftNav{flex-grow:0;flex-shrink:0;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}.WatchLiveRightRail-sidebarPro{margin-left:0;margin-right:30px}.WatchLiveRightRail-AdvertorialStory-ArticleHeader-1{display:hide}@media (min-width:360px){.WatchLiveRightRail-rightRail{display:none}}@media (min-width:1020px){.WatchLiveRightRail-rightRail{display:block}}.WatchLiveRightRail-mobileBanner.WatchLiveRightRail-berkshireEventContainer{margin:0 auto}@media (min-width:1020px){.WatchLiveRightRail-mobileBanner{display:none}}.WatchLiveRightRail-desktopBanner{display:none}@media (min-width:1020px){.WatchLiveRightRail-desktopBanner{display:block}}.WatchLiveRightRail-container{border:4px solid #002f6c;color:#002f6c;margin-bottom:30px;padding:8px 16px}.WatchLiveRightRail-container a{color:#002f6c}.WatchLiveRightRail-watchliveBannerV2{background:linear-gradient(#fff,#fff) padding-box,linear-gradient(to bottom right,#fccc12,#ff7112,#ef1541,#6e55dc,#069de0,#05ac3f) border-box;border:2px solid #0000;border-radius:4px;padding:16px 12px}.WatchLiveRightRail-header{display:flex;justify-content:space-between;margin-bottom:10px}.WatchLiveRightRail-header a{display:flex}.WatchLiveRightRail-liveTV{background:#fff;display:flex;font-size:14px;font-style:normal;font-weight:800;height:20px;line-height:18px;margin:-18px 0 0 -8px;padding:2px 10px;width:65px}.WatchLiveRightRail-liveTV img{margin-right:2px;width:22px}.WatchLiveRightRail-currTitle{display:block;font-size:20px;font-weight:800;line-height:18px;margin-bottom:10px;width:70%}@media (min-width:760px) and (max-width:1019px){.WatchLiveRightRail-currTitle{max-width:205px}}.WatchLiveRightRail-currTitle:hover{color:#4699d6}.WatchLiveRightRail-wlButton,.WatchLiveRightRail-wlButtonMobile{background:#ce2b2b;color:#fff!important;display:flex;font-weight:700;justify-content:space-evenly;margin-bottom:10px}.WatchLiveRightRail-wlButton:hover,.WatchLiveRightRail-wlButtonMobile:hover{background:#b40909}.WatchLiveRightRail-wlButton{display:none;font-size:12px;height:30px;padding:6px 4px}@media (min-width:1020px){.WatchLiveRightRail-wlButton{display:flex;width:130px}}.WatchLiveRightRail-wlButton .WatchLiveRightRail-logo{width:18px}.WatchLiveRightRail-wlButtonMobile{font-size:12px;padding:4px 6px}@media (min-width:760px){.WatchLiveRightRail-wlButtonMobile{display:flex;padding:4px;width:260px}}@media (min-width:1020px){.WatchLiveRightRail-wlButtonMobile{display:none}}.WatchLiveRightRail-contents{align-items:center;display:flex;justify-content:space-between}.WatchLiveRightRail-nextTitle{font-weight:800}.WatchLiveRightRail-footer{display:flex;font-size:12px;justify-content:space-between}.WatchLiveRightRail-footer .WatchLiveRightRail-audio{align-items:center;display:flex;font-size:12px;font-style:normal;font-weight:700;line-height:19px;margin-top:-3px;text-transform:capitalize}.WatchLiveRightRail-footer .WatchLiveRightRail-audio span{text-decoration:underline}.WatchLiveRightRail-footer .WatchLiveRightRail-nextShow{padding-right:22px}.WatchLiveRightRail-inline{border:none;border-top:3px solid #002f6c;padding:8px 0}@media (min-width:760px){.WatchLiveRightRail-inline{display:none}}@media (min-width:1020px){.WatchLiveRightRail-inline{display:block;margin-left:calc(16.66667% + 5px);min-width:auto}}@media (min-width:1340px){.WatchLiveRightRail-inline{margin-left:calc(14.28571% + 4.28571px);min-width:auto}}.WatchLiveRightRail-inline .WatchLiveRightRail-audio,.WatchLiveRightRail-inline .WatchLiveRightRail-liveTV{display:none}.WatchLiveRightRail-inline .WatchLiveRightRail-wlButton{margin-bottom:-10px;margin-top:0}.WatchLiveRightRail-berkshireEvent{margin-bottom:30px;max-width:300px;width:100%}@media (max-width:759px){.WatchLiveRightRail-berkshireEvent{display:block;margin:auto auto 15px;max-width:318px;width:100%}}.WatchLiveRightRail-BHmobileBanner{display:block}@media (min-width:480px){.WatchLiveRightRail-BHmobileBanner{display:none}}.WatchLiveRightRail-BHinline{display:none}.WatchLiveRightRail-BHrightRail{display:block}@media (min-width:760px){.WatchLiveRightRail-BHrightRail{display:none}}@media (min-width:1020px){.WatchLiveRightRail-BHrightRail{display:block}}.WatchLiveRightRail-audioLink{color:#001e5a;display:block;font-size:12px;font-weight:600;line-height:14.62px;margin-bottom:12px;text-decoration:underline;width:-moz-fit-content;width:fit-content}.WatchLiveRightRail-watchLivestreamButton{align-items:center;background-color:#0053cf;border-radius:5px;color:#fff!important;display:flex;font-size:14px;font-weight:700;justify-content:center;line-height:17.05px;margin-bottom:12px;min-height:51px}.WatchLiveRightRail-watchLivestreamButton span{animation:WatchLiveRightRail-pulse 1.5s infinite;animation-timing-function:ease-in-out;background-color:#fff;border-radius:100%;box-shadow:0 0 0 0 #fff;display:inline-block;height:8px;margin-right:8px;position:relative;transform:scale(1);width:8px}@keyframes WatchLiveRightRail-pulse{0%{box-shadow:0 0 0 1px #0053cf;opacity:1}70%{border:1px solid #0053cf;box-shadow:0 0 0 1px #fff;opacity:.9;padding:2px;transform:scale(1.2)}to{box-shadow:0 0 0 1px #fff;opacity:1;transform:scale(1)}}.WatchLiveRightRail-watchLivestreamButton:hover{background-color:#002f6c;color:#fff}.WatchLiveRightRail-footerV2{display:flex;flex-direction:column;gap:10px;justify-content:space-between}.WatchLiveRightRail-showDetailsContainer{align-items:center;display:flex;flex-direction:row;justify-content:space-between}.WatchLiveRightRail-nowText,.WatchLiveRightRail-upNextText{color:#001e5a;font-size:12px;font-weight:400;line-height:14.62px}.WatchLiveRightRail-liveShow{color:#002f6c;font-size:16px;font-weight:800;line-height:18px}@media (min-width:760px) and (max-width:1019px){.WatchLiveRightRail-liveShow{text-align:right}}.WatchLiveRightRail-nextShow{color:#002f6c;font-size:14px;font-weight:600;line-height:18px}@media (min-width:760px) and (max-width:1019px){.WatchLiveRightRail-nextShow{text-align:right;width:170px}}.TempPassOverlay-overlay{height:0;pointer-events:none;position:relative;width:100%;z-index:40}.TempPassOverlay-liveContainer{align-items:center;background:#27313c;border-radius:4px;display:flex;height:20px;justify-content:center;position:absolute;right:5px;top:5px;width:57px}@keyframes TempPassOverlay-blink{25%{opacity:1}50%{opacity:.4}75%{opacity:1}}.TempPassOverlay-redIcon{animation:TempPassOverlay-blink 2s linear infinite;background-clip:content-box;background-color:#ce2b2b;border:1px solid #b40909;border-radius:50%;box-sizing:initial;height:7px;margin-top:-1px;padding:2px;width:7px}.TempPassOverlay-liveText{color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:800;letter-spacing:.01em;line-height:15px;margin-left:5px;text-transform:uppercase}.TempPassOverlay-timerContainer{align-items:center;display:flex;height:20px;justify-content:left;position:absolute;right:5px;top:25px;width:57px}.TempPassOverlay-time{color:#fff;display:inline-block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:600;letter-spacing:.05em;line-height:14px;margin-left:5px;max-width:36px;min-width:36px;text-shadow:0 0 2px #000,0 0 1px #000;width:36px}.TempPassOverlay-linkOut{margin-top:2px;pointer-events:auto}.TempPassOverlay-linkIcon{filter:drop-shadow(0 0 .5px #000) drop-shadow(0 0 .5px #000)}.LogoOverlay-logoContainer{align-items:center;border-radius:4px;display:flex;height:20px;justify-content:center;pointer-events:none;position:absolute;right:66px;top:6px;width:auto;z-index:40}.LogoOverlay-logoContainer img{filter:drop-shadow(1px 1px 0 black) drop-shadow(-1px -1px 0 black) drop-shadow(-1px 1px 0 black) drop-shadow(1px -1px 0 black);height:auto;width:57px}.TempPass-playerContainer{background:#000;position:relative}.TempPass-omegaPlayerContainer{aspect-ratio:16/9;position:relative;z-index:0}.LiveTV-contentArea{background-color:#000;height:100%;min-height:60vh;width:100%}.LiveTV-contentAreaOmega{height:100%}.LiveTV-contentAreaOmega,.LiveTV-contentAreaOmegaPlus{background-color:#000;display:flex;flex-direction:column}.LiveTV-contentAreaOmegaPlus{height:487px}@media (max-width:1339px){.LiveTV-contentAreaOmegaPlus{height:325px}}@media (max-width:1019px){.LiveTV-contentAreaOmegaPlus{height:467px}}@media (max-width:759px){.LiveTV-contentAreaOmegaPlus{height:435px}}.LiveTV-slate{display:flex;height:100%;padding-top:20px;vertical-align:middle}.LiveTV-slateimg{margin:auto;max-height:50vh;max-width:100%}.liveTV{margin-bottom:0!important}.LiveTV-loadingContainer{align-items:center;display:flex;justify-content:center;min-height:60vh}.LiveTV-concurrencyMessage{align-items:stretch;display:flex;min-height:60vh}.LiveTV-wrapperForProAndTempPass{margin-bottom:20px;position:relative;width:100%}.LiveTV-channel{height:-moz-fit-content;height:fit-content}.LiveTV-channels,.LiveTV-leftContainer,.LiveTV-rightContainer{width:100%!important}.LiveTV-channels .LiveTV-buttonContainer .LiveTV-selector{text-align:center}.LiveTV-rightContainer .LiveTV-linkButton{justify-content:center;width:50%!important}.LiveTVContainer-containerFluidWidths{margin:0 auto;width:100%}@media (min-width:1020px){.LiveTVContainer-containerFluidWidths{max-width:960px}}@media (min-width:1340px){.LiveTVContainer-containerFluidWidths{max-width:1290px}}.LiveTVContainer-page{display:block;overflow:visible;padding-bottom:25px}@media (min-width:760px){.LiveTVContainer-page{padding-bottom:28px}}.LiveTVContainer-pageWrapper{margin:0 auto;max-width:100%}@media (min-width:760px){.LiveTVContainer-pageWrapper{max-width:678px}}@media (min-width:1020px){.LiveTVContainer-pageWrapper{max-width:960px}}@media (min-width:1340px){.LiveTVContainer-pageWrapper{max-width:1290px}}@media (min-width:760px){.LiveTVContainer-pageWrapper{max-width:100%!important}}.LiveTVContainer-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.LiveTVContainer-pageRow{padding-left:0;padding-right:0}}@media (min-width:1020px){.LiveTVContainer-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}}@media (min-width:1020px) and (min-width:760px){.LiveTVContainer-pageRow{padding-left:0;padding-right:0}}@media (max-width:1019px){.LiveTVContainer-pageRow{margin:0;padding:0}}.LiveTVContainer-gateContainer{background:#000;margin:0;padding:0}.LiveTVContainer-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.LiveTVContainer-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.LiveTVContainer-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.LiveTVContainer-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.LiveTVContainer-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.LiveTVContainer-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.LiveTVContainer-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.LiveTVContainer-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}.LiveTVContainer-containerFluidWidths .LiveTVContainer-col{max-width:678px!important;min-width:678px}}@media (min-width:760px){.LiveTVContainer-col-3{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.LiveTVContainer-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.LiveTVContainer-col-3{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.LiveTVContainer-col-3{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.LiveTVContainer-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.LiveTVContainer-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}.LiveTVContainer-col-3:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.LiveTVContainer-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}@media (min-width:760px){.LiveTVContainer-col-6{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.LiveTVContainer-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.LiveTVContainer-col-6{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.LiveTVContainer-col-6{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.LiveTVContainer-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.LiveTVContainer-col-6{flex-grow:0;flex-shrink:0;margin-left:0;margin-right:0;max-width:calc(44.44444% - 16.66667px);min-width:calc(44.44444% - 16.66667px)}.LiveTVContainer-col-6:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.LiveTVContainer-col-6{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(50% - 15px);min-width:calc(50% - 15px)}}.LiveTVContainer-col-9 .BrandBanner-container{margin-bottom:30px;z-index:99}@media (min-width:1340px){.LiveTVContainer-col-9 .BrandBanner-container{margin-left:calc(-50vw - -538.5px)}}@media (min-width:760px){.LiveTVContainer-col-9 .BrandBanner-container{margin-bottom:-100px;margin-top:50px}.LiveTVContainer-col-9{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.LiveTVContainer-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.LiveTVContainer-col-9{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.LiveTVContainer-col-9{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.LiveTVContainer-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.LiveTVContainer-col-9{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.LiveTVContainer-col-9:last-child{margin-right:0}}@media (min-width:1340px){.LiveTVContainer-col-9{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}.LiveTVContainer-col-9.LiveTVContainer-article{flex-grow:0;flex-shrink:0;margin-left:calc(8.33333% + 2.5px);max-width:calc(58.33333% - 12.5px);min-width:calc(58.33333% - 12.5px)}}@media (min-width:760px){.LiveTVContainer-col-12{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.LiveTVContainer-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.LiveTVContainer-col-12{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.LiveTVContainer-col-12{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.LiveTVContainer-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.LiveTVContainer-col-12{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.LiveTVContainer-col-12:last-child{margin-right:0}}@media (min-width:1340px){.LiveTVContainer-col-12{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}.LiveTVContainer-col-full{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.LiveTVContainer-col-full .MyComponentName-container{width:100vw}@media (min-width:1340px){.LiveTVContainer-col-full .MyComponentName-container{max-width:none}}.LiveTVContainer-col-full:last-child{margin-right:0}.LiveTVContainer-container{min-height:500px}@media (min-width:1020px){.LiveTVContainer-container{margin:0 auto;max-width:100%}}@media (min-width:1020px) and (min-width:760px){.LiveTVContainer-container{max-width:678px}}@media (min-width:1020px) and (min-width:1020px){.LiveTVContainer-container{max-width:960px}}@media (min-width:1020px) and (min-width:1340px){.LiveTVContainer-container{max-width:1290px}}@media (max-width:1019px){.LiveTVContainer-container{padding:0 30px}}@media (max-width:759px){.LiveTVContainer-container{margin-top:-1px;padding:0 20px}}.LiveTVContainer-mvpdContainer{background-color:#000;bottom:0;left:0;padding-top:20px;position:absolute;right:0;top:0}.LiveTVContainer-liveTvMvpd{height:100%;position:relative}.LiveTVContainer-closeButton{align-items:center;background-color:#fff;border-radius:23px;display:flex;height:24px;justify-content:center;position:absolute;right:20px;width:24px}.LiveTVContainer-closeButton svg path{fill:#00081a}.LiveTVPage-container{min-height:800px}@media (max-width:1019px){.LiveTVPage-container{min-height:1100px}}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:800;src:local("~assets/fonts/Lyon/LyonText-Black-Web-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Black-Web-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:800;src:local("~assets/fonts/Lyon/LyonText-Black-Web-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Black-Web-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:800;src:local("~assets/fonts/Lyon/LyonText-Black-Web-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Black-Web-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:600;src:local("~assets/fonts/Lyon/LyonText-Bold-Web-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Bold-Web-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:600;src:local("~assets/fonts/Lyon/LyonText-Bold-Web-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Bold-Web-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:600;src:local("~assets/fonts/Lyon/LyonText-Bold-Web-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Bold-Web-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:400;src:local("~assets/fonts/Lyon/LyonText-Regular-Web-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Regular-Web-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:400;src:local("~assets/fonts/Lyon/LyonText-Regular-Web-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Regular-Web-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:400;src:local("~assets/fonts/Lyon/LyonText-Regular-Web-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Regular-Web-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lyon;font-style:italic;font-weight:400;src:local("~assets/fonts/Lyon/LyonText-RegularItalic-Web-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-RegularItalic-Web-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Lyon;font-style:italic;font-weight:400;src:local("~assets/fonts/Lyon/LyonText-RegularItalic-Web-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-RegularItalic-Web-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lyon;font-style:italic;font-weight:400;src:local("~assets/fonts/Lyon/LyonText-RegularItalic-Web-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-RegularItalic-Web-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:500;src:local("~assets/fonts/Lyon/LyonText-Semibold-Web-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Semibold-Web-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:500;src:local("~assets/fonts/Lyon/LyonText-Semibold-Web-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Semibold-Web-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:500;src:local("~assets/fonts/Lyon/LyonText-Semibold-Web-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Semibold-Web-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0-oriya.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0-oriya.woff2) format("woff2");unicode-range:"U+0964-0965, U+0B01-0B77, U+200C-200D, U+20B9, U+25CC"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0-greek.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0-greek.woff2) format("woff2");unicode-range:"U+0370-03FF"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0-cyrillic-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0-cyrillic-ext.woff2) format("woff2");unicode-range:"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0-cyrillic.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0-cyrillic.woff2) format("woff2");unicode-range:"U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0-oriya.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0-oriya.woff2) format("woff2");unicode-range:"U+0964-0965, U+0B01-0B77, U+200C-200D, U+20B9, U+25CC"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0-greek.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0-greek.woff2) format("woff2");unicode-range:"U+0370-03FF"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0-cyrillic-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0-cyrillic-ext.woff2) format("woff2");unicode-range:"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0-cyrillic.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0-cyrillic.woff2) format("woff2");unicode-range:"U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0-oriya.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0-oriya.woff2) format("woff2");unicode-range:"U+0964-0965, U+0B01-0B77, U+200C-200D, U+20B9, U+25CC"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0-greek.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0-greek.woff2) format("woff2");unicode-range:"U+0370-03FF"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0-cyrillic-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0-cyrillic-ext.woff2) format("woff2");unicode-range:"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0-cyrillic.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0-cyrillic.woff2) format("woff2");unicode-range:"U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0-oriya.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0-oriya.woff2) format("woff2");unicode-range:"U+0964-0965, U+0B01-0B77, U+200C-200D, U+20B9, U+25CC"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0-greek.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0-greek.woff2) format("woff2");unicode-range:"U+0370-03FF"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0-cyrillic-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0-cyrillic-ext.woff2) format("woff2");unicode-range:"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0-cyrillic.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0-cyrillic.woff2) format("woff2");unicode-range:"U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:800;src:local("~assets/fonts/ProximaNova/351C86_0_0-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_0_0-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:800;src:local("~assets/fonts/ProximaNova/351C86_0_0-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_0_0-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:600;src:local("~assets/fonts/ProximaNova/351C86_1_0-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_1_0-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:600;src:local("~assets/fonts/ProximaNova/351C86_1_0-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_1_0-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:700;src:local("~assets/fonts/ProximaNova/351C86_2_0-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_2_0-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:700;src:local("~assets/fonts/ProximaNova/351C86_2_0-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_2_0-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:400;src:local("~assets/fonts/ProximaNova/351C86_3_0-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_3_0-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:400;src:local("~assets/fonts/ProximaNova/351C86_3_0-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_3_0-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:500;src:local("~assets/fonts/ProximaNova/351C86_4_0-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_4_0-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:500;src:local("~assets/fonts/ProximaNova/351C86_4_0-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_4_0-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-gujarati.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-gujarati.woff2) format("woff2");unicode-range:"U+0964-0965, U+0A80-0AFF, U+200C-200D, U+20B9, U+25CC, U+A830-A839"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-myanmar.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-myanmar.woff2) format("woff2");unicode-range:"U+1000-109F, U+200C-200D, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-devanagari.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-devanagari.woff2) format("woff2");unicode-range:"U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-thai.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-thai.woff2) format("woff2");unicode-range:"U+0E01-0E5B, U+200C-200D, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-bengali.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-bengali.woff2) format("woff2");unicode-range:"U+0964-0965, U+0981-09FB, U+200C-200D, U+20B9, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-telugu.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-telugu.woff2) format("woff2");unicode-range:"U+0951-0952, U+0964-0965, U+0C00-0C7F, U+1CDA, U+200C-200D, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-khmer.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-khmer.woff2) format("woff2");unicode-range:"U+1780-17FF, U+200C, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-tamil.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-tamil.woff2) format("woff2");unicode-range:"U+0964-0965, U+0B82-0BFA, U+200C-200D, U+20B9, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-kannada.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-kannada.woff2) format("woff2");unicode-range:"U+0964-0965, U+0C82-0CF2, U+200C-200D, U+20B9, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-gurmukhi.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-gurmukhi.woff2) format("woff2");unicode-range:"U+0964-0965, U+0A01-0A75, U+200C-200D, U+20B9, U+25CC, U+262C, U+A830-A839"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-malayalam.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-malayalam.woff2) format("woff2");unicode-range:"U+0307, U+0323, U+0964-0965, U+0D02-0D7F, U+200C-200D, U+20B9, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-oriya.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-oriya.woff2) format("woff2");unicode-range:"U+0964-0965, U+0B01-0B77, U+200C-200D, U+20B9, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-hebrew.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-hebrew.woff2) format("woff2");unicode-range:"U+0590-05FF, U+20AA, U+25CC, U+FB1D-FB4F"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-sinhala.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-sinhala.woff2) format("woff2");unicode-range:"U+0964-0965, U+0D82-0DF4, U+200C-200D, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lato;font-style:normal;font-weight:400;src:local("~assets/fonts/Lato/Lato-Regular-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-Regular-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lato;font-style:normal;font-weight:400;src:local("~assets/fonts/Lato/Lato-Regular-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-Regular-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lato;font-style:normal;font-weight:700;src:local("~assets/fonts/Lato/Lato-Bold-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-Bold-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lato;font-style:normal;font-weight:700;src:local("~assets/fonts/Lato/Lato-Bold-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-Bold-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lato;font-style:normal;font-weight:900;src:local("~assets/fonts/Lato/Lato-Black-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-Black-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lato;font-style:normal;font-weight:900;src:local("~assets/fonts/Lato/Lato-Black-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-Black-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lato;font-style:italic;font-weight:400;src:local("~assets/fonts/Lato/Lato-RegularItalic-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-RegularItalic-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lato;font-style:italic;font-weight:400;src:local("~assets/fonts/Lato/Lato-RegularItalic-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-RegularItalic-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lato;font-style:italic;font-weight:700;src:local("~assets/fonts/Lato/Lato-BoldItalic-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-BoldItalic-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lato;font-style:italic;font-weight:700;src:local("~assets/fonts/Lato/Lato-BoldItalic-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-BoldItalic-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lato;font-style:italic;font-weight:900;src:local("~assets/fonts/Lato/Lato-BlackItalic-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-BlackItalic-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lato;font-style:italic;font-weight:900;src:local("~assets/fonts/Lato/Lato-BlackItalic-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-BlackItalic-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}.SearchGroup-container{border-top:6px solid #002f6c;display:block;width:100%}.SearchGroup-container.SearchGroup-railVariant{margin-bottom:0}@media (min-width:760px){.SearchGroup-container.SearchGroup-railVariant{margin-bottom:20px}}@media (min-width:1020px){.SearchGroup-container.SearchGroup-railVariant{margin-bottom:20px}}.SearchGroup-header{align-items:flex-start;background:#fff;display:flex;flex-direction:row;justify-content:space-between;padding:10px 0}@media (min-width:760px){.SearchGroup-header{align-items:center}}.SearchGroup-sectionTitle{color:#002f6c;font-size:22px;font-weight:800;line-height:1.2;margin:0;text-transform:uppercase}@media (min-width:1020px){.SearchGroup-sectionTitle{font-size:14px}}.SearchGroup-railVariant .SearchGroup-sectionTitle{font-size:18px;font-weight:800}@media (min-width:760px){.SearchGroup-railVariant .SearchGroup-sectionTitle{font-size:20px}}@media (min-width:1340px){.SearchGroup-railVariant .SearchGroup-sectionTitle{font-size:30px}}.SearchGroup-contentButton{color:#002f6c;display:inline-block;font-size:12px;font-weight:700;letter-spacing:1px;margin-top:10px;text-transform:uppercase;vertical-align:middle;white-space:nowrap}.SearchGroup-contentButton i{font-style:normal;margin-right:3px}.SearchGroup-railVariant .SearchGroup-contentButton{margin:10px 0 0}@media (min-width:760px){.SearchGroup-contentButton{margin:0 0 0 25px}.SearchGroup-railVariant .SearchGroup-contentButton{margin:0 0 0 auto}}@media (min-width:1020px){.SearchGroup-contentButton{line-height:1}.SearchGroup-railVariant .SearchGroup-contentButton{margin:5px 0 0}}@media (min-width:1340px){.SearchGroup-railVariant .SearchGroup-contentButton{flex-grow:0;margin:0 0 0 24px}}.SearchGroup-headerButton{margin:0 0 0 50px}.SearchGroup-headerButton .icon-short-arrow-right{display:inline-block;margin-left:3px;margin-right:0;vertical-align:middle}@media (min-width:760px){.SearchGroup-headerButton{margin-left:auto}}.SearchGroup-content{position:relative}.SearchGroup-item{border-top:1px dashed #9b9b9b;display:flex;flex-direction:row;flex-wrap:wrap;padding:8px 5px}.SearchGroup-item:nth-of-type(1n+6){display:none}.SearchGroup-item:nth-child(2n){background-color:#f2f2f2}@media (min-width:360px){.SearchGroup-item:nth-of-type(1n+6){display:none}}@media (min-width:760px){.SearchGroup-item{flex-wrap:nowrap;padding:20px 5px}.SearchGroup-item:nth-of-type(1n+4){display:block}.SearchGroup-item:nth-of-type(1n+6){display:none}.SearchGroup-railVariant .SearchGroup-item{flex-wrap:wrap}}@media (min-width:1020px){.SearchGroup-item{min-height:53px;padding:10px}}@media (min-width:1340px){.SearchGroup-railVariant .SearchGroup-item{flex-wrap:nowrap}}.SearchGroup-itemIdentifier{display:block;flex-grow:1;float:left;min-width:50%;width:60%}@media (min-width:760px){.SearchGroup-itemIdentifier{min-width:0;width:auto}.SearchGroup-railVariant .SearchGroup-itemIdentifier{max-width:42%;min-width:42%}}@media (min-width:1020px){.SearchGroup-railVariant .SearchGroup-itemIdentifier{max-width:50%;min-width:50%}}@media (min-width:1340px){.SearchGroup-railVariant .SearchGroup-itemIdentifier{max-width:100%;min-width:0}}.SearchGroup-itemTitle{color:#171717;display:block;font-size:16px;font-weight:800;line-height:1.25;text-transform:uppercase}.SearchGroup-itemTitle:focus,.SearchGroup-itemTitle:hover{color:#005594}.SearchGroup-itemSubTitle{color:#747474;display:block;font-size:14px;line-height:1.4;margin-top:5px}@media (min-width:1020px){.SearchGroup-itemSubTitle{font-size:12px;line-height:1}}.SearchGroup-railVariant .SearchGroup-itemSubTitle{font-weight:500}.SearchGroup-marketChange{color:#747474;display:block;font-size:14px;font-weight:600;line-height:1.42;margin-left:auto;min-width:40%;text-align:right;text-transform:uppercase}@media (min-width:760px){.SearchGroup-marketChange{min-width:0}}@media (min-width:1020px){.SearchGroup-marketChange{font-size:12px;line-height:1}.SearchGroup-railVariant .SearchGroup-marketChange{max-width:50%;min-width:50%}}@media (min-width:1340px){.SearchGroup-railVariant .SearchGroup-marketChange{max-width:100%;min-width:0}}.SearchGroup-marketChangeUp{color:#008456}.SearchGroup-marketChangeDown{color:#ce2b2b}.SearchGroup-change,.SearchGroup-change_pct{display:block}.SearchGroup-change_pct{margin-top:5px}.SearchGroup-label{color:#747474;display:block;font-size:14px;font-weight:600;line-height:1.42;margin-left:auto;text-align:right;text-transform:uppercase}@media (min-width:1020px){.SearchGroup-label{font-size:12px;line-height:1}}.SearchGroup-noSavedData{border-top:1px dashed #9b9b9b;display:block;padding:20px 0}@media (min-width:1020px){.SearchGroup-noSavedData{padding:10px 0 0}}@media (min-width:1340px){.SearchGroup-noSavedData{padding-top:18px}}.SearchGroup-callToActionTitle{color:#171717;display:block;font-size:20px;font-weight:700;line-height:1.2;margin:0}.SearchGroup-callToActionDescription{color:#5d5d5d;display:block;font-size:14px;font-weight:500;line-height:1.28;margin:10px 0 20px}.SearchGroup-callToActionDescription .SearchGroup-emphasized{font-weight:600;text-transform:uppercase}@media (min-width:760px){.SearchGroup-callToActionDescription{font-size:12px;line-height:1.33;margin:10px 0 30px;max-width:382px;width:70%}}@media (min-width:1020px){.SearchGroup-callToActionDescription{font-size:12px;line-height:1.33;margin:10px 0 20px;max-width:100%;width:100%}}.SearchGroup-callToActionButton{align-items:center;appearance:none;background-color:#002f6c;border:1px solid #002f6c;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.SearchGroup-callToActionButton>span{display:block;line-height:12px}.SearchGroup-callToActionButton [class*=" icon-"],.SearchGroup-callToActionButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.SearchGroup-callToActionButton [class*=" icon-"]:before,.SearchGroup-callToActionButton [class^=icon-]:before{line-height:12px}.SearchGroup-callToActionButton:focus,.SearchGroup-callToActionButton:hover{background-color:#2077b6;border-color:#2077b6;color:#fff}.SearchGroup-callToActionButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}@media (hover:hover){.SearchGroup-callToActionButton[class*=touchButton]:hover{background-color:#2077b6;border-color:#2077b6;color:#fff}}@media (min-width:760px){.SearchGroup-callToActionButton{max-width:236px;padding:0 30px;width:auto}}.SearchGroup-noResults{border-top:1px dotted #9b9b9b;color:#5d5d5d;font-size:14px;font-weight:500;padding-top:10px}.SearchGroup-noResults span{font-weight:700}.SearchResult-searchResult{border-bottom:1px dashed #9b9b9b;margin-bottom:20px;padding-bottom:20px}@media (min-width:760px){.SearchResult-searchResult{display:flex;flex-direction:row;margin-bottom:30px;padding-bottom:30px}}@media (min-width:1020px){.SearchResult-searchResult{margin-bottom:40px;padding-bottom:40px}}@media (min-width:1340px){.SearchResult-searchResult{margin-left:-30px}}.SearchResult-searchResult:last-child{border-bottom:0;padding-bottom:0}.SearchResult-searchResult.SearchResult-standardVariant{justify-content:space-between}@media (min-width:1340px){.SearchResult-searchResult.SearchResult-standardVariant{margin-left:0}}.SearchResult-searchResultCard{margin-bottom:10px}.SearchResult-standardVariant .SearchResult-searchResultCard{height:150px;padding-bottom:50%}@media (min-width:760px){.SearchResult-searchResultCard{margin-bottom:-20px;order:2;width:calc(33.33333% - 15px)}.SearchResult-standardVariant .SearchResult-searchResultCard{flex:1 1 300px;padding-bottom:inherit}}@media (min-width:1020px){.SearchResult-standardVariant .SearchResult-searchResultCard{margin-bottom:20px}}@media (min-width:1340px){.SearchResult-searchResultCard{width:calc(30% - 15px)}.SearchResult-standardVariant .SearchResult-searchResultCard{flex:1 1 300px}}.PlayButton-container{border-top:6px solid #fcb700;height:100%;left:0;position:absolute;top:0;width:100%;z-index:1}.PlayButton-base{align-items:center;background-color:#fcb700;color:#fff;display:flex;font-size:12px;height:40px;justify-content:center;position:absolute;right:0;top:-5px;transition:all .15s linear;width:40px;z-index:1}.PlayButton-base:focus .PlayButton-flyout,.PlayButton-base:hover .PlayButton-flyout,.PlayButton-basebutton:focus .PlayButton-flyout,.PlayButton-basebutton:hover .PlayButton-flyout{color:#071d39;transform:scaleX(1);transition:color .15s linear .15s,transform .15s linear}.PlayButton-flyout{background-color:#fcb700;color:#071d39;font-size:9px;font-weight:800;height:100%;letter-spacing:1px;line-height:1;position:absolute;right:35px;text-align:left;text-transform:uppercase;top:0;transform:scaleX(0);transform-origin:center right;transition:color .15s linear,transform .15s linear .15s;width:90px;z-index:1}.PlayButton-flyout,.PlayButton-icon{align-items:center;display:flex;justify-content:center}.PlayButton-icon{border:2px solid #fcb700;height:30px;transition:border .15s linear;width:30px;z-index:2}.PlayButton-icon:focus,.PlayButton-icon:hover,.PlayButton-iconbutton:focus,.PlayButton-iconbutton:hover{border:2px solid #fff}@media (min-width:760px){.SearchResult-searchResultContent{margin-right:30px;width:calc(66.66667% - 15px)}.SearchResult-standardVariant .SearchResult-searchResultContent{flex:1 1 340px}}@media (min-width:1340px){.SearchResult-searchResultContent{width:calc(70% - 15px)}.SearchResult-standardVariant .SearchResult-searchResultContent{flex:1 0 410px}}.SearchResult-searchHighlight{background-color:#e7ecf1}.SearchResult-searchResultEyebrow{color:#732634;font-size:12px;font-weight:500;letter-spacing:2px;line-height:1.116;margin-bottom:10px;text-transform:uppercase}.SearchResult-standardVariant .SearchResult-searchResultEyebrow{color:#005594;font-weight:700;letter-spacing:1px}.SearchResult-searchResultTitle{color:#171717;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:20px;font-weight:500;line-height:1.3;margin-bottom:10px}.SearchResult-standardVariant .SearchResult-searchResultTitle{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-weight:600}@media (min-width:1020px){.SearchResult-standardVariant .SearchResult-searchResultTitle{margin-bottom:10px}.SearchResult-searchResultTitle{font-size:26px;line-height:1.23;margin-bottom:20px}}.SearchResult-searchResultPreview{color:#5d5d5d;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:18px;font-weight:400;line-height:1.611;margin-bottom:0;margin-top:0}.SearchResult-standardVariant .SearchResult-searchResultPreview{margin-bottom:10px}.SearchResult-byline{font-size:12px}.SearchResult-author{color:#005594;font-family:Lyon,Helvetica,Arial,sans-serif;font-weight:600;letter-spacing:1px}.SearchResult-publishedDate{color:#747474;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-weight:600;text-transform:uppercase}.SearchResult-searchResultFrom{color:#b2b2b2;font-size:12px;font-weight:500;letter-spacing:2px;line-height:1.33;margin-top:15px;text-transform:uppercase}@media (min-width:1020px){.SearchResult-searchResultFrom{margin-top:25px}}.SearchResult-searchResultFrom a{color:#000}.SearchResult-searchResultFrom a:hover{color:#d1bb7e}.SearchResult-searchResultImage{background-position:50% 50%;background-size:cover;margin-bottom:10px;padding-bottom:50%;width:100%}@media (min-width:760px){.SearchResult-searchResultImage{margin-bottom:20px}}.SearchDropDown-dropDownContainer .Card-mediaContainer{background-position:50% 50%;background-size:cover;padding-bottom:50%}.SearchDropDown-dropDownContainer .Card-mediaContainer .Card-placeholder{position:absolute}
@charset "UTF-8";@keyframes countdown-clock-slide-in{0%{height:0}to{height:42px}}@keyframes countdown-clock-slide-out{0%{height:42px}to{height:0}}.countdown-clock-container{align-items:center;animation:countdown-clock-slide-in .5s forwards;-webkit-animation:countdown-clock-slide-in .5s forwards;background-color:#000;color:#fff;display:flex;font-size:12px;font-weight:700;height:42px;justify-content:flex-end;letter-spacing:1px;line-height:15px;margin:0 auto;max-width:960px;position:relative;top:0;width:100%}@media (min-width:1340px){.countdown-clock-container{max-width:1290px}}.countdown-clock-gridWrapper{margin:0 auto;max-width:960px;width:100%}@media (min-width:1340px){.countdown-clock-gridWrapper{max-width:1290px}}.countdown-clock-contentWrapper{float:right;padding-top:2px}.countdown-clock-hidden{animation:countdown-clock-slide-out .5s forwards;-webkit-animation:countdown-clock-slide-out .5s forwards;height:0}.countdown-clock-marketLabel{color:#fcb700;font-weight:600;padding-right:10px;text-transform:uppercase}.countdown-clock-sponsor{border-left:1px solid #ffffff8a;color:#ffffff8a;display:inline;font-weight:600;margin:0 0 0 20px;padding-left:20px;text-transform:uppercase}.countdown-clock-sponsor img{display:inline-block;height:31px;margin-left:5px;margin-top:-3px;max-width:100px;position:relative;vertical-align:middle}@media (-ms-high-contrast:active),screen and (-ms-high-contrast:none){.countdown-clock-sponsor img{margin-top:-7px}}.countdown-clock-sponsorText{position:relative;top:0}.CountdownClock-container{align-items:center;align-self:center;display:flex;display:none;justify-content:center;margin:0}.CountdownClock-countdownContainer{background-color:#000}.DynamicLoadingIndicator-spinnerParent{display:block;padding:10px}.DynamicLoadingIndicator-spinner{animation:DynamicLoadingIndicator-spin 2s linear infinite;border:3px solid #f3f3f3;border-radius:50%;border-top-color:#666;display:block;margin:0 auto}@keyframes DynamicLoadingIndicator-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.WatchLivestream-watchContainer{align-items:center;display:flex;position:relative}.WatchLivestream-alertIconWrapper,.WatchLivestream-watchItems{align-items:center;display:flex;justify-content:center}.WatchLivestream-alertIconWrapper{transform:translate(1px,2px)}@media (max-width:759px){.WatchLivestream-alertIconWrapper svg{color:#f0f8ff;transform:translateY(-2px)}}.WatchLivestream-alertIconSticky{transform:translate(1px)}.WatchLivestream-dynamicTitleWrapper{align-items:center;display:flex;justify-content:center}.WatchLivestream-streamTxt{align-items:center;display:inline-flex;float:right!important;font-size:14px;font-weight:600;line-height:1;margin-left:3px!important;position:static!important;text-align:left;text-transform:uppercase;top:auto!important}@media (min-width:760px){.WatchLivestream-streamTxt{font-size:12px}}@media (min-width:1020px){.WatchLivestream-streamTxt{font-size:14px}}.WatchLivestream-brkWatchContainer:hover span{color:#fcb700}.WatchLivestream-watchTxt{align-items:center;display:inline-flex;font-size:11px;font-weight:600;letter-spacing:0;margin-left:5px;text-transform:uppercase}@media (min-width:1340px){.WatchLivestream-watchTxt{font-size:14px}}.WatchLivestream-watchTxtBrkOn{color:#005594}.WatchLivestream-brkTxt{background-color:#005594;color:#d1bb7e;float:none!important;letter-spacing:1.2px;margin-left:2px!important;padding:0 2px 0 3px;position:static!important;text-transform:uppercase;top:auto!important}.WatchLivestream-brkArticleStickyLoggedIn .WatchLivestream-watchTxt,.WatchLivestream-brkArticleStickyLoggedOut .WatchLivestream-watchTxt{font-size:11px;font-weight:700;letter-spacing:1.2px;text-transform:uppercase}.WatchLivestream-lsLoggedOut{transform:translate(28px,5px)}.WatchLivestream-lsLoggedIn{transform:translate(15px,9px)}.WatchLivestream-brkLoggedOut{transform:translate(9px,1px)}@media (min-width:760px){.WatchLivestream-lsLoggedIn{display:none!important}}@media (min-width:1020px){.WatchLivestream-lsLoggedOut{display:none!important}.WatchLivestream-lsArticleStickyLoggedIn{transform:translate(30px)}.WatchLivestream-brkArticleStickyLoggedOut{transform:translate(-30px)}.WatchLivestream-brkArticleStickyLoggedIn{transform:translate(30px)}}@media (min-width:1340px){.WatchLivestream-lsLoggedOut{display:none!important}.WatchLivestream-brkArticleStickyLoggedIn,.WatchLivestream-lsArticleStickyLoggedIn,.WatchLivestream-lsArticleStickyLoggedOut{transform:translate(-20px)}}.WatchLivestream-livestreamNavItemContainer{align-items:center;display:flex;font-size:14px;font-weight:600;gap:5px;justify-content:center;letter-spacing:0;transform:translate(11px,5px)}@media (max-width:759px){.WatchLivestream-livestreamNavItemContainer{display:none}}@media (min-width:760px){.WatchLivestream-livestreamNavItemContainer svg{color:#f0f8ff;transform:translate(5px)}}.WatchLivestream-navItemText:hover span{color:#fcb700}@media (min-width:760px){.WatchLivestream-lsHideTabletSticky{display:none}}@media (min-width:1020px){.WatchLivestream-lsHideTabletSticky{display:inline-flex}}.ProgressBar-container{background:#e8e8e8;height:3px;left:0;position:absolute;top:0;width:100vw}@media (min-width:760px){.ProgressBar-container{bottom:0;top:auto}}@media (min-width:1020px){.ProgressBar-container{bottom:0}}.ProgressBar-hiddenContainer{opacity:0;pointer-events:none}.ProgressBar-innerProgress{background:#fcb700;height:3px;transition:background 1s;width:0}.ProgressBar-innerProgress20{background:#f26f20}.ProgressBar-innerProgress40{background:#645fa9}.ProgressBar-innerProgress60{background:#0088cf}.ProgressBar-innerProgress80{background:#0cb04c}.ProgressBar-makeit{background:#6258ff}.ProgressBar-select{background:#0477c9}.StickyAdvertorialBanner-stickyAdvertorialBanner{background-color:#e1e1e1;color:#737373;font-size:14px;height:50px;text-align:center;width:100%}.StickyAdvertorialBanner-stickyAdvertorialBanner .StickyAdvertorialBanner-innerText{float:left;font-family:Proxima Nova,450,normal,sans-serif;font-weight:450;margin-left:7.5%;padding:15px 7px;text-align:left;text-transform:uppercase;width:60%}.ProPill-proPillLink{display:inline-block;padding-right:4px}.ProPill-proPill{bottom:0;display:inline-block;position:relative;vertical-align:initial;width:auto}.InvestingClubPill-investingClubPillLink{display:inline-block;padding-right:4px}.InvestingClubPill-investingClubPill{bottom:0;display:inline-block;position:relative;vertical-align:initial;width:auto}.BreakingNews-container{background:#ce2b2b;color:#fff;height:40px;line-height:40px;position:relative;width:100%;z-index:-1}.BreakingNews-container .BreakingNews-closeButton,.BreakingNews-container .BreakingNews-heading{z-index:3}.BreakingNews-container .BreakingNews-article{z-index:1}.BreakingNews-container.BreakingNews-intro:not(.BreakingNews-stickyContainer):before{animation:BreakingNews-SlideInFull 2s ease;animation-iteration-count:1;background:linear-gradient(90deg,#fff0 0,#fc3c46 30%,#fc3c46 70%,#fff0);background-position-x:center;background-size:100% 100%;content:"";height:100%;left:100%;position:absolute;top:0;width:100%;z-index:2}@media (max-width:759px){.BreakingNews-stickyContainer{background:#ce2b2b;color:#fff;height:40px;left:20px;line-height:40px;overflow-y:visible;position:fixed;top:8px;width:174px;z-index:990}.BreakingNews-stickyContainer .BreakingNews-heading{margin:0}.BreakingNews-stickyContainer .BreakingNews-newsText{display:inline-block}.BreakingNews-stickyContainer:before{border-bottom:4px solid #ce2b2b;border-left:4px solid #0000;border-right:4px solid #0000;content:"";font-size:0;height:0;left:8px;line-height:0px;position:absolute;top:-4px;width:0}.BreakingNews-stickyContainer .BreakingNews-wrapper{height:40px}.BreakingNews-stickyContainer .BreakingNews-article,.BreakingNews-stickyContainer .BreakingNews-closeButton{display:none}.BreakingNews-stickyContainer.BreakingNews-timerFired{transform:translateY(-110px);transition:transform .2s ease-out}}.BreakingNews-gridContainer{height:40px}@media (min-width:1020px){.BreakingNews-gridContainer{margin:0 auto;max-width:100%}}@media (min-width:1020px) and (min-width:760px){.BreakingNews-gridContainer{max-width:678px}}@media (min-width:1020px) and (min-width:1020px){.BreakingNews-gridContainer{max-width:960px}}@media (min-width:1020px) and (min-width:1340px){.BreakingNews-gridContainer{max-width:1290px}}.BreakingNews-wrapper{display:flex;flex-direction:row;padding:0 20px;position:relative}@media (min-width:1020px){.BreakingNews-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(225% - 30px);max-width:100%!important;min-width:calc(225% - 30px);padding:0;position:relative}}@media (min-width:1020px) and (min-width:760px){.BreakingNews-wrapper{max-width:calc(75% - 30px);min-width:calc(75% - 30px)}}@media (min-width:1020px) and (min-width:1020px){.BreakingNews-wrapper{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media screen and (min-width:1020px) and (min-width:1020px) and (-ms-high-contrast:none){.BreakingNews-wrapper{max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:1340px){.BreakingNews-wrapper{max-width:calc(75% - 30px);min-width:calc(75% - 30px)}}@media (min-width:1340px){.BreakingNews-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:1340px) and (min-width:760px){.BreakingNews-wrapper{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1340px) and (min-width:1020px){.BreakingNews-wrapper{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:1340px) and (min-width:1020px) and (-ms-high-contrast:none){.BreakingNews-wrapper{max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:1340px){.BreakingNews-wrapper{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}.BreakingNews-heading{color:#fff;font-size:16px;font-weight:800;margin-right:20px}.BreakingNews-heading:hover{color:#fff}.BreakingNews-newsText{display:none}.BreakingNews-titleContainer{position:relative}.BreakingNews-titleContainer .BreakingNews-investingClubPill,.BreakingNews-titleContainer .BreakingNews-proPill{bottom:-2px}.BreakingNews-article{flex:0 1 auto;font-size:18px;font-weight:500;margin-right:10px;overflow:hidden;position:relative;white-space:nowrap;width:calc(100% - 130px)}.BreakingNews-article:after{background:linear-gradient(270deg,#ce2b2b,#ce2b2b00);content:"";height:100%;position:absolute;right:0;top:0;width:80px}.BreakingNews-article:focus,.BreakingNews-article:hover{color:#fff;text-decoration:underline}.BreakingNews-marquee{animation:BreakingNews-marquee 10s linear infinite;overflow:hidden;position:relative;white-space:nowrap}@keyframes BreakingNews-marquee{0%{left:0}50%{left:calc(-100% - 60px);top:0}51%{left:calc(-100% - 60px);top:-100px}52%{left:100%;top:-100px}53%{left:100%;top:0}to{left:0}}.BreakingNews-closeButton{color:#fff;font-size:16px;position:relative;right:20px;top:50%}@media (min-width:1020px){.BreakingNews-closeButton{right:2px}}@media (max-width:759px){.BreakingNews-breakingNewsAdContainer{display:none}}.BreakingNews-breakingNewsAdContainer .BreakingNews-adSlot{align-items:center;display:flex;flex-direction:row;position:relative}.BreakingNews-breakingNewsAdContainer .BreakingNews-adContainer{bottom:4px;margin-right:93px;position:relative}@media (max-width:1019px){.BreakingNews-breakingNewsAdContainer .BreakingNews-adContainer{margin-right:111px}}.BreakingNews-breakingNewsAdContainer .BreakingNews-sponsor{color:#fff;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:400;letter-spacing:.3px;line-height:15px;margin-right:18px;min-width:-moz-fit-content;min-width:fit-content;position:relative}@media (max-width:759px){.BreakingNews-breakingNewsAdContainer .BreakingNews-sponsor{font-size:11px;line-height:13px}}.BreakingNews-breakingNewsAdContainer .BreakingNews-adContainer:empty .BreakingNews-sponsor{display:none}.LiveAlerts-container{background:#171717;color:#fff;height:40px;line-height:40px;overflow:hidden;position:relative;transition:none;width:100%;z-index:-1}@media screen and (max-width:500px){.LiveAlerts-container{height:80px}}@media (max-width:759px){.LiveAlerts-stickyContainer{height:0!important;transition:transform .3s,height .3s}.LiveAlerts-stickyContainer .LiveAlerts-gridContainer{transform:translateY(-40px);transition:transform .3s}}@media screen and (max-width:500px){.LiveAlerts-containerAdNotLoaded{height:40px}}.LiveAlerts-gridContainer{height:40px;transition:none}@media (min-width:1020px){.LiveAlerts-gridContainer{margin:0 auto;max-width:100%}}@media (min-width:1020px) and (min-width:760px){.LiveAlerts-gridContainer{max-width:678px}}@media (min-width:1020px) and (min-width:1020px){.LiveAlerts-gridContainer{max-width:960px}}@media (min-width:1020px) and (min-width:1340px){.LiveAlerts-gridContainer{max-width:1290px}}.LiveAlerts-wrapper{display:flex;flex-direction:row;padding:0 20px;position:relative}@media (min-width:1020px){.LiveAlerts-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(225% - 30px);max-width:100%!important;min-width:calc(225% - 30px);padding:0;position:relative}}@media (min-width:1020px) and (min-width:760px){.LiveAlerts-wrapper{max-width:calc(75% - 30px);min-width:calc(75% - 30px)}}@media (min-width:1020px) and (min-width:1020px){.LiveAlerts-wrapper{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media screen and (min-width:1020px) and (min-width:1020px) and (-ms-high-contrast:none){.LiveAlerts-wrapper{max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:1340px){.LiveAlerts-wrapper{max-width:calc(75% - 30px);min-width:calc(75% - 30px)}}@media (min-width:1340px){.LiveAlerts-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:1340px) and (min-width:760px){.LiveAlerts-wrapper{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1340px) and (min-width:1020px){.LiveAlerts-wrapper{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:1340px) and (min-width:1020px) and (-ms-high-contrast:none){.LiveAlerts-wrapper{max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:1340px){.LiveAlerts-wrapper{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}.LiveAlerts-heading{color:#fff;font-size:16px;font-weight:800;margin-right:49px}.LiveAlerts-heading:hover{color:#fff}.LiveAlerts-newsText{display:none}.LiveAlerts-article{flex:0 1 auto;font-size:18px;font-weight:500;margin-right:10px;overflow:hidden;position:relative;white-space:nowrap;width:calc(100% - 330px)}.LiveAlerts-article:after{background:linear-gradient(270deg,#171717,#0000);content:"";height:100%;position:absolute;right:0;top:0;width:80px}.LiveAlerts-article:focus,.LiveAlerts-article:hover{color:#fff;text-decoration:underline}@media screen and (max-width:500px){.LiveAlerts-article{width:calc(100% - 130px)}}.LiveAlerts-marquee{animation:LiveAlerts-marquee 10s linear infinite;overflow:hidden;position:relative;white-space:nowrap}@keyframes LiveAlerts-marquee{0%{left:0}50%{left:calc(-100% - 60px);top:0}51%{left:calc(-100% - 60px);top:-100px}52%{left:100%;top:-100px}53%{left:100%;top:0}to{left:0}}.LiveAlerts-closeButton{color:#fff;font-size:15px;position:absolute;right:20px;top:11px}@media (min-width:1020px){.LiveAlerts-closeButton{right:2px}}.LiveAlerts-liveIcon{font-size:14px;margin-right:5px;position:relative;top:1px}.LiveAlerts-adSlot{display:flex;flex-direction:row;position:relative}@media screen and (max-width:500px){.LiveAlerts-adSlot{position:absolute;top:50px}}.LiveAlerts-adContainer{align-items:center;align-self:center;bottom:4px;display:flex;justify-content:center;left:77px;margin:0;position:absolute;top:-5px;width:100px}@media (min-width:760px){.LiveAlerts-adContainer{margin-left:15px}}@media screen and (max-width:500px){.LiveAlerts-adContainer{left:155px;top:0}}@media screen and (max-width:759px) and (min-width:500px){.LiveAlerts-adContainer{left:88px;top:-5px}}.LiveAlerts-sponsor{color:#fff;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:11px;font-weight:400;letter-spacing:.3px;line-height:13px;position:absolute;top:13px;width:100px}@media (min-width:760px){.LiveAlerts-sponsor{font-size:12px;line-height:15px}}@media screen and (max-width:500px){.LiveAlerts-sponsor{margin-left:75px;top:0}}.LiveAlerts-adContainer:empty .LiveAlerts-sponsor{display:none}.EditionMenu-chevronLeft{border:2px solid #0000;border-radius:100px;box-sizing:border-box;display:block;position:relative}.EditionMenu-chevronLeft:after{border-bottom:2px solid;border-left:2px solid;box-sizing:border-box;color:#071d39;content:"";display:block;height:8px;left:6px;position:absolute;transform:rotate(45deg);width:8px}.EditionMenu-chevronRight{border-radius:100px;box-sizing:border-box;display:block}.EditionMenu-chevronRight:after{border-bottom:2px solid;border-right:2px solid;box-sizing:border-box;color:#0477c9;content:"";display:block;height:8px;transform:rotate(-45deg);width:8px}.EditionMenu-select-menu .EditionMenu-sublinks{display:block!important;margin-left:0!important}.EditionMenu-featuredMenuButton{color:#e3e3e3;font-size:11px;font-weight:600;letter-spacing:1px;padding-bottom:1px;position:relative;text-transform:uppercase;top:0;transition:border-bottom .5s linear}@media (min-width:360px){.EditionMenu-featuredMenuButton{margin-right:7px}}.EditionMenu-isExpanded{padding-bottom:1px}.EditionMenu-featuredListItem{border-bottom:2px solid #f3f5f7;display:block;position:relative;z-index:600}.EditionMenu-featuredListItem a{padding:11px 13.5px 11px 20px}.EditionMenu-featuredListItem:hover{background-color:#f3f5f7;color:#005594;font-weight:700}.EditionMenu-featuredListItem:last-child{margin-left:0!important;padding:0!important}.EditionMenu-featuredSubLink{align-items:center;color:#005594!important;display:flex;font-size:12px;font-weight:500;justify-content:space-between;letter-spacing:.85px;line-height:14px;margin-right:4px;text-transform:uppercase}.EditionMenu-featuredSubLink:hover{color:#005594;font-weight:700}.EditionMenu-featuredSubLink p{margin:0}.EditionMenu-subMenuLink{text-transform:capitalize}.EditionMenu-featuredSubLink.EditionMenu-subMenuLink a{font-size:14px;line-height:16px;padding:11px 0;white-space:normal}.EditionMenu-featuredSubLinks{background:#fff;box-shadow:0 0 6px #0000002e;display:block!important;font-size:12px;left:29px;margin:0!important;opacity:0;padding:0;position:absolute;top:11px;transition:visibility .5s,opacity .5s linear;visibility:hidden}.EditionMenu-featuredSubLinks li{width:203px}@media (min-width:1020px){.EditionMenu-featuredSubLinks{left:15px}}@media (min-width:1340px){.EditionMenu-featuredSubLinks{left:29px}}.EditionMenu-expandedSubLinks{opacity:1;visibility:visible}.EditionMenu-featuredSubLinks.EditionMenu-subMenu{margin-left:48px!important;opacity:0;transition:opacity .1s linear;z-index:0}.EditionMenu-featuredSubLinks.EditionMenu-subMenu.EditionMenu-subMenuOpen{opacity:1;transition:opacity .1s linear;z-index:1}.EditionMenu-subMenuOpen{opacity:0;transition:opacity .1s linear}.EditionMenu-backBtn{height:38px;width:100%}.EditionMenu-backBtn,.EditionMenu-backBtn a{align-items:center;display:flex}.EditionMenu-backBtn a p{color:#071d39}.EditionMenu-backBtn a:before{border-bottom:2px solid;border-left:2px solid;box-sizing:border-box;color:#071d39;content:"";display:block;height:8px;margin-left:20px;margin-right:10px;transform:rotate(45deg);width:8px}.EditionMenu-megaMenu{-webkit-overflow-scrolling:touch;background:#fff;color:#071d39;display:block;height:100%;left:0;opacity:1;overflow-y:scroll;padding-bottom:45px;position:fixed;top:0;width:100%;z-index:999}@media (min-width:760px){.EditionMenu-megaMenu{padding-bottom:0}}@media (min-width:1020px){.EditionMenu-megaMenu{height:100%;overflow:hidden;overflow:auto;width:100%}.EditionMenu-megaMenuContainer{display:flex;flex-direction:row;flex-wrap:wrap;margin:0 auto;max-width:100%;position:relative;width:100%}}@media (min-width:1020px) and (min-width:760px){.EditionMenu-megaMenuContainer{max-width:678px}}@media (min-width:1020px) and (min-width:1020px){.EditionMenu-megaMenuContainer{max-width:960px}}@media (min-width:1020px) and (min-width:1340px){.EditionMenu-megaMenuContainer{max-width:1290px}}.EditionMenu-searchToggle{background-color:#fff;border-bottom:1px solid #9b9b9b;display:block;padding:20px}@media (min-width:1020px){.EditionMenu-searchToggle{background-color:initial;border-bottom:none;padding:27px 40px;position:absolute;right:0;z-index:1}}.EditionMenu-topBar{align-items:center;background-color:#005594;bottom:0;display:flex;flex-direction:row;height:45px;justify-content:space-between;left:0;max-height:45px;min-height:45px;padding:0 45px 0 20px;position:fixed;width:100%;z-index:5}@media (min-width:760px){.EditionMenu-topBar{justify-content:flex-start;position:relative}}@media (min-width:1020px){.EditionMenu-topBar{align-items:center;background-color:initial;flex-wrap:wrap;height:102px;left:0;max-height:102px;min-height:92px;padding:0 0 0 8px;position:absolute;top:0;width:50%}}@media (min-width:1340px){.EditionMenu-topBar{height:102px;max-height:102px}}.EditionMenu-close{background:none;color:#fff;font-size:17px;order:2}.EditionMenu-close span:before{display:block}.EditionMenu-close:focus,.EditionMenu-close:hover{color:#fcb700}@media (min-width:760px){.EditionMenu-close{order:1}}@media (min-width:1020px){.EditionMenu-close{color:#005594;font-size:15px}}.EditionMenu-logo{flex:1;max-width:35px;min-width:35px;order:1}@media (min-width:760px){.EditionMenu-logo{margin-left:30px;order:2}}@media (min-width:1020px){.EditionMenu-logo{max-width:120px;min-width:120px}}.EditionMenu-logo img{width:100%}@media (min-width:1020px){.EditionMenu-logoSmall{display:none}}.EditionMenu-logoLarge{display:none}@media (min-width:1020px){.EditionMenu-logoLarge{display:block}}.EditionMenu-search{color:#fff;font-size:14px;font-weight:600;letter-spacing:1px;margin-right:30px}@media (min-width:1340px){.EditionMenu-search{margin-right:75px}}.EditionMenu-account{display:none}@media (min-width:1020px){.EditionMenu-account{display:block}}.EditionMenu-accountLinks{display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between;text-transform:uppercase}.EditionMenu-accountLinks li{height:70px;line-height:70px;padding:0 20px;text-align:center}.EditionMenu-accountLinks a{color:#071d39;font-size:14px;font-weight:600;letter-spacing:.85px;line-height:12px}.EditionMenu-accountLinks .EditionMenu-editions,.EditionMenu-accountLinks li:first-child,.EditionMenu-accountLinks li:nth-child(2){flex:auto;text-align:center;width:50%}.EditionMenu-accountLinks li:nth-child(2){border-left:1px solid #9b9b9b}.EditionMenu-accountLinks .EditionMenu-editionMenu{transition:all .25s}@media (min-width:360px){.EditionMenu-accountLinks .EditionMenu-editionMenu li{float:left;font-size:10px;font-weight:500;letter-spacing:1.2px;padding:0;width:25%}}@media (min-width:360px) and (min-width:760px){.EditionMenu-accountLinks .EditionMenu-editionMenu li{width:10%}}@media (min-width:360px){.EditionMenu-accountLinks .EditionMenu-editionMenu li span{margin-left:5px}.EditionMenu-accountLinks .EditionMenu-editionMenu li:first-child{margin-left:25%}}@media (min-width:360px) and (min-width:760px){.EditionMenu-accountLinks .EditionMenu-editionMenu li:first-child{margin-left:40%}}@media (min-width:360px){.EditionMenu-accountLinks .EditionMenu-editionMenu li:last-child{border-left:none!important;margin-right:25%}}@media (min-width:360px) and (min-width:760px){.EditionMenu-accountLinks .EditionMenu-editionMenu li:last-child{margin-right:40%}}.EditionMenu-accountLinks .icon-offsite-arrow{display:inline-block;line-height:14px;margin-left:5px;vertical-align:middle}.EditionMenu-accountLinks .icon-offsite-arrow:before{color:#071d3966;font-size:12px;line-height:14px}@media (min-width:1020px){.EditionMenu-accountLinks{width:100%}}@media (min-width:1340px){.EditionMenu-accountLinks{display:none}}.EditionMenu-underlineLabel{border-bottom:1px solid #071d39;padding-bottom:3px}.account-menu-accountMenu,.account-menu-accountMenuAllAccess,.account-menu-accountMenuIC,.account-menu-accountMenuPro{display:none}@media (min-width:1020px){.account-menu-accountMenu,.account-menu-accountMenuAllAccess,.account-menu-accountMenuIC,.account-menu-accountMenuPro{display:flex;float:right;position:relative;right:9px;right:32px;top:49px;width:285px}}@media (min-width:1340px){.account-menu-accountMenu,.account-menu-accountMenuAllAccess,.account-menu-accountMenuIC,.account-menu-accountMenuPro{right:9px;right:-5px;width:380px}}@media (min-width:1020px){.account-menu-accountMenu ul,.account-menu-accountMenuAllAccess ul,.account-menu-accountMenuIC ul,.account-menu-accountMenuPro ul{display:-webkit-box;flex:100;flex-direction:row;justify-content:flex-end;margin:10px -8px 0 0!important;text-transform:uppercase}.account-menu-accountMenu ul:nth-child(2),.account-menu-accountMenuAllAccess ul:nth-child(2),.account-menu-accountMenuIC ul:nth-child(2),.account-menu-accountMenuPro ul:nth-child(2){margin-left:48px!important}}.account-menu-accountMenu ul:first-child,.account-menu-accountMenuAllAccess ul:first-child,.account-menu-accountMenuIC ul:first-child,.account-menu-accountMenuPro ul:first-child{left:2px;position:relative}@media (min-width:1020px){.account-menu-accountMenu ul:first-child li:last-child,.account-menu-accountMenuAllAccess ul:first-child li:last-child,.account-menu-accountMenuIC ul:first-child li:last-child,.account-menu-accountMenuPro ul:first-child li:last-child{margin-left:2px;padding-left:0}.account-menu-accountMenu ul:first-child span,.account-menu-accountMenuAllAccess ul:first-child span,.account-menu-accountMenuIC ul:first-child span,.account-menu-accountMenuPro ul:first-child span{color:#d9d9d9;font-size:9px;margin-left:0;margin-top:.5px}}@media (min-width:1020px) and (min-width:1340px){.account-menu-accountMenu ul:first-child span,.account-menu-accountMenuAllAccess ul:first-child span,.account-menu-accountMenuIC ul:first-child span,.account-menu-accountMenuPro ul:first-child span{margin-left:7px}}@media (min-width:1340px){.account-menu-accountMenu ul:first-child li:last-child,.account-menu-accountMenuAllAccess ul:first-child li:last-child,.account-menu-accountMenuIC ul:first-child li:last-child,.account-menu-accountMenuPro ul:first-child li:last-child{margin-left:0;padding-left:8px}}.account-menu-accountMenu ul li,.account-menu-accountMenuAllAccess ul li,.account-menu-accountMenuIC ul li,.account-menu-accountMenuPro ul li{font-size:11px;font-weight:600;letter-spacing:1px}.account-menu-accountMenu ul li a,.account-menu-accountMenu ul li button,.account-menu-accountMenuAllAccess ul li a,.account-menu-accountMenuAllAccess ul li button,.account-menu-accountMenuIC ul li a,.account-menu-accountMenuIC ul li button,.account-menu-accountMenuPro ul li a,.account-menu-accountMenuPro ul li button{color:#e3e3e3}.account-menu-accountMenu ul li a:hover,.account-menu-accountMenu ul li button:hover,.account-menu-accountMenuAllAccess ul li a:hover,.account-menu-accountMenuAllAccess ul li button:hover,.account-menu-accountMenuIC ul li a:hover,.account-menu-accountMenuIC ul li button:hover,.account-menu-accountMenuPro ul li a:hover,.account-menu-accountMenuPro ul li button:hover{color:#fcb700}.account-menu-accountMenu ul li:last-child,.account-menu-accountMenuAllAccess ul li:last-child,.account-menu-accountMenuIC ul li:last-child,.account-menu-accountMenuPro ul li:last-child{margin-left:8px;padding-left:8px}.account-menu-accountMenu ul li span,.account-menu-accountMenuAllAccess ul li span,.account-menu-accountMenuIC ul li span,.account-menu-accountMenuPro ul li span{float:right;margin-left:2px;position:relative;top:3px}@media (min-width:760px){.account-menu-accountMenu .account-menu-watchLive,.account-menu-accountMenuAllAccess .account-menu-watchLive,.account-menu-accountMenuIC .account-menu-watchLive,.account-menu-accountMenuPro .account-menu-watchLive{display:none}}@media (min-width:1020px){.account-menu-accountMenu .account-menu-watchLive,.account-menu-accountMenuAllAccess .account-menu-watchLive,.account-menu-accountMenuIC .account-menu-watchLive,.account-menu-accountMenuPro .account-menu-watchLive{display:flex}.account-menu-accountMenu .account-menu-watchLive a,.account-menu-accountMenuAllAccess .account-menu-watchLive a,.account-menu-accountMenuIC .account-menu-watchLive a,.account-menu-accountMenuPro .account-menu-watchLive a{display:-webkit-flex}}.account-menu-accountMenu .account-menu-watchLive span,.account-menu-accountMenuAllAccess .account-menu-watchLive span,.account-menu-accountMenuIC .account-menu-watchLive span,.account-menu-accountMenuPro .account-menu-watchLive span{background:#fff;color:#005594;margin-left:2px;padding:0 2px;top:0}.account-menu-accountMenu .account-menu-watchLive:before,.account-menu-accountMenuAllAccess .account-menu-watchLive:before,.account-menu-accountMenuIC .account-menu-watchLive:before,.account-menu-accountMenuPro .account-menu-watchLive:before{animation:account-menu-pulse 2s infinite;background-color:#ff5053;border-radius:100%;box-shadow:0 0 0 0 #ce2b2b;content:"";display:block;height:6px;margin:5px -13px;transform:scale(1);width:6px}.account-menu-accountMenu .account-menu-berkshireWatchLive,.account-menu-accountMenuAllAccess .account-menu-berkshireWatchLive,.account-menu-accountMenuIC .account-menu-berkshireWatchLive,.account-menu-accountMenuPro .account-menu-berkshireWatchLive{padding-left:35px}@media (min-width:760px){.account-menu-accountMenu .account-menu-berkshireWatchLive,.account-menu-accountMenuAllAccess .account-menu-berkshireWatchLive,.account-menu-accountMenuIC .account-menu-berkshireWatchLive,.account-menu-accountMenuPro .account-menu-berkshireWatchLive{display:none}}@media (min-width:1020px){.account-menu-accountMenu .account-menu-berkshireWatchLive,.account-menu-accountMenuAllAccess .account-menu-berkshireWatchLive,.account-menu-accountMenuIC .account-menu-berkshireWatchLive,.account-menu-accountMenuPro .account-menu-berkshireWatchLive{display:flex;padding-left:30px}.account-menu-accountMenu .account-menu-berkshireWatchLive a,.account-menu-accountMenuAllAccess .account-menu-berkshireWatchLive a,.account-menu-accountMenuIC .account-menu-berkshireWatchLive a,.account-menu-accountMenuPro .account-menu-berkshireWatchLive a{display:-webkit-flex}}.account-menu-accountMenu .account-menu-berkshireWatchLive span,.account-menu-accountMenuAllAccess .account-menu-berkshireWatchLive span,.account-menu-accountMenuIC .account-menu-berkshireWatchLive span,.account-menu-accountMenuPro .account-menu-berkshireWatchLive span{background:#005594;color:#d1bb7e;letter-spacing:1.2px;margin-left:2px;padding:0 2px 0 3px;text-transform:uppercase;top:0}.account-menu-accountMenu .account-menu-berkshireWatchLive:hover span,.account-menu-accountMenuAllAccess .account-menu-berkshireWatchLive:hover span,.account-menu-accountMenuIC .account-menu-berkshireWatchLive:hover span,.account-menu-accountMenuPro .account-menu-berkshireWatchLive:hover span{color:#fcb700}.account-menu-accountMenu .account-menu-berkshireWatchLive:before,.account-menu-accountMenuAllAccess .account-menu-berkshireWatchLive:before,.account-menu-accountMenuIC .account-menu-berkshireWatchLive:before,.account-menu-accountMenuPro .account-menu-berkshireWatchLive:before{animation:account-menu-pulse 2s infinite;background-color:#ff5053;border-radius:100%;box-shadow:0 0 0 0 #ce2b2b;content:"";display:block;height:6px;margin:5px -13px;transform:scale(1);width:6px}@keyframes account-menu-pulse{0%{box-shadow:0 0 0 1px #ce2b2b;opacity:1;transform:scale(.95)}70%{box-shadow:0 0 0 2px #ce2b2b;opacity:.9;transform:scale(1)}to{box-shadow:0 0 0 1px #ce2b2b;opacity:1;transform:scale(.95)}}@media (min-width:1340px){.account-menu-accountMenu>:first-child,.account-menu-accountMenu>:nth-child(2),.account-menu-accountMenuAllAccess>:first-child,.account-menu-accountMenuAllAccess>:nth-child(2),.account-menu-accountMenuIC>:first-child,.account-menu-accountMenuIC>:nth-child(2),.account-menu-accountMenuPro>:first-child,.account-menu-accountMenuPro>:nth-child(2){transform:translate(289px,-2px)}.account-menu-accountMenu>:nth-child(2),.account-menu-accountMenuAllAccess>:nth-child(2),.account-menu-accountMenuIC>:nth-child(2),.account-menu-accountMenuPro>:nth-child(2){transform:translate(148%,-3px)}}@media (min-width:1020px){.account-menu-accountMenuBrkOnPipeBar:after,.account-menu-accountMenuLs,.account-menu-accountMenuLsPipeBar:after{display:none}}@media (min-width:1340px){.account-menu-accountMenu:after,.account-menu-accountMenuAllAccess:after,.account-menu-accountMenuIC:after,.account-menu-accountMenuPro:after{border-right:.5px solid #6699be;color:#fff;content:"";display:inline-block;font-size:14px;height:10px;left:-76px;margin:auto 5px auto 10px;position:relative;top:5px;width:3px}.account-menu-accountMenuLsPipeBar:after{display:inline-block;left:67px!important;top:2px}.account-menu-accountMenuBrkOnPipeBar:after{display:inline-block;left:-98px!important;top:2px}.account-menu-accountMenuLs{display:inline-flex;right:141px}}.account-menu-accountMenuAllAccess ul li a,.account-menu-accountMenuAllAccess ul li button{color:#e3e3e3}.account-menu-accountMenuAllAccess ul li a:focus,.account-menu-accountMenuAllAccess ul li a:hover,.account-menu-accountMenuAllAccess ul li button:focus,.account-menu-accountMenuAllAccess ul li button:hover{color:#cfd8e2}.account-menu-accountMenuAllAccess ul li a span,.account-menu-accountMenuAllAccess ul li button span{color:#e3e3e3}.account-menu-accountMenuPro ul li a:focus,.account-menu-accountMenuPro ul li a:hover,.account-menu-accountMenuPro ul li button:focus,.account-menu-accountMenuPro ul li button:hover{color:#00a857}.account-menu-accountMenuIC ul li a:focus,.account-menu-accountMenuIC ul li a:hover,.account-menu-accountMenuIC ul li button:focus,.account-menu-accountMenuIC ul li button:hover{color:#0496ff}.account-menu-accountMenuSticky{display:none}.account-menu-underlineLabel{border-bottom:1px solid #fff;padding-bottom:1px}.account-menu-editionMenu{transition:all .25s}@media (min-width:1020px){.account-menu-editionMenu{margin:10px 0 0 8px!important}.account-menu-editionMenu li:first-child{margin-left:7px;margin-right:-5px}.account-menu-editionMenu li:last-child{border-left:none!important}.account-menu-editionMenu li:last-child:before{color:#fff;content:"•";font-size:10px;left:-5px;position:relative}}@media (min-width:1020px){.account-menu-editionMenuSticky{transform:translateY(-6px)}}.account-menu-brkOnEditionMenu{transform:translate(155%,-2px)!important}.branding-menu-brandingMenu{align-items:center;display:flex;flex-direction:row;height:54px;left:0;overflow:hidden;padding:0 20px;position:fixed;z-index:99}@media (min-width:760px){.branding-menu-brandingMenu{padding:0 20px}}@media (min-width:1020px){.branding-menu-brandingMenu{background-color:initial;height:35px;padding:0 15px 0 30px}}.branding-menu-brandingMenu{background-color:#001e5a;height:45px;opacity:1;position:absolute;top:0;transition:opacity .2s;width:100%;z-index:0}.branding-menu-brandingMenu img{float:left}@media (min-width:760px){.branding-menu-brandingMenu{align-items:flex-start;height:70px;padding-top:13px;width:100%}}@media (min-width:1020px){.branding-menu-brandingMenu{align-items:flex-start;display:block;overflow:visible;padding-left:0;padding-top:13px;width:calc(100% - 155px)}}.branding-menu-brandingMenu img{height:24px;width:143px}@media (min-width:360px){.branding-menu-brandingMenu img{width:124px}}@media (min-width:760px){.branding-menu-brandingMenu img{width:156px}}.branding-menu-brandingMenuAllAccess{background-color:#002f6c;transition:background-color .5s ease-in}.branding-menu-brandingMenuAllAccess img{height:18px;width:214px}.branding-menu-brandingMenuPro{background-color:#27313c;transition:background-color .5s ease-in}.branding-menu-brandingMenuIC{background-color:#071d39;transition:background-color .5s ease-in}.branding-menu-brandingMenuLoggedIn{background-color:#00081a;transition:background-color .5s ease-in}.branding-menu-brandingMenuSticky,.branding-menu-brandingMenuStickyAllAccess,.branding-menu-brandingMenuStickyIC,.branding-menu-brandingMenuStickyLoggedIn,.branding-menu-brandingMenuStickyPro{opacity:0;pointer-events:none}.branding-menu-logo{height:20px;width:138px}.branding-menu-logo:after{clear:both;content:""}@media (max-width:759px){.branding-menu-logo{margin:0 0 5px}}.branding-menu-logoSmall{display:block;height:22px;width:135px}.branding-menu-logoSmallAllAccess{color:#ff0;margin-top:3px;padding-left:8px}@media (max-width:359px){.branding-menu-logoSmall,.branding-menu-logoSmallAllAccess{display:none}}.branding-menu-logoLarge{display:none}@media (min-width:760px){.branding-menu-logoLarge{display:block;height:31px;width:195px}.branding-menu-logoLargeAllAccess{margin-top:3px;padding-left:8px}}.branding-menu-watchLive{position:absolute;right:50px;top:30px}@media (min-width:760px){.branding-menu-watchLive{display:none}}@media (max-width:359px){.branding-menu-watchLive{display:none}}.branding-menu-watchLive a{font-size:11px;font-weight:600;letter-spacing:.1px;text-transform:uppercase}.branding-menu-watchLive span{background:#fff;color:#005594;margin-left:2px;padding:0 2px;top:0}.branding-menu-watchLive:before{animation:branding-menu-pulse 2s infinite;background-color:#ff5053;border-radius:100%;box-shadow:0 0 0 0 #ce2b2b;content:"";display:block;height:6px;margin:-13px;transform:scale(1);width:6px}@media (max-width:759px){.branding-menu-watchLiveLoggedIn{right:90px;top:33px}}.branding-menu-berkshireWatchLive{position:absolute;right:50px;top:32px}@media (min-width:760px){.branding-menu-berkshireWatchLive{display:none}}@media (max-width:390px){.branding-menu-berkshireWatchLive{display:none}}.branding-menu-berkshireWatchLive a{font-size:11px;font-weight:600;letter-spacing:.1px;text-transform:uppercase}.branding-menu-berkshireWatchLive span{background:#005594;color:#d1bb7e;letter-spacing:1.2px;margin-left:2px;padding:0 2px 0 3px;text-transform:uppercase;top:0}.branding-menu-berkshireWatchLive:hover span{color:#fcb700}.branding-menu-berkshireWatchLive:before{animation:branding-menu-pulse 2s infinite;background-color:#ff5053;border-radius:100%;box-shadow:0 0 0 0 #ce2b2b;content:"";display:block;height:6px;margin:-13px;transform:scale(1);width:6px}@keyframes branding-menu-pulse{0%{box-shadow:0 0 0 1px #ce2b2b;opacity:1;transform:scale(.95)}70%{box-shadow:0 0 0 2px #ce2b2b;opacity:.9;transform:scale(1)}to{box-shadow:0 0 0 1px #ce2b2b;opacity:1;transform:scale(.95)}}.branding-menu-brkLiveWatchLiveLink.branding-menu-userIsLoggedIn{margin-right:38px}.FiveThingsBanner-container{background:#fff;color:#000;height:40px;line-height:40px;position:relative;width:100%;z-index:-1}.FiveThingsBanner-container .FiveThingsBanner-closeButton,.FiveThingsBanner-container .FiveThingsBanner-heading{z-index:3}.FiveThingsBanner-container .FiveThingsBanner-article{z-index:1}.FiveThingsBanner-container.FiveThingsBanner-intro:not(.FiveThingsBanner-stickyContainer):before{animation:FiveThingsBanner-SlideInFull 2s ease;animation-iteration-count:1;background:linear-gradient(90deg,#fff 0,rgba(252,60,70,.966) 30%,#fc3c46 70%,#fff0);background-position-x:center;background-size:100% 100%;content:"";height:100%;left:100%;position:absolute;top:0;width:100%;z-index:2}.FiveThingsBanner-fiveThingsArticle{border-bottom:3px solid #e8e8e8}@media (max-width:759px){.FiveThingsBanner-stickyContainer{display:none}.FiveThingsBanner-stickyContainer.FiveThingsBanner-timerFired{transform:translateY(-110px);transition:transform .2s ease-out}}.FiveThingsBanner-gridContainer{height:40px}@media (min-width:1020px){.FiveThingsBanner-gridContainer{margin:0 auto;max-width:100%}}@media (min-width:1020px) and (min-width:760px){.FiveThingsBanner-gridContainer{max-width:678px}}@media (min-width:1020px) and (min-width:1020px){.FiveThingsBanner-gridContainer{max-width:960px}}@media (min-width:1020px) and (min-width:1340px){.FiveThingsBanner-gridContainer{max-width:1290px}}.FiveThingsBanner-wrapper{display:flex;flex-direction:row;padding:0 20px;position:relative}@media (min-width:1020px){.FiveThingsBanner-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(225% - 30px);max-width:100%!important;min-width:calc(225% - 30px);padding:0;position:relative}}@media (min-width:1020px) and (min-width:760px){.FiveThingsBanner-wrapper{max-width:calc(75% - 30px);min-width:calc(75% - 30px)}}@media (min-width:1020px) and (min-width:1020px){.FiveThingsBanner-wrapper{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media screen and (min-width:1020px) and (min-width:1020px) and (-ms-high-contrast:none){.FiveThingsBanner-wrapper{max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:1340px){.FiveThingsBanner-wrapper{max-width:calc(75% - 30px);min-width:calc(75% - 30px)}}@media (min-width:1340px){.FiveThingsBanner-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:1340px) and (min-width:760px){.FiveThingsBanner-wrapper{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1340px) and (min-width:1020px){.FiveThingsBanner-wrapper{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:1340px) and (min-width:1020px) and (-ms-high-contrast:none){.FiveThingsBanner-wrapper{max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:1340px){.FiveThingsBanner-wrapper{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}.FiveThingsBanner-heading{color:#000;font-size:16px;font-weight:800;margin-right:20px}.FiveThingsBanner-heading:hover{color:#000}.FiveThingsBanner-newsText{display:none}.FiveThingsBanner-titleContainer{color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:900;line-height:19px;position:relative;text-transform:uppercase;top:11px}.FiveThingsBanner-logo{display:inline-block;margin-left:10px}.FiveThingsBanner-article{color:#000;flex:0 1 auto;font-size:18px;font-weight:500;margin-right:10px;position:relative;white-space:nowrap;width:calc(100% - 250px)}.FiveThingsBanner-article:focus,.FiveThingsBanner-article:hover{color:#000;text-decoration:underline}@media (max-width:759px){.FiveThingsBanner-article{width:calc(100% - 300px)}}.FiveThingsBanner-marquee{animation:FiveThingsBanner-marquee 10s linear infinite;overflow:hidden;position:relative;white-space:nowrap}@keyframes FiveThingsBanner-marquee{0%{left:0}50%{left:calc(-100% - 60px);top:0}51%{left:calc(-100% - 60px);top:-100px}52%{left:100%;top:-100px}53%{left:100%;top:0}to{left:0}}.FiveThingsBanner-closeButton{color:#000;font-size:15px;position:absolute;right:20px;top:11px}@media (min-width:1020px){.FiveThingsBanner-closeButton{right:2px}}.FiveThingsBanner-adSlot{display:flex;flex-direction:row;position:relative}.FiveThingsBanner-adContainer{align-items:center;align-self:center;bottom:4px;display:flex;justify-content:center;left:77px;margin:0;position:absolute;top:16px;width:100px}@media (min-width:760px){.FiveThingsBanner-adContainer{margin-left:15px}}@media (max-width:759px){.FiveThingsBanner-adContainer{left:155px}}.FiveThingsBanner-sponsor{color:#424242;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:11px;font-weight:400;letter-spacing:.3px;line-height:13px;position:relative;top:13px}@media (min-width:760px){.FiveThingsBanner-sponsor{font-size:12px;line-height:15px}}@media (max-width:759px){.FiveThingsBanner-sponsor{margin-left:75px;width:100%}}.FiveThingsBanner-adContainer:empty .FiveThingsBanner-sponsor{display:none}.mega-links-container a,.mega-links-containerPro a{color:#005594}@media (min-width:1020px){.mega-links-container,.mega-links-containerPro{width:65%}}.mega-links-item{border-bottom:1px solid #9b9b9b;display:flex;flex-direction:row;overflow:hidden;padding:0 0 0 20px;position:relative;transition:transform .2s ease-out,height .2s ease-out;width:100%}@media (min-width:1020px){.mega-links-item{border:none;display:block;position:static;width:auto}}.mega-links-item .mega-links-submenuContainer .mega-links-accountSubLinks:last-of-type,.mega-links-item .mega-links-submenuContainer .mega-links-accountSubLinksAllAccess:last-of-type,.mega-links-item .mega-links-submenuContainer .mega-links-accountSubLinksIC:last-of-type,.mega-links-item .mega-links-submenuContainer .mega-links-accountSubLinksPro:last-of-type,.mega-links-item .mega-links-submenuContainer .mega-links-subLinkBase:last-of-type,.mega-links-item .mega-links-submenuContainer .mega-links-subLinks:last-of-type,.mega-links-item .mega-links-submenuContainer .mega-links-subLinksAllAccess:last-of-type,.mega-links-item .mega-links-submenuContainer .mega-links-subLinksIC:last-of-type,.mega-links-item .mega-links-submenuContainer .mega-links-subLinksPro:last-of-type{border:unset}.mega-links-item .mega-links-submenuContainer .mega-links-accountSubLinks:last-of-type .mega-links-activeBar,.mega-links-item .mega-links-submenuContainer .mega-links-accountSubLinksAllAccess:last-of-type .mega-links-activeBar,.mega-links-item .mega-links-submenuContainer .mega-links-accountSubLinksIC:last-of-type .mega-links-activeBar,.mega-links-item .mega-links-submenuContainer .mega-links-accountSubLinksPro:last-of-type .mega-links-activeBar,.mega-links-item .mega-links-submenuContainer .mega-links-subLinkBase:last-of-type .mega-links-activeBar,.mega-links-item .mega-links-submenuContainer .mega-links-subLinks:last-of-type .mega-links-activeBar,.mega-links-item .mega-links-submenuContainer .mega-links-subLinksAllAccess:last-of-type .mega-links-activeBar,.mega-links-item .mega-links-submenuContainer .mega-links-subLinksIC:last-of-type .mega-links-activeBar,.mega-links-item .mega-links-submenuContainer .mega-links-subLinksPro:last-of-type .mega-links-activeBar{display:none}@media (min-width:1020px){.mega-links-item .mega-links-submenuContainer{align-items:flex-start;display:flex;flex-flow:row wrap;gap:20px;height:100%;justify-content:flex-start;left:calc(100% + 20px);position:absolute;top:0}@supports (width:max-content){.mega-links-item .mega-links-submenuContainer{width:max-content}}@supports not (width:max-content){.mega-links-item .mega-links-submenuContainer{width:870px}}}@media (min-width:1340px){.mega-links-item .mega-links-submenuContainer{gap:40px;left:calc(100% + 40px)}}.mega-links-expanded:before{background:#071d39;content:"";height:100%;left:0;position:absolute;top:0;width:6px}@media (min-width:1020px){.mega-links-expanded:before{display:none}}.mega-links-wrapper{overflow:hidden;position:relative}@media (min-width:1020px){.mega-links-wrapper{border-right:1px solid #9b9b9b;margin-top:100px;overflow:visible;padding-right:20px;width:50%}}@media (min-width:1340px){.mega-links-wrapper{padding-right:40px}}@media (min-width:1020px){.mega-links-wrapperButton{padding-bottom:40px;width:100%}}@media (min-width:1340px){.mega-links-wrapperButton{padding-bottom:40px;width:100%}}.mega-links-activeBar{background:#071d39;display:none;height:30px;position:absolute;right:-4px;top:-5px;transition:transform .2s ease-in-out;width:6px}@media (min-width:1020px){.mega-links-activeBar{display:block}}.mega-links-activeBar.mega-links-sub{background:#fcb700;right:-3px;width:6px}.mega-links-primaryLinkProAndIC{backface-visibility:hidden;display:flex;flex-direction:row;font-size:22px;font-weight:500;height:70px;justify-content:center;letter-spacing:2px;line-height:70px;position:relative;text-align:left;text-transform:uppercase;transform-origin:center right;transition:transform .3s;width:100%}@media (min-width:1020px){.mega-links-primaryLinkProAndIC{font-size:20px;height:auto;letter-spacing:1.3px;line-height:1;margin-bottom:32px;text-align:right}}@media (min-width:1340px){.mega-links-primaryLinkProAndIC{font-size:28px;letter-spacing:3px}}.mega-links-primaryLinkProAndIC a{flex:1}@media (max-width:1019px){.mega-links-primaryLinkProAndIC a{align-items:center;display:flex;white-space:pre-wrap;width:100%}}.mega-links-primaryLinkProAndIC a:hover{color:#27313c;text-decoration:none}.mega-links-primaryLinkProAndIC button{background:#f2f2f2;color:#071d39;height:0;line-height:70px;overflow:hidden;padding-top:70px;position:relative;text-align:center;width:70px}.mega-links-primaryLinkProAndIC button:before{font-size:16px;height:100%;left:0;line-height:70px;position:absolute;top:0;transform:scaleY(1);transition:transform .25s linear;width:100%}@media (min-width:1020px){.mega-links-primaryLinkProAndIC button{display:none}}.mega-links-primaryLinkProAndIC span.mega-links-primaryLinkUnclickable{color:#005594;flex:1}.mega-links-primaryLinkProAndIC span.mega-links-primaryLinkUnclickable:hover{color:#27313c}.mega-links-chevronLeft{border:2px solid #0000;border-radius:100px;box-sizing:border-box;display:block;height:22px;position:relative;width:22px}.mega-links-chevronLeft:after{border-bottom:2px solid;border-left:2px solid;box-sizing:border-box;content:"";display:block;height:10px;left:6px;position:absolute;top:4px;transform:rotate(45deg);width:10px}.mega-links-bellIcon{margin-left:auto;margin-right:20px}.mega-links-chevronRight{border:2px solid #0000;border-radius:100px;box-sizing:border-box;color:#071d39;display:block;flex:1;height:22px;margin-right:20px;position:absolute;right:0;width:22px}.mega-links-chevronRight:after{border-bottom:2px solid;border-right:2px solid;box-sizing:border-box;content:"";display:block;height:10px;position:absolute;right:6px;top:4px;transform:rotate(-45deg);width:10px}.mega-links-primaryLink{backface-visibility:hidden;display:flex;flex-direction:row;flex-shrink:1;font-size:22px;font-weight:500;height:70px;justify-content:center;letter-spacing:2px;line-height:70px;position:relative;text-align:left;text-transform:uppercase;transform-origin:center right;transition:transform .3s;width:calc(100vw - 20px)}@media (min-width:1020px){.mega-links-primaryLink{font-size:20px;height:auto;letter-spacing:1.3px;line-height:1;margin-bottom:32px;text-align:right;width:100%}}@media (min-width:1340px){.mega-links-primaryLink{font-size:28px;letter-spacing:3px;transition:transform .25s}}.mega-links-primaryLink a{align-items:center;color:#005594;flex:1}@media (max-width:1019px){.mega-links-primaryLink a{display:flex;line-height:1.5;padding-bottom:20px;padding-top:20px}}.mega-links-primaryLink a:hover{color:#005594;text-decoration:none}.mega-links-primaryLink button{background:#f2f2f2;color:#071d39;height:0;line-height:70px;overflow:hidden;padding-top:70px;position:relative;text-align:center;width:70px}.mega-links-primaryLink button:before{font-size:16px;height:100%;left:0;line-height:70px;position:absolute;top:0;transform:scaleY(1);transition:transform .25s linear;width:100%}@media (min-width:1020px){.mega-links-primaryLink button{display:none}}.mega-links-primaryLink span.mega-links-primaryLinkUnclickable{color:#005594;flex:1}@media (max-width:1019px){.mega-links-primaryLink span.mega-links-primaryLinkUnclickable{display:flex}}.mega-links-primaryLink span.mega-links-primaryLinkUnclickable:hover{color:#005594}@media (max-width:1019px){.mega-links-primaryLinkExpandedProAndIC a{display:initial}}.mega-links-upperCase>li>a{text-transform:uppercase}@media (min-width:1020px){.mega-links-primaryLinkExpanded,.mega-links-primaryLinkExpandedProAndIC{font-weight:600;transform:scale(1.32)}}@media (min-width:1340px){.mega-links-primaryLinkExpanded,.mega-links-primaryLinkExpandedProAndIC{transform:scale(1.15)}}.mega-links-primaryLinkExpanded a,.mega-links-primaryLinkExpandedProAndIC a{color:#071d39}@media (max-width:1019px){.mega-links-primaryLinkExpanded a,.mega-links-primaryLinkExpandedProAndIC a{display:flex}}.mega-links-primaryLinkExpanded a:hover,.mega-links-primaryLinkExpandedProAndIC a:hover{color:#071d39}.mega-links-primaryLinkExpanded .mega-links-investingClubLockIcon,.mega-links-primaryLinkExpanded .mega-links-proLockIcon,.mega-links-primaryLinkExpandedProAndIC .mega-links-investingClubLockIcon,.mega-links-primaryLinkExpandedProAndIC .mega-links-proLockIcon{background:#071d39;height:15px;margin-left:4px;margin-top:5px;mask-image:url(https://static-redesign.cnbcfm.com/dist/2510aab92bf855eb1ad7.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/2510aab92bf855eb1ad7.svg);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;mask-size:11px;-webkit-mask-size:11px;width:11px}@media (max-width:1339px){.mega-links-primaryLinkExpanded .mega-links-investingClubLockIcon,.mega-links-primaryLinkExpanded .mega-links-proLockIcon,.mega-links-primaryLinkExpandedProAndIC .mega-links-investingClubLockIcon,.mega-links-primaryLinkExpandedProAndIC .mega-links-proLockIcon{margin-top:2px}}@media (max-width:1019px){.mega-links-primaryLinkExpanded .mega-links-investingClubLockIcon,.mega-links-primaryLinkExpanded .mega-links-proLockIcon,.mega-links-primaryLinkExpandedProAndIC .mega-links-investingClubLockIcon,.mega-links-primaryLinkExpandedProAndIC .mega-links-proLockIcon{margin-top:0}}@media (max-width:759px){.mega-links-primaryLinkExpanded .mega-links-investingClubLockIcon,.mega-links-primaryLinkExpanded .mega-links-proLockIcon,.mega-links-primaryLinkExpandedProAndIC .mega-links-investingClubLockIcon,.mega-links-primaryLinkExpandedProAndIC .mega-links-proLockIcon{margin-top:0}}.mega-links-primaryLinkExpanded .mega-links-investingClubLockIcon,.mega-links-primaryLinkExpandedProAndIC .mega-links-investingClubLockIcon{background:#071d39;height:15px;margin-left:8px;margin-top:5px;mask-image:url(https://static-redesign.cnbcfm.com/dist/2510aab92bf855eb1ad7.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/2510aab92bf855eb1ad7.svg);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;mask-size:11px;-webkit-mask-size:11px;width:11px}@media (max-width:1339px){.mega-links-primaryLinkExpanded .mega-links-investingClubLockIcon,.mega-links-primaryLinkExpandedProAndIC .mega-links-investingClubLockIcon{margin-top:2px}}@media (max-width:1019px){.mega-links-primaryLinkExpanded .mega-links-investingClubLockIcon,.mega-links-primaryLinkExpandedProAndIC .mega-links-investingClubLockIcon{margin-top:0}}@media (max-width:759px){.mega-links-primaryLinkExpanded .mega-links-investingClubLockIcon,.mega-links-primaryLinkExpandedProAndIC .mega-links-investingClubLockIcon{margin-top:0}}.mega-links-primaryLinkExpanded button,.mega-links-primaryLinkExpandedProAndIC button{background:#071d39;color:#fff}.mega-links-primaryLinkExpanded button:before,.mega-links-primaryLinkExpandedProAndIC button:before{transform:scaleY(-1)}.mega-links-accountSubLinks,.mega-links-accountSubLinksAllAccess,.mega-links-accountSubLinksIC,.mega-links-accountSubLinksPro,.mega-links-subLinkBase,.mega-links-subLinks,.mega-links-subLinksAllAccess,.mega-links-subLinksIC,.mega-links-subLinksPro{border-right:1px solid #9b9b9b;display:flex;flex-direction:column;height:100%;margin:0;overflow:hidden;position:relative;white-space:nowrap;width:100vw}@keyframes mega-links-fadeIn{0%{opacity:0}to{opacity:1}}@media (min-width:1020px){.mega-links-accountSubLinks,.mega-links-accountSubLinksAllAccess,.mega-links-accountSubLinksIC,.mega-links-accountSubLinksPro,.mega-links-subLinkBase,.mega-links-subLinks,.mega-links-subLinksAllAccess,.mega-links-subLinksIC,.mega-links-subLinksPro{animation:mega-links-fadeIn .5s;flex-direction:column;flex-wrap:wrap;gap:20px;overflow:visible;padding-right:20px;width:auto}}@media (min-width:1340px){.mega-links-accountSubLinks,.mega-links-accountSubLinksAllAccess,.mega-links-accountSubLinksIC,.mega-links-accountSubLinksPro,.mega-links-subLinkBase,.mega-links-subLinks,.mega-links-subLinksAllAccess,.mega-links-subLinksIC,.mega-links-subLinksPro{gap:24px;padding-right:40px}}@media (max-width:759px){.mega-links-accountSubLinks li:first-child,.mega-links-accountSubLinksAllAccess li:first-child,.mega-links-accountSubLinksIC li:first-child,.mega-links-accountSubLinksPro li:first-child,.mega-links-subLinkBase li:first-child,.mega-links-subLinks li:first-child,.mega-links-subLinksAllAccess li:first-child,.mega-links-subLinksIC li:first-child,.mega-links-subLinksPro li:first-child{cursor:pointer;font-size:16px;font-weight:700;letter-spacing:2px;line-height:37px}}.mega-links-accountSubLinks li,.mega-links-accountSubLinksAllAccess li,.mega-links-accountSubLinksIC li,.mega-links-accountSubLinksPro li,.mega-links-subLinkBase li,.mega-links-subLinks li,.mega-links-subLinksAllAccess li,.mega-links-subLinksIC li,.mega-links-subLinksPro li{align-items:center;border-bottom:1px solid #9b9b9b;cursor:pointer;display:flex;font-size:22px;font-weight:500;letter-spacing:2px;line-height:1.2;min-height:70px;padding:0 0 0 20px;position:relative;text-align:left;text-transform:uppercase;width:100%}.mega-links-accountSubLinks li.mega-links-upLevelButton,.mega-links-accountSubLinksAllAccess li.mega-links-upLevelButton,.mega-links-accountSubLinksIC li.mega-links-upLevelButton,.mega-links-accountSubLinksPro li.mega-links-upLevelButton,.mega-links-subLinkBase li.mega-links-upLevelButton,.mega-links-subLinks li.mega-links-upLevelButton,.mega-links-subLinksAllAccess li.mega-links-upLevelButton,.mega-links-subLinksIC li.mega-links-upLevelButton,.mega-links-subLinksPro li.mega-links-upLevelButton{font-size:16px;line-height:37px}.mega-links-accountSubLinks li.mega-links-upLevelButton a,.mega-links-accountSubLinksAllAccess li.mega-links-upLevelButton a,.mega-links-accountSubLinksIC li.mega-links-upLevelButton a,.mega-links-accountSubLinksPro li.mega-links-upLevelButton a,.mega-links-subLinkBase li.mega-links-upLevelButton a,.mega-links-subLinks li.mega-links-upLevelButton a,.mega-links-subLinksAllAccess li.mega-links-upLevelButton a,.mega-links-subLinksIC li.mega-links-upLevelButton a,.mega-links-subLinksPro li.mega-links-upLevelButton a{background:#fff;color:#071d39}@media (min-width:1020px){.mega-links-accountSubLinks li,.mega-links-accountSubLinksAllAccess li,.mega-links-accountSubLinksIC li,.mega-links-accountSubLinksPro li,.mega-links-subLinkBase li,.mega-links-subLinks li,.mega-links-subLinksAllAccess li,.mega-links-subLinksIC li,.mega-links-subLinksPro li{border-bottom:none;font-size:15px;letter-spacing:normal;line-height:20px;min-height:30px;padding:0;text-transform:none;width:50%}}@media (min-width:1340px){.mega-links-accountSubLinks li,.mega-links-accountSubLinksAllAccess li,.mega-links-accountSubLinksIC li,.mega-links-accountSubLinksPro li,.mega-links-subLinkBase li,.mega-links-subLinks li,.mega-links-subLinksAllAccess li,.mega-links-subLinksIC li,.mega-links-subLinksPro li{font-size:20px;line-height:20px}}.mega-links-accountSubLinks li.mega-links-subLinkSubscribe,.mega-links-accountSubLinksAllAccess li.mega-links-subLinkSubscribe,.mega-links-accountSubLinksIC li.mega-links-subLinkSubscribe,.mega-links-accountSubLinksPro li.mega-links-subLinkSubscribe,.mega-links-subLinkBase li.mega-links-subLinkSubscribe,.mega-links-subLinks li.mega-links-subLinkSubscribe,.mega-links-subLinksAllAccess li.mega-links-subLinkSubscribe,.mega-links-subLinksIC li.mega-links-subLinkSubscribe,.mega-links-subLinksPro li.mega-links-subLinkSubscribe{font-size:18px;font-weight:600;letter-spacing:.5px;width:100%}@media (min-width:1180px){.mega-links-accountSubLinks li.mega-links-subLinkSubscribe,.mega-links-accountSubLinksAllAccess li.mega-links-subLinkSubscribe,.mega-links-accountSubLinksIC li.mega-links-subLinkSubscribe,.mega-links-accountSubLinksPro li.mega-links-subLinkSubscribe,.mega-links-subLinkBase li.mega-links-subLinkSubscribe,.mega-links-subLinks li.mega-links-subLinkSubscribe,.mega-links-subLinksAllAccess li.mega-links-subLinkSubscribe,.mega-links-subLinksIC li.mega-links-subLinkSubscribe,.mega-links-subLinksPro li.mega-links-subLinkSubscribe{text-transform:uppercase}}.mega-links-accountSubLinks li.mega-links-subLinkSubscribeInvestingClub a,.mega-links-accountSubLinksAllAccess li.mega-links-subLinkSubscribeInvestingClub a,.mega-links-accountSubLinksIC li.mega-links-subLinkSubscribeInvestingClub a,.mega-links-accountSubLinksPro li.mega-links-subLinkSubscribeInvestingClub a,.mega-links-subLinkBase li.mega-links-subLinkSubscribeInvestingClub a,.mega-links-subLinks li.mega-links-subLinkSubscribeInvestingClub a,.mega-links-subLinksAllAccess li.mega-links-subLinkSubscribeInvestingClub a,.mega-links-subLinksIC li.mega-links-subLinkSubscribeInvestingClub a,.mega-links-subLinksPro li.mega-links-subLinkSubscribeInvestingClub a{color:#336aa0}.mega-links-accountSubLinks li.mega-links-subLinkSubscribePro a,.mega-links-accountSubLinksAllAccess li.mega-links-subLinkSubscribePro a,.mega-links-accountSubLinksIC li.mega-links-subLinkSubscribePro a,.mega-links-accountSubLinksPro li.mega-links-subLinkSubscribePro a,.mega-links-subLinkBase li.mega-links-subLinkSubscribePro a,.mega-links-subLinks li.mega-links-subLinkSubscribePro a,.mega-links-subLinksAllAccess li.mega-links-subLinkSubscribePro a,.mega-links-subLinksIC li.mega-links-subLinkSubscribePro a,.mega-links-subLinksPro li.mega-links-subLinkSubscribePro a{color:#008456}.mega-links-accountSubLinks li.mega-links-sub,.mega-links-accountSubLinksAllAccess li.mega-links-sub,.mega-links-accountSubLinksIC li.mega-links-sub,.mega-links-accountSubLinksPro li.mega-links-sub,.mega-links-subLinkBase li.mega-links-sub,.mega-links-subLinks li.mega-links-sub,.mega-links-subLinksAllAccess li.mega-links-sub,.mega-links-subLinksIC li.mega-links-sub,.mega-links-subLinksPro li.mega-links-sub{text-transform:capitalize;white-space:normal}.mega-links-accountSubLinks li.mega-links-sub a,.mega-links-accountSubLinksAllAccess li.mega-links-sub a,.mega-links-accountSubLinksIC li.mega-links-sub a,.mega-links-accountSubLinksPro li.mega-links-sub a,.mega-links-subLinkBase li.mega-links-sub a,.mega-links-subLinks li.mega-links-sub a,.mega-links-subLinksAllAccess li.mega-links-sub a,.mega-links-subLinksIC li.mega-links-sub a,.mega-links-subLinksPro li.mega-links-sub a{display:flex;width:100%}@media (min-width:1020px){.mega-links-accountSubLinks li.mega-links-sub a,.mega-links-accountSubLinksAllAccess li.mega-links-sub a,.mega-links-accountSubLinksIC li.mega-links-sub a,.mega-links-accountSubLinksPro li.mega-links-sub a,.mega-links-subLinkBase li.mega-links-sub a,.mega-links-subLinks li.mega-links-sub a,.mega-links-subLinksAllAccess li.mega-links-sub a,.mega-links-subLinksIC li.mega-links-sub a,.mega-links-subLinksPro li.mega-links-sub a{display:unset}}.mega-links-accountSubLinks li a,.mega-links-accountSubLinksAllAccess li a,.mega-links-accountSubLinksIC li a,.mega-links-accountSubLinksPro li a,.mega-links-subLinkBase li a,.mega-links-subLinks li a,.mega-links-subLinksAllAccess li a,.mega-links-subLinksIC li a,.mega-links-subLinksPro li a{align-items:center;display:flex;padding-right:20px;white-space:pre-wrap;width:100%}.mega-links-accountSubLinks li a:hover,.mega-links-accountSubLinksAllAccess li a:hover,.mega-links-accountSubLinksIC li a:hover,.mega-links-accountSubLinksPro li a:hover,.mega-links-subLinkBase li a:hover,.mega-links-subLinks li a:hover,.mega-links-subLinksAllAccess li a:hover,.mega-links-subLinksIC li a:hover,.mega-links-subLinksPro li a:hover{text-decoration:none}@media (max-width:1019px){.mega-links-accountSubLinks li a,.mega-links-accountSubLinksAllAccess li a,.mega-links-accountSubLinksIC li a,.mega-links-accountSubLinksPro li a,.mega-links-subLinkBase li a,.mega-links-subLinks li a,.mega-links-subLinksAllAccess li a,.mega-links-subLinksIC li a,.mega-links-subLinksPro li a{padding-bottom:20px;padding-top:20px}}.mega-links-accountSubLinks li a .mega-links-event,.mega-links-accountSubLinksAllAccess li a .mega-links-event,.mega-links-accountSubLinksIC li a .mega-links-event,.mega-links-accountSubLinksPro li a .mega-links-event,.mega-links-subLinkBase li a .mega-links-event,.mega-links-subLinks li a .mega-links-event,.mega-links-subLinksAllAccess li a .mega-links-event,.mega-links-subLinksIC li a .mega-links-event,.mega-links-subLinksPro li a .mega-links-event{font-size:12px;margin-top:5px}.mega-links-accountSubLinks li a .mega-links-event .mega-links-location,.mega-links-accountSubLinksAllAccess li a .mega-links-event .mega-links-location,.mega-links-accountSubLinksIC li a .mega-links-event .mega-links-location,.mega-links-accountSubLinksPro li a .mega-links-event .mega-links-location,.mega-links-subLinkBase li a .mega-links-event .mega-links-location,.mega-links-subLinks li a .mega-links-event .mega-links-location,.mega-links-subLinksAllAccess li a .mega-links-event .mega-links-location,.mega-links-subLinksIC li a .mega-links-event .mega-links-location,.mega-links-subLinksPro li a .mega-links-event .mega-links-location{color:#747474}.mega-links-accountSubLinks li a.mega-links-breadcrumb,.mega-links-accountSubLinks li a:focus,.mega-links-accountSubLinks li a:focus .mega-links-location,.mega-links-accountSubLinks li a:hover,.mega-links-accountSubLinks li a:hover .mega-links-location,.mega-links-accountSubLinksAllAccess li a.mega-links-breadcrumb,.mega-links-accountSubLinksAllAccess li a:focus,.mega-links-accountSubLinksAllAccess li a:focus .mega-links-location,.mega-links-accountSubLinksAllAccess li a:hover,.mega-links-accountSubLinksAllAccess li a:hover .mega-links-location,.mega-links-accountSubLinksIC li a.mega-links-breadcrumb,.mega-links-accountSubLinksIC li a:focus,.mega-links-accountSubLinksIC li a:focus .mega-links-location,.mega-links-accountSubLinksIC li a:hover,.mega-links-accountSubLinksIC li a:hover .mega-links-location,.mega-links-accountSubLinksPro li a.mega-links-breadcrumb,.mega-links-accountSubLinksPro li a:focus,.mega-links-accountSubLinksPro li a:focus .mega-links-location,.mega-links-accountSubLinksPro li a:hover,.mega-links-accountSubLinksPro li a:hover .mega-links-location,.mega-links-subLinkBase li a.mega-links-breadcrumb,.mega-links-subLinkBase li a:focus,.mega-links-subLinkBase li a:focus .mega-links-location,.mega-links-subLinkBase li a:hover,.mega-links-subLinkBase li a:hover .mega-links-location,.mega-links-subLinks li a.mega-links-breadcrumb,.mega-links-subLinks li a:focus,.mega-links-subLinks li a:focus .mega-links-location,.mega-links-subLinks li a:hover,.mega-links-subLinks li a:hover .mega-links-location,.mega-links-subLinksAllAccess li a.mega-links-breadcrumb,.mega-links-subLinksAllAccess li a:focus,.mega-links-subLinksAllAccess li a:focus .mega-links-location,.mega-links-subLinksAllAccess li a:hover,.mega-links-subLinksAllAccess li a:hover .mega-links-location,.mega-links-subLinksIC li a.mega-links-breadcrumb,.mega-links-subLinksIC li a:focus,.mega-links-subLinksIC li a:focus .mega-links-location,.mega-links-subLinksIC li a:hover,.mega-links-subLinksIC li a:hover .mega-links-location,.mega-links-subLinksPro li a.mega-links-breadcrumb,.mega-links-subLinksPro li a:focus,.mega-links-subLinksPro li a:focus .mega-links-location,.mega-links-subLinksPro li a:hover,.mega-links-subLinksPro li a:hover .mega-links-location{color:#fcb700}@media (min-width:1020px){.mega-links-accountSubLinks li,.mega-links-accountSubLinksAllAccess li,.mega-links-accountSubLinksIC li,.mega-links-accountSubLinksPro li,.mega-links-subLinkBase li,.mega-links-subLinks li,.mega-links-subLinksAllAccess li,.mega-links-subLinksIC li,.mega-links-subLinksPro li{display:unset;font-size:15px;line-height:1;min-height:auto;padding:0;width:100%}}@media (min-width:1340px){.mega-links-accountSubLinks li,.mega-links-accountSubLinksAllAccess li,.mega-links-accountSubLinksIC li,.mega-links-accountSubLinksPro li,.mega-links-subLinkBase li,.mega-links-subLinks li,.mega-links-subLinksAllAccess li,.mega-links-subLinksIC li,.mega-links-subLinksPro li{font-size:20px}}.mega-links-accountSubLinksAllAccess li a.mega-links-breadcrumb,.mega-links-accountSubLinksAllAccess li a:focus,.mega-links-accountSubLinksAllAccess li a:focus .mega-links-location,.mega-links-accountSubLinksAllAccess li a:hover,.mega-links-accountSubLinksAllAccess li a:hover .mega-links-location,.mega-links-subLinksAllAccess li a.mega-links-breadcrumb,.mega-links-subLinksAllAccess li a:focus,.mega-links-subLinksAllAccess li a:focus .mega-links-location,.mega-links-subLinksAllAccess li a:hover,.mega-links-subLinksAllAccess li a:hover .mega-links-location{color:#002f6c}.mega-links-accountSubLinksAllAccess>.mega-links-activeBar,.mega-links-subLinksAllAccess>.mega-links-activeBar{background:#071d39}.mega-links-accountSubLinksPro li a.mega-links-breadcrumb,.mega-links-accountSubLinksPro li a:focus,.mega-links-accountSubLinksPro li a:focus .mega-links-location,.mega-links-accountSubLinksPro li a:hover,.mega-links-accountSubLinksPro li a:hover .mega-links-location,.mega-links-subLinksPro li a.mega-links-breadcrumb,.mega-links-subLinksPro li a:focus,.mega-links-subLinksPro li a:focus .mega-links-location,.mega-links-subLinksPro li a:hover,.mega-links-subLinksPro li a:hover .mega-links-location{color:#00a857}.mega-links-accountSubLinksPro>.mega-links-activeBar,.mega-links-subLinksPro>.mega-links-activeBar{background:#008456}.mega-links-accountSubLinksIC li a.mega-links-breadcrumb,.mega-links-accountSubLinksIC li a:focus,.mega-links-accountSubLinksIC li a:focus .mega-links-location,.mega-links-accountSubLinksIC li a:hover,.mega-links-accountSubLinksIC li a:hover .mega-links-location,.mega-links-subLinksIC li a.mega-links-breadcrumb,.mega-links-subLinksIC li a:focus,.mega-links-subLinksIC li a:focus .mega-links-location,.mega-links-subLinksIC li a:hover,.mega-links-subLinksIC li a:hover .mega-links-location{color:#0496ff}.mega-links-accountSubLinksIC>.mega-links-activeBar,.mega-links-subLinksIC>.mega-links-activeBar{background:#0496ff}.mega-links-investingClubLockIcon,.mega-links-proLockIcon{background:#001e5a;display:inline-block;height:15px;margin-left:4px;margin-top:5px;mask-image:url(https://static-redesign.cnbcfm.com/dist/2510aab92bf855eb1ad7.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/2510aab92bf855eb1ad7.svg);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;mask-size:11px;-webkit-mask-size:11px;width:11px}@media (max-width:1339px){.mega-links-investingClubLockIcon,.mega-links-proLockIcon{margin-top:2px}}@media (max-width:1019px){.mega-links-investingClubLockIcon,.mega-links-proLockIcon{margin-top:0}}@media (max-width:759px){.mega-links-investingClubLockIcon,.mega-links-proLockIcon{margin-top:0}}.mega-links-investingClubLockIcon{margin-left:8px}.mega-links-accountSubLinks li:first-child{height:40px;padding:10px 0;width:100%}@media (max-width:1019px){.mega-links-accountSubLinks li:first-child{background:#f8f8f8}}.mega-links-accountSubLinks li:first-child a{cursor:default}.mega-links-accountSubLinks li:first-child a:focus,.mega-links-accountSubLinks li:first-child a:hover{color:#071d39}.mega-links-accountSubLinksAllAccess li:first-child{cursor:default;height:40px;padding:10px 0;width:100%}.mega-links-accountSubLinksAllAccess li:first-child:focus,.mega-links-accountSubLinksAllAccess li:first-child:hover{color:#071d39}@media (max-width:1019px){.mega-links-accountSubLinksAllAccess li:first-child{background:#f8f8f8}}.mega-links-accountSubLinksAllAccess li:first-child.mega-links-subLinkSubscribe{font-size:18px;font-weight:600;letter-spacing:.5px;width:100%}@media (min-width:1180px){.mega-links-accountSubLinksAllAccess li:first-child.mega-links-subLinkSubscribe{text-transform:uppercase}}.mega-links-accountSubLinksAllAccess li:first-child.mega-links-subLinkSubscribeInvestingClub a{color:#336aa0}.mega-links-accountSubLinksAllAccess li:first-child.mega-links-subLinkSubscribePro a{color:#008456}.mega-links-accountSubLinksPro li:first-child{cursor:default;height:40px;padding:10px 0;width:100%}.mega-links-accountSubLinksPro li:first-child:focus,.mega-links-accountSubLinksPro li:first-child:hover{color:#071d39}@media (max-width:1019px){.mega-links-accountSubLinksPro li:first-child{background:#f8f8f8}}.mega-links-accountSubLinksPro li:first-child.mega-links-subLinkSubscribe{font-size:18px;font-weight:600;letter-spacing:.5px;width:100%}@media (min-width:1180px){.mega-links-accountSubLinksPro li:first-child.mega-links-subLinkSubscribe{text-transform:uppercase}}.mega-links-accountSubLinksPro li:first-child.mega-links-subLinkSubscribeInvestingClub a{color:#336aa0}.mega-links-accountSubLinksPro li:first-child.mega-links-subLinkSubscribePro a{color:#008456}@media (min-width:1020px){.mega-links-buttonText{left:2px;position:absolute;right:30px;top:-15px;width:100%}}@media (min-width:1340px){.mega-links-buttonText{left:2px;position:absolute;right:30px;top:-14px!important;width:100%}}.mega-links-buttonLink{appearance:none;background-color:#0376c9;border:1px solid #0376c9;color:#fff;font-size:22px;font-weight:500;height:70px;justify-content:center;letter-spacing:2px;line-height:70px;padding:0 20px;position:relative;text-align:left;text-transform:uppercase;transition:all .15s linear;width:100%}@media (min-width:1340px){.mega-links-buttonLink{border-radius:4px;float:right;font-size:16px!important;height:44px!important;width:73%!important}}@media (min-width:1020px){.mega-links-buttonLink{border-radius:4px;float:right;font-size:11px;font-weight:600;height:40px;letter-spacing:1px;padding:0!important;text-align:center;width:64%}}@media (max-width:359px){.mega-links-buttonLink{font-size:16px;font-weight:700}}.mega-links-allAccessBtn{color:#fff!important;left:2px;position:absolute;right:30px;top:-14px!important;width:100%}@media (max-width:1019px){.mega-links-allAccessBtn{font-size:16px!important;font-weight:700!important;left:32px!important;top:-4px!important}}.mega-links-menuPromotion,.mega-links-subMenuPromotion{align-items:center;background:#e8802a;border-radius:3px;color:#fff;display:inline-flex;font-size:8px;font-weight:500;gap:10px;justify-content:center;line-height:10px;margin-left:5px;padding:3px 4px 2px;text-transform:uppercase}.mega-links-menuPromotion{letter-spacing:normal;margin:auto 0 auto 5px}.mega-menu-mobileTopBar{display:block;transition:transform .5s ease-in-out}@media (min-width:1020px){.mega-menu-mobileTopBar{display:none}}.mega-menu-desktopTopBar{display:none;transition:transform .5s ease-in-out}@media (min-width:1020px){.mega-menu-desktopTopBar{display:block}}.mega-menu-megaMenu{-webkit-overflow-scrolling:touch;background:#fff;color:#071d39;display:block;height:100%;left:0;opacity:1;overflow-y:scroll;padding-bottom:45px;position:fixed;top:45px;width:100%;z-index:999}@media (min-width:760px){.mega-menu-megaMenu{padding-bottom:0;top:0}}@media (min-width:1020px){.mega-menu-megaMenu{height:100%;overflow-x:hidden;overflow-y:auto;width:100%}}@media (min-width:760px) and (max-width:1019px){.mega-menu-megaMenu{padding-top:2.5rem}}@media (min-width:1020px){.mega-menu-megaMenuContainer{display:flex;flex-direction:row;flex-wrap:wrap;margin:0 auto;max-width:100%;position:relative;width:100%}}@media (min-width:1020px) and (min-width:760px){.mega-menu-megaMenuContainer{max-width:678px}}@media (min-width:1020px) and (min-width:1020px){.mega-menu-megaMenuContainer{max-width:960px}}@media (min-width:1020px) and (min-width:1340px){.mega-menu-megaMenuContainer{max-width:1290px}}@media screen and (-ms-high-contrast:none){.mega-menu-megaMenuContainer{max-width:100%}}.mega-menu-searchToggle{background-color:#fff;border-bottom:1px solid #9b9b9b;display:block;padding:20px}@media (min-width:1020px){.mega-menu-searchToggle{background-color:initial;border-bottom:none;padding:27px 40px;position:absolute;right:0;z-index:1}}.mega-menu-topBar{background-color:#001e5a}.mega-menu-topBarLoggedeIn{background-color:#00081a}.mega-menu-topBar{align-items:center;display:flex;flex-direction:row;height:45px;justify-content:space-between;left:0;max-height:45px;min-height:45px;padding:0 30px 0 20px;position:fixed;top:0;width:100%;z-index:10000}@media (min-width:760px){.mega-menu-topBar{justify-content:flex-start}}@media (min-width:1020px){.mega-menu-topBar{align-items:center;background-color:initial;flex-wrap:wrap;height:102px;left:0;max-height:102px;min-height:92px;padding:0 0 0 8px;position:absolute;top:0;width:50%}}@media (min-width:1340px){.mega-menu-topBar{height:102px;max-height:102px}}.mega-menu-close{background:none;color:#fff;font-size:17px;order:2}.mega-menu-close span:before{display:block}.mega-menu-close:hover{color:#fcb700}.mega-menu-close:focus{color:#fff}.mega-menu-close:focus:hover{color:#fcb700}@media (min-width:1020px){.mega-menu-close:focus{color:#005594}}@media (min-width:760px){.mega-menu-close{order:1}}@media (min-width:1020px){.mega-menu-close{color:#005594;font-size:15px}}.mega-menu-logo{flex:1;max-width:35px;min-width:35px;order:1}@media (min-width:760px){.mega-menu-logo{margin-left:30px;order:2}}@media (min-width:1020px){.mega-menu-logo{max-width:120px;min-width:120px}.mega-menu-logoSmall{display:none;height:22px;width:125px}}.mega-menu-logoLarge{display:none}@media (min-width:1020px){.mega-menu-logoLarge{display:block;height:20px;width:138px}}.mega-menu-search{color:#005594;font-size:14px;font-weight:600;letter-spacing:1px;margin-right:30px}@media (min-width:1340px){.mega-menu-search{margin-right:75px}}.mega-menu-accountLinks{display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between}.mega-menu-accountLinks li{height:70px;line-height:70px;padding:0 20px;text-align:center}.mega-menu-accountLinks a{color:#071d39;font-size:14px;font-weight:600;letter-spacing:.85px}.mega-menu-accountLinks li:first-child,.mega-menu-accountLinks li:nth-child(2),.mega-menu-accountLinks li:nth-child(3){flex:auto;width:33.3333%}.mega-menu-accountLinks li:nth-child(4),.mega-menu-accountLinks li:nth-child(5){border-top:1px solid #f2f2f2;flex:auto;text-align:center;width:50%}.mega-menu-accountLinks li:nth-child(5){border-left:1px solid #f2f2f2}.mega-menu-accountLinks li:nth-child(5) a{margin:0 14px}.mega-menu-accountLinks li:nth-child(5) a:last-child:before{color:#000;content:"•";font-size:10px;left:-14px;position:relative;top:-2px}.mega-menu-accountLinks .icon-offsite-arrow{display:inline-block;line-height:14px;margin-left:5px;vertical-align:middle}.mega-menu-accountLinks .icon-offsite-arrow:before{color:#071d3966;font-size:12px;line-height:14px}@media (min-width:1020px){.mega-menu-accountLinks{width:100%}}@media (min-width:1340px){.mega-menu-accountLinks{display:none}}.SearchEntry-inputContainer{background-color:#001e5a}.SearchEntry-inputContainerLoggedIn{background-color:#00081a}.SearchEntry-inputContainerPro{background-color:#27313c}.SearchEntry-inputContainerIC{background-color:#071d39}.SearchEntry-inputContainerAllAccess{background-color:#002f6c}.SearchEntry-inputContainer,.SearchEntry-inputContainerAllAccess,.SearchEntry-inputContainerIC,.SearchEntry-inputContainerLoggedIn,.SearchEntry-inputContainerPro{opacity:1;padding:20px;position:relative;z-index:2}@media (min-width:360px){.SearchEntry-inputContainer,.SearchEntry-inputContainerAllAccess,.SearchEntry-inputContainerIC,.SearchEntry-inputContainerLoggedIn,.SearchEntry-inputContainerPro{padding-top:45px}}@media (min-width:760px){.SearchEntry-inputContainer,.SearchEntry-inputContainerAllAccess,.SearchEntry-inputContainerIC,.SearchEntry-inputContainerLoggedIn,.SearchEntry-inputContainerPro{padding:15px 0 25px}.SearchEntry-inputContainer>*,.SearchEntry-inputContainerAllAccess>*,.SearchEntry-inputContainerIC>*,.SearchEntry-inputContainerLoggedIn>*,.SearchEntry-inputContainerPro>*{opacity:1}.SearchEntry-enter .SearchEntry-inputContainer>*,.SearchEntry-enter .SearchEntry-inputContainerAllAccess>*,.SearchEntry-enter .SearchEntry-inputContainerIC>*,.SearchEntry-enter .SearchEntry-inputContainerLoggedIn>*,.SearchEntry-enter .SearchEntry-inputContainerPro>*{opacity:0!important}.SearchEntry-enter-active .SearchEntry-inputContainer>*,.SearchEntry-enter-active .SearchEntry-inputContainerAllAccess>*,.SearchEntry-enter-active .SearchEntry-inputContainerIC>*,.SearchEntry-enter-active .SearchEntry-inputContainerLoggedIn>*,.SearchEntry-enter-active .SearchEntry-inputContainerPro>*{opacity:1!important;transition:opacity .1s ease-in .3s}.SearchEntry-exit .SearchEntry-inputContainer>*,.SearchEntry-exit .SearchEntry-inputContainerAllAccess>*,.SearchEntry-exit .SearchEntry-inputContainerIC>*,.SearchEntry-exit .SearchEntry-inputContainerLoggedIn>*,.SearchEntry-exit .SearchEntry-inputContainerPro>*{opacity:1!important}.SearchEntry-exit-active .SearchEntry-inputContainer>*,.SearchEntry-exit-active .SearchEntry-inputContainerAllAccess>*,.SearchEntry-exit-active .SearchEntry-inputContainerIC>*,.SearchEntry-exit-active .SearchEntry-inputContainerLoggedIn>*,.SearchEntry-exit-active .SearchEntry-inputContainerPro>*{opacity:0!important;transition:transform .1s ease-out}}@media (min-width:1020px){.SearchEntry-inputContainer,.SearchEntry-inputContainerAllAccess,.SearchEntry-inputContainerIC,.SearchEntry-inputContainerLoggedIn,.SearchEntry-inputContainerPro{background-color:#fff;padding:10px 20px 0}.SearchEntry-inputContainer input[type=search]::-webkit-search-cancel-button,.SearchEntry-inputContainerAllAccess input[type=search]::-webkit-search-cancel-button,.SearchEntry-inputContainerIC input[type=search]::-webkit-search-cancel-button,.SearchEntry-inputContainerLoggedIn input[type=search]::-webkit-search-cancel-button,.SearchEntry-inputContainerPro input[type=search]::-webkit-search-cancel-button{-webkit-appearance:none}.SearchEntry-inputContainer input[type=search]::-webkit-search-cancel-button,.SearchEntry-inputContainer input[type=search]::-webkit-search-decoration,.SearchEntry-inputContainer input[type=search]::-webkit-search-results-button,.SearchEntry-inputContainer input[type=search]::-webkit-search-results-decoration,.SearchEntry-inputContainerAllAccess input[type=search]::-webkit-search-cancel-button,.SearchEntry-inputContainerAllAccess input[type=search]::-webkit-search-decoration,.SearchEntry-inputContainerAllAccess input[type=search]::-webkit-search-results-button,.SearchEntry-inputContainerAllAccess input[type=search]::-webkit-search-results-decoration,.SearchEntry-inputContainerIC input[type=search]::-webkit-search-cancel-button,.SearchEntry-inputContainerIC input[type=search]::-webkit-search-decoration,.SearchEntry-inputContainerIC input[type=search]::-webkit-search-results-button,.SearchEntry-inputContainerIC input[type=search]::-webkit-search-results-decoration,.SearchEntry-inputContainerLoggedIn input[type=search]::-webkit-search-cancel-button,.SearchEntry-inputContainerLoggedIn input[type=search]::-webkit-search-decoration,.SearchEntry-inputContainerLoggedIn input[type=search]::-webkit-search-results-button,.SearchEntry-inputContainerLoggedIn input[type=search]::-webkit-search-results-decoration,.SearchEntry-inputContainerPro input[type=search]::-webkit-search-cancel-button,.SearchEntry-inputContainerPro input[type=search]::-webkit-search-decoration,.SearchEntry-inputContainerPro input[type=search]::-webkit-search-results-button,.SearchEntry-inputContainerPro input[type=search]::-webkit-search-results-decoration{display:none}.SearchEntry-inputContainer button,.SearchEntry-inputContainerAllAccess button,.SearchEntry-inputContainerIC button,.SearchEntry-inputContainerLoggedIn button,.SearchEntry-inputContainerPro button{right:0;width:30px}.SearchEntry-inputContainer button:before,.SearchEntry-inputContainerAllAccess button:before,.SearchEntry-inputContainerIC button:before,.SearchEntry-inputContainerLoggedIn button:before,.SearchEntry-inputContainerPro button:before{font-size:20px;line-height:36px}.SearchEntry-inputContainer input,.SearchEntry-inputContainerAllAccess input,.SearchEntry-inputContainerIC input,.SearchEntry-inputContainerLoggedIn input,.SearchEntry-inputContainerPro input{border-bottom:1px solid #979797;font-size:14px;height:35px;padding:0 40px 0 0}}.SearchEntry-container{background-color:initial;padding:0 20px;position:relative;width:100%}@media (min-width:760px){.SearchEntry-container{padding:0 150px}}@media (min-width:1020px){.SearchEntry-container{padding:0}}.SearchEntry-container.SearchEntry-standardVariant{padding:20px 0 0}@media (min-width:360px){.SearchEntry-container.SearchEntry-standardVariant{padding:45px 20px 20px}}@media (min-width:760px){.SearchEntry-container.SearchEntry-standardVariant{padding:0}}@media (min-width:1020px){.SearchEntry-container.SearchEntry-standardVariant{padding:8px 80px 40px}}.SearchEntry-searchForm{display:block;position:relative}.SearchEntry-overlay .SearchEntry-searchForm{border-bottom:0}.SearchEntry-searchForm ::placeholder{color:#a2a2a2}.SearchEntry-overlay{margin:0 auto;padding:0;width:100%}@media (min-width:760px){.SearchEntry-overlay{max-width:560px}}@media (min-width:1020px){.SearchEntry-overlay{max-width:800px}}@media (min-width:1340px){.SearchEntry-overlay{max-width:1132px}}.SearchEntry-inputCallToAction{display:none}@media (min-width:1020px){.SearchEntry-inputCallToAction{display:block;font-size:15px;font-weight:600;letter-spacing:1px;line-height:15px;margin-bottom:5px}.SearchEntry-overlay .SearchEntry-inputCallToAction{color:#fff}}.SearchEntry-querySuggest{background:#fff;border:1px solid #0000;color:grey;margin:0;opacity:1;position:absolute;width:calc(100% - 30px)}.SearchEntry-query{background:#0000;border:1px solid;border-color:#888 #888 #ccc;border-image:initial;margin:0;opacity:1;position:relative;width:calc(100% - 30px);z-index:2}.SearchEntry-searchInput{-webkit-appearance:none;background-color:#fff;border:0;box-sizing:border-box!important;color:#171717;display:block;font-size:16px;font-weight:500;height:50px;letter-spacing:1px;line-height:1;padding:0 50px 0 15px;width:100%}.SearchEntry-standardVariant .SearchEntry-searchInput{text-transform:uppercase}.SearchEntry-overlay .SearchEntry-searchInput{border-radius:3px}@media (min-width:1020px){.SearchEntry-searchInput{border-bottom:1px solid #979797;font-size:14px;font-weight:600;height:35px;padding:0 40px 0 0}.SearchEntry-overlay .SearchEntry-searchInput{border-radius:0}.SearchEntry-searchInput::-webkit-search-cancel-button{-webkit-appearance:none}.SearchEntry-searchInput::-webkit-search-cancel-button,.SearchEntry-searchInput::-webkit-search-decoration,.SearchEntry-searchInput::-webkit-search-results-button,.SearchEntry-searchInput::-webkit-search-results-decoration{display:none}}.SearchEntry-searchButton{bottom:0;height:0;margin:auto;overflow:hidden;padding-top:30px;position:absolute;right:10px;top:0;width:30px;z-index:2}.SearchEntry-searchButton:before{color:#2077b6;font-size:26px;height:100%;left:0;line-height:30px;position:absolute;text-align:center;top:0;width:100%}@media (min-width:1020px){.SearchEntry-searchButton{padding-top:40px;right:0;width:30px}.SearchEntry-searchButton:before{font-size:20px;line-height:36px}}.SearchEntry-suggestActive{color:#000}.SearchEntry-suggestActiveInput{opacity:.7}.SearchEntry-suggestNotActive{display:none!important}.SearchEntry-suggestNotActiveInput{opacity:1!important}.SearchEntry-waitingIcon{background-color:#fff;position:absolute;right:40px;top:2px;z-index:2}@media (min-width:1020px){.SearchEntry-waitingIcon{right:35px;top:0}}.SearchEntry-waitingIcon img{height:45px;width:60px}@media (min-width:1020px){.SearchEntry-waitingIcon img{height:30px;width:50px}}@media (max-width:1019px){.SearchResults-moreResults{margin-bottom:-20px!important}.SearchResults-tickerContainerHeader{margin-top:20px}}.SearchResults-contentContainer{background-color:#fff;opacity:1;padding-bottom:10px;z-index:1}@media (min-width:760px){.SearchResults-enter .SearchResults-contentContainer{opacity:0!important}.SearchResults-enter-active .SearchResults-contentContainer{opacity:1!important;transition:opacity .1s ease-in .3s}.SearchResults-exit .SearchResults-contentContainer{opacity:1!important}.SearchResults-exit-active .SearchResults-contentContainer{opacity:0!important;transition:opacity .1s ease-out}}.SearchResults-focusable:hover,.SearchResults-highlight{background:#e4e4e4!important}.SearchResults-paddingExceptLeft{padding:5px 5px 5px 0}div:not(:first-child)>a>.SearchResults-articleItem{border-top:1px solid #ccc}.SearchResults-articleItem{height:80px;margin:0 20px;padding:5px;position:relative}.SearchResults-articleItemThumbnail{background-color:#ccc;background-position:50%;float:right;height:60px;margin-left:10px;position:relative;width:106px}.SearchResults-iconArrowRightLong{float:right;padding:4px}.SearchResults-iconArrowRightLong:before{content:"\E90A"}.SearchResults-upper{text-transform:uppercase}.SearchResults-empty{font-size:12px;padding-bottom:30px;padding-left:30px;padding-top:10px}.SearchResults-groupContainer{min-height:35px}.SearchResults-articleItemText{color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:13px;font-weight:600;line-height:14px;padding-bottom:20px;text-align:left}.SearchResults-articleTitle{height:44px;left:5px;overflow:hidden;position:absolute;top:5px;width:calc(100% - 120px)}.SearchResults-termHighlight{background-color:#e7ecf1}.SearchResults-articlePubDate{color:#747474;font-size:9px;font-weight:600;height:24px;letter-spacing:.02em;line-height:12px;overflow:hidden;position:absolute;top:50px;width:calc(100% - 120px)}.SearchResults-articlePubTime{white-space:nowrap}.SearchResults-moreResults{display:block;font-size:14px;margin-bottom:0;margin-left:20px;margin-right:20px;text-transform:uppercase}.SearchResults-moreResults a,.SearchResults-moreResults a:active,.SearchResults-moreResults a:hover{color:#005594}.SearchResults-containerHeader{border-top:1px solid #005594;color:#000;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;line-height:17px;margin-left:20px;margin-right:20px;padding:10px 10px 10px 0;text-decoration:underline;-webkit-text-decoration-color:#005594;text-decoration-color:#005594;text-transform:uppercase;text-underline-offset:3px}.SearchResults-playIcon{border:3px solid #fff;border-radius:100%;box-shadow:inset 0 1px 0 #555,inset 1px 0 0 #555,inset 0 -1px 0 #555,inset -1px 0 0 #555,0 1px 0 #555,1px 0 0 #555,0 -1px 0 #555,-1px 0 0 #555;height:32px;left:calc(50% - 16px);position:absolute;top:5px;width:32px}.SearchResults-playIcon>:first-child{border:8px solid #0000;border-left:13px solid #555;left:8px;position:absolute;top:5px}.SearchResults-playIcon>:last-child{border:6px solid #0000;border-left:10px solid #fff;left:9px;position:absolute;top:7px}.SearchResults-videoDuration{bottom:0;font-size:14px;font-weight:700;padding:0 5px;position:absolute;text-shadow:0 1px 0 #555,1px 0 0 #555,0 -1px 0 #555,-1px 0 0 #555;width:100%}.SearchResults-video{color:#fcb700;float:left;letter-spacing:.7px;text-transform:uppercase}.SearchResults-duration{color:#fff;float:right}.SearchResults-investingClubPill,.SearchResults-proPill{height:10px}.SymbolResultItem-link{align-items:center;display:flex;overflow:hidden;position:relative;white-space:nowrap}.SymbolResultItem-link:hover>.SymbolResultItem-item,.SymbolResultItem-selected{background-color:#e4e4e4}.SymbolResultItem-item{align-items:center;border:.5px solid #cfd8e2;border-radius:7px;color:#4a4a4a;display:flex;font-family:Proxima Nova,sans-serif;font-size:12px;line-height:12px;overflow:hidden;padding:8px;position:relative;white-space:nowrap}.SymbolResultItem-name{color:#4a4a4a;font-weight:500;margin:0;overflow:hidden;text-overflow:ellipsis}.SymbolResultItem-separator{color:#4a4a4a;margin:0 5px}.SymbolResultItem-last,.SymbolResultItem-symbol{color:#171717;font-weight:700;margin:0}.SymbolResultItem-positiveChange{color:#008456;font-weight:700;margin:0}.SymbolResultItem-negativeChange{color:#d0021b;font-weight:700;margin:0}.SymbolResultItem-unchanged{color:#747474;font-weight:700;margin:0}.SymbolResults-tickerContainerHeader{border-top:1px solid #005594;color:#000;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;line-height:17px;margin-left:20px;margin-right:20px;padding:10px 10px 10px 0;text-decoration:none}@media (max-width:1019px){.SymbolResults-tickerContainerHeader{margin-top:20px}}.SymbolResults-tickerContainer{display:flex;flex-wrap:wrap;gap:10px 15px;margin:0 20px 10px;min-height:30px;padding:0;text-indent:0}.SymbolResults-noSymbols{font-size:12px;padding-bottom:20px;padding-left:30px;padding-top:10px}@media (max-width:1019px){body #SearchDropDown-moreResults{margin-bottom:-20px}body #SearchDropDown-tickerContainerHeader{margin-top:20px}}body #SearchDropDown-tickerContainer #tickercontainer{gap:10px 15px;padding-bottom:10px!important}.icon-buffett-backtotop:before{font-size:1.5em;padding-left:3px}body #back-top-top{background:#001e5a;bottom:40px;color:#fff;cursor:pointer;display:none;height:auto;padding:10px;position:fixed;right:0}body #back-top-top:hover{background:#2077b6}@media (min-width:1340px){body .searchResultsCols{max-width:1290px}}@media (min-width:1020px){body .searchCol4{max-width:35%;min-width:35%}body .searchCol8{max-width:60%;min-width:60%;padding-right:0}body .searchResultsCols{max-width:100%;min-width:100%;padding:0 60px}}@media (min-width:1340px){body .searchCol4{max-width:420px;min-width:420px}body .searchCol8{max-width:820px;min-width:820px;padding-right:0}body .searchResultsCols{max-width:1320px;min-width:1320px;padding:0 20px}}.SearchDropDown-searchResultsContainer{margin:0 auto;padding:0 20px}.SearchDropDown-dropDownContainer{-webkit-overflow-scrolling:touch;display:flex;flex-direction:column;height:100vh;left:0;overflow-x:hidden;overflow-y:auto;position:fixed;top:0;width:100%;z-index:1000}.SearchDropDown-dropDownContainer.SearchDropDown-enter{transform:translateX(100%)}.SearchDropDown-dropDownContainer.SearchDropDown-enter-active{transform:translateX(0);transition:transform .4s ease-in}.SearchDropDown-dropDownContainer.SearchDropDown-exit{transform:translateX(0)}.SearchDropDown-dropDownContainer.SearchDropDown-exit-active{transform:translateX(100%);transition:transform .3s ease-out}@media (min-width:760px){.SearchDropDown-dropDownContainer{background-color:initial}.SearchDropDown-dropDownContainer.SearchDropDown-enter,.SearchDropDown-dropDownContainer.SearchDropDown-enter-active,.SearchDropDown-dropDownContainer.SearchDropDown-exit,.SearchDropDown-dropDownContainer.SearchDropDown-exit-active{transform:none;transition:none}}@media (min-width:1020px){.SearchDropDown-dropDownContainer{box-shadow:0 2px 4px 0 #97979780;height:auto;left:auto;max-height:calc(100vh - 130px);padding:0;position:absolute;right:0;top:16px!important;width:440px}}@media (min-width:1020px) and (min-width:760px){.SearchDropDown-dropDownContainer{padding-left:0;padding-right:0}}@media (min-width:1020px) and (min-width:1020px){.SearchDropDown-dropDownContainer{padding-left:0;padding-right:0}}@media (min-width:1020px) and (min-width:1340px){.SearchDropDown-dropDownContainer{padding-left:0;padding-right:0}}@media (min-width:1020px){.SearchDropDown-dropDownContainer .Search-container{padding:0}}@media (min-width:1180px){.SearchDropDown-dropDownContainer{padding:0}}@media (min-width:1340px){.SearchDropDown-dropDownContainer{padding:0}}.SearchDropDown-brandingContainer,.SearchDropDown-brandingContainerAllAccess,.SearchDropDown-brandingContainerIC,.SearchDropDown-brandingContainerLoggedIn,.SearchDropDown-brandingContainerPro{position:relative;width:100%;z-index:5}.SearchDropDown-brandingContainer{background-color:#001e5a}.SearchDropDown-brandingContainerLoggedIn{background-color:#00081a}.SearchDropDown-brandingContainerAllAccess{background-color:#002f6c}.SearchDropDown-brandingContainerPro{background-color:#27313c}.SearchDropDown-brandingContainerIC{background-color:#071d39}.SearchDropDown-branding{left:0;position:relative;top:0;width:100%;z-index:3}@media (min-width:760px){.SearchDropDown-branding{height:46px}.SearchDropDown-branding [class*=-button]{display:block;transition:none!important}.SearchDropDown-branding [class*=-button][class*=-makeit]{width:20px!important}.SearchDropDown-branding [class*=-button]:before{display:none}.SearchDropDown-branding [class*=-button] span{transform:translateY(-70px);visibility:hidden}}@media (min-width:1020px){.SearchDropDown-branding{display:none}}@media (min-width:1180px){.SearchDropDown-branding{max-width:1077px}}@media (min-width:1340px){.SearchDropDown-branding{max-width:1290px}}@media (min-width:760px){.SearchDropDown-enter .SearchDropDown-branding [class*=-button]{width:140px}}@media (min-width:760px) and (min-width:760px){.SearchDropDown-enter .SearchDropDown-branding [class*=-button]{transform:translateY(-10px)}}@media (min-width:760px){.SearchDropDown-enter-active .SearchDropDown-branding [class*=-button]{transition:width .2s ease-in;width:75px}}@media (min-width:760px) and (min-width:760px){.SearchDropDown-enter-active .SearchDropDown-branding [class*=-button]{transform:translateY(0);transition:transform .2s ease-in .1s,width .2s ease-in}}@media (min-width:760px){.SearchDropDown-exit .SearchDropDown-branding [class*=-button]{width:75px}}@media (min-width:760px) and (min-width:760px){.SearchDropDown-exit .SearchDropDown-branding [class*=-button]{opacity:1;transform:translateY(0)}}@media (min-width:760px){.SearchDropDown-exit-active .SearchDropDown-branding [class*=-button]{transition:width .1s ease-in .2s;width:140px}}@media (min-width:760px) and (min-width:760px){.SearchDropDown-exit-active .SearchDropDown-branding [class*=-button]{opacity:0;transform:translateY(-10px);transition:transform .2s ease-out,opacity .2s ease-out}}.SearchDropDown-brandingLogo{display:block;left:20px;position:absolute;top:12px;width:127px}@media (min-width:760px){.SearchDropDown-brandingLogo{transform:translateY(11px)}.SearchDropDown-enter .SearchDropDown-brandingLogo{transform:translateY(0)}.SearchDropDown-enter-active .SearchDropDown-brandingLogo{transform:translateY(11px);transition:transform .2s ease-in .1s}.SearchDropDown-exit .SearchDropDown-brandingLogo{transform:translateY(11px)}.SearchDropDown-exit-active .SearchDropDown-brandingLogo{transform:translateY(0);transition:transform .2s ease-out}}@media (min-width:1020px){.SearchDropDown-brandingLogo{left:0;transform:translateY(25px)}.SearchDropDown-enter .SearchDropDown-brandingLogo{transform:translateY(0)}.SearchDropDown-enter-active .SearchDropDown-brandingLogo{transform:translateY(25px);transition:transform .2s ease-in .1s}.SearchDropDown-exit .SearchDropDown-brandingLogo{transform:translateY(25px)}.SearchDropDown-exit-active .SearchDropDown-brandingLogo{transform:translateY(0);transition:transform .2s ease-out}}.SearchDropDown-content{background-color:#fff;box-shadow:0 5px 20px 5px #0000001a;min-height:100%;position:relative}@media (min-width:760px){.SearchDropDown-content{transform-origin:top}.SearchDropDown-enter .SearchDropDown-content{transform:scaleY(0)}.SearchDropDown-enter-active .SearchDropDown-content{transform:scaleY(1);transition:transform .3s ease-in}.SearchDropDown-exit .SearchDropDown-content{transform:scaleY(1)}.SearchDropDown-exit-active .SearchDropDown-content{transform:scaleY(0);transition:transform .2s ease-out .1s}}.ProductBadge-badgeWrapper{display:flex}.ProductBadge-badgeWrapper img{flex:1;height:28px;width:auto}.ProductBadge-badgeText{margin-right:3px}@media (max-width:1019px){.ProductBadge-badgeText{display:none}}.ProfileIcon-profileIconContainer{display:flex;margin-left:-5px}.ProfileIcon-profileIconContainer img{flex:1;height:28px;width:auto}.SignInMenu-accountMenu .SignInMenu-dropdownUpArrow,.SignInMenu-accountMenuAllAccess .SignInMenu-dropdownUpArrow,.SignInMenu-accountMenuIC .SignInMenu-dropdownUpArrow,.SignInMenu-accountMenuPro .SignInMenu-dropdownUpArrow,.SignInMenu-dropdownUpArrow,.SignInMenu-upArrow{mask-image:url(https://static-redesign.cnbcfm.com/dist/24f214b19a613fd9a0e2.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/24f214b19a613fd9a0e2.svg)}.SignInMenu-accountMenu .SignInMenu-dropdownArrow,.SignInMenu-accountMenuAllAccess .SignInMenu-dropdownArrow,.SignInMenu-accountMenuIC .SignInMenu-dropdownArrow,.SignInMenu-accountMenuPro .SignInMenu-dropdownArrow,.SignInMenu-downArrow,.SignInMenu-dropdownArrow{mask-image:url(https://static-redesign.cnbcfm.com/dist/95a89411c4cb62dc5920.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/95a89411c4cb62dc5920.svg)}.SignInMenu-signInContainer{align-items:center;display:inline;margin:18px auto 0;transition:transform .25s,height .25s}.SignInMenu-signInContainerSticky{display:none}.SignInMenu-accountMenu,.SignInMenu-accountMenuAllAccess,.SignInMenu-accountMenuIC,.SignInMenu-accountMenuPro,.SignInMenu-signInMenu{color:#fff;display:flex;font-size:12px;font-weight:700;letter-spacing:1px;line-height:12px;text-transform:uppercase}@media (min-width:1020px){.SignInMenu-accountMenu:hover,.SignInMenu-accountMenuAllAccess:hover,.SignInMenu-accountMenuIC:hover,.SignInMenu-accountMenuPro:hover,.SignInMenu-signInMenu:hover{color:#fcb700}.SignInMenu-accountMenu:hover .SignInMenu-dropdownUpArrow,.SignInMenu-accountMenuAllAccess:hover .SignInMenu-dropdownUpArrow,.SignInMenu-accountMenuIC:hover .SignInMenu-dropdownUpArrow,.SignInMenu-accountMenuPro:hover .SignInMenu-dropdownUpArrow,.SignInMenu-signInMenu:hover .SignInMenu-dropdownUpArrow{background:#fcb700;mask-image:url(https://static-redesign.cnbcfm.com/dist/24f214b19a613fd9a0e2.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/24f214b19a613fd9a0e2.svg)}.SignInMenu-accountMenu:hover .SignInMenu-dropdownArrow,.SignInMenu-accountMenuAllAccess:hover .SignInMenu-dropdownArrow,.SignInMenu-accountMenuIC:hover .SignInMenu-dropdownArrow,.SignInMenu-accountMenuPro:hover .SignInMenu-dropdownArrow,.SignInMenu-signInMenu:hover .SignInMenu-dropdownArrow{background:#fcb700;mask-image:url(https://static-redesign.cnbcfm.com/dist/95a89411c4cb62dc5920.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/95a89411c4cb62dc5920.svg)}}.SignInMenu-accountMenu,.SignInMenu-accountMenuAllAccess,.SignInMenu-accountMenuIC,.SignInMenu-accountMenuPro{font-size:12px;line-height:14px;margin:0}@media (min-width:1020px){.SignInMenu-accountMenuAllAccess:hover{color:#cfd8e2}.SignInMenu-accountMenuAllAccess:hover .SignInMenu-dropdownArrow,.SignInMenu-accountMenuAllAccess:hover .SignInMenu-dropdownUpArrow{background:#fff}.SignInMenu-accountMenuPro:hover{color:#00a857}.SignInMenu-accountMenuPro:hover .SignInMenu-dropdownArrow,.SignInMenu-accountMenuPro:hover .SignInMenu-dropdownUpArrow{background:#00a857}.SignInMenu-accountMenuIC:hover{color:#0496ff}.SignInMenu-accountMenuIC:hover .SignInMenu-dropdownArrow,.SignInMenu-accountMenuIC:hover .SignInMenu-dropdownUpArrow{background:#0496ff}}.SignInMenu-dropdownUpArrow{margin-top:3px}.SignInMenu-dropdownArrow,.SignInMenu-dropdownUpArrow{background:#fff;height:12px;margin-left:7px;width:12px}.SignInMenu-navLinks{box-shadow:0 1px 3px 1px #00000014;margin-top:10px;position:absolute;right:0;top:15px;width:187px;z-index:999}.SignInMenu-primaryLink ul li{align-self:center;background:#fff;border-bottom:2px solid #f3f5f7;height:37px;position:relative}.SignInMenu-primaryLink ul li:last-child{border-bottom:none}.SignInMenu-primaryLink ul li a{color:#005594;font-size:12px;font-weight:500;letter-spacing:1.32168px;line-height:18.5px;padding:10px 0 10px 20px;position:absolute;text-transform:uppercase;width:100%}.SignInMenu-primaryLink ul li:first-child a{color:#747474;cursor:default;display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:160px}.SignInMenu-primaryLink ul li:not(:first-child):hover{background:#f3f5f7}.SignInMenu-primaryLink ul li:not(:first-child):hover a{font-weight:700}.SignInMenu-underlineLabel{border-bottom:1px solid #071d39;padding-bottom:3px}.SignInMenu-myAccountWrapper{position:relative}.SignInMenu-profileIconContainer{position:relative;top:-7px;transition:filter .3s ease,color .3s ease}.SignInMenu-profileIconContainer:hover{filter:brightness(.8)}@media (max-width:759px){.SignInMenu-signInLinkWrapper{display:none;display:block;transform:translateY(-3px)}}.SubscribeMenu-subscribeContainer{margin-top:6px}.SubscribeMenu-subscribeBtn{align-items:center;background-color:#fff;border-radius:7px;border-radius:2px;color:#071d39;display:flex;font-size:12px;font-weight:600;justify-content:space-between;letter-spacing:1.32168px;padding:2px 8px;text-transform:uppercase;width:115px}.SubscribeMenu-subscribeBtn:hover{background:#cfd8e2}.SubscribeMenu-subscribeBtnExpanded{border-radius:7px 7px 0 0;border-radius:2px 2px 0 0}.SubscribeMenu-navLinks{display:flex;flex-direction:column}.SubscribeMenu-link{background-color:#fff;border-top:.5px solid #d9d9d9;font-size:11px;font-weight:600;letter-spacing:1.2px;padding:3px 5px;text-transform:uppercase}.SubscribeMenu-link:last-of-type{border-radius:0 0 7px 7px;border-radius:0 0 2px 2px;box-shadow:0 5px 5px 0 #0000004d;-webkit-box-shadow:0 5px 5px 0 #0000004d;-moz-box-shadow:0 5px 5px 0 #0000004d}.SubscribeMenu-icLink{color:#336aa0!important}.SubscribeMenu-icLink:hover{color:#1896ff!important}.SubscribeMenu-proLink{color:#008456!important}.SubscribeMenu-proLink:hover{color:#00a857!important}.SubscribeMenu-upArrow{margin-top:4px;mask-image:url(https://static-redesign.cnbcfm.com/dist/24f214b19a613fd9a0e2.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/24f214b19a613fd9a0e2.svg)}.SubscribeMenu-downArrow,.SubscribeMenu-upArrow{background:#071d39;display:block;height:12px;width:12px}.SubscribeMenu-downArrow{margin-bottom:2px;mask-image:url(https://static-redesign.cnbcfm.com/dist/95a89411c4cb62dc5920.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/95a89411c4cb62dc5920.svg)}.SignUpMenu-signUpContainer{align-items:center;display:block;margin:8px auto 0;transition:transform .25s,height .25s}@media (max-width:759px){.SignUpMenu-signUpContainer{display:none}}@media (min-width:760px){.SignUpMenu-signUpContainer{display:none}}@media (min-width:1020px){.SignUpMenu-signUpContainer{display:block}}.SignUpMenu-signUpContainerSticky{display:none}.SignUpMenu-signUpMenu{background-color:#fff;border-radius:2px;color:#002f6c;display:flex;font-size:11px;font-weight:700;letter-spacing:1px;line-height:8px;margin-top:6px;text-transform:uppercase}@media (min-width:1020px){.SignUpMenu-signUpMenu:hover{background-color:#cfd8e2;color:#002f6c}}.SignUpMenu-signUpMenu a{color:#002f6c;padding:6px}.SignUpMenu-signUpMenu a:hover{color:#002f6c}.CNBCGlobalNav-mobileNavMenu{display:block;transition:transform .5s ease-in-out}@media (min-width:760px){.CNBCGlobalNav-mobileNavMenu{display:none}}.CNBCGlobalNav-desktopNavMenu{display:none;transition:transform .5s ease-in-out}@media (min-width:760px){.CNBCGlobalNav-desktopNavMenu{display:block}}.CNBCGlobalNav-globalNavigation,.CNBCGlobalNav-globalNavigationAllAccess,.CNBCGlobalNav-globalNavigationIC,.CNBCGlobalNav-globalNavigationPro{position:relative}@media (min-width:760px){.CNBCGlobalNav-globalNavigation,.CNBCGlobalNav-globalNavigationAllAccess,.CNBCGlobalNav-globalNavigationIC,.CNBCGlobalNav-globalNavigationPro{background-color:#001e5a;height:85px;position:relative;top:0;transition:all .1s;width:100%;z-index:0}.CNBCGlobalNav-globalNavigation.CNBCGlobalNav-sticky,.CNBCGlobalNav-globalNavigationAllAccess.CNBCGlobalNav-sticky,.CNBCGlobalNav-globalNavigationIC.CNBCGlobalNav-sticky,.CNBCGlobalNav-globalNavigationPro.CNBCGlobalNav-sticky{height:45px}}@media (min-width:1020px){.CNBCGlobalNav-globalNavigation.CNBCGlobalNav-sticky,.CNBCGlobalNav-globalNavigationAllAccess.CNBCGlobalNav-sticky,.CNBCGlobalNav-globalNavigationIC.CNBCGlobalNav-sticky,.CNBCGlobalNav-globalNavigationPro.CNBCGlobalNav-sticky{height:50px}.CNBCGlobalNav-globalNavigation:after,.CNBCGlobalNav-globalNavigationAllAccess:after,.CNBCGlobalNav-globalNavigationIC:after,.CNBCGlobalNav-globalNavigationPro:after{background-color:#001e5a;content:"";height:70px;left:0;position:absolute;top:0;width:100%;z-index:-1}}@media (min-width:760px){.CNBCGlobalNav-globalNavigationLoggedIn{background-color:#00081a;transition:background-color .5s ease-in}}@media (min-width:1020px){.CNBCGlobalNav-globalNavigationLoggedIn:after{background-color:#00081a;transition:background-color .5s ease-in}}@media (max-width:759px){.CNBCGlobalNav-globalNavigationLoggedInSticky .CNBCGlobalNav-rightNavigationWrapper{display:none}}@media (min-width:760px){.CNBCGlobalNav-globalNavigationLoggedInSticky{height:45px}}@media (min-width:1020px){.CNBCGlobalNav-globalNavigationLoggedInSticky{height:50px}}.CNBCGlobalNav-globalNavigationLoggedInSticky.CNBCGlobalNav-globalNavigationArticle{background:#fff}@media (min-width:1020px){.CNBCGlobalNav-globalNavigationLoggedInSticky:after{display:none}}@media (min-width:760px){.CNBCGlobalNav-globalNavigationAllAccess{background-color:#002f6c;transition:background-color .5s ease-in}}@media (min-width:1020px){.CNBCGlobalNav-globalNavigationAllAccess:after{background-color:#002f6c;transition:background-color .5s ease-in}}@media (min-width:760px){.CNBCGlobalNav-globalNavigationPro{background-color:#27313c;transition:background-color .5s ease-in}}@media (min-width:1020px){.CNBCGlobalNav-globalNavigationPro:after{background-color:#27313c;transition:background-color .5s ease-in}}@media (min-width:760px){.CNBCGlobalNav-globalNavigationIC{background-color:#071d39;transition:background-color .5s ease-in}}@media (min-width:1020px){.CNBCGlobalNav-globalNavigationIC:after{background-color:#071d39;transition:background-color .5s ease-in}}@media (max-width:759px){.CNBCGlobalNav-globalNavigationSticky .CNBCGlobalNav-rightNavigationWrapper,.CNBCGlobalNav-globalNavigationStickyAllAccess .CNBCGlobalNav-rightNavigationWrapper,.CNBCGlobalNav-globalNavigationStickyIC .CNBCGlobalNav-rightNavigationWrapper,.CNBCGlobalNav-globalNavigationStickyPro .CNBCGlobalNav-rightNavigationWrapper{display:none}}@media (min-width:760px){.CNBCGlobalNav-globalNavigationSticky,.CNBCGlobalNav-globalNavigationStickyAllAccess,.CNBCGlobalNav-globalNavigationStickyIC,.CNBCGlobalNav-globalNavigationStickyPro{height:45px}}@media (min-width:1020px){.CNBCGlobalNav-globalNavigationSticky,.CNBCGlobalNav-globalNavigationStickyAllAccess,.CNBCGlobalNav-globalNavigationStickyIC,.CNBCGlobalNav-globalNavigationStickyPro{height:50px}}.CNBCGlobalNav-globalNavigationSticky.CNBCGlobalNav-globalNavigationArticle,.CNBCGlobalNav-globalNavigationStickyAllAccess.CNBCGlobalNav-globalNavigationArticle,.CNBCGlobalNav-globalNavigationStickyIC.CNBCGlobalNav-globalNavigationArticle,.CNBCGlobalNav-globalNavigationStickyPro.CNBCGlobalNav-globalNavigationArticle{background:#fff}@media (min-width:1020px){.CNBCGlobalNav-globalNavigationSticky:after,.CNBCGlobalNav-globalNavigationStickyAllAccess:after,.CNBCGlobalNav-globalNavigationStickyIC:after,.CNBCGlobalNav-globalNavigationStickyPro:after{display:none}}.CNBCGlobalNav-advertorialContainer,.CNBCGlobalNav-container{backface-visibility:hidden;position:fixed;top:0;width:100%;z-index:1999}.CNBCGlobalNav-gridContainer{background:inherit}@media (min-width:1020px){.CNBCGlobalNav-gridContainer{margin:0 auto;max-width:100%}}@media (min-width:1020px) and (min-width:760px){.CNBCGlobalNav-gridContainer{max-width:678px}}@media (min-width:1020px) and (min-width:1020px){.CNBCGlobalNav-gridContainer{max-width:960px}}@media (min-width:1020px) and (min-width:1340px){.CNBCGlobalNav-gridContainer{max-width:1290px}}.CNBCGlobalNav-wrapper{background:inherit}@media (min-width:1020px){.CNBCGlobalNav-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(225% - 30px);max-width:100%!important;min-width:calc(225% - 30px);position:relative}}@media (min-width:1020px) and (min-width:760px){.CNBCGlobalNav-wrapper{max-width:calc(75% - 30px);min-width:calc(75% - 30px)}}@media (min-width:1020px) and (min-width:1020px){.CNBCGlobalNav-wrapper{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media screen and (min-width:1020px) and (min-width:1020px) and (-ms-high-contrast:none){.CNBCGlobalNav-wrapper{max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:1340px){.CNBCGlobalNav-wrapper{max-width:calc(75% - 30px);min-width:calc(75% - 30px)}}@media (min-width:1340px){.CNBCGlobalNav-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:1340px) and (min-width:760px){.CNBCGlobalNav-wrapper{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1340px) and (min-width:1020px){.CNBCGlobalNav-wrapper{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:1340px) and (min-width:1020px) and (-ms-high-contrast:none){.CNBCGlobalNav-wrapper{max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:1340px){.CNBCGlobalNav-wrapper{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}.CNBCGlobalNav-progressBarContainer{display:none}@media (min-width:760px){.CNBCGlobalNav-progressBarContainer{display:block}}.CNBCGlobalNav-watchListContainer{color:#fff;display:inline;font-size:12px;font-weight:700;letter-spacing:1px;line-height:12px;margin-top:18px;text-transform:uppercase;transition:transform .25s,height .25s}@media (max-width:759px){.CNBCGlobalNav-watchListContainer{display:none}}.CNBCGlobalNav-watchListContainer:after{content:"|";display:none;font-size:14px;padding-left:10px;padding-right:5px}.CNBCGlobalNav-watchListContainerSticky{display:none}.CNBCGlobalNav-hoverAllAccess a:hover{color:#cfd8e2}.CNBCGlobalNav-hoverPro a:hover{color:#00a857}.CNBCGlobalNav-hoverIC a:hover{color:#0496ff}.CNBCGlobalNav-rightNavigationWrapper{background:inherit;display:flex;margin-right:-33px;max-height:40px;position:absolute;right:33px;top:1px}.CNBCGlobalNav-rightNavigationWrapper .CNBCGlobalNav-livestreamWrapper{background:inherit;margin-right:78px;margin-top:8px}@media (min-width:760px){.CNBCGlobalNav-rightNavigationWrapper .CNBCGlobalNav-livestreamWrapper{display:none}}.CNBCGlobalNav-rightNavigationWrapper .CNBCGlobalNav-searchWrapper{background:inherit;margin-top:-1px}@media (max-width:1019px){.CNBCGlobalNav-rightNavigationWrapper .CNBCGlobalNav-searchWrapper{margin-right:8px}}@media (max-width:759px){.CNBCGlobalNav-rightNavigationWrapper .CNBCGlobalNav-searchWrapper{margin-right:-164px}.CNBCGlobalNav-rightNavigationWrapper .CNBCGlobalNav-searchWrapperLoggedIn{margin-right:-132px;margin-top:2px}}@media (max-width:759px) and (max-width:759px){.CNBCGlobalNav-rightNavigationWrapper .CNBCGlobalNav-searchWrapperLoggedIn{margin-right:-166px;margin-top:3px}}@media (max-width:759px){.CNBCGlobalNav-rightNavigationWrapper .CNBCGlobalNav-searchWrapperLoggedInLivestream{margin-right:-154px}.CNBCGlobalNav-rightNavigationWrapper .CNBCGlobalNav-searchWrapperLoggedInBrk{margin-right:-164px}}.CNBCGlobalNav-rightNavigationWrapper .CNBCGlobalNav-watchlistWrapper{margin-left:-5px;margin-top:12.5px}@media (max-width:1019px){.CNBCGlobalNav-rightNavigationWrapper .CNBCGlobalNav-watchlistWrapper{margin-left:-12px;margin-right:8px}}.CNBCGlobalNav-rightNavigationWrapper .CNBCGlobalNav-notificationBellWrapper{margin-left:7px;margin-top:14px}@media (max-width:1019px){.CNBCGlobalNav-rightNavigationWrapper .CNBCGlobalNav-notificationBellWrapper{margin-left:-7px;margin-right:8px}}.CNBCGlobalNav-rightNavigationWrapper .CNBCGlobalNav-signInMenuWrapper{margin-left:10px;margin-top:17px}@media (max-width:1019px){.CNBCGlobalNav-rightNavigationWrapper .CNBCGlobalNav-signInMenuWrapper{margin-left:-1px;margin-right:8px}}.CNBCGlobalNav-rightNavigationWrapper .CNBCGlobalNav-signUpMenuWrapper:not(:empty){margin-left:16px;margin-top:5px}@media (max-width:1019px){.CNBCGlobalNav-rightNavigationWrapper .CNBCGlobalNav-signUpMenuWrapper:not(:empty){display:none}}.NotificationBell-notificationBellContainerSticky{display:none}.NotificationBell-notificationBellContainer{display:inline;margin-top:15px;z-index:1}@media (max-width:759px){.NotificationBell-notificationBellContainer{display:none}}.NotificationBell-notificationBellContainer:after{border-right:1px solid #fff;color:#fff;content:"";display:inline-block;font-size:14px;height:14px;margin:auto 5px auto 10px;position:relative;top:-5px}
.MarketsBanner-container{background-color:#f2f2f2;margin-bottom:15px;padding:15px 20px;position:relative}@media (min-width:760px){.MarketsBanner-container{margin-bottom:15px;padding:15px 40px;top:16px}}@media (min-width:1020px){.MarketsBanner-container{background-color:#fff;display:flex;flex-direction:row;flex-wrap:wrap;margin:0 auto 30px;max-width:960px;padding:15px 0 0;top:16px;width:100%}}@media (min-width:1340px){.MarketsBanner-container{max-width:1290px;padding:15px 0 0}}.MarketsBanner-proMarketsBanner{top:0}@media (min-width:1340px){.MarketsBanner-proMarketsBanner{padding-bottom:8px;padding-top:8px}}@media (max-width:759px){.MarketsBanner-berkshireEvent{margin-bottom:0}}.MarketsBanner-main{border-top:1px solid #9b9b9b80;display:block;min-height:53px}.MarketsBanner-main h2{margin-bottom:0;margin-top:5px}@media (min-width:1020px){.MarketsBanner-main{flex:100%;min-height:59px}}.MarketsBanner-marketData{-webkit-overflow-scrolling:touch;align-items:flex-start;display:flex;flex-direction:row;flex-wrap:nowrap;margin:0 -20px;overflow-x:auto;overflow-y:hidden;padding:10px 0;position:relative;scrollbar-width:none}@media (min-width:760px){.MarketsBanner-marketData{margin-left:-40px;margin-right:-40px;padding:10px 0 0}}@media (min-width:1020px){.MarketsBanner-marketData{margin-left:0;margin-right:0}}.MarketsBanner-marketData::-webkit-scrollbar{display:none}.MarketsBanner-marketData.MarketsBanner-expanded{height:500px;z-index:101}.MarketsBanner-marketData .MarketsBanner-deleteSymbolButton{color:#002f6c;font-size:11px;margin:0 10px 0 5px}.MarketsBanner-marketData .MarketsBanner-deleteSymbolButton:disabled{color:#747474}@media (min-width:1340px){.MarketsBanner-marketData .MarketsBanner-deleteSymbolButton{margin-left:-15px}}.MarketsBanner-teaserContainer{min-height:31px;min-width:1px}.MarketsBanner-teaser{display:block;height:auto;margin-left:-20px;margin-right:-20px;overflow:hidden;padding:0 20px;position:relative}.MarketsBanner-teaser a{color:#000;display:block;font-size:17px;font-weight:600;line-height:1.2}.MarketsBanner-teaser a:focus,.MarketsBanner-teaser a:hover{color:#000;text-decoration:underline}.MarketsBanner-container .MarketsBanner-teaser{padding-top:10px}@media (min-width:760px){.MarketsBanner-teaser{padding:15px 20px 0}.MarketsBanner-teaser a{height:auto}}.MarketsBanner-ad{height:0;margin-top:auto;overflow:hidden;width:0}@media (min-width:1020px){.MarketsBanner-ad{height:32px;margin-left:9px;width:89px}}@media (min-width:1340px){.MarketsBanner-ad{margin-left:25px}}.DeleteConfirmationModal-deleteConfirmation{display:flex;flex-direction:column;padding:40px}.DeleteConfirmationModal-buttons{display:flex;font-weight:500;justify-content:center;margin-top:15px}.DeleteConfirmationModal-buttons button{border-radius:4px;border-style:solid;border-width:1px;margin:0 8px;padding:10px 20px}.DeleteConfirmationModal-confirmationButton{background-color:#005594;border-color:#fff;color:#fff}.DeleteConfirmationModal-cancelButton{background-color:#fff;border-color:#005594;color:#005594}.AuthDropdown-container{align-content:center;align-items:center;background-color:#fff;box-shadow:0 1px 6px #00000040,0 -3px 0 #008456;display:flex;flex-direction:column;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;justify-content:flex-start;padding:60px 20px 10px;position:fixed;text-align:center;z-index:9999}@media (min-width:760px){.AuthDropdown-container{justify-content:center;padding:10px 20px}}@media (max-width:1019px){.AuthDropdown-container{bottom:0;left:0;right:0;top:0}}@media (min-width:1020px){.AuthDropdown-container{border:.5px solid #9e9e9e;border-top:0;box-shadow:0 1px 6px #00000040,0 -3px 0 #008456;display:block;left:0;position:absolute;width:auto;z-index:999}.AuthDropdown-container.AuthDropdown-mini{left:0;right:auto}}.AuthDropdown-container .AuthDropdown-logoContainer{display:block;margin:15px auto;text-align:center}.AuthDropdown-container .AuthDropdown-logoContainerNew{display:flex;justify-content:center}.AuthDropdown-container .AuthDropdown-logoContainerNew img{height:48px}.AuthDropdown-container .AuthDropdown-simpleText{display:block;font-size:14px;font-weight:500;line-height:14px;margin:15px auto;text-align:center;width:231px}.AuthDropdown-container .AuthDropdown-signupButton{align-items:center;appearance:none;background-color:#008456;border:1px solid #008456;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-size:12px;font-weight:600;font-weight:700;height:40px;justify-content:center;letter-spacing:1px;letter-spacing:.1em;line-height:12px;margin:15px auto;padding:8px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:260px}.AuthDropdown-container .AuthDropdown-signupButton>span{display:block;line-height:12px}.AuthDropdown-container .AuthDropdown-signupButton [class*=" icon-"],.AuthDropdown-container .AuthDropdown-signupButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthDropdown-container .AuthDropdown-signupButton [class*=" icon-"]:before,.AuthDropdown-container .AuthDropdown-signupButton [class^=icon-]:before{line-height:12px}.AuthDropdown-container .AuthDropdown-signupButton:focus,.AuthDropdown-container .AuthDropdown-signupButton:hover{background-color:#00a857;border-color:#00a857;color:#fff}.AuthDropdown-container .AuthDropdown-signupButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}@media (hover:hover){.AuthDropdown-container .AuthDropdown-signupButton[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}}@media (min-width:760px){.AuthDropdown-container .AuthDropdown-signupButton{padding:0 30px;width:auto}}.AuthDropdown-container .AuthDropdown-closeButton{color:#a9a9a9;cursor:pointer;position:absolute;right:12px;top:12px}@media (min-width:1020px){.AuthDropdown-container .AuthDropdown-closeButton{display:none}}.AuthDropdown-container .AuthDropdown-newtocnbc{color:#071d39;font-size:10px;font-weight:600;line-height:12px;margin:15px auto;text-align:center}.AuthDropdown-container .AuthDropdown-signinButton{color:#008456;cursor:pointer;font-size:10px;font-weight:600;line-height:12px}.AuthDropdown-container .AuthDropdown-signinButton:hover{color:#00a857}.AuthDropdown-container .AuthDropdown-learnMoreButton{color:#008456;cursor:pointer;display:inline-block;font-size:12px;font-weight:700;letter-spacing:.1em;line-height:12px;margin:15px 0;width:auto}.AuthDropdown-container .AuthDropdown-learnMoreButton:hover{color:#00a857}.CustomBannerAdder-container{margin-right:10px;position:relative}@media only screen and (min-device-width:1200px){.CustomBannerAdder-container:hover .CustomBannerAdder-addTabtooltip{display:block}}.CustomBannerAdder-addButton{align-items:flex-end;display:flex;margin-top:6px;position:relative;z-index:112}@media (min-width:760px){.CustomBannerAdder-addButton{margin-top:4px}}.CustomBannerAdder-addTabtooltip{background:#fff;border:.2px solid #9e9e9e;box-shadow:0 2px 4px 0 #00000040;color:#424242;display:none;font-size:14px;font-weight:700;left:2px;letter-spacing:0;line-height:18px;padding:5px;position:absolute;text-align:center;top:25px;width:230px;z-index:111}.CustomBannerAdder-addTabtooltip:before{border:7px solid;border-color:#0000 #0000 #9e9e9e;content:"";left:0;margin-top:-14px;position:absolute;top:0}.CustomBannerAdder-addTabtooltip:after{border:7px solid;border-color:#0000 #0000 #fff;content:"";left:0;margin-top:-13px;position:absolute;top:0}.CustomBannerAdder-plusButton{height:17px;margin-right:4px;width:20px}.CustomBannerAdder-plusButton:after{background-color:#747474;bottom:auto;content:"";height:14px;position:absolute;right:0;top:1px;width:1px}@media (min-width:760px){.CustomBannerAdder-plusButton:after{top:2px}}.CustomBannerAdder-plusButton svg{fill:#2077b6;color:#2077b6}.CustomBannerAdder-plusButtonDisabled,.CustomBannerAdder-plusButtonDisabled path{fill:#747474;color:#747474}.CustomBannerAdder-dropdownContainer{position:relative;top:9px}.CustomBannerAdder-addTabContainer{background-color:#fff;position:absolute;width:100%;z-index:111}.MarketsBannerMenu-marketBannerMenuWrapper{display:flex;height:25px;width:100%}.MarketsBannerMenu-errorMessage{color:#ce2b2b;display:block;font-size:14px;font-weight:600;height:36px;line-height:18px;margin-bottom:5px;min-width:1px}@media (min-width:760px){.MarketsBannerMenu-errorMessage{height:18px}}.MarketsBannerMenu-container{align-items:flex-end;display:flex;flex-direction:row;justify-content:space-between;margin-bottom:3px;overflow-x:auto;overflow-y:hidden;scrollbar-width:none}.MarketsBannerMenu-container::-webkit-scrollbar{display:none}@media (max-width:759px){.MarketsBannerMenu-container{margin-bottom:-2px;padding-bottom:5px}}@media (min-width:760px){.MarketsBannerMenu-container{justify-content:flex-start}}.MarketsBannerMenu-marketOption{color:#747474;font-size:14px;font-weight:600;letter-spacing:.23px;line-height:1.2;margin:0 10px;position:relative;transition:color .15s linear;white-space:nowrap}.MarketsBannerMenu-marketOption:focus,.MarketsBannerMenu-marketOption:hover{color:#2e2e2e}.MarketsBannerMenu-marketOption:first-child{margin-left:0}.MarketsBannerMenu-marketOption:last-child{margin-right:0}@media (min-width:760px){.MarketsBannerMenu-marketOption{font-size:14px;letter-spacing:.5px;padding-bottom:3px}}@media (min-width:1340px){.MarketsBannerMenu-marketOption{margin:0 7px}.MarketsBannerMenu-marketOption:first-child{margin-left:0}.MarketsBannerMenu-marketOption:last-child{margin-right:16px}}.MarketsBannerMenu-cutomTabLabel{display:inline-block;max-width:120px;overflow:hidden;text-overflow:ellipsis;vertical-align:bottom;white-space:nowrap}.MarketsBannerMenu-activeMarket{color:#005594;font-weight:700}.MarketsBannerMenu-activeMarket:after{background-color:#005594;bottom:-5px;content:"";display:block;height:3px;left:0;position:absolute;width:100%}.MarketsBannerMenu-activeMarket:focus,.MarketsBannerMenu-activeMarket:hover{color:#005594}@media (min-width:760px){.MarketsBannerMenu-activeMarket:after{bottom:auto;height:2px}}.MarketsBannerMenu-editButton{height:12px;margin-left:6px;width:12px}.MarketsBannerMenu-editButton img{display:inline-block}.MarketsBannerMenu-trashCan{align-self:start;height:16px;width:15px}.MarketsBannerMenu-trashCan img{display:inline-block}.MarketsBannerMenu-trashCan:disabled{cursor:wait}.MarketsBannerMenu-doneButton{align-self:start;height:16px;width:30px}.MarketsBannerMenu-doneButton img{display:inline-block}.MarketsBannerMenu-doneButton:disabled{cursor:wait}.MarketsBannerMenu-inputSizer{display:inline-grid;position:relative;vertical-align:top;width:max-content}.MarketsBannerMenu-inputSizer input{caret-color:#000;letter-spacing:inherit;max-height:19px;padding:0}.MarketsBannerMenu-inputSizer input:disabled{cursor:wait}.MarketsBannerMenu-inputSizer input,.MarketsBannerMenu-inputSizer textarea,.MarketsBannerMenu-inputSizer:after{appearance:none;background:none;border:none;color:#747474;font:inherit;grid-area:1/2;margin:0;min-width:50px;resize:none;width:auto}.MarketsBannerMenu-inputSizer:after{color:#005594;content:attr(data-value);visibility:hidden;white-space:pre-wrap}.MarketsBannerMenu-inputSizer:focus-within input:focus,.MarketsBannerMenu-inputSizer:focus-within textarea:focus{outline:none}.MarketsBannerMenu-flexContainer{align-items:flex-start;display:flex;gap:5px;width:max-content}.MarketsBannerMenu-iconDoneDisabled,.MarketsBannerMenu-iconDoneDisabled rect,.MarketsBannerMenu-iconTabEditDisabled,.MarketsBannerMenu-iconTabEditDisabled path,.MarketsBannerMenu-iconTrashDisabled,.MarketsBannerMenu-iconTrashDisabled path{fill:#747474;color:#747474}.MarketCard-container{background-color:#9b9b9b;color:#fff;display:block;height:66px;margin:0 5px;max-width:152px;min-width:152px;position:relative}.MarketCard-container:focus,.MarketCard-container:hover{color:#ffffffe6}.MarketCard-container:first-child{margin-left:20px}.MarketCard-container:nth-child(5):after{content:"";display:block;height:1px;position:absolute;right:-20px;width:20px}.MarketCard-container:last-child{box-sizing:initial;margin-right:0;padding-right:20px}@media (min-width:760px){.MarketCard-container{height:62px;margin-left:7px}.MarketCard-container:first-child{margin-left:40px}.MarketCard-container:nth-child(5):after{content:"";display:block;height:1px;position:absolute;right:-40px;width:40px}.MarketCard-container:last-child{padding-right:40px}}@media (min-width:1020px){.MarketCard-container{height:66px;margin:0 7px;max-width:160px;min-width:160px}.MarketCard-container:first-child{margin-left:0}.MarketCard-container:last-child{margin-right:0;padding-right:0}}@media (min-width:1340px){.MarketCard-container{margin:0 25px;max-width:190px;min-width:190px}.MarketCard-container:first-child{margin-left:0}.MarketCard-container:last-child{margin-right:0}}.MarketCard-symbol{font-size:13px;font-weight:700;line-height:1.2}.MarketCard-stockPosition{font-size:13px;font-weight:600;line-height:1.2}.MarketCard-row{align-items:center;display:flex;flex-direction:row;height:33.33%;justify-content:space-between;padding:0 10px;width:100%}.MarketCard-row:first-child{transform:translateY(2px)}.MarketCard-row:last-child{transform:translateY(-2px)}.MarketCard-down{background-color:#ce2b2b}.MarketCard-up{background-color:#008456}.MarketCard-triangle-down,.MarketCard-triangle-up{border-left:5px solid #0000;border-right:5px solid #0000;height:0;width:0}.MarketCard-triangle-up{border-bottom:10px solid #fff}.MarketCard-container:focus .MarketCard-triangle-up,.MarketCard-container:hover .MarketCard-triangle-up{border-bottom:10px solid #ffffffe6}.MarketCard-triangle-down{border-top:10px solid #fff}.MarketCard-container:focus .MarketCard-triangle-down,.MarketCard-container:hover .MarketCard-triangle-down{border-top:10px solid #ffffffe6}.MarketCard-changeData{align-items:center;display:flex;flex-direction:row;margin-left:auto}.MarketCard-changesPct,.MarketCard-changesPts{font-size:13px;line-height:1.16;position:relative}.MarketCard-changesPct{font-weight:500;margin-left:5px}@media (min-width:1020px){.MarketCard-changesPct{margin-left:7px}}.MarketCard-changesPts{font-weight:600}.MarketCard-lastTime{font-size:9px;font-weight:600;opacity:.7}@media (max-width:759px){.MarketCard-container{height:86px;max-width:142px;min-width:142px}.MarketCard-row:first-child{align-items:flex-start;flex-direction:column;height:44%;justify-content:space-evenly;transform:translateY(2px)}.MarketCard-row:nth-child(2){height:28%;transform:translateY(2px)}.MarketCard-row:nth-child(3){height:28%;transform:translateY(0)}.MarketCard-wrap .MarketCard-changeData{flex-direction:column}.MarketCard-wrap .MarketCard-row:nth-child(2){height:28%;transform:translateY(0)}.MarketCard-wrap .MarketCard-triangle-down,.MarketCard-wrap .MarketCard-triangle-up{transform:translateY(2px)}}.AddSymbol-wrapper{display:block;margin:0 5px;position:relative}.AddSymbol-wrapper:first-child{margin-left:20px}.AddSymbol-wrapper:nth-child(5):after{content:"";display:block;height:1px;position:absolute;right:-20px;width:20px}.AddSymbol-wrapper:last-child{box-sizing:initial;margin-right:0;padding-right:20px}@media (min-width:760px){.AddSymbol-wrapper{margin-left:7px}.AddSymbol-wrapper:first-child{margin-left:40px}.AddSymbol-wrapper:nth-child(5):after{content:"";display:block;height:1px;position:absolute;right:-40px;width:40px}.AddSymbol-wrapper:last-child{padding-right:40px}}@media (min-width:1020px){.AddSymbol-wrapper{margin:0 7px}.AddSymbol-wrapper:first-child{margin-left:0}.AddSymbol-wrapper:last-child{margin-right:0;padding-right:0}}@media (min-width:1340px){.AddSymbol-wrapper{margin:0 25px}.AddSymbol-wrapper:first-child{margin-left:0}.AddSymbol-wrapper:last-child{margin-right:0}}.AddSymbol-addSymbolButton{align-items:center;background:#fff;border:1px solid #002f6c;color:#002f6c;display:flex;font-size:17px;font-weight:500;gap:10px;height:66px;justify-content:center;letter-spacing:.5px;max-width:152px;min-width:152px;position:relative;text-decoration:underline;-webkit-text-decoration-color:#002f6c;text-decoration-color:#002f6c;text-underline-offset:4px}.AddSymbol-addSymbolButton:disabled{border-color:#747474;color:#747474;-webkit-text-decoration-color:#747474;text-decoration-color:#747474}.AddSymbol-addSymbolButton:focus,.AddSymbol-addSymbolButton:hover{color:#002f6c}.AddSymbol-addSymbolButton:focus:disabled,.AddSymbol-addSymbolButton:hover:disabled{border-color:#747474;color:#747474}@media (min-width:760px){.AddSymbol-addSymbolButton{height:62px}}@media (min-width:1020px){.AddSymbol-addSymbolButton{height:66px;max-width:160px;min-width:160px}}@media (min-width:1340px){.AddSymbol-addSymbolButton{max-width:190px;min-width:190px}}@media (max-width:759px){.AddSymbol-addSymbolButton{height:86px;max-width:142px;min-width:142px}}.AddSymbol-iconDisabled,.AddSymbol-iconDisabled path{fill:#747474;color:#747474}.AddSymbol-addingSymbol{border-bottom:none;padding-bottom:1px;z-index:1000}.AddSymbol-addingSymbol:after{background:#fff;border-left:1px solid #002f6c;border-right:1px solid #002f6c;bottom:0;content:"";height:5px;margin-bottom:-5px;margin-right:-1px;position:absolute;right:0;width:100%}.AddSymbol-ghostDropdownCloser{bottom:0;left:0;position:fixed;right:0;top:0;z-index:97}.AddSymbol-dropdownWrapper{position:absolute;top:35px;width:100%;z-index:999}@media (min-width:760px){.AddSymbol-dropdownWrapper{top:31px}}@media (min-width:1020px){.AddSymbol-dropdownWrapper{top:35px}}@media (max-width:759px){.AddSymbol-dropdownWrapper{top:55px}}
.QuickLinks-container{display:block;margin-bottom:20px;margin-top:15px;position:relative}@media (min-width:1020px){.QuickLinks-container{display:flex;margin:0 auto 20px;overflow:hidden;padding-left:0;width:960px}}@media (min-width:1340px){.QuickLinks-container{width:1290px}}.QuickLinks-scrollableContainer{-ms-overflow-style:none;-webkit-overflow-scrolling:touch;overflow-x:scroll;overflow-y:hidden;padding-left:20px;scrollbar-width:none;white-space:nowrap}.QuickLinks-scrollableContainer::-webkit-scrollbar{display:none}@media (min-width:760px){.QuickLinks-scrollableContainer{margin-bottom:-15px;padding-bottom:15px;padding-left:45px;white-space:nowrap}}@media (min-width:1020px){.QuickLinks-scrollableContainer{-webkit-overflow-scrolling:auto;padding-left:0}}.QuickLinks-leftGradient:after{background-image:linear-gradient(270deg,#fff,#fff0 106%);content:"";height:40px;left:0;pointer-events:none;position:absolute;transform:rotate(-180deg);width:40px;z-index:1}@media (max-width:1019px){.QuickLinks-leftGradient:after{display:none}}@supports (-ms-high-contrast:none){.QuickLinks-leftGradient:after{background:#0000}}@supports (-ms-accelerator:true){.QuickLinks-leftGradient:after{background:#0000}}.QuickLinks-rightGradient:before{background-image:linear-gradient(270deg,#fff,#fff0 106%);content:"";height:40px;pointer-events:none;position:absolute;right:0;width:40px;z-index:1}@media (max-width:1019px){.QuickLinks-rightGradient:before{display:none}}@supports (-ms-high-contrast:none){.QuickLinks-rightGradient:before{background:#0000}}@supports (-ms-accelerator:true){.QuickLinks-rightGradient:before{background:#0000}}.QuickLinks-desktopHeader{color:#414042;display:none;font-size:14px;font-weight:600;letter-spacing:.154px;line-height:20px;padding-right:10px;white-space:nowrap}@media (min-width:1020px){.QuickLinks-desktopHeader{display:inline}}.QuickLinks-deviceHeader{display:block;margin-bottom:5px;padding-left:20px}@media (min-width:760px){.QuickLinks-deviceHeader{padding-left:45px}}@media (min-width:1020px){.QuickLinks-deviceHeader{display:none}}.QuickLinks-quickLink{background:#edeff3;border-radius:4px;font-size:15px;font-weight:600;letter-spacing:.2375px;line-height:35px;margin-right:10px;padding:6.5px 20px;text-align:center;white-space:nowrap}.QuickLinks-quickLink:last-child{margin-right:20px}@media (min-width:760px){.QuickLinks-quickLink:last-child{margin-right:45px}}@media (min-width:1020px){.QuickLinks-quickLink:last-child{margin-right:0}}.QuickLinks-quickLink a{color:#005594}@media (min-width:1020px){.QuickLinks-mobileOnly{display:none}}
.FeaturedThumbnail-mediaContainer{display:none}@media (min-width:760px){.FeaturedThumbnail-mediaContainer{bottom:14px;display:block;position:relative}}.FeaturedThumbnail-featuredVideoContainer{height:90px;position:absolute;width:119.01px}.FeaturedThumbnail-playButton{position:relative}.FeaturedThumbnail-videoBackdrop{background:linear-gradient(180deg,#fff0 56%,#0009 74%,#0009);height:100%;width:100%}.FeaturedThumbnail-videoText{bottom:0;color:#fcb700;font-size:10px;font-weight:800;letter-spacing:2px;line-height:12.18px;margin:0 0 10px 10px;position:absolute;text-transform:uppercase}.FeaturedThumbnail-videoDuration{color:#fff;font-size:10px;font-weight:700;letter-spacing:1.44px;line-height:12px;margin-left:10px;text-align:left}@media (max-width:1020px){.FeaturedThumbnail-imageStyle{height:90px;width:119.01px}}@media (max-width:360px){.FeaturedThumbnail-imageStyle{height:90px;width:119.01px}}.FeaturedThumbnail-promoImage{display:block;height:90px;width:119.01px}.ProIconWithBorder-container{display:none}@media (min-width:1020px){.ProIconWithBorder-container{display:flex}}.ProIconWithBorder-pcpContainer{display:none}@media (min-width:1020px){.ProIconWithBorder-pcpContainer{display:block;position:relative;top:7px}}.ProIconWithBorder-containerWithTabs{display:block;position:relative;top:6px}.ProIconWithBorder-divider{border-bottom:1px dashed #747474;flex:1;margin:5px 18px 5px 0;max-width:94%}.ProIconWithBorder-proSvg{float:right;position:relative;top:-6px}.ProIconWithBorder-proSvgWithTabs{height:26px;width:74px}.ProHeadline-headlineCard{border-bottom:1px dashed #747474;padding-bottom:12px}.ProHeadline-eyebrow a{color:#002f6c;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:700;letter-spacing:1.5px;line-height:16px;text-transform:uppercase}.ProHeadline-eyebrow a:focus,.ProHeadline-eyebrow a:hover{color:#fcb700;text-decoration:underline}.ProHeadline-eyebrow{margin-top:16px}.ProHeadline-eyebrowWithTabs{margin-top:8px}.ProHeadline-eyebrowWithTabs a{font-weight:800}.ProHeadline-headline{margin-top:4px}.ProHeadline-headline a{color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;line-height:20px;margin:4px 0}.ProHeadline-headline a:focus,.ProHeadline-headline a:hover{color:#171717;text-decoration:underline}@media (max-width:759px){.ProHeadline-headline a{font-size:14px;line-height:18px}}.ProHeadline-headlineWithTabs a{font-size:16px;font-weight:700;line-height:20px}.ProHeadline-pcpUnderline{border-bottom:1px solid #d9d9d9}.ProHeadline-videoIndicatorImage{display:inline-block;height:14px;margin-left:5px;width:14px}.ProHeadlines-container{overflow:hidden;padding-top:0}@media (min-width:1020px){.ProHeadlines-container{padding-left:27px}.ProHeadlines-pcpProHeadlinesContainer{margin-top:-20px}.ProHeadlines-containerWithTabs{margin-top:unset}}.ProHeadlines-collapsedContainer{display:flex;gap:30px}.ProHeadlines-proArticlesBelowVideoContainer{margin-top:20px;width:calc(55% - 15px)}.ProHeadlines-featuredCard{border-bottom:1px dashed #747474;display:block;padding-bottom:12px}.ProHeadlines-featuredVideo{border-bottom:1px dashed #747474;display:flex;padding-bottom:12px}.ProHeadlines-featuredCardWithTabs{border-bottom:1px solid #d9d9d9}.ProHeadlines-featuredCardWithTabs .ProHeadlines-featuredHeadline a{font-size:24px;font-weight:700;line-height:28px}.ProHeadlines-featuredCardWithTabs .ProHeadlines-summary{display:block;font-size:16px;font-weight:400;line-height:21.5px}.ProHeadlines-featuredEyebrow a{color:#002f6c;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:700;letter-spacing:1.5px;line-height:16px;text-transform:uppercase}.ProHeadlines-featuredEyebrow a:focus,.ProHeadlines-featuredEyebrow a:hover{color:#fcb700;text-decoration:underline}.ProHeadlines-featuredEyebrowWithTabs a{font-weight:800}.ProHeadlines-featuredEyebrow{margin-top:18px}@media (min-width:760px){.ProHeadlines-featuredEyebrow{margin-top:32px}}@media (min-width:1020px){.ProHeadlines-featuredEyebrow{margin-top:16px}}.ProHeadlines-featuredHeadline{margin-top:4px}.ProHeadlines-featuredHeadline a{color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:18px;font-weight:600;letter-spacing:.03px;line-height:22px}.ProHeadlines-featuredHeadline a:focus,.ProHeadlines-featuredHeadline a:hover{color:#171717;text-decoration:underline}@media (min-width:760px){.ProHeadlines-featuredHeadline a{font-size:22px;line-height:26px}}@media (min-width:1020px){.ProHeadlines-featuredHeadline a{font-size:18px;line-height:22px}}@media (min-width:1340px){.ProHeadlines-featuredHeadline a{font-size:22px;line-height:26px}}.ProHeadlines-summary{color:#171717;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:18px;font-weight:400;letter-spacing:-.001em;line-height:24px;margin-top:4px;text-align:left}@media (max-width:1339px){.ProHeadlines-summary{font-size:16px;line-height:19.49px}}@media (max-width:1019px){.ProHeadlines-summary{display:none}}.ProHeadlines-featuredVideoImage{display:inline-block;height:14px;margin-left:5px;width:14px}@media (min-width:1020px){.ProHeadlines-featuredVideoImage{display:none}}.ProHeadlines-buttonContainer{position:relative}.ProHeadlines-collapseButton,.ProHeadlines-expandButton{color:#002f6c;display:flex;justify-content:center;margin-top:24px;width:100%;z-index:99}.ProHeadlines-collapseButton{background-image:url(https://static-redesign.cnbcfm.com/dist/510b37b77304b13eb511.svg);background-repeat:no-repeat;background-size:contain;height:30px;margin-left:auto;margin-right:auto;width:30px}@media (max-width:759px){.ProHeadlines-collapseButton{height:12px;margin-top:20px;width:20px}}.ProHeadlines-expandButton{border:1px solid #002f6c;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:700;letter-spacing:1.09px;line-height:12px;padding-bottom:14px;padding-top:14px;text-transform:uppercase}.ProHeadlines-dropdownArrow{background:#002f6c;height:12px;margin-left:8px;mask-image:url(https://static-redesign.cnbcfm.com/dist/95a89411c4cb62dc5920.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/95a89411c4cb62dc5920.svg);width:12px}.CNBCHomepageProWrapper-main:after{clear:both;content:"";display:table}@media (min-width:1340px){.CNBCHomepageProWrapper-main:after{display:none}}.CNBCHomepageProWrapper-loggedInContainer{margin:0 auto;max-width:1290px}@media (max-width:1339px){.CNBCHomepageProWrapper-loggedInContainerWithTabs{max-width:975px}}.CNBCHomepageProWrapper-loggedInContainerCollapsable{display:flex;flex-direction:column}.CNBCHomepageProWrapper-videoContainer{border-top:none}@media (min-width:1020px){.CNBCHomepageProWrapper-videoContainer{float:left;width:calc(45% - 15px)}}@media (min-width:1340px){.CNBCHomepageProWrapper-videoContainer{width:calc(50% - 15px)}}.CNBCHomepageProWrapper-pcpVideoContainer{box-shadow:5px 5px 20px 0 #00000040}.CNBCHomepageProWrapper-pcpVideoContainerWithTabs{box-shadow:none}@media (min-width:1020px){.CNBCHomepageProWrapper-pcpVideoContainerWithTabs{bottom:26px;position:relative;width:525px}}@media (min-width:1340px){.CNBCHomepageProWrapper-pcpVideoContainerWithTabs{width:630px}}@media (max-width:759px){.CNBCHomepageProWrapper-pcpVideoContainerWithTabs{padding-top:55px}}.CNBCHomepageProWrapper-pcpVideoContainerClosed{float:none}.CNBCHomepageProWrapper-content{display:flex;flex-direction:column;margin-top:20px;padding-bottom:105px;position:relative}@media (min-width:760px){.CNBCHomepageProWrapper-content{float:left;margin:0 0 0 30px;width:calc(50% - 15px)}}@media (min-width:1020px){.CNBCHomepageProWrapper-content{width:calc(44.44% - 15px)}}@media (min-width:1340px){.CNBCHomepageProWrapper-content{width:calc(50% - 15px)}}@media (min-width:360px){.CNBCHomepageProWrapper-content{padding-bottom:25px}}.CNBCHomepageProWrapper-proicon{display:block;margin-bottom:15px;width:42px}.CNBCHomepageProWrapper-proicon img{max-width:100%}@media (min-width:760px){.CNBCHomepageProWrapper-proicon{width:37px}}@media (min-width:1020px){.CNBCHomepageProWrapper-proicon{width:52px}}.CNBCHomepageProWrapper-title{color:#002f6c;font-size:28px;font-weight:700;line-height:1.07;margin:0 0 10px}@media (min-width:760px){.CNBCHomepageProWrapper-title{font-size:30px;line-height:1.06;margin-bottom:20px}.CNBCHomepageProWrapper-loggedInContainer .CNBCHomepageProWrapper-title{margin-bottom:15px}}@media (min-width:1020px){.CNBCHomepageProWrapper-title{font-size:40px;line-height:1.1;max-width:410px}.CNBCHomepageProWrapper-loggedInContainer .CNBCHomepageProWrapper-title{margin-bottom:20px}}@media (min-width:1340px){.CNBCHomepageProWrapper-title{font-size:48px;line-height:1.02}}.CNBCHomepageProWrapper-description{color:#cfd8e2;font-size:18px;font-weight:500;line-height:1.375;margin:0}@media (min-width:360px){.CNBCHomepageProWrapper-description{font-size:16px}}.CNBCHomepageProWrapper-description span{color:#fff;font-weight:600;text-transform:uppercase}@media (min-width:1020px){.CNBCHomepageProWrapper-description{max-width:340px}}@media (min-width:1340px){.CNBCHomepageProWrapper-description{max-width:520px}}.CNBCHomepageProWrapper-description a{color:#002f6c}.CNBCHomepageProWrapper-description a:hover{color:#fcb700}.CNBCHomepageProWrapper-iframeContainer{border:none;height:470px;width:100%}.CNBCHomepageProWrapper-proliveCollapsableContainer{align-items:center;background:linear-gradient(181.49deg,#171717 1.27%,#17171700 427.68%);border-top-left-radius:4px;border-top-right-radius:4px;box-shadow:5px 5px 20px 0 #00000040;display:flex}@media (min-width:1020px){.CNBCHomepageProWrapper-proliveCollapsableContainer{float:left;height:52px;width:calc(45% - 15px)}}@media (min-width:1340px){.CNBCHomepageProWrapper-proliveCollapsableContainer{width:calc(50% - 15px)}}.CNBCHomepageProWrapper-proliveCollapsedContainer{border-radius:4px}.CNBCHomepageProWrapper-liveIndicatorContainer{color:#fff;display:flex;font-size:14px;font-weight:700;left:20px;line-height:16px;position:relative}.CNBCHomepageProWrapper-liveIndicator{background:#e80101;border-radius:50%;content:"";height:8px;margin-right:6px;opacity:1;position:relative;top:4px;transition:opacity .15s cubic-bezier(0,.25,.25,1);width:8px}.CNBCHomepageProWrapper-proLivePlayerCloseOrExpand{cursor:pointer;margin-left:auto;position:relative;right:20px;transition:all .1s linear}.CNBCHomepageProWrapper-dismissButton{height:16px;pointer-events:none;width:16px}.CNBCHomepageProWrapper-proLivePlayerClosed{transform:rotate(45deg)}.LegacyPlayerContainer-legacyPlayerContainer{background-color:#f7f7f7;margin-bottom:30px;padding:20px;width:100vw}@media (min-width:1340px){.LegacyPlayerContainer-legacyPlayerContainer{max-width:none}}@media (min-width:760px){.LegacyPlayerContainer-legacyPlayerContainer{padding:40px}}@media (min-width:1020px){.LegacyPlayerContainer-legacyPlayerContainer{margin-bottom:40px;padding-bottom:40px;padding-top:30px}}.LegacyPlayerContainer-legacyPlayerContainerWithTabs{padding:40px}@media (max-width:759px){.LegacyPlayerContainer-legacyPlayerContainerWithTabs{padding:40px 20px}}
.NewsHeroImage-videoFooter{background:linear-gradient(180deg,#1e579900 0,#000);bottom:0;filter:progid:dximagetransform.microsoft.gradient(startColorstr="#001e5799",endColorstr="#000000",GradientType=0);height:40px;padding-left:10px;padding-top:15px;position:absolute;width:100%}.NewsHeroImage-videoLabel{color:#fcb700;font-size:10px;font-weight:800;letter-spacing:1.67px;line-height:12px}@media (min-width:760px){.NewsHeroImage-videoLabel{font-size:12px;letter-spacing:2px;line-height:15px}}.NewsHeroImage-videoTime{color:#fffc;font-weight:600;letter-spacing:1.2px;padding-left:10px}@media (min-width:760px){.NewsHeroImage-videoTime{letter-spacing:1.44px}}.PackageItem-link:hover{color:#fff;text-decoration:underline}.PackageItem-container{margin-bottom:8px}.PackageItem-container a:hover{color:#fff;text-decoration:underline}.PackageItem-videoIcon{display:inline;max-width:20px;transform:translateY(4px)}.PackageItems-link:hover{color:#fff;text-decoration:underline}.PackageItems-container{margin-bottom:8px}.PackageItems-container a:hover{color:#fff;text-decoration:underline}.PackageItems-container li{border-top:1px solid #747474;font-size:14px;font-style:normal;font-weight:600;line-height:16px;padding:12px 0}@media (min-width:760px){.PackageItems-container li{font-size:16px;line-height:18px}}@media (min-width:1020px){.PackageItems-container li{font-size:14px;line-height:16px}}@media (min-width:1340px){.PackageItems-container li{font-size:16px}}.PackageItems-videoIcon{max-width:20px}.FeaturedCard-container{background-color:#071d39;cursor:pointer;height:auto;margin:0 -2px 32px 0;position:relative;width:auto}@media (min-width:360px){.FeaturedCard-container{height:440px;left:-1px;min-width:375px}}@media (min-width:760px){.FeaturedCard-container{height:auto;left:0;min-height:440px}}@media (min-width:1020px){.FeaturedCard-container{height:405px;min-height:unset;min-width:410px}}@media (min-width:1340px){.FeaturedCard-container{height:515px;min-width:630px}}.FeaturedCard-container:hover .FeaturedCard-title a{color:#fff;text-decoration:underline}.FeaturedCard-container img{height:auto;width:100%}.FeaturedCard-container .FeaturedCard-content{background:#071d39;bottom:0;padding:0 32px;position:absolute;width:100%;z-index:2}.FeaturedCard-container .FeaturedCard-content .FeaturedCard-contentText{position:relative;top:-12px}.FeaturedCard-container .FeaturedCard-content h2{font-size:24px;line-height:27px;margin-bottom:0}.FeaturedCard-container .FeaturedCard-content .FeaturedCard-packagedCardTitle a,.FeaturedCard-container .FeaturedCard-content .FeaturedCard-title a{color:#fff}.FeaturedCard-container .FeaturedCard-content .FeaturedCard-packagedCardTitle a:hover{text-decoration:underline}.FeaturedCard-container .FeaturedCard-content p{color:#fff;font-size:14px;line-height:16px;margin-top:8px}@media (min-width:360px){.FeaturedCard-container .FeaturedCard-content{padding:0 24px}.FeaturedCard-container .FeaturedCard-content h2{font-size:24px;line-height:27px;margin-bottom:0}.FeaturedCard-container .FeaturedCard-content .FeaturedCard-title{line-height:27px}.FeaturedCard-container .FeaturedCard-content .FeaturedCard-title a{font-size:24px;line-height:27px}}@media (min-width:760px){.FeaturedCard-container .FeaturedCard-content{contentText-top:-18px;padding:0 40px}.FeaturedCard-container .FeaturedCard-content .FeaturedCard-title a,.FeaturedCard-container .FeaturedCard-content h2{font-size:34px;line-height:38px}.FeaturedCard-container .FeaturedCard-content .FeaturedCard-investingClubPill,.FeaturedCard-container .FeaturedCard-content .FeaturedCard-proPill,.FeaturedCard-container .FeaturedCard-content .FeaturedCard-watchLivePill{margin-top:-.2em;vertical-align:middle}}@media (min-width:1020px){.FeaturedCard-container .FeaturedCard-content{padding:0 24px}.FeaturedCard-container .FeaturedCard-content h2{font-size:20px;line-height:22px;margin-bottom:0}.FeaturedCard-container .FeaturedCard-content .FeaturedCard-title{line-height:22px}.FeaturedCard-container .FeaturedCard-content .FeaturedCard-title a{font-size:20px;line-height:22px}}@media (min-width:1340px){.FeaturedCard-container .FeaturedCard-content{padding:0 32px}.FeaturedCard-container .FeaturedCard-content .FeaturedCard-title a,.FeaturedCard-container .FeaturedCard-content h2{font-size:32px;line-height:36px}.FeaturedCard-container .FeaturedCard-content .FeaturedCard-investingClubPill,.FeaturedCard-container .FeaturedCard-content .FeaturedCard-proPill,.FeaturedCard-container .FeaturedCard-content .FeaturedCard-watchLivePill{margin-top:-.2em;vertical-align:middle}}.FeaturedCard-container .FeaturedCard-content:before{background:linear-gradient(#0000,#071d39);content:"";height:65px;left:0;position:absolute;top:-65px;width:100%}@media (min-width:760px){.FeaturedCard-container .FeaturedCard-content:before{height:120px;top:-118px}}@media (min-width:1020px){.FeaturedCard-container .FeaturedCard-content:before{height:28px;top:-28px}}@media (min-width:1340px){.FeaturedCard-container .FeaturedCard-content:before{height:63px;top:-63px}}.FeaturedCard-imageContainer{position:relative}.FeaturedCard-videoIcon{display:inline;margin-bottom:4px;max-width:48px;padding-right:5px;position:relative;top:1px}@media (min-width:760px){.FeaturedCard-videoIcon{margin-bottom:10px}}@media (min-width:1020px){.FeaturedCard-videoIcon{margin-bottom:4px}}@media (min-width:1340px){.FeaturedCard-videoIcon{margin-bottom:8px}}@media (min-width:360px){.FeaturedCard-featuredCardBerkshirePlaceholder{height:270px;left:-1px;min-width:375px}}@media (min-width:760px){.FeaturedCard-featuredCardBerkshirePlaceholder{height:530px;left:0;min-height:440px}}@media (min-width:1020px){.FeaturedCard-featuredCardBerkshirePlaceholder{height:312px;min-height:unset;min-width:410px}}@media (min-width:1340px){.FeaturedCard-featuredCardBerkshirePlaceholder{height:354px;min-width:630px}}.FeaturedCard-standaloneContainerBerkshire{font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin:0 -2px 32px 0;position:relative;width:auto}@media (min-width:360px){.FeaturedCard-standaloneContainerBerkshire{height:auto;left:-1px;min-width:375px;padding:0 21px}}@media (min-width:760px){.FeaturedCard-standaloneContainerBerkshire{height:auto;left:0;min-height:440px;padding:0 21px}}@media (min-width:1020px){.FeaturedCard-standaloneContainerBerkshire{height:auto;min-height:unset;min-width:410px}}@media (min-width:1340px){.FeaturedCard-standaloneContainerBerkshire{height:auto;min-width:630px}}.FeaturedCard-standaloneContainerBerkshire .jw-slider-time{display:none}.FeaturedNewsHero-container{display:block;height:auto;margin:0 -20px}@media (min-width:360px){.FeaturedNewsHero-container{display:block;margin:0 -20px}}@media (min-width:760px){.FeaturedNewsHero-container{left:-1px;margin-left:-45px;margin-right:-45px;min-width:768px;position:relative}}@media (min-width:1020px){.FeaturedNewsHero-container{display:flex;margin:0;min-width:0}}.SecondaryCard-container img{height:auto;width:100%}@media (min-width:1020px){.SecondaryCard-container{width:190px}}@media (min-width:1340px){.SecondaryCard-container{width:300px}}.SecondaryCard-headline{padding:10px 0 30px}.SecondaryCard-headline a{color:#171717;font-size:17px;font-weight:600}.SecondaryCard-headline a:focus,.SecondaryCard-headline a:hover{color:#171717;text-decoration:underline}@media (min-width:360px){.SecondaryCard-headline a{font-size:18px;line-height:20px}}@media (min-width:1020px){.SecondaryCard-headline a{font-size:16px;line-height:18px}}@media (min-width:1340px){.SecondaryCard-headline{padding:10px 0 30px}.SecondaryCard-headline a{font-size:18px;line-height:20px}}.SecondaryCard-headlineHovered a{text-decoration:underline}.SecondaryCard-imageContainer{position:relative}@media (min-width:360px){.SecondaryCard-imageContainer{min-width:318px}}@media (min-width:760px){.SecondaryCard-imageContainer{min-width:324px}}@media (min-width:1020px){.SecondaryCard-imageContainer{min-width:0;width:190px;width:unset}}.SecondaryCardContainer-container{padding:0 21px}@media (min-width:760px){.SecondaryCardContainer-container{float:left;padding:0 41px;width:100%}.SecondaryCardContainer-container ul>li:first-child{margin-right:30px}.SecondaryCardContainer-container ul>li{float:left;width:47%}}@media (min-width:1020px){.SecondaryCardContainer-container{padding:0 0 0 30px}.SecondaryCardContainer-container ul>li,.SecondaryCardContainer-container ul>ol{width:100%}}@media (min-width:1340px){.SecondaryCardContainer-container{min-width:330px;padding:0 0 0 30px}}.SecondaryCardContainer-container li,.SecondaryCardContainer-container ol,.SecondaryCardContainer-container ul{list-style:none;margin:0;padding:0}
.EventSignUp-confirmationTitle,.EventSignUp-title{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-weight:700;line-height:28px;margin:0 0 10px}.EventSignUp-confirmationTitle:before,.EventSignUp-title:before{background-color:#002f6c;content:"";display:block;height:5px;margin:0 0 11px;width:100%}@media (min-width:760px) and (max-width:1019px){.EventSignUp-confirmationTitle,.EventSignUp-title{font-size:28px}}.EventSignUp-description{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:500;line-height:22px;margin:0 0 22px;text-align:left}@media (min-width:760px) and (max-width:1019px){.EventSignUp-description{font-size:18px;line-height:24px}}.EventSignUp-email{background-color:#fff;border:1px solid #424242;border-radius:3px;box-sizing:border-box;color:#424242;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;height:50px;letter-spacing:.15px;margin:0 0 15px;padding:14px;width:100%}.EventSignUp-email::placeholder{color:#424242;font-weight:500}.EventSignUp-success{color:#39bb7a}.EventSignUp-emailError,.EventSignUp-error,.EventSignUp-success{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:11px;font-weight:600;letter-spacing:.15px;line-height:16px;margin:0 0 15px}.EventSignUp-emailError,.EventSignUp-error{color:#ce2b2b}.EventSignUp-emailError{font-size:16px;font-weight:400}.EventSignUp-submitButton{align-items:center;appearance:none;background-color:#fff;border:1px solid #002f6c;color:#002f6c;display:flex;display:block;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:0 0 14px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:100%!important}.EventSignUp-submitButton>span{display:block;line-height:12px}.EventSignUp-submitButton [class*=" icon-"],.EventSignUp-submitButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.EventSignUp-submitButton [class*=" icon-"]:before,.EventSignUp-submitButton [class^=icon-]:before{line-height:12px}.EventSignUp-submitButton:focus,.EventSignUp-submitButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.EventSignUp-submitButton[class*=touchButton]:hover{background-color:#fff;border-color:#002f6c;color:#002f6c}@media (hover:hover){.EventSignUp-submitButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.EventSignUp-submitButton{padding:0 30px;width:auto}}.EventSignUp-confirmation{margin:0 0 40px}.EventSignUp-confirmationTitle{margin:0 0 17px;text-align:center}.EventSignUp-confirmationTitle:before{display:none}.EventSignUp-confirmationText,.EventSignUp-confirmationTextBold{font-size:14px;margin:0;text-align:center}.EventSignUp-confirmationTextBold{font-weight:500}.EventSignUp-confirmationTextBold a{color:#005594;text-decoration:underline}.EventSignUp-berkshireHathaway{background-color:#f8f8f8;padding:20px}.EventSignUp-berkshireHathaway .EventSignUp-description,.EventSignUp-berkshireHathaway .EventSignUp-email::placeholder{font-weight:400}.EventSignUp-berkshireHathaway .EventSignUp-submitButton{align-items:center;appearance:none;background-color:#005594;border:1px solid #005594;border-radius:3px;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px;justify-content:center;letter-spacing:1px;letter-spacing:0;padding:0 20px;text-align:center;text-transform:uppercase;text-transform:none;transition:all .15s linear;width:100%}.EventSignUp-berkshireHathaway .EventSignUp-submitButton>span{display:block;line-height:12px}.EventSignUp-berkshireHathaway .EventSignUp-submitButton [class*=" icon-"],.EventSignUp-berkshireHathaway .EventSignUp-submitButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.EventSignUp-berkshireHathaway .EventSignUp-submitButton [class*=" icon-"]:before,.EventSignUp-berkshireHathaway .EventSignUp-submitButton [class^=icon-]:before{line-height:12px}.EventSignUp-berkshireHathaway .EventSignUp-submitButton:focus,.EventSignUp-berkshireHathaway .EventSignUp-submitButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.EventSignUp-berkshireHathaway .EventSignUp-submitButton[class*=touchButton]:hover{background-color:#005594;border-color:#005594;color:#fff}@media (hover:hover){.EventSignUp-berkshireHathaway .EventSignUp-submitButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.EventSignUp-berkshireHathaway .EventSignUp-submitButton{padding:0 30px;width:auto}}@media (max-width:1019px){.EventSignUp-berkshireHathaway{margin-bottom:76px}}@media (max-width:759px){.EventSignUp-berkshireHathaway{margin-bottom:25px}}.DisclosureAgreement-disclosures{align-items:start;display:grid;grid-template-columns:auto 1fr;margin:0 0 40px}.DisclosureAgreement-checkbox{border:2px solid #9e9e9e;border-radius:2px;height:15px;margin:0 5px 0 0;width:16px}.DisclosureAgreement-checkboxActive{background:#2077b6;border:2px solid #2077b6}.DisclosureAgreement-checkboxInput{opacity:0;position:absolute;visibility:hidden}.DisclosureAgreement-link,.DisclosureAgreement-text{color:#747474;display:inline-block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:11px;letter-spacing:-.001em;line-height:14px}.DisclosureAgreement-link{color:#005594}.DisclosureAgreement-link:hover{text-decoration:underline}.DisclosureAgreement-uppercase{text-transform:uppercase}.DisclosureAgreement-berkshireHathaway .DisclosureAgreement-link{color:#747474}
.QuoteResult-resultContainer{border-bottom:1px dashed #9b9b9b;display:flex;font-size:12px;font-weight:500;justify-content:space-between;min-height:50px;padding:10px 0}.QuoteResult-resultContainer:focus{outline:1px solid #fcb700}.QuoteResult-container{padding:10px}.QuoteResult-container:nth-child(odd){background-color:#f8f8f8}.QuoteResult-leftSide{text-align:left}.QuoteResult-leftSideNotSearchResult{align-items:center;display:flex}.QuoteResult-rightSide{display:flex;flex-direction:column;justify-content:center;text-align:right}.QuoteResult-link{display:inline-block}.QuoteResult-symbol{color:#171717;font-size:14px;font-weight:700}.QuoteResult-symbol:focus,.QuoteResult-symbol:hover{color:#2077b6}.QuoteResult-name{color:#5d5d5d;font-size:12px;font-weight:500}.QuoteResult-unchanged{color:#5d5d5d;font-weight:500;text-transform:uppercase}.QuoteResult-value{color:#008456;font-size:12px;font-weight:500}.QuoteResult-negValue{color:#ce2b2b}.QuoteResult-price{color:#171717;font-size:14px;font-weight:600;line-height:114%}.QuoteResult-buttonContainer{position:relative}.AutoSuggestList-container{background-color:#fff;border:1px solid #979797;left:0;padding:10px 20px 20px;position:static;top:39px;width:100%}.AutoSuggestList-viewResults{color:#2077b6;font-size:12px;font-weight:500;letter-spacing:1px;padding-top:20px;text-transform:uppercase}.AutoSuggestList-viewResults:hover{text-decoration:underline}.QuoteList-title{border-bottom:1px dashed #9b9b9b;color:#071d39;font-size:14px;font-weight:500;letter-spacing:1.2px;margin:0;padding:20px 10px 18px}.QuoteFinder-container{margin-bottom:27px;position:relative}@media (min-width:360px) and (max-width:759px){.QuoteFinder-container{margin-bottom:20px}}@media (min-width:760px) and (max-width:1019px){.QuoteFinder-container{margin-bottom:20px}}.QuoteFinder-title{border-top:6px solid #002f6c;color:#002f6c;font-size:18px;font-weight:800;margin:0 0 8px;padding:10px 0 0;text-transform:uppercase}.QuoteFinder-form{display:block;position:relative}.QuoteFinder-form ::placeholder{color:#747474;margin-left:10px;text-transform:uppercase}input.QuoteFinder-searchInput[type=search]{-webkit-appearance:none;border:none;border-bottom:1px solid #071d39;border-radius:1px;color:#071d39;display:block;font-size:14px;font-weight:500;height:40px;letter-spacing:1.28px;padding-left:10px;text-transform:uppercase;width:100%}.QuoteFinder-submitBtn{background-color:#fff;bottom:0;height:0;margin-top:6px;overflow:hidden;padding:20px 10px 0 0;position:absolute;right:0;top:0;width:30px}.QuoteFinder-submitBtn:before{color:#2077b6;font-size:20px;height:100%;left:0;line-height:20px;position:absolute;text-align:center;top:0;width:100%}@media (min-width:360px) and (max-width:759px){.QuoteFinder-hideOnMobile{display:none}}@media (min-width:760px) and (max-width:1019px){.QuoteFinder-hideOnMobile{display:none}}
.MarketMoversMenu-moverContainer{align-items:baseline;border-bottom:1px solid #747474;display:flex;flex-direction:row;padding-bottom:3px}@media (max-width:759px){.MarketMoversMenu-moverContainer{-ms-overflow-style:none;overflow-x:auto;overflow-y:hidden;overflow:-moz-scrollbars-none}.MarketMoversMenu-moverContainer::-webkit-scrollbar{display:none}}@media (min-width:760px){.MarketMoversMenu-moverContainer{border:none;justify-content:flex-start;padding-top:6px}}@media (min-width:1020px){.MarketMoversMenu-moverContainer{margin-bottom:11px;order:1;padding-top:9px;position:relative}}.MarketMoversMenu-moverContainerFullWidth{border-color:#979797}@media (min-width:760px){.MarketMoversMenu-moverContainerFullWidth{margin-bottom:0;position:relative;top:7px}}.MarketMoversMenu-moverPlusContainer{border-bottom:hidden;margin:9px 0;padding-left:5px}@media (min-width:760px){.MarketMoversMenu-moverPlusContainer{margin:12px 0;padding:0}}@media (min-width:1020px){.MarketMoversMenu-moverPlusContainer{margin:9px 0;padding-left:5px}}.MarketMoversMenu-moverPlusContainer .MarketMoversMenu-marketOption{font-size:14px;font-weight:600;letter-spacing:.5px;line-height:16px;margin:0 7.5px}@media (min-width:760px){.MarketMoversMenu-moverPlusContainer .MarketMoversMenu-marketOption{padding-bottom:0}}@media (min-width:1020px){.MarketMoversMenu-moverPlusContainer .MarketMoversMenu-marketOption{margin:0 5px}}.MarketMoversMenu-marketOption{color:#747474;font-size:13px;font-weight:600;letter-spacing:.23px;line-height:1.2;margin:0 7px;position:relative;transition:color .15s linear;white-space:nowrap}.MarketMoversMenu-marketOption:focus,.MarketMoversMenu-marketOption:hover{color:#2e2e2e}.MarketMoversMenu-marketOption:first-child{margin-left:0}.MarketMoversMenu-marketOption:last-child{margin-right:0}@media (min-width:760px){.MarketMoversMenu-marketOption{font-size:14px;letter-spacing:.5px;padding-bottom:3px}}@media (min-width:1340px){.MarketMoversMenu-marketOption{margin:0 7px}.MarketMoversMenu-marketOption:first-child{margin-left:0}.MarketMoversMenu-marketOption:last-child{margin-right:16px}}.MarketMoversMenu-activeMarket{color:#005594;font-weight:700}.MarketMoversMenu-activeMarket:after{background-color:#005594;bottom:-5px;content:"";display:block;height:3px;left:0;position:absolute;width:100%}.MarketMoversMenu-activeMarket:focus,.MarketMoversMenu-activeMarket:hover{color:#005594}@media (min-width:1340px){.MarketMoversMenu-activeMarket:after{bottom:auto;height:2px}}.MarketMoverPlusTable-container{margin-bottom:15px;width:100%}@media (min-width:1020px){.MarketMoverPlusTable-container{margin-bottom:20px}}.MarketMoverPlusTable-tableContainer{width:100%}.MarketMoverPlusTable-dataContainer{background:#f8f8f8;padding:8px}.MarketMoverPlusTable-dataContainer:nth-child(2n){background:#fff}@media (min-width:760px){.MarketMoverPlusTable-dataContainer{padding:8px 27px}}@media (min-width:1020px){.MarketMoverPlusTable-dataContainer{padding:8px}}.MarketMoverPlusTable-dataRow{display:flex;justify-content:space-between}.MarketMoverPlusTable-companyName{color:#747474;font-size:14px;font-weight:600;letter-spacing:.5px;line-height:16px;max-height:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}@media (min-width:1020px){.MarketMoverPlusTable-companyName{font-size:12px;line-height:14px}}.MarketMoverPlusTable-tableHeader{color:#747474;font-size:14px;font-weight:600;letter-spacing:.35px;line-height:24px;padding-left:8px;text-transform:uppercase}@media (min-width:760px){.MarketMoverPlusTable-tableHeader{padding-left:27px}}@media (min-width:1020px){.MarketMoverPlusTable-tableHeader{padding-left:8px}}.MarketMoverPlusTable-quoteGain{color:#008456;font-size:14px;font-weight:600;line-height:16px}@media (min-width:1020px){.MarketMoverPlusTable-quoteGain{font-size:12px;line-height:10px}}.MarketMoverPlusTable-symbolName{display:flex}.MarketMoverPlusTable-addWatchlist{left:2px;position:relative;top:-6px}@media (min-width:1020px){.MarketMoverPlusTable-dropdownStyles{left:5px!important;width:150px!important}}.MarketMoverPlusTable-quoteDecline{color:#ce2b2b;font-size:14px;font-weight:600;line-height:16px}@media (min-width:1020px){.MarketMoverPlusTable-quoteDecline{font-size:12px;line-height:10px}}.MarketMoverPlusTable-quoteDecline span:first-child,.MarketMoverPlusTable-quoteGain span:first-child{padding-left:8px;padding-right:5px}.MarketMoverPlusTable-lastPrice,.MarketMoverPlusTable-symbolName{color:#171717;font-size:14px;font-weight:600;font-weight:700;line-height:16px}.MarketMoversPlus-container{border-top:6px solid #002f6c;display:none}@media (min-width:1020px){.MarketMoversPlus-container{display:block}}.MarketMoversPlus-containerPersistent{border-top:6px solid #002f6c;display:block}@media (min-width:1020px){.MarketMoversPlus-sponsorLogo{margin-top:0}}@media (min-width:1340px){.MarketMoversPlus-sponsorLogo{margin-top:-5px}}.MarketMoversPlus-decoration{background-color:#0089d0;display:block;height:6px;left:0;position:absolute;top:-5px;width:80px}@media (min-width:760px){.MarketMoversPlus-decoration{width:110px}}.MarketMoversPlus-header{display:flex;font-weight:800;justify-content:space-between;margin-top:10px}.MarketMoversPlus-header a{color:#002f6c;font-size:18px;letter-spacing:.5px;line-height:21px;text-transform:uppercase}@media (min-width:1020px){.MarketMoversPlus-header a{font-size:18px;line-height:15px}}@media (min-width:1340px){.MarketMoversPlus-header a{font-size:18px;line-height:21px}}.MarketMoversPlus-header a:hover{color:#2077b6}
.NativeRiver-container{align-items:center;align-self:center;display:flex;display:none;justify-content:center;margin:0}.RiverPlusCard-container{display:flex;justify-content:space-between;padding:14px 0}@media (min-width:760px){.RiverPlusCard-container{border-bottom:1px solid #dedede}}.RiverPlusCard-cardLeft{display:flex;flex-direction:column;justify-content:space-between}.RiverPlusCard-breakerCardContainer{flex-basis:0;flex-grow:1;margin:15px 0;padding-right:15px}.RiverPlusCard-breakerCardContainer:nth-child(2){border-left:1px solid #dedede;padding-left:15px;padding-right:0}.RiverByline-bylineContainer{display:none}@media (min-width:760px){.RiverByline-bylineContainer{display:flex}}.RiverByline-mobileBylineContainer{border-bottom:1px solid #dedede;display:flex;padding-bottom:16px}@media (min-width:760px){.RiverByline-mobileBylineContainer{display:none}}.RiverByline-authorBylineContainer{display:flex}.RiverByline-hasSeparator{padding-bottom:5px}@media (min-width:760px){.RiverByline-hasSeparator{height:14px;padding-bottom:0}}@media (min-width:1020px){.RiverByline-hasSeparator{height:auto}}@media (min-width:1340px){.RiverByline-hasSeparator{height:14px}}.RiverByline-datePublished{margin-bottom:5px}.RiverByline-datePublished,.RiverByline-watchLive{color:#747474;font-size:11px;font-weight:600;letter-spacing:1.2px;line-height:13px;text-transform:uppercase;white-space:nowrap}.RiverByline-breakerSeparator,.RiverByline-separator{color:#002f6c;font-size:20px;font-weight:800;padding:0 5px;position:relative;top:-7px}.RiverByline-breakerSeparator{display:none}@media (min-width:760px){.RiverByline-breakerSeparator{display:block}}.RiverByline-authorByline{color:#005594;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;letter-spacing:.461538px;line-height:14px}.RiverByline-authorByline a{color:inherit}.RiverByline-authorByline a:focus,.RiverByline-authorByline a:hover{text-decoration:underline}.RiverByline-byText,.RiverByline-bylineComma{padding-right:4px}.RiverThumbnail-thumbnailContainer{margin-left:24px}@media (min-width:1340px){.RiverThumbnail-thumbnailContainer{margin-left:40px}}.RiverThumbnail-thumbnailContainer img{height:auto;width:100px}@media (min-width:760px){.RiverThumbnail-thumbnailContainer img{width:120px}}@media (min-width:1020px){.RiverThumbnail-thumbnailContainer img{width:112px}}@media (min-width:1340px){.RiverThumbnail-thumbnailContainer img{width:120px}}.RiverThumbnail-breakerImage{margin-bottom:16px}@media (min-width:760px){.RiverThumbnail-breakerImage{margin-bottom:none}}.RiverThumbnail-breakerImage img{height:auto;width:100%}.RiverThumbnail-imageThumbnail{position:relative}.RiverThumbnail-videoFooter{background:linear-gradient(180deg,#1e579900 0,#000);bottom:0;filter:progid:dximagetransform.microsoft.gradient(startColorstr="#001e5799",endColorstr="#000000",GradientType=0);height:40px;padding-left:10px;padding-top:15px;position:absolute;width:100%}.RiverThumbnail-videoLabel{color:#fcb700;font-size:10px;font-weight:800;letter-spacing:1.67px;line-height:12px}@media (min-width:760px){.RiverThumbnail-videoLabel{font-size:12px;letter-spacing:2px;line-height:15px}}.RiverThumbnail-videoTime{color:#fffc;font-weight:600;letter-spacing:1.2px;padding-left:10px}@media (min-width:760px){.RiverThumbnail-videoTime{letter-spacing:1.44px}}.RiverHeadline-headline{font-size:16px;font-weight:600;letter-spacing:.03px;line-height:18px;padding-bottom:24px}@media (min-width:760px){.RiverHeadline-headline{font-size:20px;line-height:24px;padding-right:32px}}@media (min-width:1020px){.RiverHeadline-headline{font-size:17px;line-height:19px;padding-bottom:32px;padding-right:24px}}@media (min-width:1340px){.RiverHeadline-headline{font-size:20px;line-height:24px;padding-right:56px}}.RiverHeadline-headline a{color:#171717}.RiverHeadline-headline a:focus,.RiverHeadline-headline a:hover{color:#171717;text-decoration:underline}.RiverHeadline-headlineHovered a{text-decoration:underline}.RiverHeadline-hasThumbnail{padding-bottom:0;padding-right:0}@media (min-width:760px){.RiverHeadline-hasThumbnail{padding-bottom:16px}}@media (min-width:1340px){.RiverHeadline-hasThumbnail{padding-bottom:8px}}.RiverPlusBreaker-container{border-bottom:1px solid #dedede;display:flex;justify-content:space-around}.RiverPlus-riverPlusContainer{padding-bottom:30px}
.MarketMoversMenu-moverContainer{align-items:baseline;border-bottom:1px solid #747474;display:flex;flex-direction:row;padding-bottom:3px}@media (max-width:759px){.MarketMoversMenu-moverContainer{-ms-overflow-style:none;overflow-x:auto;overflow-y:hidden;overflow:-moz-scrollbars-none}.MarketMoversMenu-moverContainer::-webkit-scrollbar{display:none}}@media (min-width:760px){.MarketMoversMenu-moverContainer{border:none;justify-content:flex-start;padding-top:6px}}@media (min-width:1020px){.MarketMoversMenu-moverContainer{margin-bottom:11px;order:1;padding-top:9px;position:relative}}.MarketMoversMenu-moverContainerFullWidth{border-color:#979797}@media (min-width:760px){.MarketMoversMenu-moverContainerFullWidth{margin-bottom:0;position:relative;top:7px}}.MarketMoversMenu-moverPlusContainer{border-bottom:hidden;margin:9px 0;padding-left:5px}@media (min-width:760px){.MarketMoversMenu-moverPlusContainer{margin:12px 0;padding:0}}@media (min-width:1020px){.MarketMoversMenu-moverPlusContainer{margin:9px 0;padding-left:5px}}.MarketMoversMenu-moverPlusContainer .MarketMoversMenu-marketOption{font-size:14px;font-weight:600;letter-spacing:.5px;line-height:16px;margin:0 7.5px}@media (min-width:760px){.MarketMoversMenu-moverPlusContainer .MarketMoversMenu-marketOption{padding-bottom:0}}@media (min-width:1020px){.MarketMoversMenu-moverPlusContainer .MarketMoversMenu-marketOption{margin:0 5px}}.MarketMoversMenu-marketOption{color:#747474;font-size:13px;font-weight:600;letter-spacing:.23px;line-height:1.2;margin:0 7px;position:relative;transition:color .15s linear;white-space:nowrap}.MarketMoversMenu-marketOption:focus,.MarketMoversMenu-marketOption:hover{color:#2e2e2e}.MarketMoversMenu-marketOption:first-child{margin-left:0}.MarketMoversMenu-marketOption:last-child{margin-right:0}@media (min-width:760px){.MarketMoversMenu-marketOption{font-size:14px;letter-spacing:.5px;padding-bottom:3px}}@media (min-width:1340px){.MarketMoversMenu-marketOption{margin:0 7px}.MarketMoversMenu-marketOption:first-child{margin-left:0}.MarketMoversMenu-marketOption:last-child{margin-right:16px}}.MarketMoversMenu-activeMarket{color:#005594;font-weight:700}.MarketMoversMenu-activeMarket:after{background-color:#005594;bottom:-5px;content:"";display:block;height:3px;left:0;position:absolute;width:100%}.MarketMoversMenu-activeMarket:focus,.MarketMoversMenu-activeMarket:hover{color:#005594}@media (min-width:1340px){.MarketMoversMenu-activeMarket:after{bottom:auto;height:2px}}.MarketSymbolDropdown-dropdownButton.MarketSymbolDropdown-dropdownButton{padding:0 0 0 4px}@media (min-width:760px){.MarketTop-container{max-width:48%;width:48%}}.MarketTop-topTable{margin:10px 0}.MarketTop-topTable tr{padding:0}.MarketTop-topTable td{line-height:15px;padding:5px 10px 5px 0;white-space:nowrap}.MarketTop-name{color:#747474;font-size:14px;font-weight:600;letter-spacing:.5px;line-height:15px;max-width:25%}.MarketTop-name div{max-height:20px;max-width:120px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.MarketTop-barContainer{width:23%}@media (min-width:760px){.MarketTop-barContainer{width:11%}}@media (min-width:1180px){.MarketTop-barContainer{width:21%}}@media (min-width:1340px){.MarketTop-barContainer{width:42%}}.MarketTop-title{color:#171717;font-size:16px;font-weight:600;letter-spacing:.4px;line-height:24px;margin:20px 0 10px;text-transform:uppercase}.MarketTop-fullWidthContainer,.MarketTop-fullWidthContainer .MarketTop-topTable{width:100%}.MarketTop-fullWidthContainer .MarketTop-title{margin:10px 0}@media (min-width:1020px){.MarketTop-fullWidthContainer .MarketTop-name div{max-width:200px}}.MarketTop-bar{background-color:pink;height:16px}.MarketTop-gainBar{background-color:#008456}.MarketTop-declineBar{background-color:#ce2b2b}.MarketTop-quoteChange{font-size:12px;font-weight:600;line-height:15px;text-align:right}.MarketTop-quoteGain{color:#008456}.MarketTop-quoteDecline{color:#ce2b2b}.MarketTop-symbol a{word-wrap:break-word;color:#4a4a4a;font-size:12px;font-weight:700;letter-spacing:0;line-height:15px;max-width:75px;text-transform:uppercase;width:10%}.MarketTop-symbol a:focus,.MarketTop-symbol a:hover{color:#2077b6}.MarketTop-value{color:#171717;font-size:12px;font-weight:600;line-height:15px;text-align:right}.MarketTop-desktopOnly{display:none}@media (min-width:1020px){.MarketTop-desktopOnly{display:inline-block;position:relative}}.PageBuilder-article .MarketMovers-container a{text-decoration:none}.PageBuilder-article .MarketMovers-container .MarketTop-symbol a{color:#171717}.PageBuilder-article .MarketMovers-container .MarketTop-symbol a:hover{color:#2077b6}.MarketMovers-container{background-color:#cfd8e21a;border:1px dashed #b9c7d5;border-top:6px solid #002f6c;margin-bottom:30px;padding:10px;width:100%}@media (min-width:760px){.MarketMovers-container{padding-left:20px;padding-top:15px}}@media (min-width:1340px){.MarketMovers-container{padding-left:30px;padding-top:25px}}.MarketMovers-fullWidthContainer{margin-bottom:0}.MarketMovers-title{color:#002f6c;font-size:20px;font-weight:800;line-height:24px;margin:0 0 20px;position:relative;text-transform:uppercase}.MarketMovers-title a{color:inherit}.MarketMovers-title a:focus,.MarketMovers-title a:hover{color:#2077b6}@media (min-width:1020px){.MarketMovers-title{font-size:24px;line-height:29px}}.MarketMovers-title a{color:#002f6c!important}.MarketMovers-title a:hover{color:#2077b6!important}@media (min-width:760px){.MarketMovers-title{letter-spacing:.36px;margin:0 40px 0 0}}@media (min-width:1020px){.MarketMovers-title{font-size:24px;letter-spacing:.4px;line-height:29px}}.MarketMovers-marketTopContainer{min-height:110px}@media (min-width:760px){.MarketMovers-marketTopContainer{display:flex;justify-content:space-between}}.MarketMovers-fullWidthMarketTopContainer{min-height:110px;width:100%}.MarketMovers-marketTopContainerStacked{display:flex;flex-direction:column}@media (min-width:760px){.MarketMovers-titleContainer{display:flex;justify-content:flex-start}}.MarketMovers-loadingContainer{align-items:center;display:flex;height:100%;justify-content:center;padding:30px 0 20px;width:100%}.RiverPlusCard-container{display:flex;justify-content:space-between;padding:14px 0}@media (min-width:760px){.RiverPlusCard-container{border-bottom:1px solid #dedede}}.RiverPlusCard-cardLeft{display:flex;flex-direction:column;justify-content:space-between}.RiverPlusCard-breakerCardContainer{flex-basis:0;flex-grow:1;margin:15px 0;padding-right:15px}.RiverPlusCard-breakerCardContainer:nth-child(2){border-left:1px solid #dedede;padding-left:15px;padding-right:0}.MarketNews-container{border-top:6px solid #002f6c;flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}@media (min-width:760px){.MarketNews-container{margin-bottom:30px}}.MarketNews-title{color:#002f6c;font-size:20px;font-weight:800;line-height:24px;margin:10px 0;text-transform:uppercase}.MarketNews-title a{color:inherit}.MarketNews-title a:focus,.MarketNews-title a:hover{color:#2077b6}@media (min-width:1020px){.MarketNews-title{font-size:24px;line-height:29px}}.MarketNews-authorBylineContainer{display:flex}.MarketNews-hasSeparator{padding-bottom:5px}@media (min-width:760px){.MarketNews-hasSeparator{height:14px;padding-bottom:0}}@media (min-width:1020px){.MarketNews-hasSeparator{height:auto}}@media (min-width:1340px){.MarketNews-hasSeparator{height:14px}}.MarketNews-datePublished,.MarketNews-watchLive{color:#747474;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:11px;font-weight:600;letter-spacing:1.2px;line-height:13px;text-transform:uppercase;white-space:nowrap}.MarketNews-separator{color:#002f6c;font-size:20px;font-weight:800;padding:0 5px;position:relative;top:-5px}.MarketNews-byText,.MarketNews-bylineComma{padding-right:4px}.MarketsModule-container{padding-top:5px;width:100%}.MarketsModule-title{border-top:1px solid #747474;display:flex;justify-content:space-between;margin:0;padding:10px 0 20px;position:relative}.MarketsModule-title:before{background:#fcb700;content:"";height:6px;left:0;position:absolute;top:-6px;width:110px}@media (min-width:760px){.MarketsModule-title{padding-top:15px}}@media (min-width:1340px){.MarketsModule-title{padding-top:20px}}.MarketsModule-title h2{margin:0;padding:0;width:93%}.MarketsModule-title h2 a{color:#002f6c;font-size:40px;font-weight:800;letter-spacing:.33px;line-height:37px;text-transform:uppercase}.MarketsModule-title h2 a:hover{color:#2077b6}@media (min-width:1020px){.MarketsModule-title h2 a{font-size:32px}.MarketsModule-title h2{font-size:40px;letter-spacing:.44px;line-height:40px}}.MarketsModule-sponsorLogo{height:0;overflow:hidden;width:0}@media (min-width:1020px){.MarketsModule-sponsorLogo{height:30px;width:auto}}@media (min-width:760px){.MarketsModule-row{display:flex}}@media (min-width:1020px){.MarketsModule-row{margin-right:-30px}.MarketsModule-top{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}@media (min-width:1340px){.MarketsModule-top{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}.MarketsModule-leftColumn{margin-bottom:30px}@media (min-width:760px){.MarketsModule-leftColumn{flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(58.33333% - 30px);min-width:calc(58.33333% - 30px)}.MarketsModule-leftColumn:last-child{margin-right:0}}@media (min-width:1020px){.MarketsModule-leftColumn{flex-grow:0;flex-shrink:0;max-width:calc(50% - 30px);min-width:calc(50% - 30px)}}@media (min-width:1340px){.MarketsModule-leftColumn{flex-grow:0;flex-shrink:0;max-width:calc(55.55556% - 30px);min-width:calc(55.55556% - 30px)}}.MarketsModule-marketTable{margin-bottom:30px}.MarketsModule-marketTable:last-child{margin-bottom:0}@media (min-width:760px){.MarketsModule-rightColumn{flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(41.66667% - 30px);max-width:41.66667%;min-width:calc(41.66667% - 30px)}.MarketsModule-rightColumn:last-child{margin-right:0}}@media (min-width:1020px){.MarketsModule-rightColumn{flex-grow:0;flex-shrink:0;max-width:calc(50% - 30px);min-width:calc(50% - 30px)}}@media (min-width:1340px){.MarketsModule-rightColumn{flex-grow:0;flex-shrink:0;max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}
.NativeThreeUp-container,.NativeThreeUpStackv2-container{align-items:center;align-self:center;display:flex;justify-content:center;margin:0}.NativeThreeUpStackv2-container{display:none}.NativeUltraDense-container{align-items:center;align-self:center;display:flex;justify-content:center;margin:0}
.VideoBetaHeader-container{display:flex;justify-content:space-between;width:100%}.VideoBetaHeader-fullHeader .VideoBetaHeader-header{width:100%}.VideoBetaHeader-header{border-top:1px solid #747474;position:relative;width:calc(100% - 140px)}.VideoBetaHeader-logoContainer{position:relative}.VideoBetaHeader-logoPosition{position:absolute;right:-20px;top:-30px}.VideoBetaHeader-decorator{background-color:#fff;height:6px;left:0;position:absolute;top:-6px;width:88px}.VideoBetaHeader-title{color:#fff;font-size:32px;font-weight:900;letter-spacing:.25px;line-height:38.98px;margin-bottom:30px;margin-top:16px;text-transform:uppercase}.PlaylistItem-videoItem{display:flex;height:72px;margin-bottom:2px}@media (max-width:1019px){.PlaylistItem-videoItem{flex-direction:column;height:100%}}.PlaylistItem-thumbnailContainer{height:72px;margin-right:8px;min-width:90px;overflow:hidden;position:relative;width:129px}@media (max-width:1019px){.PlaylistItem-thumbnailContainer{height:75px;margin-right:0;min-width:134px;width:134px}}.PlaylistItem-thumbnailContainer.PlaylistItem-spacer{height:0}.PlaylistItem-thumbnailContainer img{width:100%}.PlaylistItem-headline{color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:500;line-height:18px;margin:0;text-align:left}.PlaylistItem-episodeDuration{color:#fff;font-size:12px;line-height:16px;padding:3px;text-align:left}@media (min-width:1020px){.PlaylistItem-episodeDuration{bottom:0;margin:0;padding-bottom:8px;position:absolute}}.PlaylistItem-videoItem:last-child .PlaylistItem-headlineDurationContainer{border-bottom:none}.PlaylistItem-headlineDurationContainer{position:relative}@media (min-width:1020px){.PlaylistItem-headlineDurationContainer{border-bottom:1px dashed #9e9e9e;flex-grow:1}}.EpisodePlaylist-title{color:#fff;font-size:16px;font-weight:500;line-height:20px;padding:12px 0 30px}.EpisodePlaylist-playlistContainer{display:flex;gap:20px}@media (min-width:1020px){.EpisodePlaylist-playlistContainer{flex-direction:column;gap:8px}}@media (max-width:1019px){.EpisodePlaylist-playlistContainer{overflow-x:auto}}.VideoBreakerBeta-container{background-color:#00081a;margin-bottom:30px}@media (max-width:759px){.VideoBreakerBeta-mobileWrapper .VideoBreakerBeta-container{margin-right:0}}.VideoBreakerBeta-contentWrapper{margin:0 auto;max-width:1290px;padding:40px 25px}@media (max-width:1019px){.VideoBreakerBeta-contentWrapper{padding:40px 41px}}@media (max-width:759px){.VideoBreakerBeta-contentWrapper{padding:40px 21px}}.VideoBreakerBeta-content{display:flex;flex-direction:row;gap:20px}@media (max-width:1019px){.VideoBreakerBeta-content{display:block;margin:0 auto}}@media (max-width:1339px){.VideoBreakerBeta-content{gap:16px}}.VideoBreakerBeta-videoContainer{max-width:730px;position:relative;width:100%}@media (max-width:1339px){.VideoBreakerBeta-videoContainer{max-width:60%}}@media (max-width:1019px){.VideoBreakerBeta-videoContainer{max-width:100%;padding:10px 0}}.VideoBreakerBeta-fullEpisodeContainer{max-width:510px;position:relative;width:100%}@media (max-width:1339px){.VideoBreakerBeta-fullEpisodeContainer{max-width:423px}}@media (max-width:1019px){.VideoBreakerBeta-fullEpisodeContainer{max-width:100%;padding:10px 0}}.VideoBreakerBeta-buttonContainer{display:flex;gap:10px;margin-bottom:10px}.VideoBreakerBeta-episodeContainer{padding:10px;position:relative}.VideoBreakerBeta-buttonContainer a{flex-basis:0;flex-grow:1}.VideoBreakerBeta-buttonContainer a:hover{background-color:#002f6c;color:#fff}.VideoBreakerBeta-watchButtonStream{background-color:#0053cf;border-radius:4px;color:#fff;font-size:14px;font-weight:600;line-height:18px;padding:16px 14px;text-align:center;text-transform:uppercase}.VideoBreakerBeta-watchButtonStream .VideoBreakerBeta-watchLiveIcon{animation:VideoBreakerBeta-pulse 1.5s infinite;animation-timing-function:ease-in-out;background-color:#fff;border-radius:100%;box-shadow:0 0 0 0 #fff;display:inline-block;height:8px;margin-right:8px;margin-top:-2px;position:relative;transform:scale(1);width:8px}@keyframes VideoBreakerBeta-pulse{0%{box-shadow:0 0 0 1px #0053cf;opacity:1}70%{border:1px solid #0053cf;box-shadow:0 0 0 1px #fff;opacity:.9;padding:2px;transform:scale(1.2)}to{box-shadow:0 0 0 1px #fff;opacity:1;transform:scale(1)}}.VideoBreakerBeta-watchButtonEpisode{background-color:#0053cf;border-radius:4px;color:#fff;font-size:14px;font-weight:600;line-height:18px;padding:16px 14px;text-align:center;text-transform:uppercase}.VideoBreakerBeta-watchButtonEpisode .VideoBreakerBeta-watchEpisodeIcon{background-image:url(https://static-redesign.cnbcfm.com/dist/8f814ea5e4aca99eb1cc.svg);background-repeat:no-repeat;display:inline-block;height:15px;margin-right:8px;margin-top:-2px;position:relative;vertical-align:middle;width:14px}@media (max-width:1339px){.VideoBreakerBeta-watchText{display:none}}.VideoBreakerBeta-videoPlaceholder{background-color:gray;height:100%;width:100%}.VideoBreakerBeta-proLivePlayer{padding:0}@media (min-width:360px){.VideoBreakerBeta-proLivePlayer{margin-bottom:20px;padding:0}}@media (min-width:1020px){.VideoBreakerBeta-proLivePlayer{margin-bottom:0}}@media (min-width:1340px){.VideoBreakerBeta-proLivePlayer{margin-bottom:0}}.VideoBreakerMvpd-container{background-color:#00081a}@media (max-width:759px){.VideoBreakerMvpd-mobileWrapper .VideoBreakerMvpd-container{margin-right:0}}.VideoBreakerMvpd-contentWrapper{margin:0 auto;max-width:1290px;padding:40px 25px}@media (max-width:1019px){.VideoBreakerMvpd-contentWrapper{padding:40px 41px}}@media (max-width:759px){.VideoBreakerMvpd-contentWrapper{padding:40px 21px}}.VideoBreakerMvpd-playerContainer{background:#000;height:477px;margin:0 auto;position:relative;width:850px}@media (max-width:1019px){.VideoBreakerMvpd-playerContainer{height:381px;width:678px}}@media (max-width:759px){.VideoBreakerMvpd-playerContainer{height:220px;width:100%}}.VideoBreakerMvpd-omegaPlayerContainer{aspect-ratio:16/9;position:relative;z-index:0}.VideoBreakerMvpd-videoBreakerMvpdContainer{margin:30px auto 0;width:850px}@media (max-width:1019px){.VideoBreakerMvpd-videoBreakerMvpdContainer{width:678px}}@media (max-width:759px){.VideoBreakerMvpd-videoBreakerMvpdContainer{width:100%}}.VideoBreakerMvpd-cableProviderContainer{align-items:center;background:linear-gradient(#101418,#101418) padding-box,linear-gradient(to bottom right,#ef1541,#890c25) border-box;border:1px solid #0000;border-radius:5px;color:#fff;display:flex;flex-flow:row;justify-content:space-between;margin-bottom:30px;min-width:300px;padding:16px 20px 13px}@media (min-width:360px) and (max-width:759px){.VideoBreakerMvpd-cableProviderContainer{align-items:flex-start;flex-flow:column}}.VideoBreakerMvpd-cableProviderTitle{font-size:14px;font-weight:700;letter-spacing:.03px;line-height:22px;position:relative}@media (min-width:360px) and (max-width:759px){.VideoBreakerMvpd-textContainer{margin-bottom:15px;width:260px}}.VideoBreakerMvpd-nbcButtonContainer{align-items:flex-start;display:flex;flex-flow:column;gap:12px;margin-right:12px}@media (min-width:760px) and (max-width:1019px){.VideoBreakerMvpd-nbcButtonContainer{gap:0;margin:0 10px;padding:0 10px}}.VideoBreakerMvpd-linkButton{color:#fff;font-size:12px;font-weight:400;height:14px;letter-spacing:.03px;line-height:14px;position:relative}.VideoBreakerMvpd-linkButton:hover{color:#fcb700}.VideoBreakerMvpd-linkButton:hover .VideoBreakerMvpd-rightArrow{background-color:#fcb700}@media (min-width:760px) and (max-width:1019px){.VideoBreakerMvpd-linkButton{height:unset;top:0}}.VideoBreakerMvpd-blur{background:linear-gradient(45deg,#ef15414d,#0000);filter:blur(50px);height:107px;margin:15px;position:absolute;width:210px}@media (min-width:760px) and (max-width:1019px){.VideoBreakerMvpd-blur{height:40px;margin-left:150px;width:483px}}.VideoBreakerMvpd-rightArrow{background-color:#fff;display:inline-block;height:10px;margin-left:8px;mask-image:url(https://static-redesign.cnbcfm.com/dist/102cc85fdaab546b3ee8.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/102cc85fdaab546b3ee8.svg);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;position:absolute;top:2px;width:14px}.FeaturedVideoHeader-container{background-color:#171717;display:flex;justify-content:space-between;padding:23px 0 15px;width:100%}@media (min-width:760px){.FeaturedVideoHeader-container{padding:40px 0 0}}@media (min-width:1020px){.FeaturedVideoHeader-container{padding-top:44px}}.FeaturedVideoHeader-lightMode{background:#f7f7f7}.FeaturedVideoHeader-lightMode .FeaturedVideoHeader-title{border-color:#747474;color:#002f6c}.FeaturedVideoHeader-lightMode .FeaturedVideoHeader-callToAction{border-color:#002f6c;color:#002f6c}.FeaturedVideoHeader-title{border-top:1px solid #fff;color:#fff;font-size:30px;font-weight:800;letter-spacing:.33px;line-height:40px;margin-bottom:10px;padding-top:15px;position:relative;text-transform:uppercase;width:calc(100% - 146px)}.FeaturedVideoHeader-title:before{background:#fcb700;content:"";height:6px;left:0;position:absolute;top:-6px;width:80px}@media (min-width:760px){.FeaturedVideoHeader-title:before{width:110px}.FeaturedVideoHeader-title{line-height:37px;width:calc(100% - 142px)}}@media (min-width:1020px){.FeaturedVideoHeader-titleWithTwoBtns{font-size:32px;letter-spacing:.44px;line-height:40px;padding-bottom:5px;width:calc(100% - 284px)}}.FeaturedVideoHeader-titleDecorator{height:6px;left:0;position:absolute;top:-6px;width:110px}.FeaturedVideoHeader-callToAction{border:1px solid #fff;border-radius:0;color:#fff;font-size:12px;font-weight:600;height:40px;letter-spacing:1px;width:120px}.FeaturedVideoHeader-callToAction:focus,.FeaturedVideoHeader-callToAction:hover{background-color:#fcb700;border-color:#fcb700;color:#000}.FeaturedVideoHeader-wideOnly{display:none}@media (min-width:1020px){.FeaturedVideoHeader-wideOnly{display:inline-block}}.VideoRecirculationLinks-mobileWrapper{overflow-x:hidden;overflow-y:hidden;position:relative}.VideoRecirculationLinks-mobileWrapper::-webkit-scrollbar{display:none}@media (min-width:1020px){.VideoRecirculationLinks-mobileWrapper{margin:0}.VideoRecirculationLinks-mobileWrapper:after{content:none}}.VideoRecirculationLinks-container{-webkit-overflow-scrolling:touch;display:flex;margin:0;overflow-x:scroll;padding-top:25px;z-index:1}@media (max-width:759px){.VideoRecirculationLinks-container{padding-left:22px;padding-top:52px}}@media (min-width:760px){.VideoRecirculationLinks-container{margin:0 -15px;overflow:hidden}}@media (min-width:1020px){.VideoRecirculationLinks-container{flex-direction:column;height:100%;margin:-15px 0;padding-left:35px;padding-top:0}}@media (max-width:1019px){.VideoRecirculationLinks-container{padding-top:0}}.VideoRecirculationLinks-card{margin-bottom:40px;margin-right:30px;width:190px}.VideoRecirculationLinks-card:hover{cursor:pointer}.VideoRecirculationLinks-card:hover .VideoRecirculationLinks-title{color:#fff;text-decoration:underline}.VideoRecirculationLinks-card:hover .VideoRecirculationLinks-title.VideoRecirculationLinks-lightMode{color:#000}@media (max-width:759px){.VideoRecirculationLinks-card{margin-right:57px}}@media (min-width:760px){.VideoRecirculationLinks-card{flex-grow:1;margin-left:0;margin-right:0;min-width:0;padding:0 15px;width:33.33%}}@media (max-width:1019px){.VideoRecirculationLinks-card{display:flex;flex:none;flex-direction:column}}@media (min-width:1020px){.VideoRecirculationLinks-card{margin:0;padding:15px 0;position:relative;width:100%}.VideoRecirculationLinks-mobileWrapper .VideoRecirculationLinks-card:last-child{padding-right:0}}.VideoRecirculationLinks-watchVideoImage{display:block;height:0;padding-bottom:56.25%;position:relative;width:100%}.VideoRecirculationLinks-watchVideoImage:after{background-image:linear-gradient(-180deg,#002f6c00,#0012297d 54%,#000c);content:"";display:block;padding-bottom:calc(56.25% + 2px);position:absolute;right:0;top:0;width:100%;z-index:1}.VideoRecirculationLinks-playingVideoImage{border:2px solid #fff;display:block;height:0;padding-bottom:56.25%;position:relative;width:100%}.VideoRecirculationLinks-playingVideoImage:after{background-image:linear-gradient(-180deg,#002f6c00,#0012297d 54%,#000c);content:"";display:block;padding-bottom:calc(56.25% + 2px);position:absolute;right:0;top:0;width:100%;z-index:1}.VideoRecirculationLinks-playingVideoImage:before{border-bottom:12px solid #fff;border-left:8px solid #0000;border-right:8px solid #0000;content:"";height:0;left:45%;position:absolute;top:-12px;width:0}.VideoRecirculationLinks-playingVideoImage:after{background:none;border:2px solid #fff;margin-top:-2px;width:99%}@media (min-width:1020px){.VideoRecirculationLinks-playingVideoImage:before{border-bottom:8px solid #0000;border-right:12px solid #fff;border-top:8px solid #0000;left:-20px;top:45%}}.VideoRecirculationLinks-lightMode.VideoRecirculationLinks-playingVideoImage{border:2px solid #000}.VideoRecirculationLinks-lightMode.VideoRecirculationLinks-playingVideoImage:before{border-bottom:12px solid #000;border-left:8px solid #0000;border-right:8px solid #0000;content:"";height:0;left:45%;position:absolute;top:-12px;width:0}.VideoRecirculationLinks-lightMode.VideoRecirculationLinks-playingVideoImage:after{background:none;border:2px solid #000;margin-top:-2px;width:99%}@media (min-width:1020px){.VideoRecirculationLinks-lightMode.VideoRecirculationLinks-playingVideoImage:before{border-bottom:8px solid #0000;border-right:12px solid #000;border-top:8px solid #0000;left:-20px;top:45%}}.VideoRecirculationLinks-title{color:#7b7b7b;color:#000;font-size:17px;font-weight:600;line-height:18px;padding-top:10px}.VideoRecirculationLinks-playing .VideoRecirculationLinks-title{color:#fff}.VideoRecirculationLinks-playing .VideoRecirculationLinks-title.VideoRecirculationLinks-lightMode{color:#000}@media (max-width:759px){.VideoRecirculationLinks-title{padding-top:18px}}@media (min-width:1020px){.VideoRecirculationLinks-title{font-size:16px;line-height:20px;margin-left:174px;margin-top:15px;padding-top:0;position:absolute;top:0}}@media (min-width:1180px){.VideoRecirculationLinks-title{margin-left:186px}}@media (min-width:1340px){.VideoRecirculationLinks-title{font-size:18px;margin-left:240px}}.VideoRecirculationLinks-buttonWrapper{padding:0;width:100%}@media (min-width:1020px){.VideoRecirculationLinks-buttonWrapper{width:146px}}@media (min-width:1180px){.VideoRecirculationLinks-buttonWrapper{width:168px}}@media (min-width:1340px){.VideoRecirculationLinks-buttonWrapper{width:208px}}.VideoRecirculationLinks-toutTime{background:none;bottom:2px;color:#fffc;font-size:12px;font-weight:700;left:12px;letter-spacing:.12em;line-height:15px;padding:0;position:absolute;z-index:2}.VideoRecirculationLinks-toutTimeLabel{color:#fcb700;font-size:12px;font-weight:800;letter-spacing:1.44px;line-height:15px;margin-right:4px}.FeaturedLiveTvModule-container{background-color:#171717;margin:initial;margin-top:-1.2rem;padding:0 20px}@media (min-width:760px){.FeaturedLiveTvModule-container{display:flex}}@media (max-width:759px){.FeaturedLiveTvModule-mobileWrapper .FeaturedLiveTvModule-container{margin-right:0}}.FeaturedLiveTvModule-lightMode{background:#f7f7f7}.FeaturedLiveTvModule-grid{margin-left:auto;margin-right:auto;max-width:1290px;overflow:visible;width:100%}.FeaturedLiveTvModule-contentWrapper{margin:0 auto;max-width:100%}@media (min-width:760px){.FeaturedLiveTvModule-contentWrapper{max-width:678px}}@media (min-width:1020px){.FeaturedLiveTvModule-contentWrapper{max-width:960px}}@media (min-width:1340px){.FeaturedLiveTvModule-contentWrapper{max-width:1290px}}@media (min-width:760px){.FeaturedLiveTvModule-contentWrapper{padding-bottom:0}}@media (min-width:1340px){.FeaturedLiveTvModule-contentWrapper{padding-bottom:0}}@media (min-width:1020px){.FeaturedLiveTvModule-content{display:flex;padding-bottom:60px}}@media (min-width:1340px){.FeaturedLiveTvModule-content{padding-bottom:80px}}.FeaturedLiveTvModule-videoPlayerContainer{margin:0 -20px}@media (min-width:760px){.FeaturedLiveTvModule-videoPlayerContainer{margin:0}}@media (min-width:1020px){.FeaturedLiveTvModule-videoPlayerContainer{flex-grow:0;flex-shrink:0;max-width:57.14286%;min-width:57.14286%}}@media (max-width:759px){.FeaturedLiveTvModule-playlistContainer{margin-left:-20px;width:100vw}}@media (min-width:1020px){.FeaturedLiveTvModule-playlistContainer{flex-grow:0;flex-shrink:0;max-width:42.85714%;min-width:42.85714%}}.FeaturedLiveTvModule-videoPlaceholder{background-color:gray;height:100%;width:100%}@media (min-width:360px){.FeaturedLiveTvModule-proLivePlayer{margin-bottom:20px;padding:0 20px}}@media (min-width:1020px){.FeaturedLiveTvModule-proLivePlayer{margin-bottom:0}}@media (min-width:1340px){.FeaturedLiveTvModule-proLivePlayer{margin-bottom:0}}.VideoPlayer-container{display:block;position:relative}.VideoPlayer-container:hover~.VideoPlayer-title{text-decoration:underline}.VideoPlayer-image{padding-bottom:56.2%;position:relative;width:100%}.VideoPlayer-title{color:#fff;cursor:pointer;font-size:22px;font-weight:600;line-height:26px;max-height:150px;min-height:100px;padding:20px}.VideoPlayer-title:hover{text-decoration:underline}@media (min-width:760px){.VideoPlayer-title{font-size:24px;line-height:28px;padding:20px 0}}@media (min-width:1340px){.VideoPlayer-title{padding-bottom:40px}}@media (min-width:1020px){.VideoPlayer-title{font-size:30px;max-height:200px;min-height:120px}}.Playlist-mobileWrapper{overflow-x:hidden;overflow-y:hidden;position:relative}.Playlist-mobileWrapper::-webkit-scrollbar{display:none}@media (min-width:1020px){.Playlist-mobileWrapper{margin:0}.Playlist-mobileWrapper:after{content:none}}.Playlist-container{-webkit-overflow-scrolling:touch;display:flex;margin:0;overflow-x:scroll;padding-top:25px;z-index:1}@media (max-width:759px){.Playlist-container{padding-left:22px;padding-top:52px}}@media (min-width:760px){.Playlist-container{margin:0 -15px;overflow:hidden}}@media (min-width:1020px){.Playlist-container{flex-direction:column;height:100%;margin:-15px 0;padding-left:35px;padding-top:0}}.Playlist-card{margin-bottom:40px;margin-right:30px;width:190px}.Playlist-card:hover{cursor:pointer}.Playlist-card:hover .Playlist-title{color:#fff;text-decoration:underline}.Playlist-card:hover .Playlist-title.Playlist-lightMode{color:#000}@media (max-width:759px){.Playlist-card{margin-right:57px}}@media (min-width:760px){.Playlist-card{flex-grow:1;margin-left:0;margin-right:0;min-width:0;padding:0 15px;width:33.33%}}@media (max-width:1019px){.Playlist-card{display:flex;flex:none;flex-direction:column}}@media (min-width:1020px){.Playlist-card{margin:0;padding:15px 0;position:relative;width:100%}.Playlist-mobileWrapper .Playlist-card:last-child{padding-right:0}}.Playlist-watchVideoImage{display:block;height:0;padding-bottom:56.25%;position:relative;width:100%}.Playlist-watchVideoImage:after{background-image:linear-gradient(-180deg,#002f6c00,#0012297d 54%,#000c);content:"";display:block;padding-bottom:calc(56.25% + 2px);position:absolute;right:0;top:0;width:100%;z-index:1}.Playlist-playingVideoImage{border:2px solid #fff;display:block;height:0;padding-bottom:56.25%;position:relative;width:100%}.Playlist-playingVideoImage:after{background-image:linear-gradient(-180deg,#002f6c00,#0012297d 54%,#000c);content:"";display:block;padding-bottom:calc(56.25% + 2px);position:absolute;right:0;top:0;width:100%;z-index:1}.Playlist-playingVideoImage:before{border-bottom:12px solid #fff;border-left:8px solid #0000;border-right:8px solid #0000;content:"";height:0;left:45%;position:absolute;top:-12px;width:0}.Playlist-playingVideoImage:after{background:none;border:2px solid #fff;margin-top:-2px;width:99%}@media (min-width:1020px){.Playlist-playingVideoImage:before{border-bottom:8px solid #0000;border-right:12px solid #fff;border-top:8px solid #0000;left:-20px;top:45%}}.Playlist-lightMode.Playlist-playingVideoImage{border:2px solid #000}.Playlist-lightMode.Playlist-playingVideoImage:before{border-bottom:12px solid #000;border-left:8px solid #0000;border-right:8px solid #0000;content:"";height:0;left:45%;position:absolute;top:-12px;width:0}.Playlist-lightMode.Playlist-playingVideoImage:after{background:none;border:2px solid #000;margin-top:-2px;width:99%}@media (min-width:1020px){.Playlist-lightMode.Playlist-playingVideoImage:before{border-bottom:8px solid #0000;border-right:12px solid #000;border-top:8px solid #0000;left:-20px;top:45%}}.Playlist-title{color:#7b7b7b;font-size:17px;font-weight:600;line-height:18px;padding-top:10px}.Playlist-playing .Playlist-title{color:#fff}.Playlist-playing .Playlist-title.Playlist-lightMode{color:#000}@media (max-width:759px){.Playlist-title{padding-top:18px}}@media (min-width:1020px){.Playlist-title{font-size:16px;line-height:20px;margin-left:174px;margin-top:15px;padding-top:0;position:absolute;top:0}}@media (min-width:1180px){.Playlist-title{margin-left:186px}}@media (min-width:1340px){.Playlist-title{font-size:18px;margin-left:240px}}.Playlist-buttonWrapper{padding:0;width:100%}@media (min-width:1020px){.Playlist-buttonWrapper{width:146px}}@media (min-width:1180px){.Playlist-buttonWrapper{width:168px}}@media (min-width:1340px){.Playlist-buttonWrapper{width:208px}}.Playlist-toutTime{background:none;bottom:2px;color:#fffc;font-size:12px;font-weight:700;left:12px;letter-spacing:.12em;line-height:15px;padding:0;position:absolute;z-index:2}.Playlist-toutTimeLabel{color:#fcb700;font-size:12px;font-weight:800;letter-spacing:1.44px;line-height:15px;margin-right:4px}@media (min-width:1020px){.Playlist-liveEventContainer .Playlist-container{flex-direction:row;height:unset;margin:0 -15px;padding-left:unset;padding-top:25px}.Playlist-liveEventContainer .Playlist-card{flex-grow:1;margin-bottom:40px;margin-left:0;margin-right:0;min-width:0;padding:0 15px;position:unset;width:33.33%}.Playlist-liveEventContainer .Playlist-buttonWrapper{width:100%}.Playlist-liveEventContainer .Playlist-title{font-size:17px;font-weight:600;line-height:18px;margin-left:unset;margin-top:unset;padding-top:10px;position:unset;top:unset}.Playlist-liveEventContainer .Playlist-playingVideoImage:before{border-bottom:12px solid #000;border-left:8px solid #0000;border-right:8px solid #0000;content:"";height:0;left:45%;position:absolute;top:-20px;width:0}.Playlist-liveEventContainer .Playlist-card:last-child{padding:0 15px}}.FeaturedVideoModule-container{background-color:#171717;margin:initial;margin-top:-1.2rem;padding:0 20px}@media (min-width:760px){.FeaturedVideoModule-container{display:flex}}@media (max-width:759px){.FeaturedVideoModule-mobileWrapper .FeaturedVideoModule-container{margin-right:0}}.FeaturedVideoModule-lightMode{background:#f7f7f7}.FeaturedVideoModule-grid{margin-left:auto;margin-right:auto;max-width:1290px;overflow:visible;width:100%}.FeaturedVideoModule-contentWrapper{margin:0 auto;max-width:100%}@media (min-width:760px){.FeaturedVideoModule-contentWrapper{max-width:678px}}@media (min-width:1020px){.FeaturedVideoModule-contentWrapper{max-width:960px}}@media (min-width:1340px){.FeaturedVideoModule-contentWrapper{max-width:1290px}}@media (min-width:760px){.FeaturedVideoModule-contentWrapper{padding-bottom:0}}@media (min-width:1340px){.FeaturedVideoModule-contentWrapper{padding-bottom:0}}@media (min-width:1020px){.FeaturedVideoModule-content{display:flex;padding-bottom:60px}}@media (min-width:1340px){.FeaturedVideoModule-content{padding-bottom:80px}}.FeaturedVideoModule-videoPlayerContainer{margin:0 -20px}@media (min-width:760px){.FeaturedVideoModule-videoPlayerContainer{margin:0}}@media (min-width:1020px){.FeaturedVideoModule-videoPlayerContainer{flex-grow:0;flex-shrink:0;max-width:57.14286%;min-width:57.14286%}}@media (max-width:759px){.FeaturedVideoModule-playlistContainer{margin-left:-20px;width:100vw}}@media (min-width:1020px){.FeaturedVideoModule-playlistContainer{flex-grow:0;flex-shrink:0;max-width:42.85714%;min-width:42.85714%}}@media (min-width:760px){.FeaturedVideoModule-liveEventContainer .FeaturedVideoModule-playlistContainer{max-width:unset;min-width:unset}.FeaturedVideoModule-liveEventContainer .FeaturedVideoModule-content{display:block}}@media (min-width:1020px){.FeaturedVideoModule-liveEventContainer .FeaturedVideoModule-content{padding-bottom:unset}}@media (min-width:1340px){.FeaturedVideoModule-liveEventContainer .FeaturedVideoModule-content{padding-bottom:unset}}@media (min-width:1020px){.FeaturedVideoModule-liveEventContainer .FeaturedVideoModule-videoPlayerContainer{max-width:unset;min-width:unset}}.SmallStockQuote-container{display:block;height:100%;position:relative;width:100%}.SmallStockQuote-container a,.SmallStockQuote-container a:focus,.SmallStockQuote-container a:hover{text-decoration:none!important}.SmallStockQuote-articleContainer{flex-shrink:1;font-family:Proxima Nova,Helvetica,Arial,sans-serif}.SmallStockQuote-articleContainer a,.SmallStockQuote-articleContainer a:focus,.SmallStockQuote-articleContainer a:hover{text-decoration:none!important}@media (min-width:760px){.SmallStockQuote-articleContainer{width:442px}}@media (min-width:1020px){.SmallStockQuote-articleContainer{margin-left:0!important;width:460px}}@media (min-width:1340px){.SmallStockQuote-articleContainer{width:410px}}.SmallStockQuote-watchListContainer a,.SmallStockQuote-watchListContainer a:focus,.SmallStockQuote-watchListContainer a:hover{text-decoration:none!important}.SmallStockQuote-main{background-color:#fff;border:1px dashed #b9c7d5;border-top:6px solid #9b9b9b;padding:10px 20px 20px}.SmallStockQuote-watchListContainer .SmallStockQuote-main{padding-top:25px}@media (min-width:1340px){.SmallStockQuote-watchListContainer .SmallStockQuote-main{padding-bottom:15px}}.SmallStockQuote-articleContainer .SmallStockQuote-main{height:143px}@media (min-width:760px){.SmallStockQuote-articleContainer .SmallStockQuote-main{height:199px;padding-top:20px}}@media (min-width:1020px){.SmallStockQuote-articleContainer .SmallStockQuote-main{height:161px;padding-top:10px}}@media (min-width:1340px){.SmallStockQuote-articleContainer .SmallStockQuote-main{height:143px}}.SmallStockQuote-top{display:flex;justify-content:space-between;margin-bottom:10px;min-height:41px}.SmallStockQuote-data{color:#000;display:flex;flex-wrap:wrap;justify-content:space-between}.SmallStockQuote-last{min-height:55px;width:100%}@media (min-width:1340px){.SmallStockQuote-watchListContainer .SmallStockQuote-last{width:auto}}.SmallStockQuote-articleContainer .SmallStockQuote-last{width:auto}.SmallStockQuote-change,.SmallStockQuote-percChange{min-height:43px}.SmallStockQuote-posMain{border-top:6px solid #008456}.SmallStockQuote-negMain{border-top:6px solid #ce2b2b}.SmallStockQuote-marketInfo{display:flex;justify-content:flex-start;max-width:262px}@media (min-width:760px){.SmallStockQuote-marketInfo{max-width:none}}.SmallStockQuote-marketValue{font-size:28px;font-weight:600}@media (min-width:760px){.SmallStockQuote-articleContainer .SmallStockQuote-marketValue{font-size:39px}}@media (min-width:1020px){.SmallStockQuote-articleContainer .SmallStockQuote-marketValue{font-size:36px;line-height:30px}}@media (min-width:1340px){.SmallStockQuote-articleContainer .SmallStockQuote-marketValue{font-size:32px}}.SmallStockQuote-arrow{border-bottom:25px solid #008456;border-left:13px solid #0000;border-right:13px solid #0000;height:0;margin-left:5px;overflow:hidden;position:relative;top:5px;width:0}@media (min-width:760px){.SmallStockQuote-arrow{border-bottom:36px solid #008456;border-left:20px solid #0000;border-right:20px solid #0000}}@media (min-width:1020px){.SmallStockQuote-arrow{border-bottom:30px solid #008456;border-left:16px solid #0000;border-right:16px solid #0000}}@media (min-width:1340px){.SmallStockQuote-arrow{border-bottom:25px solid #008456;border-left:13px solid #0000;border-right:13px solid #0000}}.SmallStockQuote-label{color:#8b8b8b;font-size:10px;font-weight:600;letter-spacing:1px}@media (min-width:760px){.SmallStockQuote-articleContainer .SmallStockQuote-label{font-size:14px;letter-spacing:1.39px}}@media (min-width:1340px){.SmallStockQuote-articleContainer .SmallStockQuote-label{font-size:12px;letter-spacing:1.2px}}.SmallStockQuote-value{color:#008456;font-size:20px;font-weight:400}@media (min-width:760px){.SmallStockQuote-articleContainer .SmallStockQuote-value{font-size:27.8px}}@media (min-width:1020px){.SmallStockQuote-articleContainer .SmallStockQuote-value{font-size:24.7px;line-height:30px}}@media (min-width:1340px){.SmallStockQuote-articleContainer .SmallStockQuote-value{font-size:27px}}.SmallStockQuote-negValue{color:#ce2b2b}.SmallStockQuote-negArrow{border-bottom:0;border-top:25px solid #ce2b2b;bottom:0}@media (min-width:760px){.SmallStockQuote-negArrow{border-top:36px solid #ce2b2b}}@media (min-width:1020px){.SmallStockQuote-negArrow{border-top:30px solid #ce2b2b}}@media (min-width:1340px){.SmallStockQuote-negArrow{border-top:25px solid #ce2b2b}}.SmallStockQuote-symbol{color:#000;font-size:28px;font-weight:700;letter-spacing:1.75px;text-transform:uppercase}.SmallStockQuote-symbol:hover,a:focus .SmallStockQuote-symbol,a:hover .SmallStockQuote-symbol{color:#2077b6}@media (min-width:760px){.SmallStockQuote-articleContainer .SmallStockQuote-symbol{font-size:39px;letter-spacing:2.43px}}@media (min-width:1020px){.SmallStockQuote-articleContainer .SmallStockQuote-symbol{font-size:36px;letter-spacing:2.24px}}@media (min-width:1340px){.SmallStockQuote-articleContainer .SmallStockQuote-symbol{font-size:32px;letter-spacing:2px}}.SmallStockQuote-name{color:#000;flex:0 1 auto;font-size:16px;font-weight:400;letter-spacing:.84px;margin-left:10px;margin-top:12px;max-width:200px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}@media (min-width:760px){.SmallStockQuote-name{font-size:22px;letter-spacing:1.17px;margin-top:20px;max-width:175px}}@media (min-width:1020px){.SmallStockQuote-name{font-size:21px;letter-spacing:1.12px;margin-top:12px;max-width:200px}}@media (min-width:1340px){.SmallStockQuote-name{font-size:19px;letter-spacing:1px;max-width:150px}}.PeopleCard-card{display:block;height:100%;position:relative;width:100%}.PeopleCard-peopleImage{background-position:50%;background-size:cover;height:0;padding-bottom:75%;width:100%}.PeopleCard-name{background-color:#071d39;bottom:0;color:#fff;font-size:10px;font-weight:700;line-height:10px;min-height:35px;padding:10px;position:absolute;width:100%}@media (min-width:760px){.PeopleCard-name{font-size:16px;line-height:16px}}@media (min-width:1340px){.PeopleCard-name{font-size:20px;line-height:20px}}.PeopleCard-card:hover .PeopleCard-description{color:#fff;max-height:160px;padding-top:10px;transition:max-height 1s ease-out,color .5s ease-out}.PeopleCard-description{color:#fff0;font-size:12px;font-weight:500;line-height:14px;max-height:0;overflow:hidden;transition:all .3s}.ClipCard-container{width:100%}.ClipCard-mediaContainer{position:relative}.ClipCard-mediaContainer:before{background-color:#fcb700;content:"";height:6px;left:0;position:absolute;top:0;width:100%}.ClipCard-image{padding-bottom:56%;width:100%}.ClipCard-image:after{content:"";display:block;left:0;padding-bottom:25%}.ClipCard-image:after,.ClipCard-timeContainer{background:linear-gradient(0deg,#000,#0000);bottom:0;position:absolute;width:100%}.ClipCard-timeContainer{height:30px;letter-spacing:1.44px;padding-left:10px;padding-top:10px}.ClipCard-time{color:#fff9;font-weight:600}.ClipCard-time,.ClipCard-timeLabel{bottom:10px;font-size:12px;position:relative}.ClipCard-timeLabel{color:#fcb700;font-weight:800;margin-right:10px}.ClipCard-title{background-color:#fff;color:#000;font-size:18px;font-weight:600;line-height:22px;padding-top:17px}a:focus .ClipCard-title,a:hover .ClipCard-title{font-weight:700;text-decoration:underline}.WatchListCard-description{color:#000;display:block;font-size:14px;font-weight:500;line-height:18px;padding-top:20px;text-align:left}.WatchListCard-description:hover{color:#000;text-decoration:underline}.VideoBreakerFeatured-containerFluidWidths{margin:0 auto;width:100%}@media (min-width:1020px){.VideoBreakerFeatured-containerFluidWidths{max-width:960px}}@media (min-width:1340px){.VideoBreakerFeatured-containerFluidWidths{max-width:1290px}}.VideoBreakerFeatured-containerWidth100{width:100%}.VideoBreakerFeatured-page{display:block;margin-bottom:25px;overflow:visible}@media (min-width:760px){.VideoBreakerFeatured-page{margin-bottom:28px}}.VideoBreakerFeatured-advertorialPage{display:block;overflow:visible}.VideoBreakerFeatured-pageGrid{margin-left:auto;margin-right:auto;max-width:1290px;overflow:visible;width:100%}.VideoBreakerFeatured-pageWrapper{margin:0 auto;max-width:100%}@media (min-width:760px){.VideoBreakerFeatured-pageWrapper{max-width:678px}}@media (min-width:1020px){.VideoBreakerFeatured-pageWrapper{max-width:960px}}@media (min-width:1340px){.VideoBreakerFeatured-pageWrapper{max-width:1290px}}@media (min-width:760px){.VideoBreakerFeatured-pageWrapper{max-width:100%!important}}.VideoBreakerFeatured-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.VideoBreakerFeatured-pageRow{padding-left:0;padding-right:0}}@media (min-width:1020px){.VideoBreakerFeatured-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}}@media (min-width:1020px) and (min-width:760px){.VideoBreakerFeatured-pageRow{padding-left:0;padding-right:0}}@media (max-width:1019px){.VideoBreakerFeatured-pageRow{margin:0;padding:0}}@media (min-width:360px) and (max-width:759px){.VideoBreakerFeatured-pageRow.VideoBreakerFeatured-containerFluidWidths{padding:0 21px}}@media (min-width:760px) and (max-width:1019px){.VideoBreakerFeatured-pageRow.VideoBreakerFeatured-containerFluidWidths{padding:0 45px}}.VideoBreakerFeatured-pageRowFlex{display:flex}.VideoBreakerFeatured-rowUnderAd{margin-top:-29px}@media (min-width:1020px){.VideoBreakerFeatured-rowUnderAd{margin-top:-50px}}@media (min-width:1340px){.VideoBreakerFeatured-rowUnderAd{margin-top:-44px}}.VideoBreakerFeatured-rowWithBackground{background:#cfd8e2;position:relative}.VideoBreakerFeatured-rowWithBackground:after,.VideoBreakerFeatured-rowWithBackground:before{background:#cfd8e2;content:"";display:block;height:100%;position:absolute;width:25vw}.VideoBreakerFeatured-rowWithBackground:before{right:100%;top:0}.VideoBreakerFeatured-rowWithBackground:after{left:100%;top:0}.VideoBreakerFeatured-isAdvertorial{display:block;margin-bottom:50px!important}.VideoBreakerFeatured-flipRowOrder .VideoBreakerFeatured-col:first-child{order:2}@media (min-width:1020px){.VideoBreakerFeatured-flipRowOrder .VideoBreakerFeatured-col:first-child{order:1}}.VideoBreakerFeatured-flipRowOrder .VideoBreakerFeatured-col:last-child{order:1}@media (min-width:1020px){.VideoBreakerFeatured-flipRowOrder .VideoBreakerFeatured-col:last-child{order:2}}.VideoBreakerFeatured-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.VideoBreakerFeatured-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.VideoBreakerFeatured-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.VideoBreakerFeatured-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.VideoBreakerFeatured-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.VideoBreakerFeatured-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.VideoBreakerFeatured-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.VideoBreakerFeatured-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}.VideoBreakerFeatured-containerFluidWidths .VideoBreakerFeatured-col{max-width:678px!important;min-width:678px}}@media (min-width:760px){.VideoBreakerFeatured-col-3{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.VideoBreakerFeatured-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.VideoBreakerFeatured-col-3{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.VideoBreakerFeatured-col-3{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.VideoBreakerFeatured-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.VideoBreakerFeatured-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}.VideoBreakerFeatured-col-3:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.VideoBreakerFeatured-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}@media (min-width:760px){.VideoBreakerFeatured-col-6{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.VideoBreakerFeatured-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.VideoBreakerFeatured-col-6{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.VideoBreakerFeatured-col-6{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.VideoBreakerFeatured-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.VideoBreakerFeatured-col-6{flex-grow:0;flex-shrink:0;margin-left:0;margin-right:0;max-width:calc(44.44444% - 16.66667px);min-width:calc(44.44444% - 16.66667px)}.VideoBreakerFeatured-col-6:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.VideoBreakerFeatured-col-6{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(50% - 15px);min-width:calc(50% - 15px)}}.VideoBreakerFeatured-col-9 .BrandBanner-container{margin-bottom:30px;z-index:99}@media (min-width:1340px){.VideoBreakerFeatured-col-9 .BrandBanner-container{margin-left:calc(-50vw - -538.5px)}}@media (min-width:760px){.VideoBreakerFeatured-col-9 .BrandBanner-container{margin-bottom:-100px;margin-top:50px}.VideoBreakerFeatured-col-9{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.VideoBreakerFeatured-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.VideoBreakerFeatured-col-9{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.VideoBreakerFeatured-col-9{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.VideoBreakerFeatured-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.VideoBreakerFeatured-col-9{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.VideoBreakerFeatured-col-9:last-child{margin-right:0}}@media (min-width:1340px){.VideoBreakerFeatured-col-9{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}.VideoBreakerFeatured-col-9.VideoBreakerFeatured-article{flex-grow:0;flex-shrink:0;margin-left:calc(8.33333% + 2.5px);max-width:calc(58.33333% - 12.5px);min-width:calc(58.33333% - 12.5px)}}@media (min-width:760px){.VideoBreakerFeatured-col-12{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.VideoBreakerFeatured-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.VideoBreakerFeatured-col-12{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.VideoBreakerFeatured-col-12{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.VideoBreakerFeatured-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.VideoBreakerFeatured-col-12{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.VideoBreakerFeatured-col-12:last-child{margin-right:0}}@media (min-width:1340px){.VideoBreakerFeatured-col-12{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}.VideoBreakerFeatured-col-full{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.VideoBreakerFeatured-col-full .MyComponentName-container{width:100vw}@media (min-width:1340px){.VideoBreakerFeatured-col-full .MyComponentName-container{max-width:none}}.VideoBreakerFeatured-col-full:last-child{margin-right:0}.VideoBreakerFeatured-clear-col-padding{padding-bottom:0;padding-top:0}.VideoBreakerFeatured-paddedWrapper{padding-bottom:15px;padding-top:15px}@media (min-width:1020px){.VideoBreakerFeatured-paddedWrapper{padding-bottom:20px;padding-top:25px}.VideoBreakerFeatured-hasBanner{margin-bottom:130px}}.VideoBreakerFeatured-sidebar{flex-grow:0;flex-shrink:0;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.VideoBreakerFeatured-sidebar{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.VideoBreakerFeatured-sidebar{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.VideoBreakerFeatured-sidebar{max-width:100%;min-width:100%}}@media (min-width:1340px){.VideoBreakerFeatured-sidebar{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:360px){.VideoBreakerFeatured-sidebar{min-width:100%}}@media (min-width:760px){.VideoBreakerFeatured-sidebar{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}@media (min-width:1020px){.VideoBreakerFeatured-sidebar{flex-grow:0;flex-shrink:0;margin-bottom:40px;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}}@media (min-width:1340px){.VideoBreakerFeatured-sidebar{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}.VideoBreakerFeatured-sidebarLeft{flex-grow:0;flex-shrink:0;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.VideoBreakerFeatured-sidebarLeft{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.VideoBreakerFeatured-sidebarLeft{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.VideoBreakerFeatured-sidebarLeft{max-width:100%;min-width:100%}}@media (min-width:1340px){.VideoBreakerFeatured-sidebarLeft{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:360px){.VideoBreakerFeatured-sidebarLeft{min-width:100%}}@media (min-width:760px){.VideoBreakerFeatured-sidebarLeft{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}@media (min-width:1020px){.VideoBreakerFeatured-sidebarLeft{flex-grow:0;flex-shrink:0;margin-bottom:40px;margin-left:0;margin-right:30px;max-width:calc(22.22222% - 23.33333px);min-width:calc(22.22222% - 23.33333px);z-index:1}}@media (min-width:1340px){.VideoBreakerFeatured-sidebarLeft{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}@media (min-width:1020px){.VideoBreakerFeatured-sidebarLeftNav{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}}@media (min-width:1340px){.VideoBreakerFeatured-sidebarLeftNav{flex-grow:0;flex-shrink:0;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}.VideoBreakerFeatured-sidebarPro{margin-left:0;margin-right:30px}.VideoBreakerFeatured-AdvertorialStory-ArticleHeader-1{display:hide}.VideoBreakerFeatured-col{margin-bottom:30px;padding-bottom:15px;padding-top:15px}@media (min-width:1020px){.VideoBreakerFeatured-col{padding-bottom:20px;padding-top:25px}}@media (max-width:759px){.VideoBreakerFeatured-col{overflow:hidden}}@media (min-width:760px){.VideoBreakerFeatured-col-9{padding-bottom:5px}}@media (min-width:1020px){.VideoBreakerFeatured-col-9{padding-bottom:20px}}@media (min-width:1340px){.VideoBreakerFeatured-col-9{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}}.VideoBreakerFeatured-videoBreakerGateContainer{background-color:#00081a}.VideoBreakerFeatured-videoBreakerGateContainer>div{margin:0 auto;max-width:1290px}
.FeaturedBreaker-featuredBreaker{margin-bottom:30px;overflow:hidden;position:relative;width:100%}.FeaturedBreaker-wrapper{position:relative}@media (min-width:760px){.FeaturedBreaker-wrapper{margin:initial}}@media (min-width:1020px){.FeaturedBreaker-wrapper{padding:initial}}.FeaturedBreaker-heading{border-top:6px solid #002f6c;margin-left:20px;padding-top:15px;width:calc(100% - 20px)}@media (min-width:760px){.FeaturedBreaker-heading{margin-left:0;padding-left:40px;padding-top:15px;width:calc(75% - 75px)}}@media (min-width:1020px){.FeaturedBreaker-heading{font-size:30px;width:45%}}@media (min-width:1180px){.FeaturedBreaker-heading{font-size:30px;padding-left:calc(50vw - 538.5px)}}@media (min-width:1340px){.FeaturedBreaker-heading{margin-bottom:50px;padding-left:calc(50vw - 645px)}}.FeaturedBreaker-headingLink{color:#002f6c}.FeaturedBreaker-headingLink:hover{color:#2077b6}.FeaturedBreaker-headingText{color:#002f6c;font-size:28px;font-weight:800;line-height:1.24;margin:0;overflow-wrap:break-word;padding-right:40px;text-transform:uppercase}@media (min-width:760px){.FeaturedBreaker-headingText{line-height:30px;padding-right:0}}@media (min-width:1020px){.FeaturedBreaker-headingText{font-size:32px}}@media (min-width:1340px){.FeaturedBreaker-headingText{max-width:320px}}.FeaturedBreaker-headingImage{max-height:32px;max-width:200px}.FeaturedBreaker-headingImage img{max-height:32px;max-width:100%}@media (min-width:760px){.FeaturedBreaker-headingImage,.FeaturedBreaker-headingImage img{max-height:65px}}.FeaturedBreaker-airTime{color:#2e2e2e;display:block;font-size:14px;font-weight:500;letter-spacing:1.17px;line-height:17px;margin-top:10px}@media (min-width:760px){.FeaturedBreaker-airTime{margin-top:10px}}.FeaturedBreaker-eventTime{color:#747474;font-size:14px;font-weight:600;letter-spacing:.77px;line-height:1.2;margin:10px 0 0}.FeaturedBreaker-eventTime time{color:#002f6c;letter-spacing:.88px}@media (min-width:760px){.FeaturedBreaker-eventTime{margin-top:10px}}.FeaturedBreaker-arrowContainer{height:16px;margin-top:20px;padding-left:20px;position:relative;text-align:left;z-index:99}@media (min-width:760px){.FeaturedBreaker-arrowContainer{margin-bottom:0;padding-left:40px;width:440px}}@media (min-width:1020px){.FeaturedBreaker-arrowContainer{padding-left:40px}}@media (min-width:1340px){.FeaturedBreaker-arrowContainer{left:calc(50vw - 315px);margin-top:0;position:absolute;top:30px;width:auto}}.FeaturedBreaker-arrow{color:#071d39;font-size:70px;height:100%;overflow:hidden;transition:opacity .2s ease-in-out}.FeaturedBreaker-arrow:hover{color:#fcb700}.FeaturedBreaker-arrow span{display:block;height:100%}.FeaturedBreaker-arrow span:before{display:block;line-height:16px}.FeaturedBreaker-prevArrow{margin-right:15px}@media (min-width:760px){.FeaturedBreaker-prevArrow{margin-right:25px}}.FeaturedBreaker-prevArrowInactive,.FeaturedBreaker-prevArrowInactive:hover{color:#b9c7d5}.FeaturedBreaker-nextArrow{margin-left:15px}@media (min-width:760px){.FeaturedBreaker-nextArrow{margin-left:25px}}.FeaturedBreaker-nextArrowInactive,.FeaturedBreaker-nextArrowInactive:hover{color:#b9c7d5}.FeaturedBreaker-slideContainer{margin-top:20px;position:relative;white-space:nowrap}@media (min-width:1020px){.FeaturedBreaker-slideContainer{width:100vw}}@media (min-width:1180px){.FeaturedBreaker-slideContainer{width:100vw}}@media (min-width:1340px){.FeaturedBreaker-slideContainer{margin-top:0;width:100vw}}.FeaturedBreaker-slideRail{transition:transform .5s;white-space:nowrap}.FeaturedBreaker-leftSlide,.FeaturedBreaker-rightSlide{display:inline-block;height:185px;overflow:hidden;position:relative;width:75%}@media (min-width:760px){.FeaturedBreaker-leftSlide,.FeaturedBreaker-rightSlide{height:215px}}@media (min-width:1020px){.FeaturedBreaker-leftSlide,.FeaturedBreaker-rightSlide{height:215px;width:50%}}@media (min-width:1340px){.FeaturedBreaker-leftSlide,.FeaturedBreaker-rightSlide{height:225px}}@media (min-width:1020px){.FeaturedBreaker-leftSlide>div>div{padding-left:calc(50vw - 480px)}}@media (min-width:1180px){.FeaturedBreaker-leftSlide>div>div{padding-left:calc(50vw - 538.5px)}}@media (min-width:1340px){.FeaturedBreaker-leftSlide>div>div{padding-left:calc(50vw - 645px)}}.FeaturedBreaker-rightSlide{top:-27px}@media (min-width:760px){.FeaturedBreaker-rightSlide{top:-112px}}@media (min-width:1340px){.FeaturedBreaker-rightSlide{top:-100px}}@media (min-width:1020px){.FeaturedBreaker-rightSlide>div>div{padding-left:67.5px;padding-right:calc(50vw - 480px)}}@media (min-width:1180px){.FeaturedBreaker-rightSlide>div>div{padding-left:77.25px;padding-right:calc(50vw - 538.5px)}}@media (min-width:1340px){.FeaturedBreaker-rightSlide>div>div{padding-left:125px;padding-right:calc(50vw - 645px)}}.FeaturedBreaker-item{background-color:#071d39;background-position:20px;background-position-x:0;background-position-y:0;background-size:cover;display:inline-block;height:185px;padding:20px 45px;position:relative;vertical-align:top;white-space:normal;width:100%}@media (min-width:760px){.FeaturedBreaker-item{background-position-x:100px}}@media (min-width:1340px){.FeaturedBreaker-item{background-position-x:145px}}.FeaturedBreaker-item:hover .FeaturedBreaker-itemTitle{text-decoration:underline}.FeaturedBreaker-item>div:first-child{border-top:0}.FeaturedBreaker-item:after{background:linear-gradient(90deg,#071d39 0,#071d39 30%,#071d3930);content:"";height:100%;left:0;position:absolute;top:0;width:100%;z-index:1}.FeaturedBreaker-item .PlayButton-container{border:none;top:0;z-index:2}@media (min-width:760px){.FeaturedBreaker-item{height:215px;padding:20px 40px}}@media (min-width:1020px){.FeaturedBreaker-item{height:215px}}@media (min-width:1340px){.FeaturedBreaker-item{height:225px;padding:20px 75px}}.FeaturedBreaker-itemWrapper{display:flex;flex-direction:column;height:100%;justify-content:center}.FeaturedBreaker-itemTitle{color:#fff;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:18px;font-weight:500;line-height:23px;max-height:130px;position:relative;text-shadow:0 0 6px #333;z-index:2}@media (min-width:760px){.FeaturedBreaker-itemTitle{font-size:22px;font-weight:600;line-height:28px;margin-top:0;max-height:100%;max-width:70%}}@media (min-width:1340px){.FeaturedBreaker-itemTitle{font-size:26px;line-height:38px;max-width:60%}}.FeaturedBreaker-itemAuthor{color:#fcb700;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:12px;font-weight:500;letter-spacing:.46px;line-height:12px;margin-top:20px;position:relative;text-shadow:0 0 6px #333;z-index:2}
@media (min-width:360px) and (max-width:759px){.Layout-layout{width:100%}}@media (min-width:760px){.Layout-layout{display:flex;flex-wrap:wrap}}
.CNBCFooter-footer{background:#001e5a;padding:18px 20px 63px;position:relative;z-index:99}@media (min-width:760px){.CNBCFooter-footer{padding:20px 0 25px}}@media (min-width:1020px){.CNBCFooter-footer{padding:36px 0 25px}}.CNBCFooter-wrapper{display:grid;grid-template-columns:repeat(2,1fr);margin:0 auto;max-width:100%}@media (min-width:760px){.CNBCFooter-wrapper{max-width:678px}}@media (min-width:1020px){.CNBCFooter-wrapper{max-width:960px}}@media (min-width:1340px){.CNBCFooter-wrapper{max-width:1290px}}@media (min-width:760px){.CNBCFooter-wrapper{grid-template-columns:repeat(3,1fr)}}@media (min-width:1340px){.CNBCFooter-wrapper{grid-template-columns:repeat(2,.67fr) .65fr repeat(2,1fr)}}.CNBCFooter-border{border-bottom:1px solid #ffffff80;grid-column:1/-1;margin:0 0 30px;padding:0 0 14px}@media (min-width:760px){.CNBCFooter-border{margin:0 0 32px;padding:0 0 12px}}@media (min-width:1020px){.CNBCFooter-border{margin:0 0 25px}}.CNBCFooter-logo{display:inline-block}.CNBCFooter-logoImg{width:130px}.CNBCFooter-social{display:flex;grid-area:4/1/auto/-1;justify-content:center;margin:0 0 55px}@media (min-width:760px){.CNBCFooter-social{grid-area:auto/2/auto/-1;justify-content:end;margin:0}}.CNBCFooter-socialItem{align-items:center;display:flex;font-size:22px;margin:0 10px}.icon-social_apple_news:before{font-size:25px}.CNBCFooter-list{display:grid;grid-column:1/-1;grid-template-columns:subgrid;margin:0 0 45px;row-gap:10px}@media (min-width:760px){.CNBCFooter-list{grid-auto-rows:19px;margin:0 0 30px}}@media (min-width:1020px){.CNBCFooter-list{grid-auto-rows:26px}}@media (min-width:1340px){.CNBCFooter-list{grid-auto-rows:36px;grid-column:span 3;row-gap:0}}.CNBCFooter-listItem{font-size:16px;font-weight:500}@media (min-width:1020px){.CNBCFooter-listItem{font-size:14px}}.CNBCFooter-section{color:#fff;display:grid;grid-column:1/-1;margin:0 0 40px;row-gap:18px}@media (min-width:760px){.CNBCFooter-section{column-gap:70px;grid-template-columns:repeat(2,1fr)}}@media (min-width:1020px){.CNBCFooter-section{grid-column:span 3;grid-template-columns:subgrid}}@media (min-width:1340px){.CNBCFooter-section{grid-column:4/-1;margin:-10px 0 40px;row-gap:22px}}@media (min-width:1020px) and (max-width:1339px){.CNBCFooter-sectionItem:first-child{grid-area:1/1/auto/span 2}}.CNBCFooter-sectionItem:nth-child(2){grid-area:3/auto}@media (min-width:760px){.CNBCFooter-sectionItem:nth-child(2){grid-area:1/2/span 2/-1;justify-self:end}}.CNBCFooter-sectionTitle{align-items:center;display:flex;font-size:18px;font-weight:700;margin:0}.CNBCFooter-sectionTitle:has(+.CNBCFooter-sectionText){margin:0 0 3px}.CNBCFooter-sectionTitle:has(+.CNBCFooter-sectionLink){margin:0 0 10px}@media (min-width:760px){.CNBCFooter-sectionTitle{height:40px}}@media (min-width:1020px){.CNBCFooter-sectionTitle{font-size:24px}}.CNBCFooter-sectionIcon{font-size:40px;margin:0 8px 0 0}@media (min-width:760px){.CNBCFooter-sectionIcon{margin:0 8px 0 -50px}}.CNBCFooter-sectionText{font-family:Lyon,Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42;margin:0 0 20px}.CNBCFooter-sectionLink{align-items:center;border:1px solid #fff;display:inline-flex;font-size:12px;font-weight:600;height:40px;justify-content:center;letter-spacing:1.1px;padding:0 28px;text-transform:uppercase;width:100%}.CNBCFooter-sectionLink:has(+.CNBCFooter-sectionSubText){margin:0 0 15px}@media (min-width:1020px){.CNBCFooter-sectionLink{width:auto}}.CNBCFooter-sectionLink:hover{background:#fcb700;border:1px solid #fcb700;color:#071d39}.CNBCFooter-legal{margin:0 0 25px}@media (min-width:760px){.CNBCFooter-legal{align-items:center;display:flex;grid-column:1/-1}}.CNBCFooter-info,.CNBCFooter-reutersInfo,.CNBCFooter-sectionSubText{color:#ffffffb3;font-size:10px;grid-column:1/-1;letter-spacing:.5px;margin:0 0 15px}.CNBCFooter-info:has(a),.CNBCFooter-reutersInfo:has(a),.CNBCFooter-sectionSubText:has(a){align-items:center;display:flex}.CNBCFooter-info:last-child,.CNBCFooter-reutersInfo:last-child,.CNBCFooter-sectionSubText:last-child{margin:0}.CNBCFooter-info a,.CNBCFooter-info a:hover,.CNBCFooter-reutersInfo a,.CNBCFooter-reutersInfo a:hover,.CNBCFooter-sectionSubText a,.CNBCFooter-sectionSubText a:hover{color:currentcolor}.CNBCFooter-reutersInfo{margin:0 0 10px}.CNBCFooter-reutersLink{display:inline-block;font-size:14px;font-weight:500;grid-column:1/-1;margin:0 0 8px}.CNBCFooter-reutersLogo{width:65px}@media (min-width:760px){.CNBCFooter-legal{align-items:center;display:flex}}.CNBCFooter-legalItem{align-items:center;display:flex;font-size:14px;font-weight:500;margin:0 0 10px}@media (min-width:760px){.CNBCFooter-legalItem{margin:0}.CNBCFooter-legalItem:not(:last-child):after{color:#fff;content:"|";font-size:15px;margin:0 10px -1px}}.CNBCFooter-legalIcon{display:none;margin:0 5px -1px 0;width:26px}.CNBCFooter-legalIcon.CNBCFooter-US{display:initial}
@charset "UTF-8";.Modal-modalBackground{background:#000000b3;height:100%;left:0;overflow-y:auto;position:fixed;top:0;transition:background-color .4s;width:100%;z-index:100001}.Modal-bottomModal.Modal-modal{background:#f8f8f8;border-radius:3px;bottom:0;box-shadow:5px 5px 20px #1717171a;display:inline-block;height:528px;left:0;margin-top:0!important;max-width:100%;position:fixed;top:auto;transform:none;width:100%}@media (max-width:1019px){.Modal-bottomModal.Modal-modal{height:642px}}@media (max-width:759px){.Modal-bottomModal.Modal-modal{height:100%;position:relative;top:0}}.Modal-modal{background-color:#fff;border-radius:3px;box-shadow:5px 5px 20px #1717171a;display:inline-block;left:50%;margin-top:10vh;max-width:100%;overflow:auto;position:relative;transform:translateX(-50%)}@media (max-width:759px){.Modal-modal{height:100%;left:auto;margin:0;transform:none;width:100%}}.Modal-modalContents{overflow:auto}@media (max-width:759px){.Modal-modalContents{height:100%}}.Modal-closeButton{color:#a9a9a9;cursor:pointer;position:absolute;right:12px;top:12px}.Modal-closeButton:focus-visible>svg{border:1px solid #071d39;border-radius:4px}.RecaptchaAcknowledgement-acknowledgement{color:#747474;flex:1;font-size:11px;font-weight:600;line-height:15px;margin-bottom:7px;margin-top:7px;width:100%}.RecaptchaAcknowledgement-acknowledgement a{color:#747474;font-weight:500;text-decoration:none}.RecaptchaAcknowledgement-acknowledgement a:hover{color:#747474;text-decoration:underline}.RecaptchaAcknowledgement-acknowledgement a:active{color:#747474}.RecaptchaAcknowledgement-reCaptchaPadding{margin-top:15px}.RecaptchaAcknowledgement-centerAligned{text-align:center}.RecaptchaAcknowledgement-leftAligned{text-align:left}.RecaptchaAcknowledgement-rightAligned{text-align:right}.RecaptchaAcknowledgement-allAccess{margin-top:unset;order:1}.AuthForms-container{margin:0 auto;padding:0 10px;width:458px}@media (max-width:759px){.AuthForms-container{max-width:458px;padding:20px 0 0;width:100%}.AuthForms-container.AuthForms-signInContainer{padding:0 0 12px}}.AuthForms-container .AuthForms-signupContainer{margin:0 auto;padding:0 41px;text-align:center;width:458px}@media (max-width:759px){.AuthForms-container .AuthForms-signupContainer{padding:20px 0 0;width:100%}}.AuthForms-container .AuthForms-header{color:#171717;margin-bottom:20px}.AuthForms-container .AuthForms-header.AuthForms-signInHeader{margin-bottom:40px}@media (min-width:760px){.AuthForms-container .AuthForms-header.AuthForms-signInHeader{margin-bottom:21px;padding-top:18px}}@media (min-width:1020px){.AuthForms-container .AuthForms-header.AuthForms-signInHeader{margin-bottom:27px}}.AuthForms-container .AuthForms-header.AuthForms-signInHeader .AuthForms-headerTitle{color:#424242;font-size:18px;font-weight:500;line-height:16px}.AuthForms-container .AuthForms-createAccountHeader{margin-bottom:20px;text-align:center}@media (min-width:1020px){.AuthForms-container .AuthForms-createAccountHeader{margin-bottom:30px;margin-top:50px}}.AuthForms-container .AuthForms-headerTitle{color:#071d39;font-size:20px;font-weight:700;text-align:center;width:100%}.AuthForms-container .AuthForms-signinContent{font-size:14px;font-weight:450;padding-top:20px}.AuthForms-container .AuthForms-toggleCta{color:#424242;font-size:12px;font-weight:500;text-align:right}.AuthForms-container .AuthForms-instructions{margin-bottom:60px;text-align:center}.AuthForms-container .AuthForms-instructions p{color:#171717;font-size:14px;line-height:16px}.AuthForms-container .AuthForms-instructions p a{color:#005594;text-decoration:none}.AuthForms-container .AuthForms-instructions p a:hover{color:#002f6c}.AuthForms-container .AuthForms-formInputContainer{margin:0 auto 10px;max-width:350px}.AuthForms-container .AuthForms-formInputContainer.AuthForms-withErrors{margin:0 auto 25px}.AuthForms-container .AuthForms-formInputContainer.AuthForms-signInFormInputContainer:last-of-type{margin-bottom:13px}@media (min-width:760px){.AuthForms-container .AuthForms-formInputContainer.AuthForms-signInFormInputContainer:last-of-type{margin-bottom:0}}.AuthForms-container .AuthForms-formInput{width:100%}.AuthForms-container input::-ms-clear,.AuthForms-container input::-ms-reveal{display:none}.AuthForms-container .AuthForms-loginWaitMsg{word-wrap:break-word;border-radius:3px;color:#071d39;font-size:14px;font-weight:500;margin:10px 0;padding:10px;text-align:center}.AuthForms-container .AuthForms-accountButton,.AuthForms-container .AuthForms-submitButton{align-items:center;appearance:none;background-color:#005594;border:1px solid #002f6c;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px!important;justify-content:center;letter-spacing:1px;margin:0 auto;max-width:260px!important;padding:0 20px;padding:0!important;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:100%!important}.AuthForms-container .AuthForms-accountButton>span,.AuthForms-container .AuthForms-submitButton>span{display:block;line-height:12px}.AuthForms-container .AuthForms-accountButton [class*=" icon-"],.AuthForms-container .AuthForms-accountButton [class^=icon-],.AuthForms-container .AuthForms-submitButton [class*=" icon-"],.AuthForms-container .AuthForms-submitButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-container .AuthForms-accountButton [class*=" icon-"]:before,.AuthForms-container .AuthForms-accountButton [class^=icon-]:before,.AuthForms-container .AuthForms-submitButton [class*=" icon-"]:before,.AuthForms-container .AuthForms-submitButton [class^=icon-]:before{line-height:12px}.AuthForms-container .AuthForms-accountButton:focus,.AuthForms-container .AuthForms-accountButton:hover,.AuthForms-container .AuthForms-submitButton:focus,.AuthForms-container .AuthForms-submitButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.AuthForms-container .AuthForms-accountButton[class*=touchButton]:hover,.AuthForms-container .AuthForms-submitButton[class*=touchButton]:hover{background-color:#005594;border-color:#002f6c;color:#fff}@media (hover:hover){.AuthForms-container .AuthForms-accountButton[class*=touchButton]:hover,.AuthForms-container .AuthForms-submitButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.AuthForms-container .AuthForms-accountButton,.AuthForms-container .AuthForms-submitButton{padding:0 30px;width:auto}}.AuthForms-container .AuthForms-accountButton:last-child,.AuthForms-container .AuthForms-submitButton:last-child{clear:both;margin-bottom:7px}.AuthForms-container .AuthForms-accountButton.AuthForms-disableButton,.AuthForms-container .AuthForms-submitButton.AuthForms-disableButton{background-color:#d9d9d9;border:#d9d9d9;transition:none}.AuthForms-container .AuthForms-accountButton.AuthForms-disableButton:hover,.AuthForms-container .AuthForms-submitButton.AuthForms-disableButton:hover{background-color:#d9d9d9;border:#d9d9d9}@media (min-width:760px){.AuthForms-container .AuthForms-accountButton.AuthForms-signInSubmitButton,.AuthForms-container .AuthForms-submitButton.AuthForms-signInSubmitButton{width:109px!important}}.AuthForms-container.AuthForms-disableButton{background-color:#d9d9d9;border:none}.AuthForms-container.AuthForms-disableButton:hover{background-color:#d9d9d9}.AuthForms-container .AuthForms-accountButton{border-radius:3px;cursor:pointer;height:40px!important;margin:0 auto;padding:0!important}@media (min-width:760px){.AuthForms-container .AuthForms-accountButton{width:200px!important}}.AuthForms-container .AuthForms-accountButton:last-child{clear:both;margin-bottom:7px}.AuthForms-container .AuthForms-accountButton{align-items:center;appearance:none;background-color:#fff;border:1px solid #002f6c;color:#005594;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AuthForms-container .AuthForms-accountButton>span{display:block;line-height:12px}.AuthForms-container .AuthForms-accountButton [class*=" icon-"],.AuthForms-container .AuthForms-accountButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-container .AuthForms-accountButton [class*=" icon-"]:before,.AuthForms-container .AuthForms-accountButton [class^=icon-]:before{line-height:12px}.AuthForms-container .AuthForms-accountButton:focus,.AuthForms-container .AuthForms-accountButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.AuthForms-container .AuthForms-accountButton[class*=touchButton]:hover{background-color:#fff;border-color:#002f6c;color:#005594}@media (hover:hover){.AuthForms-container .AuthForms-accountButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.AuthForms-container .AuthForms-accountButton{padding:0 30px;width:auto}}.AuthForms-container .AuthForms-ctaButton{color:#005594;font-weight:500}.AuthForms-container .AuthForms-ctaButton:hover{color:#002f6c}.AuthForms-container.AuthForms-forgotPassword{margin:20px 0 28px;padding:0 21px}@media (min-width:760px){.AuthForms-container.AuthForms-forgotPassword{padding:0 60px}}@media (max-width:1019px){.AuthForms-container.AuthForms-forgotPassword{margin-top:75px}}@media (max-width:759px){.AuthForms-container.AuthForms-forgotPassword{margin:16px auto}}.AuthForms-container.AuthForms-forgotPassword .AuthForms-formInputContainer{margin:15px 0 26px}.AuthForms-container.AuthForms-forgotPassword .AuthForms-ctaButton{font-size:16px;font-weight:600}.AuthForms-container.AuthForms-forgotPassword .AuthForms-toggleCta{color:#424242;font-size:16px;font-weight:500;margin-top:14px;text-align:center}@media (max-width:1019px){.AuthForms-container.AuthForms-forgotPassword .AuthForms-toggleCta{margin-top:20px}}.AuthForms-container.AuthForms-forgotPassword .AuthForms-headerTitle{color:#171717;font-size:20px;font-weight:700;text-align:center;width:100%}.AuthForms-container .AuthForms-forgotPwdButton{color:#005594;display:block;font-size:14px;font-weight:500;margin:20px auto 0}.AuthForms-container .AuthForms-forgotPwdButton:hover{color:#002f6c}.AuthForms-container .AuthForms-forgotPwdButton.AuthForms-signInForgotPwdButton{font-weight:600;line-height:16px}.AuthForms-container .AuthForms-createAccount{color:#424242;font-size:12px;font-weight:600;line-height:16px;text-align:center}.AuthForms-container .AuthForms-createAccount button{color:#005594;font-size:12px;font-weight:600}.AuthForms-container .AuthForms-submitButton{border:unset;border-radius:3px;cursor:pointer;font-size:14px;height:50px!important;margin-bottom:unset;max-width:unset!important;width:100%!important}.AuthForms-container .AuthForms-submitButton:last-child{margin-bottom:7px}.AuthForms-container .AuthForms-submitButton.AuthForms-resetPasswordButton:last-child{margin-bottom:7px;margin-top:0}.AuthForms-container .AuthForms-submitButton.AuthForms-disableButton,.AuthForms-container .AuthForms-submitButton.AuthForms-disableButton:hover{background-color:#d9d9d9;border:#d9d9d9}@media (min-width:760px){.AuthForms-container .AuthForms-submitButton{width:191px!important}}.AuthForms-container.AuthForms-forgotPasswordConfirmation{margin-bottom:48px}.AuthForms-container.AuthForms-forgotPasswordConfirmation .AuthForms-instructions{font-size:14px;font-weight:600;margin:36px auto;max-width:100%;text-align:center;width:100%}.AuthForms-container.AuthForms-forgotPasswordConfirmation .AuthForms-instructions p{display:inline}.AuthForms-container.AuthForms-forgotPasswordConfirmation .AuthForms-instructions p:after{content:" "}@media (min-width:760px){.AuthForms-container.AuthForms-forgotPasswordConfirmation .AuthForms-instructions{max-width:335px}}.AuthForms-formContainer{padding-bottom:26px}@media (min-width:1020px){.AuthForms-formContainer{padding-bottom:20px}}@media (min-width:760px){.AuthForms-formContainer.AuthForms-signInFormContainer{padding-bottom:20px}}.AuthForms-containerRight{margin:0;padding:0;width:500px}@media (max-width:1019px){.AuthForms-containerRight{margin-top:24px;padding:0 20px;width:100%}}@media (max-width:759px){.AuthForms-containerRight{margin-top:10px;padding:0 14px}}.AuthForms-unlockButton{align-items:center;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;box-shadow:-2px 2px 2px #17171740;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-size:22px;font-weight:600;font-weight:700;height:40px;height:50px;justify-content:center;letter-spacing:1px;letter-spacing:.2px;margin-bottom:7px;outline:.5px solid #333;padding:0 30px;text-align:center;text-transform:uppercase;text-transform:none;transition:all .15s linear;width:100%}.AuthForms-unlockButton>span{display:block;line-height:12px}.AuthForms-unlockButton [class*=" icon-"],.AuthForms-unlockButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-unlockButton [class*=" icon-"]:before,.AuthForms-unlockButton [class^=icon-]:before{line-height:12px}.AuthForms-unlockButton:focus,.AuthForms-unlockButton:hover{background-color:#008456;border-color:#008456;color:#fff}.AuthForms-unlockButton[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.AuthForms-unlockButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.AuthForms-unlockButton{padding:0 30px;width:auto;width:100%}}.AuthForms-unlockIcon{margin-right:8px}.AuthForms-plusFlow .AuthForms-submitButton{align-items:center;appearance:none;background-color:#001e5a;border:1px solid #001e5a;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AuthForms-plusFlow .AuthForms-submitButton>span{display:block;line-height:12px}.AuthForms-plusFlow .AuthForms-submitButton [class*=" icon-"],.AuthForms-plusFlow .AuthForms-submitButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-plusFlow .AuthForms-submitButton [class*=" icon-"]:before,.AuthForms-plusFlow .AuthForms-submitButton [class^=icon-]:before{line-height:12px}.AuthForms-plusFlow .AuthForms-submitButton:focus,.AuthForms-plusFlow .AuthForms-submitButton:hover{background-color:#00081a;border-color:#00081a;color:#fff}.AuthForms-plusFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#001e5a;border-color:#001e5a;color:#fff}@media (hover:hover){.AuthForms-plusFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#00081a;border-color:#00081a;color:#fff}}@media (min-width:760px){.AuthForms-plusFlow .AuthForms-submitButton{padding:0 30px;width:auto}}.AuthForms-plusFlow .AuthForms-forgotPwdButton{color:#001e5a}.AuthForms-plusFlow .AuthForms-forgotPwdButton:focus,.AuthForms-plusFlow .AuthForms-forgotPwdButton:hover{color:#005594}.AuthForms-plusFlow .AuthForms-forgotPwdButton.AuthForms-signInForgotPwdButton{color:#001e5a}.AuthForms-plusFlow .AuthForms-forgotPwdButton.AuthForms-signInForgotPwdButton:focus,.AuthForms-plusFlow .AuthForms-forgotPwdButton.AuthForms-signInForgotPwdButton:hover{color:#005594}@media (max-width:759px){.AuthForms-plusFlow .AuthForms-formInputContainer{max-width:100%;width:100%}}.AuthForms-plusFlow .AuthForms-createAccount button{color:#001e5a}.AuthForms-plusFlow .AuthForms-createAccount button:focus,.AuthForms-plusFlow .AuthForms-createAccount button:hover{color:#005594}.AuthForms-plusFlow .AuthForms-ctaButton{color:#001e5a}.AuthForms-plusFlow .AuthForms-ctaButton:focus,.AuthForms-plusFlow .AuthForms-ctaButton:hover{color:#005594}.AuthForms-plusFlow.AuthForms-disableButton,.AuthForms-plusFlow.AuthForms-disableButton:focus,.AuthForms-plusFlow.AuthForms-disableButton:hover{background-color:#d9d9d9;border:#d9d9d9}.AuthForms-plusFlow .AuthForms-loginWaitMsg{color:#001e5a}.AuthForms-proFlow .AuthForms-submitButton{align-items:center;appearance:none;background-color:#008456;border:1px solid #008456;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px!important;justify-content:center;letter-spacing:1px;margin:0 auto;padding:0 20px;padding:0!important;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AuthForms-proFlow .AuthForms-submitButton>span{display:block;line-height:12px}.AuthForms-proFlow .AuthForms-submitButton [class*=" icon-"],.AuthForms-proFlow .AuthForms-submitButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-proFlow .AuthForms-submitButton [class*=" icon-"]:before,.AuthForms-proFlow .AuthForms-submitButton [class^=icon-]:before{line-height:12px}.AuthForms-proFlow .AuthForms-submitButton:focus,.AuthForms-proFlow .AuthForms-submitButton:hover{background-color:#005034;border-color:#005034;color:#fff}.AuthForms-proFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}@media (hover:hover){.AuthForms-proFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#005034;border-color:#005034;color:#fff}}@media (min-width:760px){.AuthForms-proFlow .AuthForms-submitButton{padding:0 30px;width:auto}}.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton{align-items:center;appearance:none;background-color:#008456;border:1px solid #008456;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton>span{display:block;line-height:12px}.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton [class*=" icon-"],.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton [class*=" icon-"]:before,.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton [class^=icon-]:before{line-height:12px}.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton:focus,.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton:hover,.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}@media (hover:hover){.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton{padding:0 30px;width:auto}}.AuthForms-proFlow .AuthForms-submitButton:last-child{margin-bottom:7px}.AuthForms-proFlow .AuthForms-submitButton.AuthForms-disableButton,.AuthForms-proFlow .AuthForms-submitButton.AuthForms-disableButton:hover{background-color:#d9d9d9;border:#d9d9d9}.AuthForms-proFlow .AuthForms-ctaButton{color:#008456}.AuthForms-proFlow .AuthForms-ctaButton:hover{color:#005034}.AuthForms-proFlow .AuthForms-forgotPwdButton{color:#00a857}.AuthForms-proFlow .AuthForms-forgotPwdButton.AuthForms-signInForgotPwdButton,.AuthForms-proFlow .AuthForms-forgotPwdButton:hover{color:#008456}@media (max-width:759px){.AuthForms-proFlow .AuthForms-formInputContainer{max-width:100%;width:100%}}.AuthForms-proFlow .AuthForms-instructions a{color:#00a857}.AuthForms-proFlow .AuthForms-createAccount button,.AuthForms-proFlow .AuthForms-instructions a:hover,.AuthForms-proFlow .AuthForms-loginWaitMsg{color:#008456}.AuthForms-investingClubFlow{display:flex;flex-direction:column}.AuthForms-investingClubFlow .AuthForms-header{margin-bottom:15px}.AuthForms-investingClubFlow .AuthForms-toggleCta{color:#171717;font-size:18px;font-weight:600;margin-bottom:25px;text-align:center}.AuthForms-investingClubFlow .AuthForms-ctaButton{color:#071d39;font-size:18px;font-weight:600}.AuthForms-investingClubFlow .AuthForms-ctaButton:hover{color:#171717}.AuthForms-investingClubFlow .AuthForms-forgotPwdButton{color:#071d39;font-weight:600}.AuthForms-investingClubFlow .AuthForms-forgotPwdButton:hover{color:#002f6c}.AuthForms-investingClubFlow .AuthForms-instructions a{color:#336aa0}.AuthForms-investingClubFlow .AuthForms-instructions a:hover{color:#1896ff}.AuthForms-investingClubFlow.AuthForms-forgotPassword{align-items:center;margin:20px 0 28px;padding:0}.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-header{max-width:100%;width:100%}@media (min-width:760px){.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-header{max-width:335px}}.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-headerTitle{color:#171717;font-size:20px;font-weight:700;text-align:center;width:100%}.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-toggleCta{font-size:16px;font-weight:700;margin-bottom:7px;text-align:center;width:100%}.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-ctaButton{font-size:16px;font-weight:700}.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-instructions{font-size:14px;margin:0 0 28px;max-width:100%;text-align:center;width:100%}@media (min-width:760px){.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-instructions{max-width:335px}}.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-formInputContainer{max-width:100%;width:100%}@media (min-width:760px){.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-formInputContainer{max-width:335px}}.AuthForms-investingClubFlow .AuthForms-submitButton{align-items:center;appearance:none;background-color:#071d39;border:unset;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px!important;justify-content:center;letter-spacing:1px;margin-bottom:unset;margin-left:auto;margin-right:auto;margin-top:0;max-width:unset!important;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:100%!important}.AuthForms-investingClubFlow .AuthForms-submitButton>span{display:block;line-height:12px}.AuthForms-investingClubFlow .AuthForms-submitButton [class*=" icon-"],.AuthForms-investingClubFlow .AuthForms-submitButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-investingClubFlow .AuthForms-submitButton [class*=" icon-"]:before,.AuthForms-investingClubFlow .AuthForms-submitButton [class^=icon-]:before{line-height:12px}.AuthForms-investingClubFlow .AuthForms-submitButton:focus,.AuthForms-investingClubFlow .AuthForms-submitButton:hover{background-color:#171717;border-color:#171717;color:#fff}.AuthForms-investingClubFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#071d39;border-color:#071d39;color:#fff}@media (hover:hover){.AuthForms-investingClubFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#171717;border-color:#171717;color:#fff}}@media (min-width:760px){.AuthForms-investingClubFlow .AuthForms-submitButton{padding:0 30px;width:auto}}.AuthForms-investingClubFlow .AuthForms-submitButton:last-child{margin-bottom:7px}.AuthForms-investingClubFlow .AuthForms-submitButton.AuthForms-disableButton,.AuthForms-investingClubFlow .AuthForms-submitButton.AuthForms-disableButton:hover{background-color:#d9d9d9;border:#d9d9d9}@media (min-width:760px){.AuthForms-investingClubFlow .AuthForms-submitButton{width:168px!important}}.AuthForms-investingClubFlow.AuthForms-forgotPasswordConfirmation{margin-bottom:48px}.AuthForms-investingClubFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions{font-size:14px;font-weight:600;margin:36px auto;max-width:100%;text-align:center;width:100%}.AuthForms-investingClubFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions p{display:inline}.AuthForms-investingClubFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions p:after{content:" "}@media (min-width:760px){.AuthForms-investingClubFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions{max-width:335px}}.AuthForms-investingClubFlow .AuthForms-createAccount button{color:#071d39}.AuthForms-investingClubFlow.AuthForms-signInSubmitButton{padding:0!important}.AuthForms-allAccessFlow .AuthForms-header{margin-bottom:15px}.AuthForms-allAccessFlow .AuthForms-submitButton{background-color:red;border:1px solid red;margin:0 auto;padding:0 55px!important}.AuthForms-allAccessFlow .AuthForms-submitButton:focus,.AuthForms-allAccessFlow .AuthForms-submitButton:hover{background-color:#f30;border-color:#f30}.AuthForms-allAccessFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:red;border-color:red}@media (hover:hover){.AuthForms-allAccessFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#f30;border-color:#f30;color:#fff}}.AuthForms-allAccessFlow .AuthForms-toggleCta{color:#171717;font-size:18px;margin-bottom:25px}.AuthForms-allAccessFlow .AuthForms-ctaButton{font-size:18px;font-weight:600}.AuthForms-allAccessFlow .AuthForms-ctaButton:hover{color:#002f6c}.AuthForms-allAccessFlow .AuthForms-forgotPwdButton{font-weight:600}.AuthForms-allAccessFlow .AuthForms-forgotPwdButton:hover{color:#002f6c}.AuthForms-allAccessFlow .AuthForms-instructions a{color:#0053cf}.AuthForms-allAccessFlow .AuthForms-instructions a:hover{color:#002f6c}.AuthForms-allAccessFlow.AuthForms-forgotPassword{align-items:center;margin:20px 0 28px;padding:0}.AuthForms-allAccessFlow.AuthForms-forgotPassword .AuthForms-header{max-width:100%;width:100%}@media (min-width:760px){.AuthForms-allAccessFlow.AuthForms-forgotPassword .AuthForms-header{max-width:335px}}.AuthForms-allAccessFlow.AuthForms-forgotPassword .AuthForms-headerTitle{color:#171717;font-size:20px;font-weight:700;margin-bottom:unset;text-align:center;width:100%}.AuthForms-allAccessFlow.AuthForms-forgotPassword .AuthForms-toggleCta{font-size:16px;font-weight:600;margin-bottom:15px;order:1;text-align:center;width:100%}.AuthForms-allAccessFlow.AuthForms-forgotPassword .AuthForms-ctaButton{font-size:16px;font-weight:600}.AuthForms-allAccessFlow.AuthForms-forgotPassword .AuthForms-instructions{font-size:14px;margin:0 0 28px;max-width:100%;text-align:center;width:100%}@media (min-width:760px){.AuthForms-allAccessFlow.AuthForms-forgotPassword .AuthForms-instructions{max-width:335px}}.AuthForms-allAccessFlow.AuthForms-forgotPassword .AuthForms-formInputContainer{max-width:100%;width:100%}@media (min-width:760px){.AuthForms-allAccessFlow.AuthForms-forgotPassword .AuthForms-formInputContainer{max-width:335px}}.AuthForms-allAccessFlow.AuthForms-forgotPasswordConfirmation{margin-bottom:48px}.AuthForms-allAccessFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions{font-size:14px;font-weight:600;margin:36px auto;max-width:100%;text-align:center;width:100%}.AuthForms-allAccessFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions p{display:inline}.AuthForms-allAccessFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions p:after{content:" "}@media (min-width:760px){.AuthForms-allAccessFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions{max-width:335px}}.AuthForms-allAccessFlow .AuthForms-createAccount button{color:#0053cf}.AuthForms-resetPasswordAccountInfo{color:#424242;font-size:14px;font-weight:700;margin-bottom:20px;margin-top:20px;text-align:left}.AuthForms-resetPasswordAccountInfo span{color:#747474}.AuthForms-miscellaneousError{word-wrap:break-word;border-radius:3px;color:#f44336;font-size:14px;margin:10px 0;padding:10px;text-align:center}.AuthForms-newtocnbc{color:#171717;font-size:12px;font-weight:600;line-height:16px}.AuthForms-allAccessFlow{display:flex;flex-direction:column}.AuthForms-allAccessFlow .AuthForms-formContainer{padding-bottom:0}.AuthForms-allAccessFlow .AuthForms-toggleCta{font-family:Proxima Nova,Arial,Helvetica,sans-serif;font-size:14px;font-weight:600;letter-spacing:0;line-height:15px;margin-bottom:24px;margin-top:56px;text-align:center}@media (min-width:760px){.AuthForms-allAccessFlow .AuthForms-toggleCta{margin-bottom:20px;margin-top:28px}}.AuthForms-allAccessFlow .AuthForms-ctaButton{color:#0053cf;font-size:14px;font-weight:700;letter-spacing:0;line-height:15px}.AuthForms-allAccessFlow .AuthForms-forgotPwdButton{color:#0053cf;margin-bottom:24px}@media (min-width:760px){.AuthForms-allAccessFlow .AuthForms-forgotPwdButton{margin-bottom:20px}}.AuthForms-allAccessFlow .AuthForms-submitButton{align-items:center;appearance:none;background-color:#0053cf;border:unset;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px!important;justify-content:center;letter-spacing:1px;margin-bottom:24px;max-width:unset!important;padding:0 20px;padding:0!important;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:100%!important}.AuthForms-allAccessFlow .AuthForms-submitButton>span{display:block;line-height:12px}.AuthForms-allAccessFlow .AuthForms-submitButton [class*=" icon-"],.AuthForms-allAccessFlow .AuthForms-submitButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-allAccessFlow .AuthForms-submitButton [class*=" icon-"]:before,.AuthForms-allAccessFlow .AuthForms-submitButton [class^=icon-]:before{line-height:12px}.AuthForms-allAccessFlow .AuthForms-submitButton:focus,.AuthForms-allAccessFlow .AuthForms-submitButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.AuthForms-allAccessFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#0053cf;border-color:#002f6c;color:#fff}@media (hover:hover){.AuthForms-allAccessFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.AuthForms-allAccessFlow .AuthForms-submitButton{padding:0 30px;width:auto}}.AuthForms-allAccessFlow .AuthForms-submitButton:last-child{margin-bottom:7px}.AuthForms-allAccessFlow .AuthForms-submitButton.AuthForms-disableButton,.AuthForms-allAccessFlow .AuthForms-submitButton.AuthForms-disableButton:hover{background-color:#d9d9d9;border:#d9d9d9}@media (min-width:760px){.AuthForms-allAccessFlow .AuthForms-submitButton{width:168px!important}}.AuthForms-alreadyHaveAccountContainer{display:flex;margin:0 auto;white-space:pre-wrap;width:max-content}.AuthForms-alreadyHaveAccountContainer button{color:#005594;font-weight:600;line-height:16px}.AuthForms-signUpHeaderTitle{color:#424242;font-size:16px;font-weight:600;line-height:16px}.AuthForms-retryButton{color:inherit;font-weight:700;margin:0 5px;text-decoration:underline}@media (max-width:759px){.AuthForms-containerNewLogo{padding:0}}.Checkboxes-checkboxContainer.Checkboxes-checkboxes{padding:0}.Checkboxes-errorText{color:#ce2b2b;font-size:11px;height:12px;margin:0 auto 5px;overflow:visible;text-align:left}.Checkboxes-checkboxLabel{cursor:pointer;display:block;overflow:hidden;padding-left:16px;position:relative;-webkit-user-select:none;user-select:none}.Checkboxes-checkboxLabel input{cursor:pointer;height:0;opacity:0;position:absolute;right:0;width:0}.Checkboxes-checkmark{border:1px solid #424242;border-radius:3px;height:13px;left:0;position:absolute;top:3px;width:13px}.Checkboxes-checkmark:focus,.Checkboxes-checkmark:hover{border:1px solid #171717}.Checkboxes-checkmark.Checkboxes-checkmarkError{border:1px solid #ce2b2b}.Checkboxes-checkboxLabel input:checked~.Checkboxes-checkmark{background-color:#171717}.Checkboxes-checkmark:after{content:"";display:none;position:absolute}.Checkboxes-checkboxLabel input:checked~.Checkboxes-checkmark:after{display:block}.Checkboxes-checkboxLabel .Checkboxes-checkmark:after{border:solid #fff;border-width:0 2px 2px 0;height:6px;left:3px;top:0;transform:rotate(45deg);width:3px}.Checkboxes-checkboxDP{margin-bottom:0!important;padding-bottom:10px}.Checkboxes-checkboxLabelText,.Checkboxes-checkboxLabelTextBold,.Checkboxes-checkboxLabelTextBoldPlus,.Checkboxes-checkboxLabelTextBoldPro{color:#424242;flex:1;font-size:11px;margin:0 0 24px 6px}.Checkboxes-checkboxLabelText.Checkboxes-staySignedIn,.Checkboxes-staySignedIn.Checkboxes-checkboxLabelTextBold,.Checkboxes-staySignedIn.Checkboxes-checkboxLabelTextBoldPlus,.Checkboxes-staySignedIn.Checkboxes-checkboxLabelTextBoldPro{font-size:14px;margin-top:2px}@media (max-width:759px){.Checkboxes-checkboxLabelText,.Checkboxes-checkboxLabelTextBold,.Checkboxes-checkboxLabelTextBoldPlus,.Checkboxes-checkboxLabelTextBoldPro{margin:0 0 20px 6px}}.Checkboxes-checkboxLabelText a,.Checkboxes-checkboxLabelTextBold a,.Checkboxes-checkboxLabelTextBoldPlus a,.Checkboxes-checkboxLabelTextBoldPro a{color:#171717;text-decoration:none}.Checkboxes-checkboxLabelText a:hover,.Checkboxes-checkboxLabelTextBold a:hover,.Checkboxes-checkboxLabelTextBoldPlus a:hover,.Checkboxes-checkboxLabelTextBoldPro a:hover{color:#171717;text-decoration:underline}.Checkboxes-checkboxLabelText p,.Checkboxes-checkboxLabelTextBold p,.Checkboxes-checkboxLabelTextBoldPlus p,.Checkboxes-checkboxLabelTextBoldPro p{color:#424242;margin-bottom:0}.Checkboxes-checkboxLabelTextBold,.Checkboxes-checkboxLabelTextBoldPlus,.Checkboxes-checkboxLabelTextBoldPro{color:#747474;font-weight:600;line-height:16px;margin:-2px 0 26px 6px;text-align:start;text-transform:uppercase}.Checkboxes-allAccessCheckboxLabelTextBold a{color:#0053cf!important}.Checkboxes-allAccessCheckboxLabelTextBold a:hover{color:#002f6c!important}.Checkboxes-investingClubCheckboxLabelTextBold a,.Checkboxes-investingClubCheckboxLabelTextBold a:hover{color:#071d39!important}.Checkboxes-checkboxLink{color:#005594!important}.Checkboxes-cnbcOnlyCheckboxLabelText{color:#747474;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:11px;font-weight:700;line-height:15px;text-transform:uppercase}.Checkboxes-cnbcOnlyCheckboxLabelText a{color:#005594!important}.Checkboxes-cnbcOnlyCheckboxLabelText p{color:#747474}.Checkboxes-checkboxLabelTextBoldPro a{color:#008456}.Checkboxes-checkboxLabelTextBoldPro a:hover{color:#005034;text-decoration:underline}.Checkboxes-checkboxLabelTextBoldPlus a{color:#001e5a}.Checkboxes-checkboxLabelTextBoldPlus a:hover{color:#001e5a;text-decoration:underline}.AreYouSure-container{color:#171717;font-size:18px;font-weight:700;margin-bottom:40px;padding-top:5px;text-align:center}@media (max-width:759px){.AreYouSure-container{width:100%}}.AreYouSure-header{font-size:18px;font-weight:700;height:20px;margin-bottom:12px;margin-top:15px}.AreYouSure-subText{font-size:14px;font-weight:600;height:16px;margin-bottom:33px}.AreYouSure-buttons{padding:0 32px 7px}@media (min-width:760px){.AreYouSure-buttons{align-items:stretch;display:flex}}@media (max-width:759px){.AreYouSure-buttons{padding:0}}.AreYouSure-primaryButton{margin:0}.AreYouSure-secondaryButton{margin:0 24px 0 0}@media (max-width:759px){.AreYouSure-secondaryButton{margin:0 0 28px}}.AreYouSure-primaryButton,.AreYouSure-secondaryButton{border-radius:3px;flex:1;font-size:16px;height:50px;padding:0;width:185px}@media (max-width:759px){.AreYouSure-primaryButton,.AreYouSure-secondaryButton{width:100%}}.AreYouSure-investingClubFlow .AreYouSure-header{font-weight:600}.AreYouSure-investingClubFlow .AreYouSure-subText{font-weight:500}.AreYouSure-investingClubFlow .AreYouSure-primaryButton{align-items:center;appearance:none;background-color:#071d39;border:1px solid #071d39;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-investingClubFlow .AreYouSure-primaryButton>span{display:block;line-height:12px}.AreYouSure-investingClubFlow .AreYouSure-primaryButton [class*=" icon-"],.AreYouSure-investingClubFlow .AreYouSure-primaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-investingClubFlow .AreYouSure-primaryButton [class*=" icon-"]:before,.AreYouSure-investingClubFlow .AreYouSure-primaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-investingClubFlow .AreYouSure-primaryButton:focus,.AreYouSure-investingClubFlow .AreYouSure-primaryButton:hover{background-color:#171717;border-color:#171717;color:#fff}.AreYouSure-investingClubFlow .AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#071d39;border-color:#071d39;color:#fff}@media (hover:hover){.AreYouSure-investingClubFlow .AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#171717;border-color:#171717;color:#fff}}@media (min-width:760px){.AreYouSure-investingClubFlow .AreYouSure-primaryButton{padding:0 30px;width:auto}}.AreYouSure-investingClubFlow .AreYouSure-secondaryButton{align-items:center;appearance:none;background-color:#fff;border:1px solid #071d39;color:#071d39;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-investingClubFlow .AreYouSure-secondaryButton>span{display:block;line-height:12px}.AreYouSure-investingClubFlow .AreYouSure-secondaryButton [class*=" icon-"],.AreYouSure-investingClubFlow .AreYouSure-secondaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-investingClubFlow .AreYouSure-secondaryButton [class*=" icon-"]:before,.AreYouSure-investingClubFlow .AreYouSure-secondaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-investingClubFlow .AreYouSure-secondaryButton:focus,.AreYouSure-investingClubFlow .AreYouSure-secondaryButton:hover{background-color:#fff;border-color:#171717;color:#171717}.AreYouSure-investingClubFlow .AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#071d39;color:#071d39}@media (hover:hover){.AreYouSure-investingClubFlow .AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#171717;color:#171717}}@media (min-width:760px){.AreYouSure-investingClubFlow .AreYouSure-secondaryButton{padding:0 30px;width:auto}}.AreYouSure-investingClubFlow .AreYouSure-primaryButton,.AreYouSure-investingClubFlow .AreYouSure-secondaryButton{border-radius:3px;flex:1;font-size:16px;height:50px;line-height:12px;padding:0;width:185px}@media (max-width:759px){.AreYouSure-investingClubFlow .AreYouSure-primaryButton,.AreYouSure-investingClubFlow .AreYouSure-secondaryButton{width:100%}}.AreYouSure-plusFlow .AreYouSure-header{font-weight:600}.AreYouSure-plusFlow .AreYouSure-subText{font-weight:500}.AreYouSure-plusFlow .AreYouSure-secondaryButton{align-items:center;appearance:none;background-color:#fff;border:1px solid #001e5a;color:#001e5a;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-plusFlow .AreYouSure-secondaryButton>span{display:block;line-height:12px}.AreYouSure-plusFlow .AreYouSure-secondaryButton [class*=" icon-"],.AreYouSure-plusFlow .AreYouSure-secondaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-plusFlow .AreYouSure-secondaryButton [class*=" icon-"]:before,.AreYouSure-plusFlow .AreYouSure-secondaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-plusFlow .AreYouSure-secondaryButton:focus,.AreYouSure-plusFlow .AreYouSure-secondaryButton:hover{background-color:#fff;border-color:#00081a;color:#005594}.AreYouSure-plusFlow .AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#001e5a;color:#001e5a}@media (hover:hover){.AreYouSure-plusFlow .AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#00081a;color:#005594}}@media (min-width:760px){.AreYouSure-plusFlow .AreYouSure-secondaryButton{padding:0 30px;width:auto}}.AreYouSure-plusFlow .AreYouSure-primaryButton{align-items:center;appearance:none;background-color:#001e5a;border:1px solid #001e5a;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-plusFlow .AreYouSure-primaryButton>span{display:block;line-height:12px}.AreYouSure-plusFlow .AreYouSure-primaryButton [class*=" icon-"],.AreYouSure-plusFlow .AreYouSure-primaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-plusFlow .AreYouSure-primaryButton [class*=" icon-"]:before,.AreYouSure-plusFlow .AreYouSure-primaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-plusFlow .AreYouSure-primaryButton:focus,.AreYouSure-plusFlow .AreYouSure-primaryButton:hover{background-color:#00081a;border-color:#00081a;color:#fff}.AreYouSure-plusFlow .AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#001e5a;border-color:#001e5a;color:#fff}@media (hover:hover){.AreYouSure-plusFlow .AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#00081a;border-color:#00081a;color:#fff}}@media (min-width:760px){.AreYouSure-plusFlow .AreYouSure-primaryButton{padding:0 30px;width:auto}}.AreYouSure-plusFlow .AreYouSure-primaryButton,.AreYouSure-plusFlow .AreYouSure-secondaryButton{border-radius:3px;flex:1;font-size:16px;height:50px;line-height:12px;padding:0;width:185px}@media (max-width:759px){.AreYouSure-plusFlow .AreYouSure-primaryButton,.AreYouSure-plusFlow .AreYouSure-secondaryButton{width:100%}}.AreYouSure-allAccessFlow .AreYouSure-header{font-weight:600}.AreYouSure-allAccessFlow .AreYouSure-subText{font-weight:500}.AreYouSure-allAccessFlow .AreYouSure-secondaryButton{align-items:center;appearance:none;background-color:#fff;border:1px solid #0053cf;color:#0053cf;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-allAccessFlow .AreYouSure-secondaryButton>span{display:block;line-height:12px}.AreYouSure-allAccessFlow .AreYouSure-secondaryButton [class*=" icon-"],.AreYouSure-allAccessFlow .AreYouSure-secondaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-allAccessFlow .AreYouSure-secondaryButton [class*=" icon-"]:before,.AreYouSure-allAccessFlow .AreYouSure-secondaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-allAccessFlow .AreYouSure-secondaryButton:focus,.AreYouSure-allAccessFlow .AreYouSure-secondaryButton:hover{background-color:#fff;border-color:#002f6c;color:#002f6c}.AreYouSure-allAccessFlow .AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#0053cf;color:#0053cf}@media (hover:hover){.AreYouSure-allAccessFlow .AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#002f6c;color:#002f6c}}@media (min-width:760px){.AreYouSure-allAccessFlow .AreYouSure-secondaryButton{padding:0 30px;width:auto}}.AreYouSure-allAccessFlow .AreYouSure-primaryButton{align-items:center;appearance:none;background-color:#0053cf;border:1px solid #0053cf;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-allAccessFlow .AreYouSure-primaryButton>span{display:block;line-height:12px}.AreYouSure-allAccessFlow .AreYouSure-primaryButton [class*=" icon-"],.AreYouSure-allAccessFlow .AreYouSure-primaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-allAccessFlow .AreYouSure-primaryButton [class*=" icon-"]:before,.AreYouSure-allAccessFlow .AreYouSure-primaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-allAccessFlow .AreYouSure-primaryButton:focus,.AreYouSure-allAccessFlow .AreYouSure-primaryButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.AreYouSure-allAccessFlow .AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#0053cf;border-color:#0053cf;color:#fff}@media (hover:hover){.AreYouSure-allAccessFlow .AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.AreYouSure-allAccessFlow .AreYouSure-primaryButton{padding:0 30px;width:auto}}.AreYouSure-allAccessFlow .AreYouSure-primaryButton,.AreYouSure-allAccessFlow .AreYouSure-secondaryButton{border-radius:3px;flex:1;font-size:16px;height:50px;line-height:12px;padding:0;width:185px}@media (max-width:759px){.AreYouSure-allAccessFlow .AreYouSure-primaryButton,.AreYouSure-allAccessFlow .AreYouSure-secondaryButton{width:100%}}.AreYouSure-proFlow .AreYouSure-primaryButton{align-items:center;appearance:none;background-color:#008456;border:1px solid #008456;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-proFlow .AreYouSure-primaryButton>span{display:block;line-height:12px}.AreYouSure-proFlow .AreYouSure-primaryButton [class*=" icon-"],.AreYouSure-proFlow .AreYouSure-primaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-proFlow .AreYouSure-primaryButton [class*=" icon-"]:before,.AreYouSure-proFlow .AreYouSure-primaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-proFlow .AreYouSure-primaryButton:focus,.AreYouSure-proFlow .AreYouSure-primaryButton:hover{background-color:#005034;border-color:#005034;color:#fff}.AreYouSure-proFlow .AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}@media (hover:hover){.AreYouSure-proFlow .AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#005034;border-color:#005034;color:#fff}}@media (min-width:760px){.AreYouSure-proFlow .AreYouSure-primaryButton{padding:0 30px;width:auto}}.AreYouSure-proFlow .AreYouSure-secondaryButton{align-items:center;appearance:none;background-color:#fff;border:1px solid #008456;color:#008456;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-proFlow .AreYouSure-secondaryButton>span{display:block;line-height:12px}.AreYouSure-proFlow .AreYouSure-secondaryButton [class*=" icon-"],.AreYouSure-proFlow .AreYouSure-secondaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-proFlow .AreYouSure-secondaryButton [class*=" icon-"]:before,.AreYouSure-proFlow .AreYouSure-secondaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-proFlow .AreYouSure-secondaryButton:focus,.AreYouSure-proFlow .AreYouSure-secondaryButton:hover{background-color:#fff;border-color:#005034;color:#005034}.AreYouSure-proFlow .AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#008456;color:#008456}@media (hover:hover){.AreYouSure-proFlow .AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#005034;color:#005034}}@media (min-width:760px){.AreYouSure-proFlow .AreYouSure-secondaryButton{padding:0 30px;width:auto}}.AreYouSure-proFlow .AreYouSure-primaryButton,.AreYouSure-proFlow .AreYouSure-secondaryButton{border-radius:3px;flex:1;font-size:16px;height:50px;line-height:12px;padding:0;width:185px}@media (max-width:759px){.AreYouSure-proFlow .AreYouSure-primaryButton,.AreYouSure-proFlow .AreYouSure-secondaryButton{width:100%}}.LogoHeader-header{margin-bottom:40px;margin-top:15px;text-align:center}.LogoHeader-defaultLogo,.LogoHeader-logo{display:inline}.LogoHeader-defaultLogo{height:19px}.LogoHeader-investingClubHeader{display:flex;justify-content:center;margin-bottom:40px;margin-top:11px}.LogoHeader-investingClubHeader .LogoHeader-defaultLogo,.LogoHeader-investingClubHeader .LogoHeader-logo{fill:#071d39;stroke:#071d39;max-width:255px}.NewLogoHeader-logoContainerFree{margin-bottom:0;margin-top:40px;text-align:center}@media (max-width:759px){.NewLogoHeader-logoContainerFree{margin-bottom:40px}}.NewLogoHeader-plusContainer{margin-bottom:20px}.NewLogoHeader-logo,.NewLogoHeader-logoFreeStyles{display:inline}.NewLogoHeader-logoFreeStyles{height:23px}@media (max-width:759px){.NewLogoHeader-logoFreeStyles{height:25px}}.NewLogoHeader-logoContainerSubscription{align-items:center;display:flex;height:100px;justify-content:space-between;width:100%}.NewLogoHeader-logoContainerSubscription .NewLogoHeader-rectangle{flex:1;height:54px}@media (max-width:1019px){.NewLogoHeader-logoContainerSubscription .NewLogoHeader-rectangle{height:45px}}.NewLogoHeader-logoContainerSubscription .NewLogoHeader-allAccess{background-color:#001e5a}.NewLogoHeader-logoContainerSubscription .NewLogoHeader-pro{background-color:#047e2e}.NewLogoHeader-logoContainerSubscription .NewLogoHeader-investingClub{background-color:#0053cf}.NewLogoHeader-logoContainerSubscription .NewLogoHeader-rectangle:first-of-type{margin-left:-21px;margin-right:3px}.NewLogoHeader-logoContainerSubscription .NewLogoHeader-rectangle:last-of-type{margin-left:-1px;margin-right:-21px}@media (max-width:1019px){.NewLogoHeader-logoContainerSubscription .NewLogoHeader-noBackgroundColor{background-color:initial!important}}.NewLogoHeader-logoContainerSubscription .NewLogoHeader-brandLogo img{height:54px}@media (max-width:1019px){.NewLogoHeader-logoContainerSubscription .NewLogoHeader-brandLogo img{height:45px}}.NewLogoHeader-plusAndICContainer{display:flex;gap:28px;justify-content:center}.NewLogoHeader-logoPill{height:35px;width:110px}.SignedIn-container{color:#171717;font-size:18px;font-weight:700;text-align:center;width:400px}@media (max-width:759px){.SignedIn-container{width:100%}}.SignedIn-container .SignedIn-messageConfirmation{font-size:18px;font-weight:600;line-height:18px;text-align:center}.SignedIn-okayButton{align-items:center;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:0 auto 15px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:200px}.SignedIn-okayButton>span{display:block;line-height:12px}.SignedIn-okayButton [class*=" icon-"],.SignedIn-okayButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.SignedIn-okayButton [class*=" icon-"]:before,.SignedIn-okayButton [class^=icon-]:before{line-height:12px}.SignedIn-okayButton:focus,.SignedIn-okayButton:hover{background-color:#008456;border-color:#008456;color:#fff}.SignedIn-okayButton[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.SignedIn-okayButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.SignedIn-okayButton{padding:0 30px;width:auto}}.SignedIn-logosContainer{display:flex;justify-content:center;margin-bottom:16px}.SignedIn-logosContainer :last-child,.SignedIn-logosContainer>:first-child{align-self:baseline;height:20px;text-align:center;top:10px;width:100px}.SignedIn-logosContainer>:nth-child(2){height:40px;width:100px}.SignedIn-proPill{height:22px}.SignedIn-checkmarkContainer{align-items:center;height:40px;margin-bottom:30px;margin-top:30px}.SignedIn-checkmarkContainer .SignedIn-checkMark,.SignedIn-checkmarkContainer .SignedIn-checkMarkAllAccess,.SignedIn-checkmarkContainer .SignedIn-checkmarkCNBC,.SignedIn-checkmarkContainer .SignedIn-checkmarkDefault,.SignedIn-checkmarkContainer .SignedIn-checkmarkInvestingClub,.SignedIn-checkmarkContainer .SignedIn-checkmarkPlus,.SignedIn-checkmarkContainer .SignedIn-checkmarkPro{height:40px;margin:0 30px;width:40px}.SignedIn-checkmarkCNBC circle{fill:#005594;opacity:.25}.SignedIn-checkmarkCNBC path{fill:#005594}.SignedIn-checkmarkPro circle{fill:#00a857;opacity:1}.SignedIn-checkmarkPro path{fill:#fff}.SignedIn-checkmarkDefault circle{fill:#005594;opacity:1}.SignedIn-checkmarkDefault path{fill:#fff}.SignedIn-checkMarkAllAccess circle{fill:#0053cf;opacity:1}.SignedIn-checkMarkAllAccess path{fill:#fff}.SignedIn-checkmarkInvestingClub circle{fill:#0496ff;opacity:1}.SignedIn-checkmarkInvestingClub path{fill:#fff}.SignedIn-checkmarkPlus circle{fill:#001e5a;opacity:1}.SignedIn-checkmarkPlus path{fill:#fff}.Confirmation-copy{color:#171717;margin-bottom:24px}.Confirmation-copy p.Confirmation-header{font-size:18px;font-weight:700;line-height:22px;margin:0 auto 30px}.Confirmation-copy p{font-size:14px;font-weight:600;line-height:16px}.Confirmation-email{color:#747474}.Confirmation-checkMark,.Confirmation-checkmarkAllAccess,.Confirmation-checkmarkDefault,.Confirmation-checkmarkInvestingClub,.Confirmation-checkmarkPlus,.Confirmation-checkmarkPro{height:40px;margin:auto auto 30px;width:40px}.Confirmation-checkmarkDefault circle{fill:#005594;opacity:1}.Confirmation-checkmarkDefault path{fill:#fff}.Confirmation-checkmarkPro circle{fill:#00a857;opacity:1}.Confirmation-checkmarkPro path{fill:#fff}.Confirmation-checkmarkAllAccess circle{fill:#0053cf;opacity:1}.Confirmation-checkmarkAllAccess path{fill:#fff}.Confirmation-confirmation{color:#424242;font-size:14px;font-weight:600;margin-bottom:24px;margin-top:0;text-align:center}.Confirmation-checkmarkInvestingClub circle{fill:#0496ff;opacity:1}.Confirmation-checkmarkInvestingClub path{fill:#fff}.Confirmation-checkmarkPlus circle{fill:#001e5a;opacity:1}.Confirmation-checkmarkPlus path{fill:#fff}.Confirmation-plusFlow .Confirmation-submitButton{background-color:#001e5a}.Confirmation-confirmationCode{color:#747474;font-weight:600}.Confirmation-confirmationText{margin-bottom:30px;margin-top:0}.Confirmation-investingClubFlow .Confirmation-submitButton{background-color:#071d39}.Confirmation-proFlow .Confirmation-submitButton{background-color:#00a857}.Confirmation-allAccessFlow p.Confirmation-header{font-weight:500;width:320px}.Confirmation-allAccessFlow .Confirmation-submitButton{background-color:#0053cf}.Confirmation-confirmationContainer{margin:auto;max-width:458px;min-height:400px;padding:0;text-align:center}@media (min-width:760px){.Confirmation-confirmationContainer{padding:0 40px}}.Confirmation-confirmationContainer .Confirmation-email{color:#747474;font-size:14px;font-weight:600;line-height:16px;margin:30px auto 20px;overflow:hidden;text-overflow:ellipsis}.Confirmation-confirmationContainer .Confirmation-text{color:#171717;font-size:18px;font-weight:600;line-height:18px;margin:0 auto}.Confirmation-confirmationContainer .Confirmation-text.Confirmation-slightlyBold{font-size:14px;width:370px}.Confirmation-confirmationContainer .Confirmation-buttonContainer{margin:30px 0}.Confirmation-confirmationContainer .Confirmation-watchlistButton{align-items:center;appearance:none;background-color:#fff;background:#005594;border:1px solid #005594;border-radius:3px;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:52px;justify-content:center;letter-spacing:1px;margin:auto;max-width:260px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.Confirmation-confirmationContainer .Confirmation-watchlistButton>span{display:block;line-height:12px}.Confirmation-confirmationContainer .Confirmation-watchlistButton [class*=" icon-"],.Confirmation-confirmationContainer .Confirmation-watchlistButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.Confirmation-confirmationContainer .Confirmation-watchlistButton [class*=" icon-"]:before,.Confirmation-confirmationContainer .Confirmation-watchlistButton [class^=icon-]:before{line-height:12px}.Confirmation-confirmationContainer .Confirmation-watchlistButton:focus,.Confirmation-confirmationContainer .Confirmation-watchlistButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.Confirmation-confirmationContainer .Confirmation-watchlistButton[class*=touchButton]:hover{background-color:#fff;border-color:#005594;color:#fff}@media (hover:hover){.Confirmation-confirmationContainer .Confirmation-watchlistButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.Confirmation-confirmationContainer .Confirmation-watchlistButton{padding:0 30px;width:auto}}.Confirmation-confirmationContainer .Confirmation-doneButton{color:#005594;font-size:14px;font-weight:600;letter-spacing:1.091px;line-height:16px;text-transform:uppercase}.Confirmation-confirmationContainer .Confirmation-doneButton:hover{color:#fcb700}.ErrorModal-confirmation{align-items:center;color:#424242;font-size:14px;font-weight:600;margin:20px 0 30px;padding:0;text-align:center}.ErrorModal-upperBlock{color:#171717}.ErrorModal-upperBlock .ErrorModal-header{font-size:18px;font-weight:600;line-height:16px;margin:30px 0}.ErrorModal-upperBlock .ErrorModal-paymentAlert{font-size:14px;font-weight:600;line-height:16px;margin-left:auto;margin-right:auto;max-width:80%}.ErrorModal-upperBlock .ErrorModal-email{color:#747474;font-size:14px;font-weight:500;margin-bottom:0}.ErrorModal-lowerBlock .ErrorModal-confirmationText{color:#424242;font-size:14px;font-weight:700;line-height:16px;margin-top:20px}.ErrorModal-lowerBlock .ErrorModal-confirmationText .ErrorModal-confirmationCode{color:#747474;font-weight:500}.ErrorModal-lowerBlock .ErrorModal-helpDesk{color:#171717;font-weight:600;margin:20px 0 30px}.ErrorModal-lowerBlock .ErrorModal-helpDesk a{color:#005594}.ErrorModal-lowerBlock .ErrorModal-helpDesk a:hover{color:#fcb813}.ErrorModal-checkMark{height:40px;margin:15px 0 10px;width:40px}.ErrorModal-checkMark circle{opacity:1!important}.ErrorModal-checkMark path{fill:#fff!important}.NotAvailableModal-contentWrapper{padding:40px;text-align:center}.NotAvailableModal-contentWrapper img{margin:auto}.tp-backdrop{background:#000000b3!important;transition:none!important}.tp-modal .tp-close{background:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 1.611 14.389 0 8 6.389 1.611 0 0 1.611 6.389 8 0 14.389 1.611 16 8 9.611 14.389 16 16 14.389 9.611 8 16 1.611Z' fill='%23747474'/%3E%3C/svg%3E") 50% no-repeat!important;border-radius:0!important;height:16px!important;right:12px!important;top:12px!important;transform:none!important;width:16px!important}.tp-modal .tp-close,.tp-modal .tp-close:focus,.tp-modal .tp-close:hover{box-shadow:none!important}.tp-iframe-wrapper{background-color:#f8f8f8!important;border-radius:4px;box-shadow:5px 5px 20px #1717171a!important;margin:0 auto!important;overflow:hidden;position:relative!important}@media (min-width:651px){.tp-iframe-wrapper{margin:100px auto!important}}.tp-modal{height:auto!important}.ContactCustomerCare-container{color:#171717;font-size:18px;font-weight:600;margin:30px 0;text-align:center;width:400px}@media (max-width:759px){.ContactCustomerCare-container{width:100%}}.ContactCustomerCare-container a{color:#005594}.ContactCustomerCare-container .ContactCustomerCare-message{margin:0 auto;max-width:300px}.PasswordAssistiveText-assistiveText{background-color:#f8f8f8;border:1px solid #d9d9d9;border-radius:0 0 6px 6px;border-top:0;padding:10px 5px 5px;position:absolute;width:100%;z-index:2}.PasswordAssistiveText-assistiveTextItem{color:#bababa;font-size:12px;font-weight:500;line-height:16px;margin-bottom:5px;text-align:left}.PasswordAssistiveText-assistiveTextItemComplete{color:#171717}.PasswordAssistiveText-checkMark{visibility:hidden}.PasswordAssistiveText-checkMarkDisplay{height:10px;margin-right:5px;visibility:visible}.AuthPasswordInput-assistiveTextContainer{position:relative;width:100%}.AccountHasEmailError-signIn{color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:inherit;font-weight:600;line-height:16px;margin-left:3px}.UserCreateAndSubmit-container{margin:0 auto;text-align:center;width:100%}@media (min-width:760px){.UserCreateAndSubmit-container{width:340px}}.UserCreateAndSubmit-loggedInAccount{color:#747474;font-size:14px;font-weight:700;margin-bottom:20px;margin-top:20px}.UserCreateAndSubmit-loggedInAccountEmail{color:#424242;font-weight:700}.UserCreateAndSubmit-continueButton{align-items:center;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-size:16px;font-weight:600;font-weight:700;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:0 auto 24px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:190px}.UserCreateAndSubmit-continueButton>span{display:block;line-height:12px}.UserCreateAndSubmit-continueButton [class*=" icon-"],.UserCreateAndSubmit-continueButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.UserCreateAndSubmit-continueButton [class*=" icon-"]:before,.UserCreateAndSubmit-continueButton [class^=icon-]:before{line-height:12px}.UserCreateAndSubmit-continueButton:focus,.UserCreateAndSubmit-continueButton:hover{background-color:#008456;border-color:#008456;color:#fff}.UserCreateAndSubmit-continueButton[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.UserCreateAndSubmit-continueButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.UserCreateAndSubmit-continueButton{padding:0 30px;width:auto}}@media (max-width:759px){.UserCreateAndSubmit-continueButton{width:100%}}.UserCreateAndSubmit-cta{color:#424242;font-size:16px;font-weight:500;line-height:16px;margin-bottom:30px;text-align:center}.UserCreateAndSubmit-formInputContainer{margin:0 auto 30px}@media (min-width:760px){.UserCreateAndSubmit-formInputContainer{width:340px}}.UserCreateAndSubmit-formInput{width:100%}input::-ms-clear,input::-ms-reveal{display:none}.UserCreateAndSubmit-infoText{color:#424242;flex:1;font-size:11px;line-height:13px;margin:0 0 12px 12px;text-align:center}.UserCreateAndSubmit-infoText a{color:#171717;font-weight:500;text-decoration:none}.UserCreateAndSubmit-infoText p{margin-bottom:0}.UserCreateAndSubmit-questionAndCta{color:#171717;font-size:12px;font-weight:600!important;line-height:16px;margin-bottom:20px}.UserCreateAndSubmit-questionAndCta button{font-weight:600}.UserCreateAndSubmit-miscellaneousError{word-wrap:break-word;border-radius:3px;color:#f44336;font-size:12px;margin:0 auto 15px;padding:10px;width:340px}.UserCreateAndSubmit-signedInMessage{color:#424242;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-weight:700;line-height:20px;margin-top:20px}@media (min-width:1020px){.UserCreateAndSubmit-investingClubContainer{width:322px}}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton{align-items:center;appearance:none;background-color:#071d39;border:1px solid #071d39;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-size:16px;font-weight:600;font-weight:700;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:0 auto 24px;padding:16px 0;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:190px}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton>span{display:block;line-height:12px}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton [class*=" icon-"],.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton [class*=" icon-"]:before,.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton [class^=icon-]:before{line-height:12px}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton:focus,.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton[class*=touchButton]:hover{background-color:#071d39;border-color:#071d39;color:#fff}@media (hover:hover){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton{padding:0 30px;width:auto}}@media (min-width:1020px){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton{width:auto}}@media (max-width:759px){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton{width:100%}}@media (min-width:1020px){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-formInputContainer{width:322px}}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-formInput{margin:0 auto}@media (min-width:760px) and (max-width:1019px){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-formInput{width:100%}}@media (min-width:1020px){.UserCreateAndSubmit-investingClubContainerLoggedIn .UserCreateAndSubmit-continueButton{transform:none}}.UserCreateAndSubmit-investingClubContainerLoggedIn .UserCreateAndSubmit-questionAndCta{color:#424242;font-size:12px;font-weight:700;margin-bottom:20px}.UserCreateAndSubmit-investingClubContainerLoggedIn .UserCreateAndSubmit-questionAndCta button{font-size:12px}.UserCreateAndSubmit-allAccessFlow .UserCreateAndSubmit-cta{color:#424242;font-size:16px;font-style:normal;font-weight:600;line-height:16px;margin-bottom:30px}@media (min-width:1020px){.UserCreateAndSubmit-allAccessFlow .UserCreateAndSubmit-cta{margin-bottom:37px}}.UserCreateAndSubmit-allAccessFlow .UserCreateAndSubmit-continueButton{background-color:#0053cf;border:none;font-size:14px;font-weight:700;letter-spacing:1px;line-height:16px}.UserCreateAndSubmit-allAccessFlow .UserCreateAndSubmit-continueButton:hover{background-color:#0053cf}.UserCreateAndSubmit-allAccessFlow .UserCreateAndSubmit-allAccessContinueButton:hover{background-color:#002f6c}@media (min-width:1020px){.UserCreateAndSubmit-plusFlow{width:322px}}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton{align-items:center;appearance:none;background-color:#001e5a;border:1px solid #001e5a;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-weight:600;font-weight:500;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:0 auto 24px;padding:16px 0;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:190px}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton>span{display:block;line-height:12px}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton [class*=" icon-"],.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton [class*=" icon-"]:before,.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton [class^=icon-]:before{line-height:12px}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton:focus,.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton:hover{background-color:#00081a;border-color:#00081a;color:#fff}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton[class*=touchButton]:hover{background-color:#001e5a;border-color:#001e5a;color:#fff}@media (hover:hover){.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton[class*=touchButton]:hover{background-color:#00081a;border-color:#00081a;color:#fff}}@media (min-width:760px){.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton{padding:0 30px;width:auto}}@media (min-width:1020px){.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton{width:190px}}@media (max-width:759px){.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton{width:100%}}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-ctaSignInOut{color:#001e5a}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-ctaSignInOut:focus,.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-ctaSignInOut:hover{color:#005594}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-formInputContainer{margin:0 auto 10px}@media (min-width:1020px){.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-formInputContainer{width:322px}}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-formInput{margin:0 auto}@media (min-width:760px) and (max-width:1019px){.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-formInput{width:100%}}.ProgressIndicator-stepsLine{background-color:#d9d9d9;flex:1;height:1px;margin-top:9px;width:100%}.ProgressIndicator-steps{display:flex;margin:0 auto;padding-bottom:40px;position:relative;width:115px}.ProgressIndicator-step{flex:0;position:relative}.ProgressIndicator-stepIcon{box-shadow:5px 5px 20px #1717171a}.ProgressIndicator-stepTitle{color:#747474;font-size:11px;font-weight:500;left:-42px;position:absolute;text-align:center;width:100px}.ProgressIndicator-stepTitleActive,.ProgressIndicator-stepTitleCurrent{color:#424242}.CreateAccount-container{width:min-content}@media (min-width:760px) and (max-width:1019px){.CreateAccount-container{width:558px}}@media (max-width:759px){.CreateAccount-container{width:100%}}.CreateAccount-signUpContainer{display:flex;margin:0 auto;width:min-content}@media (min-width:1020px){.CreateAccount-signUpContainer{padding:0 47px}}@media (max-width:1020px){.CreateAccount-signUpContainer{display:block;padding-top:0;width:auto}}.CreateAccount-createAccountContainerLoggedIn{display:block}.CreateAccount-createAccountContainerLoggedIn .CreateAccount-perksList{width:100%}@media (min-width:760px){.CreateAccount-createAccountContainerLoggedIn .CreateAccount-perksList{margin:30px;width:auto}}.CreateAccount-ctaSecondary{color:#424242;font-size:16px;font-weight:500;margin-bottom:10px;text-align:center}.CreateAccount-signedInMessage{background:#f1f1f1;border:1px solid #d9d9d9;border-radius:5px;color:#424242;font-size:14px;font-weight:600;line-height:20px;margin:10px auto;padding:5px;text-align:center;width:250px}.CreateAccount-perks{font-size:12px;line-height:14px;margin:0 10px 10px}.CreateAccount-perksContainer{height:100%;margin:10px auto;text-align:center;width:-moz-fit-content;width:fit-content}@media (min-width:760px){.CreateAccount-perksContainer{align-items:stretch;margin:20px auto 29px;max-width:465px;min-width:280px}}.CreateAccount-perk{display:flex;margin-bottom:8px}.CreateAccount-perkBullet{margin-top:4px}.CreateAccount-perkText{flex:1;line-height:18px;padding-left:8px;text-align:left}.CreateAccount-perksList{height:100%;margin:10px 0 27px;text-align:center;width:100%}@media (min-width:760px){.CreateAccount-perksList{align-items:stretch;margin:40px 19px 20px auto}}.CreateAccount-perksList .CreateAccount-ctaPrimary{color:#171717;font-size:20px;font-weight:600;line-height:24px;margin-bottom:1em;text-align:left;width:100%}@media (max-width:759px){.CreateAccount-perksList .CreateAccount-ctaPrimary{font-size:18px}}@media (max-width:1019px){.CreateAccount-perksList .CreateAccount-ctaPrimary{text-align:center}}.CreateAccount-perksList .CreateAccount-perk{margin-bottom:25px}.CreateAccount-perksList .CreateAccount-perkText{color:#071d39;font-size:18px;font-weight:500}@media (min-width:360px) and (max-width:759px){.CreateAccount-perksList .CreateAccount-perkText{font-size:16px}}.CreateAccount-continueButton{align-items:center;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-size:16px;font-weight:600;font-weight:700;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:0 auto 24px;padding:16px 0;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:190px}.CreateAccount-continueButton>span{display:block;line-height:12px}.CreateAccount-continueButton [class*=" icon-"],.CreateAccount-continueButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.CreateAccount-continueButton [class*=" icon-"]:before,.CreateAccount-continueButton [class^=icon-]:before{line-height:12px}.CreateAccount-continueButton:focus,.CreateAccount-continueButton:hover{background-color:#008456;border-color:#008456;color:#fff}.CreateAccount-continueButton[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.CreateAccount-continueButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.CreateAccount-continueButton{padding:0 30px;width:auto;width:190px}}@media (max-width:759px){.CreateAccount-continueButton{width:100%}}.SubscribeModal-modalContents{background-color:#fff;background-position:right -360px top 50px;background-repeat:no-repeat;background-size:900px;height:100%;padding:21px}.SubscribeModal-modalContents.SubscribeModal-investingclub{background-image:url(https://static-redesign.cnbcfm.com/dist/a3707990138080672bc2.svg)}.SubscribeModal-modalContents.SubscribeModal-pro{background-image:url(https://static-redesign.cnbcfm.com/dist/58666b98ea866f6cdb1b.svg)}.SubscribeModal-modalContents.SubscribeModal-allAccess{background-image:url(https://static-redesign.cnbcfm.com/dist/a888429ebce514cff229.svg)}.SubscribeModal-modalContents.SubscribeModal-plus{background-image:url(https://static-redesign.cnbcfm.com/dist/44944463efaf14fd092f.svg)}.SubscribeModal-createAccContainer{width:670px}@media (min-width:760px) and (max-width:1019px){.SubscribeModal-createAccContainer{width:558px}}@media (max-width:759px){.SubscribeModal-createAccContainer{width:100%}}.SubscribeModal-createAccContainer .SubscribeModal-ctaPrimary{color:#171717;font-size:20px;font-weight:600;margin-bottom:5px;text-align:center}@media (max-width:759px){.SubscribeModal-createAccContainer .SubscribeModal-ctaPrimary{font-size:18px}}.SignInOrSignUpModal-modalContents{background-image:url(https://static-redesign.cnbcfm.com/dist/44944463efaf14fd092f.svg);background-position:right -360px top 50px;background-repeat:no-repeat;background-size:900px;height:100%;padding:21px}@media (min-width:760px){.SignInOrSignUpModal-modalContents{background-position:right -360px bottom 10px}}.UnlockConfirmation-modalContents{padding:40px 71px 71px}@media (max-width:759px){.UnlockConfirmation-modalContents{padding:40px 51px 51px}}.UnlockConfirmation-logoHeader{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:28px;font-weight:700;line-height:1.05;padding-bottom:24px;text-align:center}@media (max-width:1019px){.UnlockConfirmation-logoHeader{font-size:28px;margin-bottom:12px}}@media (max-width:759px){.UnlockConfirmation-logoHeader{font-size:22px}}.UnlockConfirmation-logoProImg{display:inline-block;margin:0;padding:0;vertical-align:middle;width:204px}@media (max-width:1019px){.UnlockConfirmation-logoProImg{width:194px}}@media (max-width:759px){.UnlockConfirmation-logoProImg{width:164px}}.UnlockConfirmation-modalUnlockContainer{margin-left:auto;margin-right:auto;max-width:500px;padding:10px;text-align:center}@media (max-width:1019px){.UnlockConfirmation-modalUnlockContainer{width:100%}}.UnlockConfirmation-unlockText{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-weight:600;line-height:32px;padding-bottom:25px}@media (max-width:1019px){.UnlockConfirmation-unlockText{font-size:24px;line-height:26px;width:100%}}@media (max-width:759px){.UnlockConfirmation-unlockText{font-size:24px;line-height:22px}}.UnlockConfirmation-proText{color:#00a857}.UnlockConfirmation-unlockButton{align-items:center;background:#00a8573d;border-radius:50%;display:flex;height:40px;justify-content:center;margin-left:calc(50% - 20px);width:40px}.UnlockConfirmation-unlockIcon{height:25px;width:25px}.SignInOrSignUpConfirmationModal-modalContents{padding:21px}.LoggedInModal-modalContents{padding:40px 71px 71px}@media (max-width:759px){.LoggedInModal-modalContents{padding:40px 51px 51px}}.LoggedInModal-breaker{border:none;margin:0 -71px 24px;outline:.5px solid #cfd8e2}.LoggedInModal-logoHeader{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:28px;font-weight:700;line-height:1.05;padding-bottom:24px;text-align:center}@media (max-width:1019px){.LoggedInModal-logoHeader{font-size:28px;margin-bottom:12px}}@media (max-width:759px){.LoggedInModal-logoHeader{font-size:22px}}.LoggedInModal-logoProImg{display:inline-block;margin:0;padding:0;vertical-align:middle;width:204px}@media (max-width:1019px){.LoggedInModal-logoProImg{width:194px}}@media (max-width:759px){.LoggedInModal-logoProImg{width:164px}}.LoggedInModal-modalUnlockContainer{margin-left:auto;margin-right:auto;max-width:500px;padding:10px;text-align:center}@media (max-width:1019px){.LoggedInModal-modalUnlockContainer{width:100%}}.LoggedInModal-unlockText{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-weight:600;line-height:32px;padding-bottom:25px}@media (max-width:1019px){.LoggedInModal-unlockText{font-size:24px;line-height:26px;width:100%}}@media (max-width:759px){.LoggedInModal-unlockText{font-size:24px;line-height:22px}}.LoggedInModal-headerTitle{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:28px;font-weight:700;line-height:1.05;padding-bottom:20px}@media (max-width:1019px){.LoggedInModal-headerTitle{font-size:28px}}@media (max-width:759px){.LoggedInModal-headerTitle{font-size:24px;line-height:25px;padding-bottom:14px}}.LoggedInModal-proText{color:#00a857}.LoggedInModal-unlockButton{align-items:center;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;box-shadow:-2px 2px 2px #17171740;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-size:22px;font-weight:600;height:40px;height:60px;justify-content:center;letter-spacing:1px;margin:0 auto;max-width:300px;outline:.5px solid #333;padding:0 20px;text-align:center;text-transform:uppercase;text-transform:none;transition:all .15s linear;width:100%;width:80%}.LoggedInModal-unlockButton>span{display:block;line-height:12px}.LoggedInModal-unlockButton [class*=" icon-"],.LoggedInModal-unlockButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.LoggedInModal-unlockButton [class*=" icon-"]:before,.LoggedInModal-unlockButton [class^=icon-]:before{line-height:12px}.LoggedInModal-unlockButton:focus,.LoggedInModal-unlockButton:hover{background-color:#008456;border-color:#008456;color:#fff}.LoggedInModal-unlockButton[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.LoggedInModal-unlockButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.LoggedInModal-unlockButton{padding:0 30px;width:auto;width:100%}}.LoggedInModal-unlockIcon{margin-right:8px}.DynamicPaywallSignUpModal-modalContents{max-height:calc(100% - 1px);padding-top:21px}.DynamicPaywallSignUpModal-logoHeader{align-items:center;border-bottom:1px solid #cfd8e2;color:#333;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:48px;font-weight:700;justify-content:center;line-height:1.05;margin-bottom:24px;padding-bottom:20px;text-align:center}@media (max-width:1019px){.DynamicPaywallSignUpModal-logoHeader{font-size:36px;margin-bottom:0}}@media (max-width:759px){.DynamicPaywallSignUpModal-logoHeader{font-size:22px}}.DynamicPaywallSignUpModal-modalSignUpContainer{margin-left:auto;margin-right:auto;max-width:911px;padding:10px}@media (max-width:1019px){.DynamicPaywallSignUpModal-modalSignUpContainer{width:100%}}.DynamicPaywallSignUpModal-signUpContainer{display:flex;flex-direction:row;justify-content:space-between}@media (max-width:1019px){.DynamicPaywallSignUpModal-signUpContainer{display:block}}.DynamicPaywallSignUpModal-signUpContainer>:last-child{margin-top:0}.DynamicPaywallSignUpModal-signUpContainer>:last-child form>:first-child,.DynamicPaywallSignUpModal-signUpContainer>:last-child form>:nth-child(2){margin-bottom:20px}.DynamicPaywallSignUpModal-previewContainer{padding-right:10px;position:relative}@media (max-width:1019px){.DynamicPaywallSignUpModal-previewContainer{padding:0 20px 20px;width:100%}}@media (max-width:759px){.DynamicPaywallSignUpModal-previewContainer{padding:15px}}.DynamicPaywallSignUpModal-signupText{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-weight:600;line-height:32px;padding-bottom:25px}@media (max-width:1019px){.DynamicPaywallSignUpModal-signupText{font-size:19px;line-height:26px;padding-bottom:15px;width:100%}}@media (max-width:759px){.DynamicPaywallSignUpModal-signupText{font-size:16px;line-height:22px}}.DynamicPaywallSignUpModal-signUpPerks{list-style-type:unset;margin-top:7px}.DynamicPaywallSignUpModal-signUpPerks li{font-size:22px;font-weight:500;list-style-position:inside;list-style-type:unset}@media (max-width:759px){.DynamicPaywallSignUpModal-signUpPerks li{font-size:16px}}.DynamicPaywallSignUpModal-headerTitle{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:34px;font-weight:700;line-height:1.05;padding-bottom:20px}@media (max-width:1019px){.DynamicPaywallSignUpModal-headerTitle{font-size:36px;padding-bottom:10px}}@media (max-width:759px){.DynamicPaywallSignUpModal-headerTitle{font-size:24px;line-height:25px;padding-bottom:14px}}.DynamicPaywallSignUpModal-proText{color:#00a857}.DynamicPaywallSignUpModal-ctaText{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:20px;font-weight:600}@media (max-width:1019px){.DynamicPaywallSignUpModal-ctaText{font-size:17px}}@media (max-width:759px){.DynamicPaywallSignUpModal-ctaText{font-size:14px}}.DynamicPaywallSignUpModal-ctaButton{color:#00a857;cursor:pointer;font-size:20px;font-weight:600}@media (max-width:1019px){.DynamicPaywallSignUpModal-ctaButton{font-size:17px}}@media (max-width:759px){.DynamicPaywallSignUpModal-ctaButton{font-size:14px}}.ResetPasswordModal-modalContents{padding:20px}@media (min-width:760px){.ResetPasswordModal-modalContents{width:500px}}.ResetPasswordModal-container{color:#171717;font-weight:700;padding:20px 50px;text-align:center;width:500px}.ResetPasswordModal-boundedContainer{max-width:350px}.ResetPasswordModal-confirmationHeader{font-size:18px;margin-top:10px}.ResetPasswordModal-email{color:#9e9e9e}.ResetPasswordModal-checkmark{height:50px;width:50px}.ResetPasswordModal-okayButton{align-items:center;appearance:none;background-color:#002f6c;border:1px solid #002f6c;border-radius:3px;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:20px auto 15px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:200px}.ResetPasswordModal-okayButton>span{display:block;line-height:12px}.ResetPasswordModal-okayButton [class*=" icon-"],.ResetPasswordModal-okayButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.ResetPasswordModal-okayButton [class*=" icon-"]:before,.ResetPasswordModal-okayButton [class^=icon-]:before{line-height:12px}.ResetPasswordModal-okayButton:focus,.ResetPasswordModal-okayButton:hover,.ResetPasswordModal-okayButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}@media (hover:hover){.ResetPasswordModal-okayButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.ResetPasswordModal-okayButton{padding:0 30px;width:auto}}.ResetPasswordModal-okayButtonPro{align-items:center;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:20px auto 15px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:200px}.ResetPasswordModal-okayButtonPro>span{display:block;line-height:12px}.ResetPasswordModal-okayButtonPro [class*=" icon-"],.ResetPasswordModal-okayButtonPro [class^=icon-]{height:12px;margin-left:5px;position:relative}.ResetPasswordModal-okayButtonPro [class*=" icon-"]:before,.ResetPasswordModal-okayButtonPro [class^=icon-]:before{line-height:12px}.ResetPasswordModal-okayButtonPro:focus,.ResetPasswordModal-okayButtonPro:hover{background-color:#008456;border-color:#008456;color:#fff}.ResetPasswordModal-okayButtonPro[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.ResetPasswordModal-okayButtonPro[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.ResetPasswordModal-okayButtonPro{padding:0 30px;width:auto}.ResetPasswordModal-okayButton{width:200px}}.AddCardForm-addCardFormContainer{display:flex;flex-direction:column}.AddCardForm-hostedPaymentPagesContainer>iframe{border:none;min-height:340px;width:100%}.AddCardForm-backButton{align-self:flex-end;color:#0053cf;font-size:12px;font-weight:600;letter-spacing:.5px;line-height:14.62px}.CardList-cardListHeader{display:flex;flex-direction:row;justify-content:space-between;margin:20px 0}.CardList-headline{font-size:16px;font-weight:500;letter-spacing:.5px;line-height:19.49px;margin:0}.CardList-addCardButton{color:#0053cf;font-size:12px;font-weight:600;letter-spacing:.5px;line-height:14.62px}.CardList-listItem{align-items:center;border-top:1px solid #bababa;display:flex;flex-direction:row;gap:10px;padding:5px 10px}.CardList-cardList{border-bottom:1px solid #bababa}.CardList-selectCol input{cursor:pointer}.CardList-cardCol{font-size:12px;font-weight:600;letter-spacing:.5px;line-height:28px;text-align:left}.CardList-capitalized{text-transform:capitalize}.CardList-expCol{color:#747474;font-size:12px;font-weight:500;letter-spacing:.5px;line-height:14.62px;margin-left:auto}.Card-cardContainer,.SavedCards-savedCardsContainer{display:block}.PayPalButton-loading{align-items:center;cursor:default;display:flex;height:48px;justify-content:center;opacity:.8;pointer-events:none;width:100%}.PayPalButton-loading:after{animation:PayPalButton-spin 1s linear infinite;border:8px solid #b9b9b9;border-radius:50%;border-top-color:#fff;content:"";height:20px;position:absolute;width:20px;z-index:3}@keyframes PayPalButton-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.PayPalList-cardListHeader{display:flex;flex-direction:row;justify-content:space-between;margin:20px 0}.PayPalList-headline{font-size:16px;font-weight:500;letter-spacing:.5px;line-height:19.49px;margin:0}.PayPalList-listItem{align-items:center;border-top:1px solid #bababa;display:flex;flex-direction:row;gap:10px;padding:5px 0}.PayPalList-cardList{border-bottom:1px solid #bababa}.PayPalList-selectCol input{cursor:pointer}.PayPalList-cardCol{font-size:12px;font-weight:600;letter-spacing:.5px;line-height:28px;text-align:left}.SavedAccounts-savedPaypalAccountsContainer{display:block;margin-bottom:15px}.PayPal-payPalContainer{display:block;margin-top:20px}.PayPal-description,.PayPal-newAccountDescription{color:#424242;font-size:12px;font-weight:600;line-height:16px;margin-bottom:15px}.PayPal-newAccountDescription{margin-top:15px}.ApplePay-applePayContainer{display:block}.ApplePay-headline{font-size:16px;font-weight:500;letter-spacing:.5px;line-height:19.49px;margin-bottom:10px}.FormattedPrice-decimal{font-size:12px;position:relative;top:-5px}.PlanSelector-planSelectorContainer{margin-bottom:10px}.PlanSelector-headline{font-size:16px;font-weight:500;line-height:16px;margin:10px 0}.PlanSelector-planOptions{display:flex;flex-wrap:wrap;gap:10px;justify-content:space-between;min-height:100px;padding:0 10px}.PlanSelector-planButton{align-items:center;background-color:#fff;border:1px solid #0053cf;border-radius:25px;border-top:7px solid #0053cf;box-shadow:0 4px 6px 0 #0000001a;cursor:pointer;display:flex;flex:1;flex-direction:row;gap:10px;justify-content:center;max-height:81px;max-width:152px;padding:0;position:relative;text-align:center;transition:background-color .3s,border-color .3s}@media (min-width:760px){.PlanSelector-planButton{max-width:167px}}.PlanSelector-planButton:hover{background-color:#f7f7f7}.PlanSelector-planButton.PlanSelector-selected{border-color:#0053cf}.PlanSelector-planButton .PlanSelector-specialOffer{text-wrap:nowrap;background-color:#fcb700;border-radius:10px;color:#171717;display:block;font-size:12px;font-style:normal;font-weight:700;height:25px;left:50%;letter-spacing:1px;margin-top:-15px;padding:5px 10px;position:absolute;text-align:center;text-transform:uppercase;top:0;transform:translateX(-50%);width:-moz-fit-content;width:fit-content}.PlanSelector-radioButton{accent-color:#0053cf;cursor:pointer;height:20px;width:20px}.PlanSelector-planContent{align-items:flex-start;display:flex;flex-direction:column}.PlanSelector-planName{font-size:15px;font-weight:600;letter-spacing:1.5px;line-height:28px;text-transform:uppercase}.PlanSelector-planPrice{font-size:22px;font-weight:500;letter-spacing:.029px;line-height:28px}.InputField-inputFieldContainer{width:100%}.InputField-inputField{border:1px solid #ddd;border-radius:5px;padding:10px;width:100%}.InputField-inputField:-webkit-autofill,.InputField-inputField:-webkit-autofill:active,.InputField-inputField:-webkit-autofill:focus,.InputField-inputField:-webkit-autofill:hover{background-color:#fff!important;-webkit-box-shadow:inset 0 0 0 30px #fff!important}.InputField-inputError{color:#ce2b2b;font-size:12px;height:20px;min-height:20px;padding-left:5px}.SelectField-selectFieldContainer{position:relative;width:100%}.SelectField-selectField{appearance:none;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3E%3C/svg%3E");background-position:right 4px center;background-repeat:no-repeat;background-size:16px 12px;border:1px solid #ddd;border-radius:5px;overflow:hidden!important;padding:10px;text-overflow:ellipsis;white-space:nowrap;width:100%}.SelectField-selectError{color:#ce2b2b;font-size:12px;min-height:13px}.UserDetails-userDetailsContainer{margin-bottom:10px;max-width:315px}@media (min-width:760px){.UserDetails-userDetailsContainer{max-width:380px}}.UserDetails-headline{font-size:16px;font-weight:500;line-height:16px;margin:10px 0}.UserDetails-userDetailsForm{column-gap:5px;display:grid;grid-template-columns:repeat(8,35px)}@media (min-width:760px){.UserDetails-userDetailsForm{grid-template-columns:repeat(8,43px)}}.UserDetails-row{position:relative}.UserDetails-row:first-child{column-gap:5px;grid-column:1/span 4;grid-row:1}.UserDetails-row:nth-child(2){column-gap:5px;grid-column:5/span 4;grid-row:1}.UserDetails-row:nth-child(3){grid-column:1/span 8;grid-row:2}.UserDetails-row:nth-child(4){grid-column:1/span 5;grid-row:3}.UserDetails-row:nth-child(5){grid-column:6/span 3;grid-row:3}.UserDetails-row:nth-child(6){grid-column:1/span 3;grid-row:4}.UserDetails-row:nth-child(7){grid-column:4/span 5;grid-row:4}@media (min-width:760px){.UserDetails-row:nth-child(3){grid-column:1/span 5;grid-row:2}.UserDetails-row:nth-child(4){grid-column:6/span 3;grid-row:2}.UserDetails-row:nth-child(5){grid-column:1/span 2;grid-row:3}.UserDetails-row:nth-child(6){grid-column:3/span 2;grid-row:3}.UserDetails-row:nth-child(7){grid-column:5/span 4;grid-row:3}}.PaymentMethodLogo-paymentLogo{min-width:78px}.PaymentSelector-paymentSelectorContainer{margin-bottom:10px}.PaymentSelector-headline{font-size:16px;font-weight:500;line-height:16px;margin:10px 0}.PaymentSelector-paymentOptions{display:flex;flex-wrap:nowrap;gap:10px;justify-content:space-evenly}.PaymentSelector-paymentButton{background-color:#fff;border:1px solid #9e9e9e;border-radius:5px;cursor:pointer;flex-grow:1;min-width:30%;padding:10px;transition:background-color .3s,border-color .3s}.PaymentSelector-paymentButton:hover{background-color:#f7f7f7;border-color:#0053cf}.PaymentSelector-paymentButton.PaymentSelector-selected{border-color:#0053cf}.Payments-paymentMethodsContainer{display:block}@media (min-width:760px){.Payments-paymentMethodsContainer{min-height:300px}}.AccountInfo-accountInfoContainer{align-items:center;display:flex;flex-direction:column;gap:10px;justify-content:center}.AccountInfo-email{color:#424242;font-size:14px;font-weight:600;letter-spacing:.5px;line-height:17.05px;text-align:left}.AccountInfo-email .AccountInfo-label{padding-right:5px}.AccountInfo-email .AccountInfo-value{color:#9e9e9e}.AccountInfo-signOut{color:#424242;font-size:12px;font-weight:600;line-height:14.62px;text-align:left}.AccountInfo-signOut .AccountInfo-label{padding-right:5px}.AccountInfo-signOut a.AccountInfo-link{color:#0053cf;font-size:12px;font-weight:500;letter-spacing:1px;line-height:12px;margin:auto 0;text-align:left}.AccountInfo-signOut a.AccountInfo-link:focus,.AccountInfo-signOut a.AccountInfo-link:hover{color:#fcb700}.Description-descriptionContainer{align-self:flex-start;color:#747474;font-size:12px;font-weight:600;line-height:16px;margin-bottom:10px;text-align:left}.Disclaimer-disclaimerContainer{font-size:11px;font-weight:600;line-height:13px;text-align:left;text-transform:uppercase}a.Disclaimer-link{color:#0053cf;margin:auto 0}a.Disclaimer-link:focus,a.Disclaimer-link:hover{color:#fcb700;text-decoration:underline}.OrderPreview-orderPreviewContainer{align-items:center;border-radius:5px;color:#171717;display:flex;flex-direction:column;padding:20px}.OrderPreview-logoContainerDesktop{display:none}@media (min-width:760px){.OrderPreview-logoContainerDesktop{display:block;margin-bottom:20px;padding-top:20px}}.OrderPreview-headline{align-self:flex-start;font-size:18px;font-weight:600;line-height:16px;margin-bottom:10px;margin-top:0;text-align:left}.OrderPreview-details{font-size:1em;margin-bottom:10px;width:100%}.OrderPreview-row{display:flex;gap:10px;justify-content:space-between;padding:8px 0}.OrderPreview-borderBottom{border-bottom:1px solid #f1f1f1}.OrderPreview-label,.OrderPreview-value{color:#171717;font-size:1.2em;font-size:16px;font-weight:600;line-height:20px}.OrderPreview-subscribeButton{background-color:#0053cf;border:none;border-radius:5px;color:#fff;cursor:pointer;font-size:14px;font-weight:600;height:44px;letter-spacing:1.09px;line-height:16px;margin:20px auto;padding:10px 20px;text-align:center;text-transform:uppercase;transition:background-color .3s;width:100%}.OrderPreview-subscribeButton:disabled{background-color:#d9d9d9;color:#424242;cursor:not-allowed}.SubscriptionCheckoutModal-subscriptionModalContainer{display:flex;flex-direction:column;height:-moz-fit-content;height:fit-content;position:relative;width:inherit}@media (min-width:760px){.SubscriptionCheckoutModal-subscriptionModalContainer{flex-direction:row}}.SubscriptionCheckoutModal-error{color:#d0021b;font-size:20px;font-weight:500;height:600px;width:790px}.SubscriptionCheckoutModal-error,.SubscriptionCheckoutModal-loading{align-items:center;cursor:default;display:flex;justify-content:center;opacity:.8;pointer-events:none}.SubscriptionCheckoutModal-loading:before{background:#999;content:"";height:100%;left:0;position:absolute;top:0;width:100%;z-index:999}.SubscriptionCheckoutModal-loading:after{animation:SubscriptionCheckoutModal-spin 1s linear infinite;border:8px solid #b9b9b9;border-radius:50%;border-top-color:#fff;content:"";height:50px;position:absolute;width:50px;z-index:999}@keyframes SubscriptionCheckoutModal-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.SubscriptionCheckoutModal-logoContainerMobile{display:block;padding:20px 0;text-align:center}@media (min-width:760px){.SubscriptionCheckoutModal-logoContainerMobile{display:none}}.SubscriptionCheckoutModal-leftPane{background:#fff;flex:1}@media (min-width:760px){.SubscriptionCheckoutModal-leftPane{padding:0 15px}}.SubscriptionCheckoutModal-rightPane{background-color:#f8f8f8;flex:1;width:auto}.SubscriptionCheckoutModal-leftPaneContent{display:flex;flex-direction:column;height:100%;max-width:-moz-fit-content;max-width:fit-content;padding:20px 30px}@media (min-width:760px){.SubscriptionCheckoutModal-leftPaneContent{max-width:470px}}.SubscriptionCheckoutModal-rightPaneContent{flex-direction:column;height:100%;justify-content:space-around;max-width:-moz-fit-content;max-width:fit-content;padding:0 20px}@media (min-width:760px){.SubscriptionCheckoutModal-rightPaneContent{max-width:350px}}.SubscriptionCheckoutModal-accountInfoDesktop{display:none}@media (min-width:760px){.SubscriptionCheckoutModal-accountInfoDesktop{display:block;margin-top:20px}}.SubscriptionCheckoutModal-accountInfoMobile{display:block;margin:20px auto 50px}@media (min-width:760px){.SubscriptionCheckoutModal-accountInfoMobile{display:none}}.SubscriptionCheckoutContainer-container{display:block;height:-moz-fit-content;height:fit-content}.NotificationProvider-backdrop{background-color:#fff;box-shadow:0 4px 4px 0 #00000040;height:100%;padding:30px 30px 20px;position:fixed;right:0;top:0;width:605px;z-index:9999}@media (max-width:1019px){.NotificationProvider-backdrop{width:524px}}@media (max-width:759px){.NotificationProvider-backdrop{padding:20px;width:100%}}.NotificationProvider-notificationWrapper{display:flex;flex-direction:column;height:calc(100% - 100px);overflow-y:auto;overscroll-behavior:contain}@media (max-width:759px){.NotificationProvider-notificationWrapper{height:calc(100% - 80px)}}.NotificationProvider-closeButton{float:right}.NotificationProvider-closeButton:focus-visible>span>svg{border:1px solid #071d39;border-radius:4px}.NotificationProvider-headingContainer{display:flex;flex-direction:row;justify-content:space-between;margin-bottom:30px}@media (max-width:759px){.NotificationProvider-headingContainer{margin-bottom:15px}}.NotificationProvider-notificationsPanelTitle{color:#000;font-size:28px;font-weight:400;letter-spacing:.28px;line-height:28px}@media (max-width:759px){.NotificationProvider-notificationsPanelTitle{font-size:24px}}.NotificationProvider-liveEventContainerWrapper{margin-bottom:30px}@media (max-width:759px){.NotificationProvider-liveEventContainerWrapper{margin-bottom:25px}}.NotificationProvider-liveEventContainer{display:flex;flex-direction:column}.NotificationProvider-smallSpan{background-color:#0477c9;display:block;height:6px;width:110px}.NotificationProvider-smallSpanNotificationsOff{background-color:#747474}.NotificationProvider-border{background-color:#747474;display:block;height:1px;width:100%}.NotificationProvider-notificationsHeading{color:#000;font-size:20px;font-weight:700;letter-spacing:.01em;line-height:24px;margin-bottom:10px;margin-top:7px;text-transform:uppercase}@media (max-width:759px){.NotificationProvider-notificationsHeading{font-size:18px;margin-top:5px}}.NotificationProvider-focusTrapContainer{height:100%;overflow:auto}.NotificationProvider-watchlistAlertsContainer{display:flex;flex-direction:column}.NotificationProvider-toggleContainer{align-items:center;bottom:20px;display:flex;flex-direction:row;float:right;gap:10px;position:fixed;right:30px}.NotificationProvider-toggleText{color:#000;font-size:15px;font-weight:500}.NotificationProvider-switch{display:inline-block;height:19px;position:relative;width:40px}.NotificationProvider-switch:focus-within>.NotificationProvider-slider{border:1px solid #000}.NotificationProvider-switch input{height:0;opacity:0;width:0}.NotificationProvider-slider{background-color:#ccc;border:1px solid #ccc;border-radius:34px;bottom:0;cursor:pointer;left:0;position:absolute;right:0;top:0;transition:.4s}.NotificationProvider-slider:before{background-color:#fff;border-radius:50%;bottom:3px;content:"";height:12px;left:2px;position:absolute;transition:.4s;width:12px}input:checked+.NotificationProvider-slider{background-color:#0477c9;border:1px solid #0477c9}input:checked+.NotificationProvider-slider:before{left:-2px;transform:translateX(26px)}.NotificationProvider-notificationPanelOffText{margin-top:30px}.NotificationProvider-yrhiind{color:#008456;font-weight:700}.NotificationProvider-yrloind{color:#b40909;font-weight:700}.NotificationProvider-notificationsHeadingContainer{align-items:center;display:flex;justify-content:space-between}.NotificationProvider-dropdownButton{align-items:center;border:1px solid #0000;border-radius:4px;color:#fff;display:flex}.NotificationProvider-dropdownButton:active{-webkit-tap-highlight-color:transparent}.NotificationProvider-dropdownButton:focus-visible{border:1px solid #4699d6;border-radius:4px}@media (min-width:760px){.NotificationProvider-dropdownButton{margin-right:10px}}.NotificationProvider-dropdownButton .NotificationProvider-dropdownArrow,.NotificationProvider-dropdownButton .NotificationProvider-dropdownUpArrow{background:#4699d6;height:13px;width:21px}.NotificationProvider-dropdownButton .NotificationProvider-dropdownArrow,.NotificationProvider-dropdownButton .NotificationProvider-dropdownUpArrow{mask-image:url(https://static-redesign.cnbcfm.com/dist/a09d43acfa362f012895.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/a09d43acfa362f012895.svg)}.NotificationProvider-dropdownButton .NotificationProvider-dropdownUpArrow{transform:scaleY(-1)}.NotificationProvider-collapseLiveEventContainer,.NotificationProvider-noLiveEventTextCollapse{display:none}.WatchlistAlertNotifications-watchlistAlertsHeading{color:#000;font-size:20px;font-weight:700;letter-spacing:.01em;line-height:24px;margin-bottom:10px;margin-top:7px;text-transform:uppercase}@media (max-width:759px){.WatchlistAlertNotifications-watchlistAlertsHeading{font-size:18px;margin-top:5px}}.WatchlistAlertNotifications-watchlistAlertItemLink:focus-visible .WatchlistAlertNotifications-watchlistAlertItem{background-color:#f1f1f1}.WatchlistAlertNotifications-watchlistAlertItem{align-items:center;background-color:#f8f8f8;border-bottom:1px solid #dedede;display:flex;gap:10px;margin-bottom:1px;padding:15px 10px}.WatchlistAlertNotifications-watchlistAlertItem:hover{background-color:#f1f1f1}@media (max-width:759px){.WatchlistAlertNotifications-watchlistAlertItem{min-height:50px;padding:10px}}.WatchlistAlertNotifications-watchlistAlertIcon>img{height:23.33px;width:25px}@media (max-width:759px){.WatchlistAlertNotifications-watchlistAlertIcon>img{height:16px;width:16px}}.WatchlistAlertNotifications-watchlistAlertTitle{align-items:center;color:#171717;display:flex;font-size:12px;font-weight:500;gap:5px;line-height:14.62px}@media (max-width:1019px){.WatchlistAlertNotifications-watchlistAlertTitle{align-items:baseline;flex-direction:column}}@media (max-width:759px){.WatchlistAlertNotifications-watchlistAlertTitle{font-size:14px}}.WatchlistAlertNotifications-watchlistSymbol{font-weight:700}.WatchlistAlertNotifications-notificationsQuoteData{align-items:center;background-color:#fff;border:1px solid #9e9e9e;border-radius:8px;display:flex;font-size:12px;font-weight:800;height:29px;justify-content:center;padding:0 5px;white-space:nowrap}.WatchlistAlertNotifications-notificationsQuoteData .WatchlistAlertNotifications-symbolDecline,.WatchlistAlertNotifications-notificationsQuoteData .WatchlistAlertNotifications-symbolGain{color:#071d39}.WatchlistAlertNotifications-notificationsQuoteData .WatchlistAlertNotifications-quoteGain{color:#008456}.WatchlistAlertNotifications-notificationsQuoteData .WatchlistAlertNotifications-quoteDecline{color:#ce2b2b}.WatchlistAlertNotifications-notificationsQuoteData .WatchlistAlertNotifications-quoteDecline span:nth-child(2),.WatchlistAlertNotifications-notificationsQuoteData .WatchlistAlertNotifications-quoteGain span:nth-child(2){margin-left:4px}.WatchlistAlertNotifications-quoteSeperator{color:#747474;margin-left:4px;margin-right:4px}.NewsAlertNotifications-liveEventItemLink:focus-visible,.NewsAlertNotifications-liveEventItemLink:focus-visible .NewsAlertNotifications-liveEventItemWithBackground{background-color:#f1f1f1}.NewsAlertNotifications-liveEventItem{align-items:center;border-bottom:1px solid #dedede;display:flex;gap:10px;padding:15px 10px}@media (max-width:759px){.NewsAlertNotifications-liveEventItem{min-height:50px;padding:10px}}.NewsAlertNotifications-liveEventTitle{color:#171717;font-size:12px;font-weight:500;line-height:14px}@media (max-width:759px){.NewsAlertNotifications-liveEventTitle{font-size:14px}}.NewsAlertNotifications-clubPill{color:#0496ff}.NewsAlertNotifications-clubPill,.NewsAlertNotifications-proPill{font-size:10px;font-weight:700;letter-spacing:1.5px;line-height:10px}.NewsAlertNotifications-proPill{color:#00a857}.NewsAlertNotifications-lockIcon{position:relative}.NewsAlertNotifications-lockIcon span{display:none}.NewsAlertNotifications-lockIcon:hover span{bottom:20px;display:block;position:absolute;right:-8px;white-space:nowrap}.NewsAlertNotifications-tooltipArrow{background-color:#fff!important;border-left:11px solid #0000;border-right:11px solid #0000;left:-6px;top:-14px}.NewsAlertNotifications-tooltip{border-radius:4px;color:#fff;font-size:12px;font-weight:600;height:21px;letter-spacing:1px;line-height:7px;padding:7px 4px 7px 8px;text-align:left}.NewsAlertNotifications-clubTooltipArrow{border-top:8px solid #0496ff}.NewsAlertNotifications-proTooltipArrow{border-top:8px solid #008456}.NewsAlertNotifications-proTooltip{background-color:#008456}.NewsAlertNotifications-clubTooltip{background-color:#0496ff}.NewsAlertNotifications-liveEventIcon>img{height:23.33px;width:25px}@media (max-width:759px){.NewsAlertNotifications-liveEventIcon>img{height:16px;width:16px}}.NewsAlertNotifications-liveEventPill{align-items:flex-end;display:flex;flex-direction:column;gap:3px;margin-left:auto}.NewsAlertNotifications-timestamp{color:#424242;font-size:10px;font-weight:600;letter-spacing:1.5px;line-height:10px;text-transform:uppercase;white-space:nowrap}.NewsAlertNotifications-liveEventItemWithBackground{background-color:#f8f8f8}.NewsAlertNotifications-liveEventItemWithBackground:hover{background-color:#f1f1f1}.NewsAlertNotifications-tradeAlertsTitle{color:#005594;font-size:12px;font-weight:700}.CreateOrEditWatchlist-watchlistContainer{display:flex;flex-direction:column;gap:50px;overflow:hidden}@media (max-width:759px){.CreateOrEditWatchlist-watchlistContainer{gap:30px}}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-watchlistCreateOrEditContainer{display:flex;flex-direction:column;gap:15px}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-editWatchlistText{color:#000;font-size:20px;font-weight:400;letter-spacing:.2px;line-height:24px}@media (max-width:759px){.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-editWatchlistText{font-size:14px;line-height:16.8px}}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-editWatchlistLink{color:#005594;display:flex;font-size:20px;font-style:normal;font-weight:500;gap:7px;height:20px;letter-spacing:1.091px;line-height:16px;text-align:center;-webkit-text-decoration-line:underline;text-decoration-line:underline}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-editWatchlistLink>img{height:16px;position:relative;top:3px;width:16px}@media (max-width:759px){.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-editWatchlistLink>img{height:12px;width:12px}}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-editWatchlistLink:hover{color:#005594}@media (max-width:759px){.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-editWatchlistLink{font-size:14px;line-height:16px}}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-createWatchlistText{color:#000;font-size:32px;font-weight:400;letter-spacing:.03px;line-height:40px;text-align:center}@media (min-width:760px){.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-createWatchlistText{margin-top:30px}}@media (max-width:759px){.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-createWatchlistText{font-size:24px;line-height:29.23px;margin-top:10px}}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-createWatchlistContainer{display:flex;flex-direction:column;gap:50px}@media (max-width:759px){.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-createWatchlistContainer{gap:30px}}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-createWatchlistButton{align-items:center;background-color:#005594;color:#fff;cursor:pointer;display:flex;font-size:16px;font-weight:600;height:50px;justify-content:center;letter-spacing:1.091px;line-height:16px;margin:auto;text-align:center;text-transform:uppercase;white-space:nowrap;width:236px}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-createWatchlistButton:hover{color:#fff}@media (max-width:759px){.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-createWatchlistButton{font-size:14px;height:46px;margin-bottom:20px;width:208px}}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-watchlistImg{background-image:url(https://static-redesign.cnbcfm.com/dist/aaef357fd7f6d3bbf46a.png);background-repeat:no-repeat;background-size:423px 184px;height:184px;margin:35px auto auto;width:423px}@media (max-width:759px){.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-watchlistImg{background-image:url(https://static-redesign.cnbcfm.com/dist/6f13373a0304d88f6030.png);background-size:257px 168px;height:168px;margin-top:15px;width:257px}}.SplitStats-splitStats{margin:15px 0 0}@media (min-width:760px){.SplitStats-splitStats{display:none}}.SplitStats-splitStats .SplitStats-title{color:#002f6c;font-size:18px;font-weight:800;text-transform:uppercase}.SplitStats-splitStats .SplitStats-list,.SplitStats-splitStats .SplitStats-listSingle{grid-gap:0 15px;display:grid;grid-template-columns:1fr 1fr;list-style:none;margin:0;padding:0}.SplitStats-splitStats .SplitStats-flowColumn{grid-auto-flow:column;grid-template-rows:repeat(4,auto)}.SplitStats-splitStats .SplitStats-listSingle{grid-auto-flow:row;grid-template-columns:1fr;grid-template-rows:none}.SplitStats-splitStats .SplitStats-listSingle .SplitStats-item{border-bottom:0;font-size:16px;margin:0;padding:5px 2px}.SplitStats-splitStats .SplitStats-listSingle .SplitStats-item:nth-child(odd){background:#f8f8f8}.SplitStats-splitStats .SplitStats-listSingle .SplitStats-name{color:#171717;font-weight:400}.SplitStats-splitStats .SplitStats-item{align-items:center;border-bottom:1px solid #d9d9d9;box-sizing:border-box;display:flex;font-family:Proxima Nova,sans-serif;font-size:11px;font-weight:800;justify-content:space-between;margin:0 0 5px;padding:0 0 5px}.SplitStats-splitStats .SplitStats-name{color:#747474}.SplitStats-splitStats .SplitStats-price{color:#171717}.ProPill-proPillLink{display:inline-block;padding-right:4px}.ProPill-proPill{bottom:0;display:inline-block;position:relative;vertical-align:initial;width:auto}.PieChart-chart{border-radius:50%;box-shadow:0 4px 4px #00000040;padding:0;pointer-events:all}.PieChart-chart,.PieChart-inner{height:var(--diameter);width:var(--diameter)}.PieChart-inner{display:grid;place-items:center;pointer-events:none;position:absolute;text-align:center}.PieChart-overlay{border-radius:50%;box-shadow:calc(var(--shadowOffset)*-1) var(--shadowOffset) 5px 1px #00000040;display:flex;flex-direction:column;font-family:Proxima Nova,Helvetica,Arial,sans-serif;height:calc(var(--diameter) - var(--strokeWidth)*2);justify-content:center;width:calc(var(--diameter) - var(--strokeWidth)*2)}.PieChart-total{font-size:20px;font-weight:600;line-height:20px}.PieChart-ratings{font-size:10px;font-weight:500;line-height:12px}.PieChart-consensus{word-wrap:break-word;font-size:16px;font-weight:600;hyphens:auto;line-height:16px;padding:4px}.AnalystConsensus-container{background:#fff;border:1px solid #d9d9d9;border-radius:10px;box-shadow:0 4px 4px #00000040;color:#000;display:grid;font-family:Proxima Nova,Helvetica,Arial,sans-serif;grid-template-columns:2fr 3fr;grid-template-rows:42px 199px;height:241px;overflow:hidden}.AnalystConsensus-containerWebservice{margin-bottom:30px}.AnalystConsensus-header{align-items:center;border-bottom:3px solid #00a857;display:flex;grid-column:1/3;grid-row:1/2;justify-content:space-between;padding:4px 20px 0 16px}.AnalystConsensus-proPill{height:20px}.AnalystConsensus-stockInfo{align-items:center;color:#005594;display:flex;line-height:19px;min-height:22px}.AnalystConsensus-companyName{font-size:20px;font-weight:700;line-height:20px;margin-right:8px}.AnalystConsensus-stockSymbol{border-left:2px solid #005594;color:#005594!important;font-size:18px;font-style:normal;font-weight:500;line-height:20px;padding-left:8px;text-decoration:none!important}.AnalystConsensus-stockSymbol:hover{color:#fcb700!important}.AnalystConsensus-leftPanel{column-gap:10px;display:grid;grid-column:1/2;grid-row:2/3;grid-template-columns:1fr 1fr;grid-template-rows:auto 46px;padding:22px;row-gap:20px}.AnalystConsensus-negativeUpside{color:#b40909}.AnalystConsensus-averagePriceTarget,.AnalystConsensus-currentPrice,.AnalystConsensus-highPriceTarget{border-bottom:1px dashed #747474}.AnalystConsensus-headerQuotePage{justify-content:flex-end}.AnalystConsensus-title{font-size:16px;font-weight:600;grid-column:1/3;grid-row:2/3;letter-spacing:1px;line-height:19px;text-align:center}.AnalystConsensus-pieChart{align-items:center;display:flex;flex-direction:column;grid-column:1/2;grid-row:1/2;justify-self:right;width:-moz-fit-content;width:fit-content}.AnalystConsensus-buy,.AnalystConsensus-hold,.AnalystConsensus-sell,.AnalystConsensus-strongBuy,.AnalystConsensus-underperform{align-items:center;display:flex;font-size:12px;font-weight:600;line-height:15px}.AnalystConsensus-buy .AnalystConsensus-box,.AnalystConsensus-hold .AnalystConsensus-box,.AnalystConsensus-sell .AnalystConsensus-box,.AnalystConsensus-strongBuy .AnalystConsensus-box,.AnalystConsensus-underperform .AnalystConsensus-box{height:14px;margin-left:10px;margin-right:10px;width:14px}.AnalystConsensus-buy{color:#00a857}.AnalystConsensus-buy .AnalystConsensus-box{background-color:#00a857}.AnalystConsensus-hold{color:#747474}.AnalystConsensus-hold .AnalystConsensus-box{background-color:#747474}.AnalystConsensus-sell{color:#002f6c}.AnalystConsensus-sell .AnalystConsensus-box{background-color:#002f6c}.AnalystConsensus-underperform{color:#336aa0}.AnalystConsensus-underperform .AnalystConsensus-box{background-color:#336aa0}.AnalystConsensus-strongBuy{color:#145c42}.AnalystConsensus-strongBuy .AnalystConsensus-box{background-color:#145c42}.AnalystConsensus-legend{background:#f8f8f8;border:.2px solid #d8d8d8;border-radius:6px;box-shadow:0 1px 4px #00000040;display:flex;flex-direction:column;height:108px;justify-content:space-around;padding:3px 8px 3px 0;width:-moz-fit-content;width:fit-content}.AnalystConsensus-rightPanel{border-left:1px solid #0003;display:flex;flex-direction:column;grid-column:2/3;grid-row:2/3;justify-content:space-between}.AnalystConsensus-stats{display:flex;flex-direction:column;justify-content:space-around;padding:15px 25px}.AnalystConsensus-averagePriceTarget,.AnalystConsensus-currentPrice,.AnalystConsensus-highPriceTarget,.AnalystConsensus-lowPriceTarget{align-items:center;display:flex;font-size:16px;font-weight:500;height:54px;line-height:19px}.AnalystConsensus-value{font-size:16px;line-height:19px;margin-left:auto}.AnalystConsensus-highPriceTarget .AnalystConsensus-value{color:#145c42}.AnalystConsensus-averagePriceTarget .AnalystConsensus-value{color:#424242;display:flex;flex-direction:column;font-size:14px;text-align:right}.AnalystConsensus-averagePriceTarget .AnalystConsensus-value .AnalystConsensus-upside{color:default}.AnalystConsensus-lowPriceTarget .AnalystConsensus-value{color:#002f6c}@media (max-width:760px){.AnalystConsensus-container{border-radius:2px;display:grid;grid-template-columns:303px;grid-template-rows:auto 195px 190px;height:auto;width:303px}.AnalystConsensus-header{grid-column:1/2;grid-row:1/2;padding:6px 20px}.AnalystConsensus-header .AnalystConsensus-proPill{height:13px}.AnalystConsensus-header .AnalystConsensus-stockInfo .AnalystConsensus-companyName{font-size:14px;font-weight:700;height:auto;line-height:16px;margin-right:5px;max-width:10rem}.AnalystConsensus-header .AnalystConsensus-stockInfo .AnalystConsensus-stockSymbol{border-left:1px solid #005594;font-size:12px;font-weight:500;line-height:16px;padding-left:5px}.AnalystConsensus-leftPanel{border-bottom:1px solid #d9d9d9;display:grid;grid-column:1/2;grid-row:2/3;grid-template-columns:1fr 1fr;padding:0 20px}.AnalystConsensus-leftPanel .AnalystConsensus-pieChart{justify-self:right;margin-right:14px;margin-top:20px}.AnalystConsensus-leftPanel .AnalystConsensus-legend{margin-top:20px}.AnalystConsensus-rightPanel{border-left:none;grid-column:1/2;grid-row:3/4}.AnalystConsensus-rightPanel .AnalystConsensus-stats{padding:0 20px}.AnalystConsensus-rightPanel .AnalystConsensus-stats .AnalystConsensus-averagePriceTarget,.AnalystConsensus-rightPanel .AnalystConsensus-stats .AnalystConsensus-currentPrice,.AnalystConsensus-rightPanel .AnalystConsensus-stats .AnalystConsensus-highPriceTarget,.AnalystConsensus-rightPanel .AnalystConsensus-stats .AnalystConsensus-lowPriceTarget{font-size:14px;height:64px;line-height:17px}}.AnalystConsensus-containerArticlePage{height:421px;margin-bottom:30px}.AnalystConsensus-currentPrice{display:flex;justify-content:space-between}.AnalystConsensus-currentPrice .AnalystConsensus-value{display:flex;justify-content:flex-end}.AnalystConsensus-lastUpdated{color:#424242;display:flex;font-size:8px;font-style:normal;font-weight:600;line-height:10px}.AnalystConsensus-changePct{align-items:center;color:#008456;display:flex;font-size:10px;font-style:normal;font-weight:600;line-height:12px}.AnalystConsensus-changePctNegative{color:#b40909}.AnalystConsensus-unchanged{color:#424858}@media (min-width:360px){.AnalystConsensus-rightPanel .AnalystConsensus-statsArticlePage .AnalystConsensus-averagePriceTarget,.AnalystConsensus-rightPanel .AnalystConsensus-statsArticlePage .AnalystConsensus-currentPrice,.AnalystConsensus-rightPanel .AnalystConsensus-statsArticlePage .AnalystConsensus-highPriceTarget,.AnalystConsensus-rightPanel .AnalystConsensus-statsArticlePage .AnalystConsensus-lowPriceTarget{height:46px}}@media (min-width:760px){.AnalystConsensus-containerArticlePage{height:241px}.AnalystConsensus-rightPanel .AnalystConsensus-statsArticlePage .AnalystConsensus-averagePriceTarget,.AnalystConsensus-rightPanel .AnalystConsensus-statsArticlePage .AnalystConsensus-currentPrice,.AnalystConsensus-rightPanel .AnalystConsensus-statsArticlePage .AnalystConsensus-highPriceTarget,.AnalystConsensus-rightPanel .AnalystConsensus-statsArticlePage .AnalystConsensus-lowPriceTarget{height:44px}}@media (min-width:1340px){.AnalystConsensus-containerQuotePage{grid-template-rows:40px 191px;height:231px;width:966px}.AnalystConsensus-containerQuotePage .AnalystConsensus-leftPanel{column-gap:44px}.AnalystConsensus-containerQuotePage .AnalystConsensus-rightPanel .AnalystConsensus-stats{padding-left:40px;padding-right:40px}}.AnalystConsensus-gateContainer{border-radius:10px;box-shadow:0 4px 4px #00000040;width:100%}.AnalystConsensus-gateContainer div[style],.AnalystConsensus-gateContainer iframe[style]{border-radius:10px}@media (max-width:760px){.AnalystConsensus-gateContainer{box-shadow:none;display:flex;justify-content:center}.AnalystConsensus-gateContainer div[style],.AnalystConsensus-gateContainer iframe[style]{border-radius:2px;box-shadow:0 4px 4px #00000040;width:303px!important}}.AnalystConsensus-error .AnalystConsensus-legend{flex-direction:row}.AnalystConsensus-error .AnalystConsensus-legend .AnalystConsensus-boxContainer{display:flex;flex-direction:column;justify-content:space-around}.AnalystConsensus-error .AnalystConsensus-legend .AnalystConsensus-errorMessage{color:#ce2b2b;display:grid;font-size:12px;font-weight:500;line-height:12px;place-items:center;text-align:center}.BadgeGroup-badgeGroup{display:flex;justify-content:center;margin:24px 0 0;width:100%}@media (max-width:1019px){.BadgeGroup-badgeGroup{margin:24px 0 -6px}}@media (max-width:759px){.BadgeGroup-badgeGroup{margin:0}}.BadgeGroup-badge{margin:0 10px;max-height:60px;max-width:120px}.Loading-wrapper{background:none;height:100%}.Loading-nightModeWrapper{background:#000;height:100%}.Loading-loadingImage{height:295px;max-width:900px;width:100%}.ErrorChartBoundary-errorWrapper{background:grey;border:1px solid silver;color:#fff;height:352px}.ErrorChartBoundary-errorWrapper .ErrorChartBoundary-msg{position:relative;text-align:center;top:35%}.ErrorChartBoundary-errorWrapper .ErrorChartBoundary-msg span{background:#fff;border-radius:3px;color:#000;font-family:inherit;font-size:12px;line-height:inherit;margin:0;padding:2px}.PhoenixChartWrapper-rendererApp,.PhoenixChartWrapper-rendererWeb{min-height:380px;position:relative}.PhoenixChartWrapper-rendererWeb{margin-top:20px}.PhoenixChartWrapper-rendererApp{height:100%;margin:0}.PhoenixChartWrapper-loadingWrapper{background:#fff;bottom:0;left:0;position:absolute;right:0;top:0;z-index:10}.MiniQuoteData-container{display:block;height:162px;line-height:22px;padding:0 30px;text-indent:0}@media (min-width:1020px){.MiniQuoteData-container{height:144px;padding:0 8px}}@media (max-width:759px){.MiniQuoteData-container{height:154px;min-width:320px;padding:0 15px}}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-container{height:274px;min-width:560px}}.MiniQuoteData-chickletContainer{display:block;height:144px;line-height:22px;padding:0 8px;text-indent:0}@media (min-width:1020px){.MiniQuoteData-chickletContainer{height:144px;padding:0 8px}}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-chickletContainer .MiniQuoteData-companyName,.MiniQuoteData-chickletContainer .MiniQuoteData-link{font-size:14px;margin-bottom:0;margin-top:12px}.MiniQuoteData-chickletContainer .MiniQuoteData-last{font-size:24px;margin-right:12px}}.MiniQuoteData-chickletContainer .MiniQuoteData-link{font-size:11px!important}.MiniQuoteData-chickletContainer .MiniQuoteData-quote,.MiniQuoteData-chickletContainer .MiniQuoteData-quoteDown,.MiniQuoteData-chickletContainer .MiniQuoteData-quoteUp{font-size:12px!important}.MiniQuoteData-chickletContainer .MiniQuoteData-halfDetail{color:#747474;display:flex;font-size:10px;font-weight:700;justify-content:space-between;margin:0}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-chickletContainer .MiniQuoteData-halfDetail{font-size:10px;line-height:inherit;margin:0}.MiniQuoteData-chickletContainer .MiniQuoteData-section{margin-bottom:0}}.MiniQuoteData-section{display:block;padding-bottom:0;padding-left:0;padding-top:0}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-section{margin-bottom:10px}}.MiniQuoteData-companyName{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.MiniQuoteData-companyName,.MiniQuoteData-last{font-weight:700}.MiniQuoteData-companyName,.MiniQuoteData-link{font-size:14px;margin-top:12px}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-companyName,.MiniQuoteData-link{font-size:24px;margin-bottom:14px;margin-top:14px}}.MiniQuoteData-last,.MiniQuoteData-quote,.MiniQuoteData-quoteDown,.MiniQuoteData-quoteUp{display:block;margin:4px 0}.MiniQuoteData-header{align-items:center;display:flex}.MiniQuoteData-last{font-size:24px;margin-right:12px}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-last{font-size:34px}}.MiniQuoteData-link{font-size:11px;font-weight:600}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-link{font-size:16px}}.MiniQuoteData-link a{color:#005594;text-decoration:underline}.MiniQuoteData-cnbcLink{color:#2077b6;text-decoration:underline}.MiniQuoteData-quote,.MiniQuoteData-quoteDown,.MiniQuoteData-quoteUp{color:#747474;font-family:Proxima Nova,sans-serif;font-size:12px;font-weight:700;line-height:12px}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-quote,.MiniQuoteData-quoteDown,.MiniQuoteData-quoteUp{font-size:20px}}.MiniQuoteData-quoteUp{color:#008456}.MiniQuoteData-quoteUp:before{content:"▾";display:inline-block;margin-right:4px;transform:rotate(-180deg)}.MiniQuoteData-quoteDown{color:#d0021b}.MiniQuoteData-quoteDown:before{content:"▾";margin-right:4px}.MiniQuoteData-details{grid-column-gap:4%;display:grid;grid-template-columns:1fr 1fr}.MiniQuoteData-container,.MiniQuoteData-withTopBorder{border-bottom:.5px solid #747474}.MiniQuoteData-halfDetail{color:#747474;display:flex;font-size:10px;font-weight:700;justify-content:space-between;margin:0}.MiniQuoteData-halfDetail :nth-child(2n){color:#171717}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-halfDetail{font-size:18px;line-height:40px;margin:0 0 20px}}.MiniQuoteData-halfDetail:nth-of-type(odd){grid-column:1/2}.MiniQuoteData-halfDetail:nth-of-type(2n){grid-column:2/3}.DynamicLoadingIndicator-spinnerParent{display:block;padding:10px}.DynamicLoadingIndicator-spinner{animation:DynamicLoadingIndicator-spin 2s linear infinite;border:3px solid #f3f3f3;border-radius:50%;border-top-color:#666;display:block;margin:0 auto}@keyframes DynamicLoadingIndicator-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.AddToWatchlistDropdown-container{align-content:center;align-items:center;background-color:#fff;display:flex;flex-direction:column;font-family:Proxima Nova,Helvetica,Arial,sans-serif;justify-content:center;padding:20px 0;position:fixed;z-index:1001}.AddToWatchlistDropdown-container.AddToWatchlistDropdown-withWatchlists{align-items:normal;justify-content:normal}@media (max-width:1019px){.AddToWatchlistDropdown-container{bottom:0;left:0;right:0;top:0;z-index:9999}}@media (min-width:1020px){.AddToWatchlistDropdown-container{border:.5px solid #9e9e9e;border-top:0;box-shadow:0 1px 6px #00000040,0 -3px 0 #002f6c;display:block;left:0;padding:0;position:absolute;width:auto}.AddToWatchlistDropdown-container.AddToWatchlistDropdown-mini{left:0;right:auto}}.AddToWatchlistDropdown-container .AddToWatchlistDropdown-miniQuoteDataContainer{align-items:center;border-bottom:.5px solid #747474;display:flex;justify-content:center;min-height:156px}@media (min-width:1020px){.AddToWatchlistDropdown-container .AddToWatchlistDropdown-miniQuoteDataContainer{min-height:156px}}@media (max-width:759px){.AddToWatchlistDropdown-container .AddToWatchlistDropdown-miniQuoteDataContainer{min-height:156px;min-width:320px}}@media (min-width:760px) and (max-width:1019px){.AddToWatchlistDropdown-container .AddToWatchlistDropdown-miniQuoteDataContainer{min-height:274px;min-width:560px}}.AddToWatchlistDropdown-container .AddToWatchlistDropdown-signInMessage,.AddToWatchlistDropdown-container .AddToWatchlistDropdown-simpleText{display:block;font-size:12px;line-height:12px;text-align:center}.AddToWatchlistDropdown-container .AddToWatchlistDropdown-signInMessage{color:#000;font-weight:700;margin-bottom:-10px;margin-top:20px}.AddToWatchlistDropdown-container .AddToWatchlistDropdown-simpleText{font-weight:500}.AddToWatchlistDropdown-container .AddToWatchlistDropdown-simpleText:last-child{margin-bottom:20px}.AddToWatchlistDropdown-chicletContainer{align-content:center;align-items:center;background-color:#fff;border:.5px solid #9e9e9e;border-top:0;box-shadow:0 1px 6px #00000040,0 -3px 0 #002f6c;display:block;flex-direction:column;font-family:Proxima Nova,Helvetica,Arial,sans-serif;justify-content:center;left:0;padding:0;position:absolute;top:27px!important;width:auto;z-index:1001}.AddToWatchlistDropdown-chicletContainer.AddToWatchlistDropdown-withWatchlists{align-items:normal;justify-content:normal}.AddToWatchlistDropdown-chicletContainer.AddToWatchlistDropdown-mini{left:0;right:auto}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-miniQuoteDataContainer{align-items:center;border-bottom:.5px solid #747474;display:flex;justify-content:center;min-height:156px}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-closeButton{display:none}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-signInMessage,.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-simpleText{display:block;font-size:12px;line-height:12px;text-align:center}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-signInMessage{color:#000;font-weight:700;margin-bottom:-10px;margin-top:20px}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-simpleText{font-weight:500}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-simpleText:last-child{margin-bottom:20px}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-headerForWatchlistTag{align-items:center;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:11px;height:32px;margin:0 0 0 8px}@media (max-width:1019px){.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-headerForWatchlistTag{font-size:11px!important;height:32px!important;line-height:inherit!important;margin-left:8px!important;padding:0!important}}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-watchlistScrollContainer{max-height:100px}@media (max-width:1019px){.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-watchlistScrollContainer:before{bottom:32px}}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-footer{bottom:0}@media (max-width:1019px){.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink:first-child{margin-bottom:12px;margin-top:12px}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink{font-size:11px;margin-left:10px}}.AddToWatchlistDropdown-chicletGhostDropdownCloser{display:block!important}.AddToWatchlistDropdown-wrapper{max-height:calc(100vh - 158px);overflow:auto}@media (min-width:1020px){.AddToWatchlistDropdown-wrapper{max-height:118px}}.AddToWatchlistDropdown-watchlistContainer{border:.5px solid #cfd8e2;box-shadow:0 -3px 0 #002f6c;padding:unset;right:-1px;top:27px;width:calc(100% + 2px)}@media (max-width:1019px){.AddToWatchlistDropdown-watchlistContainer{top:0}}.AddToWatchlistDropdown-container.AddToWatchlistDropdown-isFetching{padding-top:0}.AddToWatchlistDropdown-closeButton{display:block;font-size:12px;position:absolute;right:15px;top:20px}@media (min-width:1020px){.AddToWatchlistDropdown-closeButton{display:none}}.AddToWatchlistDropdown-closeButton.AddToWatchlistDropdown-closeButtonForSymbolTag{font-size:15px;top:27px}.AddToWatchlistDropdown-header{color:#9e9e9e;font-size:12px;font-weight:600;letter-spacing:.01em;line-height:12px;margin:20px 30px;text-indent:0}.AddToWatchlistDropdown-header.AddToWatchlistDropdown-headerForWatchlistTag{align-items:center;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:11px;height:32px;margin:0 0 0 8px}@media (max-width:1019px){.AddToWatchlistDropdown-header.AddToWatchlistDropdown-headerForWatchlistTag{font-size:18px;height:68px;line-height:normal;margin-left:30px;padding:8px 0}}.AddToWatchlistDropdown-footer{display:block;padding:15px 15px 20px;position:relative;width:100%;z-index:1}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-footerLink,.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink{color:#005594;display:block;font-size:11px;font-weight:600;line-height:13px;padding-left:10px;padding-top:10px;text-indent:0}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-footerLink.AddToWatchlistDropdown-signIn,.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink.AddToWatchlistDropdown-signIn{background-color:#005594;border:none;bottom:0;color:#fff;position:static}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink{line-height:11px;margin-left:10px;padding:unset;text-decoration:underline}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink:first-child{margin-bottom:12px;margin-top:12px}@media (max-width:1019px){.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink:first-child{margin-bottom:30px;margin-top:48px}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink{font-size:18px;margin-left:30px}}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink:hover{color:#005594}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-footerLink{border:1px solid #071d39;color:#071d39;line-height:12px;padding:15px;text-align:center;width:100%}@media (max-width:1019px){.AddToWatchlistDropdown-footer{bottom:20px;position:absolute}}.AddToWatchlistDropdown-watchlistTagFooter{padding:unset;position:relative}.AddToWatchlistDropdown-signInContainer{bottom:0;min-width:240px;position:relative;width:50%}.AddToWatchlistDropdown-createWatchlistContainer{bottom:0;padding-bottom:10px;position:relative}@media (max-width:1019px){.AddToWatchlistDropdown-createWatchlistContainer{text-align:center;top:20px;width:50%}}.AddToWatchlistDropdown-message{color:#e8802a;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;line-height:100%;padding:15px 15px 0;text-align:center}@media (max-width:1019px){.AddToWatchlistDropdown-message{font-size:18px;font-weight:600;line-height:18px}}.AddToWatchlistDropdown-message.AddToWatchlistDropdown-watchListEmptyMsg{color:#171717}.AddToWatchlistDropdown-symbolIssueError{border-bottom:1px solid #bababa;color:#ce2b2b;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;line-height:18px;padding:35px 20px;text-align:center;white-space:normal}.AddToWatchlistDropdown-ghostDropdownCloser{bottom:0;display:none;left:0;position:fixed;right:0;top:0;z-index:98}@media (min-width:1020px){.AddToWatchlistDropdown-ghostDropdownCloser{display:block}}.AddToWatchlistDropdown-watchlistContainerAddTag{left:-1px;min-width:300px;top:27px;width:calc(100% + 2px)}@media (max-width:1019px){.AddToWatchlistDropdown-watchlistContainerAddTag{top:0}}.AddToWatchlistDropdown-watchlistContainerAddTag .AddToWatchlistDropdown-message{font-size:11px;font-weight:700;letter-spacing:-.004em;line-height:13px;padding-left:8px;padding-right:8px;text-align:center}@media (max-width:1019px){.AddToWatchlistDropdown-watchlistContainerAddTag .AddToWatchlistDropdown-message{align-items:center;display:flex;font-size:18px;font-weight:700;letter-spacing:-.002em;line-height:18px;text-align:center}}.AddToWatchlistDropdown-loggedOutAddTag{padding:unset}.AddToWatchlistDropdown-loggedOutAddTag .AddToWatchlistDropdown-signInContainer .AddToWatchlistDropdown-watchlistTagFooterLink{position:relative;right:9px;top:8px}@media (max-width:1019px){.AddToWatchlistDropdown-loggedOutAddTag .AddToWatchlistDropdown-signInContainer .AddToWatchlistDropdown-watchlistTagFooterLink{font-size:14px;margin-left:unset;padding-top:50px;right:0;text-align:center;top:0}}.AddToWatchlistDropdown-loggedOutAddTag .AddToWatchlistDropdown-createWatchlistContainer .AddToWatchlistDropdown-watchlistTagFooterLink{padding-bottom:8px;position:relative}@media (max-width:1019px){.AddToWatchlistDropdown-loggedOutAddTag .AddToWatchlistDropdown-createWatchlistContainer .AddToWatchlistDropdown-watchlistTagFooterLink{font-size:14px;margin-left:unset;padding-top:50px}}.AddToWatchlistDropdown-signInContainerAddTag{display:block;margin:0 10%;padding:8px}@media (min-width:1020px){.AddToWatchlistDropdown-signInContainerAddTag{min-width:unset;width:unset}}.AddToWatchlistDropdown-buttonLink{border:1px solid #005594;color:#005594;display:block;font-size:10px;font-weight:600;line-height:12px;padding:8px;text-align:center;width:100%}.AddToWatchlistDropdown-buttonLink.AddToWatchlistDropdown-signIn{background-color:#005594;border:none;bottom:0;color:#fff;margin-top:20px;position:static}.AddToWatchlistDropdown-buttonLink.AddToWatchlistDropdown-createWatchlist{background-color:#005594;border:none;bottom:0;color:#fff;margin:auto;max-width:100%;min-width:120px;padding:15px;position:static;text-decoration:none;width:90%}.AddToWatchlistDropdown-buttonLink.AddToWatchlistDropdown-createWatchlist:hover{color:#fff}@media (max-width:1019px){.AddToWatchlistDropdown-buttonLink.AddToWatchlistDropdown-createWatchlist{min-width:200px}.AddToWatchlistDropdown-buttonLink{font-size:14px;font-weight:700}}.AddToWatchlistDropdown-signInButtonAddTag{align-items:center;font-size:10px;font-weight:700;letter-spacing:.5px;line-height:12px;padding:8px;text-align:center}.AddToWatchlistDropdown-signInButtonAddTag.AddToWatchlistDropdown-signIn{background-color:#005594}.AddToWatchlistDropdown-signInButtonAddTag.AddToWatchlistDropdown-signIn:hover{background-color:#002f6c}.AddToWatchlistDropdown-signInButtonAddTag.AddToWatchlistDropdown-createWatchlist{background-color:#005594;color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;padding:8px;text-decoration:none}.AddToWatchlistDropdown-signInButtonAddTag.AddToWatchlistDropdown-createWatchlist:hover{background-color:#002f6c;color:#fff}@media (max-width:1019px){.AddToWatchlistDropdown-signInButtonAddTag.AddToWatchlistDropdown-createWatchlist{padding:12px}.AddToWatchlistDropdown-buttonLink{font-size:14px;letter-spacing:1.1px;line-height:16px;margin:auto;max-width:260px;padding:12px}}.AddToWatchlistDropdown-watchlistScrollContainer{display:block;max-height:100px;overflow-y:scroll}.AddToWatchlistDropdown-watchlistScrollContainer:before{bottom:32px;content:"";display:block;height:40px;pointer-events:none;position:absolute;width:100%;z-index:1}@media (max-width:1019px){.AddToWatchlistDropdown-watchlistScrollContainer:before{bottom:100px}}.AddToWatchlistDropdown-watchlistScrollContainer.AddToWatchlistDropdown-fade:before{background:linear-gradient(180deg,#fff0,25%,#fff)}@media (max-width:1019px){.AddToWatchlistDropdown-watchlistScrollContainer{max-height:70%}}@keyframes WatchlistNotification-showAndFadeOut{0%{opacity:0;transform:translateY(5px)}5%{opacity:1;transform:translateY(0)}80%{opacity:1}to{opacity:0}}.WatchlistNotification-notificationContainer{display:flex;justify-content:center;position:absolute;width:100%}.WatchlistNotification-notificationContainer .WatchlistNotification-notification{animation:WatchlistNotification-showAndFadeOut 3s linear;font-family:Proxima Nova,Helvetica,Arial,sans-serif;opacity:0;text-align:center;z-index:4000}.AddToWatchlistDropdownCheckbox-container{border-top:1px solid #bababa;display:block}.AddToWatchlistDropdownCheckbox-container:last-of-type{border-bottom:1px solid #bababa}@media (max-width:1019px){.AddToWatchlistDropdownCheckbox-chicletWatchlist.AddToWatchlistDropdownCheckbox-watchlistForSymbolTag{font-size:11px!important;height:32px!important;padding-left:8px!important}}.AddToWatchlistDropdownCheckbox-watchlist{align-items:center;color:#071d39;display:flex;font-size:14px;font-weight:700;padding:8px 29px;width:100%}.AddToWatchlistDropdownCheckbox-watchlist:first-child{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.AddToWatchlistDropdownCheckbox-watchlist.AddToWatchlistDropdownCheckbox-watchlistForSymbolTag{color:#002f6c;font-size:11px;font-weight:600;height:32px;padding-left:8px}@media (max-width:1019px){.AddToWatchlistDropdownCheckbox-watchlist.AddToWatchlistDropdownCheckbox-watchlistForSymbolTag{font-size:18px;height:50px;padding-left:30px}}.AddToWatchlistDropdownCheckbox-checkbox{border:1px solid #bababa;border-radius:2px;flex-shrink:0;height:14px;margin-right:12px;position:relative;width:14px}.AddToWatchlistDropdownCheckbox-watchlistNameForSymbolTag{line-height:normal;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.AddToWatchlistDropdownCheckbox-hasSymbols .AddToWatchlistDropdownCheckbox-checkbox:after{border-color:#071d39;border-style:solid;border-width:0 2px 2px 0;content:"";display:block;height:12px;left:5px;position:absolute;top:-4px;transform:rotate(45deg);width:5px}.AddToWatchlistDropdownCheckbox-hasSymbols .AddToWatchlistDropdownCheckbox-checkboxForSymbolTag{background:#2077b6;border:none}.AddToWatchlistDropdownCheckbox-hasSymbols .AddToWatchlistDropdownCheckbox-checkboxForSymbolTag:after{border-color:#fff;height:7px;left:5px;top:1px;width:3px}.AddToWatchlistDropdownCheckbox-isLoading{cursor:wait}.AddToWatchlistDropdownCheckbox-isLoading>*{opacity:.5}.AddToWatchlistDropdownCheckbox-error{color:#ce2b2b;display:block;font-size:12px;font-weight:600;padding:0 10px 8px 56px}.AddToWatchlistDropdownCheckboxes-notificationContainer{font-size:11px;line-height:18px;padding:2px 6px 0;top:150px}.AddToWatchlistDropdownCheckboxes-notificationContainer .AddToWatchlistDropdownCheckboxes-notification{background-color:#2077b6;border-radius:3px;box-shadow:0 1px 3px 1px #00000014;color:#fff;font-weight:700;line-height:16px;padding:10px;white-space:nowrap;width:224px}.AddToWatchlistDropdownCheckboxes-notificationContainer .AddToWatchlistDropdownCheckboxes-notification.AddToWatchlistDropdownCheckboxes-error{background-color:#ce2b2b;width:204px}@media (max-width:1019px){.AddToWatchlistDropdownCheckboxes-notificationContainer{top:165px}}.AddToWatchlistButton-container{display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;position:relative}.AddToWatchlistButton-watchlistContainer{display:inline-block}.AddToWatchlistButton-button{align-items:center;border:1px solid #002f6c;box-sizing:border-box;color:#002f6c;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;justify-content:center;line-height:12px;padding:8px}@media (min-width:1020px){.AddToWatchlistButton-button{padding:14px 15px}}.AddToWatchlistButton-button .AddToWatchlistButton-mobileText{font-size:26px;font-weight:600;line-height:12px}.AddToWatchlistButton-button .AddToWatchlistButton-desktopText{display:none}@media (min-width:1020px){.AddToWatchlistButton-button .AddToWatchlistButton-desktopText{display:initial;margin:0 10px 0 0}}.AddToWatchlistButton-button .AddToWatchlistButton-embeddedText{letter-spacing:1px;margin-right:10px}.AddToWatchlistButton-watchlistFromTagItem{border:.5px solid #cfd8e2;border-radius:7px;display:flex;position:relative}.AddToWatchlistButton-watchlistFromTagItem:hover{border:.5px solid #747474}.AddToWatchlistButton-watchlistFromTagItem.AddToWatchlistButton-dropdownVisible{border:.5px solid #cfd8e2}.AddToWatchlistButton-addWatchListFromTag{background-image:url(https://static-redesign.cnbcfm.com/dist/3d3257ad9e8a242b5362.svg);background-repeat:no-repeat;height:12px;width:12px}.AddToWatchlistButton-watchlistButton{align-items:center;color:#002f6c;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;line-height:12px;padding:8px 8px 8px 4px}.AddToWatchlistButton-watchlistButton.AddToWatchlistButton-dropdownOpen .AddToWatchlistButton-addWatchListFromTag,.AddToWatchlistButton-watchlistButton:focus .AddToWatchlistButton-addWatchListFromTag,.AddToWatchlistButton-watchlistButton:hover .AddToWatchlistButton-addWatchListFromTag{background-image:url(https://static-redesign.cnbcfm.com/dist/8eafdf125d3d82d5a92f.svg)}.QuoteStrip-container{font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin-top:-7px}@media (min-width:760px){.QuoteStrip-container{margin-top:0}}.QuoteStrip-changeDown{color:#424858;color:#ce2b2b;font-size:18px;font-weight:700;white-space:nowrap}@media (min-width:760px){.QuoteStrip-changeDown{font-size:25px;line-height:28px}}@media (min-width:1020px){.QuoteStrip-changeDown{font-size:20px;line-height:23px}}@media (min-width:1340px){.QuoteStrip-changeDown{font-size:32px;line-height:36px}}.QuoteStrip-changeUp{color:#424858;color:#008456;font-size:18px;font-weight:700;white-space:nowrap}@media (min-width:760px){.QuoteStrip-changeUp{font-size:25px;line-height:28px}}@media (min-width:1020px){.QuoteStrip-changeUp{font-size:20px;line-height:23px}}@media (min-width:1340px){.QuoteStrip-changeUp{font-size:32px;line-height:36px}}.QuoteStrip-changeIcon{display:inline;margin-right:10px}@media (min-width:1340px){.QuoteStrip-changeIcon{height:22px;margin-top:3px;width:22px}}.QuoteStrip-afterHoursIcon{display:inline;padding-right:10px}.QuoteStrip-unchanged{color:#424858;font-size:18px;font-size:22px;font-weight:700;white-space:nowrap}@media (min-width:760px){.QuoteStrip-unchanged{font-size:25px;line-height:28px}}@media (min-width:1020px){.QuoteStrip-unchanged{font-size:20px;line-height:23px}}@media (min-width:1340px){.QuoteStrip-unchanged{font-size:32px;line-height:36px}}.QuoteStrip-companyName{color:#002f6c;display:flex;font-size:24px;font-weight:700;justify-content:space-between;line-height:27px}.QuoteStrip-companyName .QuoteStrip-quoteTitle{font-size:inherit;margin:0}.QuoteStrip-companyName .QuoteStrip-quoteTitleLink{color:#002f6c;font-size:inherit;padding:0}.QuoteStrip-companyName .QuoteStrip-quoteTitleLink :hover{color:#005594}.QuoteStrip-companyName .QuoteStrip-name{display:table;padding:0 0 1px}.QuoteStrip-companyName .QuoteStrip-rightSideButtonsWrappers{display:flex;margin:10px 0 15px}.QuoteStrip-companyName a{padding:3px}@media (min-width:760px){.QuoteStrip-companyName{font-size:28px;line-height:30px}}@media (min-width:0px) and (max-width:759px){.QuoteStrip-companyName.QuoteStrip-companyName_quoteStripEnabled{flex-direction:column}}@media (min-width:1020px) and (max-width:1339px){.QuoteStrip-companyName.QuoteStrip-companyName_quoteStripEnabled{flex-direction:column}}.QuoteStrip-addToWatchlistButton{height:42px;min-width:42px}.QuoteStrip-symbolAndExchange{color:#747474;display:table;font-size:18px;font-weight:500;padding-bottom:2px}@media (min-width:760px){.QuoteStrip-symbolAndExchange{font-size:20px}}.QuoteStrip-quoteStripSubHeader{color:#bababa;font-size:14px;font-weight:600;line-height:18px}.QuoteStrip-extendedLastTradeTime,.QuoteStrip-lastTradeTime{color:#171717;font-size:16px;font-weight:600;line-height:18px}@media (min-width:760px){.QuoteStrip-extendedLastTradeTime,.QuoteStrip-lastTradeTime{padding-bottom:10px}}@media (min-width:1020px){.QuoteStrip-lastTradeTime{padding-bottom:15px}}.QuoteStrip-dataContainer{align-items:center;display:flex;flex-direction:row;justify-content:space-between;padding-top:5px}@media (min-width:760px){.QuoteStrip-dataContainer{padding-top:25px}}.QuoteStrip-extendedHours{border-top:1px solid #bababa;padding-top:10px}@media (min-width:1020px){.QuoteStrip-extendedHours{padding-top:5px}.QuoteStrip-extendedHours .QuoteStrip-lastTimeAndPriceContainer{width:58%}}@media (min-width:1340px){.QuoteStrip-extendedHours .QuoteStrip-lastTimeAndPriceContainer{width:66%}}@media (min-width:1020px){.QuoteStrip-extendedHours .QuoteStrip-lastTimeAndPriceSideDrawerContainer{width:58%}}@media (min-width:1340px){.QuoteStrip-extendedHours .QuoteStrip-lastTimeAndPriceSideDrawerContainer{width:50%}}.QuoteStrip-extendedHours .QuoteStrip-lastPrice{font-size:32px}@media (min-width:760px){.QuoteStrip-extendedHours .QuoteStrip-lastPrice{font-size:40px;line-height:45px;padding-right:40px}}@media (min-width:1020px){.QuoteStrip-extendedHours .QuoteStrip-lastPrice{font-size:25px;line-height:28px;padding-right:25px}}@media (min-width:1340px){.QuoteStrip-extendedHours .QuoteStrip-lastPrice{font-size:46px;line-height:52px;padding-right:30px}}@media (min-width:760px){.QuoteStrip-extendedHours .QuoteStrip-lastTradeTime{padding-bottom:0}}@media (min-width:1020px){.QuoteStrip-extendedHours .QuoteStrip-lastTradeTime{padding-bottom:10px}}@media (min-width:1340px){.QuoteStrip-extendedHours .QuoteStrip-lastTradeTime{padding-bottom:0}}.QuoteStrip-extendedHours .QuoteStrip-changeDown,.QuoteStrip-extendedHours .QuoteStrip-changeUp,.QuoteStrip-extendedHours .QuoteStrip-unchanged{font-size:18px;line-height:20px}@media (min-width:760px){.QuoteStrip-extendedHours .QuoteStrip-changeDown,.QuoteStrip-extendedHours .QuoteStrip-changeUp,.QuoteStrip-extendedHours .QuoteStrip-unchanged{font-size:20px;line-height:23px}}@media (min-width:1340px){.QuoteStrip-extendedHours .QuoteStrip-changeDown,.QuoteStrip-extendedHours .QuoteStrip-changeUp,.QuoteStrip-extendedHours .QuoteStrip-unchanged{font-size:25px;line-height:28px}}.QuoteStrip-extendedHours .QuoteStrip-fiftyTwoWeekRange,.QuoteStrip-extendedHours .QuoteStrip-volume{font-size:16px}@media (min-width:1020px){.QuoteStrip-extendedHours .QuoteStrip-fiftyTwoWeekRange,.QuoteStrip-extendedHours .QuoteStrip-volume{font-size:18px}}@media (min-width:1340px){.QuoteStrip-extendedHours .QuoteStrip-fiftyTwoWeekRange,.QuoteStrip-extendedHours .QuoteStrip-volume{font-size:16px}.QuoteStrip-extendedHours .QuoteStrip-changeIcon{height:21px;width:21px}}@media (min-width:760px){.QuoteStrip-extendedDataContainer{max-width:496px;padding-top:20px}}@media (min-width:1020px){.QuoteStrip-extendedDataContainer{max-width:460px;padding-bottom:8px}}@media (min-width:1340px){.QuoteStrip-extendedDataContainer{max-width:760px}}.QuoteStrip-extendedDataContainer .QuoteStrip-lastTimeAndPriceContainer{width:100%}.QuoteStrip-extendedDataContainer .QuoteStrip-volume{font-size:18px}@media (min-width:760px){.QuoteStrip-extendedDataContainer .QuoteStrip-volume{font-size:16px}}@media (min-width:1020px){.QuoteStrip-extendedDataContainer .QuoteStrip-volume{font-size:18px}}.QuoteStrip-extendedDataContainer .QuoteStrip-volumeContainer{padding-top:25px}@media (min-width:1020px){.QuoteStrip-extendedDataContainer .QuoteStrip-volumeContainer{padding-top:15px}}.QuoteStrip-dataLabel{color:#747474;font-size:18px;font-weight:600;padding-bottom:10px}.QuoteStrip-extendedLabel{color:#e8802a}.QuoteStrip-lastPriceStripContainer{align-items:center;display:flex;flex-wrap:wrap}.QuoteStrip-lastPrice{color:#171717;font-size:40px;font-weight:700;padding-right:20px;pointer-events:none}.QuoteStrip-lastPrice a{color:#171717;text-decoration:none}@media (min-width:760px){.QuoteStrip-lastPrice{font-size:46px;line-height:52px}}@media (min-width:1020px){.QuoteStrip-lastPrice{font-size:32px;line-height:36px}}@media (min-width:1340px){.QuoteStrip-lastPrice{font-size:51px;line-height:42px}}.QuoteStrip-lastTimeAndPriceContainer{width:100%}@media (min-width:760px){.QuoteStrip-lastTimeAndPriceContainer{width:53%}}@media (min-width:1020px){.QuoteStrip-lastTimeAndPriceContainer{width:51%}}@media (min-width:1340px){.QuoteStrip-lastTimeAndPriceContainer{width:67%}}.QuoteStrip-lastTimeAndPriceSideDrawerContainer{width:100%}@media (min-width:760px){.QuoteStrip-lastTimeAndPriceSideDrawerContainer{width:53%}}@media (min-width:1020px){.QuoteStrip-lastTimeAndPriceSideDrawerContainer{width:51%}}@media (min-width:1340px){.QuoteStrip-lastTimeAndPriceSideDrawerContainer{width:50%}}.QuoteStrip-fiftyTwoWeek,.QuoteStrip-volumeContainer{display:none}@media (min-width:760px){.QuoteStrip-fiftyTwoWeek,.QuoteStrip-volumeContainer{display:block;padding-top:10px}}.QuoteStrip-fiftyTwoWeekRange,.QuoteStrip-volume{font-size:18px;font-weight:600;line-height:20px}.QuoteStrip-watchLiveBtn{align-items:center;background:none;border:1px solid #002f6c;border-radius:0;color:#002f6c;display:flex;font-weight:600;height:42px;line-height:12px;margin:0 0 0 18px;padding:14px 5px}.QuoteStrip-watchLiveBtn,.QuoteStrip-watchLiveLogo{-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:100%;box-sizing:border-box;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px}.QuoteStrip-watchLiveLogo{color:#fff!important;cursor:pointer;display:block;font-weight:700;width:18px}.QuoteStrip-watchLiveLink{-webkit-text-size-adjust:100%;background:#ce2b2b;color:#fff!important;cursor:pointer;display:flex!important;font-weight:700;height:30px;justify-content:space-evenly!important;margin-right:.5rem;padding:6px 4px;text-decoration:none;width:4rem}.QuoteStrip-watchLiveBtnV2,.QuoteStrip-watchLiveLink{-webkit-font-smoothing:antialiased;align-items:center;box-sizing:border-box;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px}.QuoteStrip-watchLiveBtnV2{-webkit-text-size-adjust:100%;background:linear-gradient(#fff,#fff) padding-box,linear-gradient(to bottom right,#fccc12,#ff7112,#ef1541,#6e55dc,#069de0,#05ac3f) border-box;border:1px solid #0000;border-radius:4px;bottom:4px;color:#002f6c;display:flex;font-weight:600;height:48px;line-height:12px;margin:0 0 0 18px;padding:4px;position:relative}@media (max-width:759px){.QuoteStrip-watchLiveBtnV2{width:100%}}.QuoteStrip-watchLiveLinkV2{-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:100%;align-items:center;background:#0053cf;border-radius:2px;box-sizing:border-box;color:#fff!important;cursor:pointer;display:flex!important;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-weight:700;height:40px;justify-content:center!important;line-height:17.05px;margin-right:.5rem;padding:12px!important;text-decoration:none;width:127px}.QuoteStrip-watchLiveLinkV2:hover{background:#002f6c}.QuoteStrip-livePlayIcon{animation:QuoteStrip-pulse 1.5s infinite;animation-timing-function:ease-in-out;background-color:#fff;border-radius:100%;box-shadow:0 0 0 0 #fff;display:inline-block;height:8px;margin-right:7px;position:relative;transform:scale(1);width:8px}@keyframes QuoteStrip-pulse{0%{box-shadow:0 0 0 1px #0053cf;opacity:1}70%{border:1px solid #0053cf;box-shadow:0 0 0 1px #fff;opacity:.9;padding:2px;transform:scale(1.2)}to{box-shadow:0 0 0 1px #fff;opacity:1;transform:scale(1)}}.QuoteStrip-liveShowTitleV2{color:#002f6c;font-size:14px;font-weight:800;line-height:18px;text-transform:none}@media (prefers-color-scheme:dark){.webview .QuoteStrip-extendedLastTradeTime,.webview .QuoteStrip-lastPrice,.webview .QuoteStrip-lastTradeTime{color:#dce0e4}}.DownloadChartPopup-wrapper{background-color:#16161680;display:block;height:100%;left:0;position:absolute;top:0;visibility:visible;width:100%}.DownloadChartPopup-wrapper input{font-size:26px}.DownloadChartPopup-wrapper .DownloadChartPopup-message{font-family:Proxima Nova Semi Bold,Helvetica,Arial,sans-serif;font-size:22px;width:710px}.DownloadChartPopup-wrapper .DownloadChartPopup-closeBtnWrapper{float:right;margin:0 0 10px}.DownloadChartPopup-wrapper .DownloadChartPopup-closeBtnWrapper .DownloadChartPopup-closeBtn{background:#fff;color:#9b9b9b;cursor:pointer;font-size:24px;font-weight:700;left:10px;line-height:15px;position:relative;text-align:center}.DownloadChartPopup-wrapper .DownloadChartPopup-downloadChartModal{background:#fff;border-radius:5px;box-shadow:0 0 10px #0006;margin:0 auto;padding:10px 30px 10px 20px;position:relative;top:10%;width:748px;z-index:41}.DownloadChartPopup-wrapper .DownloadChartPopup-downloadChartModal .DownloadChartPopup-hiddenCanvas{display:none}.DownloadChartPopup-wrapper .DownloadChartPopup-downloadChartModal .DownloadChartPopup-visibleCanvas{display:block}.DownloadChartPopup-wrapper .DownloadChartPopup-downloadChartModal .DownloadChartPopup-downloadButton{float:right}.DownloadChartPopup-wrapper .DownloadChartPopup-downloadChartModal .DownloadChartPopup-downloadButton a{background:#3da7f1;border:none;border-radius:4px;font:14px Proxima Nova Semi Bold,Helvetica,Arial,sans-serif;font-weight:800;height:30px;padding:8px;position:relative;text-transform:uppercase;top:-55px}.DownloadChartPopup-wrapper .DownloadChartPopup-downloadChartModal .DownloadChartPopup-downloadButton a:hover{color:#000}.DownloadChartButton-button{align-items:center;border:1px solid #002f6c;box-sizing:border-box;color:#002f6c;display:none;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;height:42px;line-height:12px;margin:0 18px 0 0;padding:14px 15px}@media (min-width:1020px){.DownloadChartButton-button{display:flex}}.DownloadChartButton-button .DownloadChartButton-icon{margin:0 0 0 10px;width:12px}.Summary-container{margin:0 auto 32px;width:960px}@media (max-width:1339px){.Summary-container{width:630px}}@media (max-width:1019px){.Summary-container{width:678px}}@media (max-width:759px){.Summary-container{margin:0 auto 30px;min-width:318px;width:100%}}.Summary-sideDrawerContainer{width:auto!important}.Summary-adContainer{display:block;height:250px}.Summary-adContainer+.Summary-subsection{margin-top:30px}@media (max-width:759px){.Summary-adContainer{padding-top:0}.Summary-adContainer+.Summary-subsection{margin-top:32px}}@media (min-width:1020px){.Summary-adContainer{display:none}}.Summary-subsection{margin-top:32px;width:100%}@media (max-width:759px){.Summary-subsection{margin-top:24px}}.Summary-title{color:#002f6c;font-size:18px;font-weight:700;height:30px;line-height:22px;margin:0;text-transform:uppercase}.Summary-label,.Summary-title{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-style:normal}.Summary-label{color:#747474;font-size:16px;font-weight:600;line-height:18px;text-transform:capitalize}@media (max-width:759px){.Summary-label{color:#171717}}.Summary-value{color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-style:normal;font-weight:700;line-height:18px;margin-left:8px;pointer-events:none}.Summary-value a{color:#171717;text-decoration:none}.Summary-data{grid-column-gap:30px;display:grid;width:100%}.Summary-stat{align-items:center;border-bottom:1px solid #d9d9d9;display:flex;font-size:14px;font-weight:600;justify-content:space-between}@media (max-width:759px){.Summary-stat{border-bottom:none}.Summary-stat:nth-child(odd){background-color:#f8f8f8}}.Summary-exchangeTradedFund,.Summary-stock{grid-auto-flow:column;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(5,1fr);height:200px}@media (max-width:1339px){.Summary-exchangeTradedFund,.Summary-stock{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(8,1fr);height:320px}}@media (max-width:1019px){.Summary-exchangeTradedFund,.Summary-stock{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(5,1fr);height:240px}}@media (max-width:759px){.Summary-exchangeTradedFund,.Summary-stock{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(15,1fr);height:480px}}@media (min-width:1340px){.Summary-exchangeTradedFund .Summary-_10DayAverageVolume,.Summary-stock .Summary-_10DayAverageVolume{grid-column:1/2;grid-row:5/6}}@media (min-width:760px) and (max-width:1019px){.Summary-exchangeTradedFund .Summary-_10DayAverageVolume,.Summary-stock .Summary-_10DayAverageVolume{grid-column:1/2;grid-row:5/6}}@media (min-width:1340px){.Summary-exchangeTradedFund .Summary-beta,.Summary-stock .Summary-beta{grid-column:2/3;grid-row:5/6}}@media (min-width:760px) and (max-width:1019px){.Summary-exchangeTradedFund .Summary-beta,.Summary-stock .Summary-beta{grid-column:2/3;grid-row:5/6}}@media (min-width:1020px) and (max-width:1179px){.Summary-exchangeTradedFund .Summary-_10DayAverageVolume{grid-column:2/3;grid-row:5/6}}@media (min-width:1180px) and (max-width:1339px){.Summary-exchangeTradedFund .Summary-_10DayAverageVolume{grid-column:2/3;grid-row:5/6}}.Summary-ratios{grid-auto-flow:column;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(3,1fr);height:120px}@media (max-width:1339px){.Summary-ratios{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(5,1fr);height:200px}}@media (max-width:1019px){.Summary-ratios{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(3,1fr);height:144px}}@media (max-width:759px){.Summary-ratios{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(9,1fr);height:288px}}@media (min-width:1340px){.Summary-ratios .Summary-revenue{grid-column:2/3;grid-row:1/2}}@media (min-width:760px) and (max-width:1019px){.Summary-ratios .Summary-revenue{grid-column:2/3;grid-row:1/2}}@media (min-width:1340px){.Summary-ratios .Summary-roe{grid-column:2/3;grid-row:2/3}}@media (min-width:760px) and (max-width:1019px){.Summary-ratios .Summary-roe{grid-column:2/3;grid-row:2/3}}.Summary-events-stock{grid-auto-flow:row;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(2,1fr);height:80px}@media (max-width:1339px){.Summary-events-stock{grid-auto-flow:column;grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(3,1fr);height:120px}}@media (max-width:1019px){.Summary-events-stock{grid-auto-flow:row;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(2,1fr);height:96px}}@media (max-width:759px){.Summary-events-stock{grid-auto-flow:column;grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(5,1fr);height:160px}}.Summary-events-exchangeTradedFund{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(2,1fr);height:80px}@media (max-width:1339px){.Summary-events-exchangeTradedFund{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(2,1fr);height:80px}}@media (max-width:1019px){.Summary-events-exchangeTradedFund{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(2,1fr);height:96px}}@media (max-width:759px){.Summary-events-exchangeTradedFund{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(4,1fr);height:128px}}.Summary-mutualFund{grid-auto-flow:column;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(5,1fr);height:200px}@media (max-width:1339px){.Summary-mutualFund{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(7,1fr);height:280px}}@media (max-width:1019px){.Summary-mutualFund{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(5,1fr);height:240px}}@media (max-width:759px){.Summary-mutualFund{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(14,1fr);height:448px}}.Summary-index{grid-auto-flow:column;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(4,1fr);height:160px}@media (max-width:1339px){.Summary-index{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(5,1fr);height:200px}}@media (max-width:1019px){.Summary-index{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(4,1fr);height:192px}}@media (max-width:759px){.Summary-index{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(10,1fr);height:320px}}@media (min-width:1020px) and (max-width:1179px){.Summary-index .Summary-ytdPercChange{grid-column:1/2;grid-row:5/6}}@media (min-width:1180px) and (max-width:1339px){.Summary-index .Summary-ytdPercChange{grid-column:1/2;grid-row:5/6}}.Summary-ftse{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(1,1fr);height:40px}@media (max-width:1339px){.Summary-ftse{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(1,1fr);height:40px}}@media (max-width:1019px){.Summary-ftse{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(1,1fr);height:48px}}@media (max-width:759px){.Summary-ftse{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(2,1fr);height:64px}}.Summary-governmentBond{grid-auto-flow:column;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(4,1fr);height:160px}@media (max-width:1339px){.Summary-governmentBond{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(6,1fr);height:240px}}@media (max-width:1019px){.Summary-governmentBond{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(4,1fr);height:192px}}@media (max-width:759px){.Summary-governmentBond{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(12,1fr);height:384px}}@media (min-width:1180px) and (max-width:1339px){.Summary-governmentBond .Summary-coupon{grid-column:1/2;grid-row:5/6}}@media (min-width:1020px) and (max-width:1179px){.Summary-governmentBond .Summary-coupon{grid-column:1/2;grid-row:5/6}}@media (min-width:1180px) and (max-width:1339px){.Summary-governmentBond .Summary-maturity{grid-column:1/2;grid-row:6/7}}@media (min-width:1020px) and (max-width:1179px){.Summary-governmentBond .Summary-maturity{grid-column:1/2;grid-row:6/7}}.Summary-cnbcSynthetic,.Summary-forex{grid-auto-flow:row;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(2,1fr);height:80px}@media (max-width:1339px){.Summary-cnbcSynthetic,.Summary-forex{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(2,1fr);height:80px}}@media (max-width:1019px){.Summary-cnbcSynthetic,.Summary-forex{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(2,1fr);height:96px}}@media (max-width:759px){.Summary-cnbcSynthetic,.Summary-forex{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(4,1fr);height:128px}}@media (min-width:760px){.Summary-cnbcSynthetic .Summary-prevClose,.Summary-forex .Summary-prevClose{grid-column:1/2;grid-row:2/3}}.Summary-future{grid-auto-flow:column;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(3,1fr);height:120px}@media (max-width:1339px){.Summary-future{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(5,1fr);height:200px}}@media (max-width:1019px){.Summary-future{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(3,1fr);height:144px}}@media (max-width:759px){.Summary-future{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(9,1fr);height:288px}}@media (min-width:1180px) and (max-width:1339px){.Summary-future .Summary-_10DayAverageVolume{grid-column:2/3;grid-row:2/3}}@media (min-width:1020px) and (max-width:1179px){.Summary-future .Summary-_10DayAverageVolume{grid-column:2/3;grid-row:2/3}}.Summary-analystConsensusContainer{margin-top:30px}@media (min-width:760px) and (max-width:1019px){.Summary-_52WeekHighDate .Summary-label,.Summary-_52WeekLowDate .Summary-label{max-width:90px}}.ErrorHandler-container{background:#ff5053;height:100%;position:relative;width:100%;word-break:break-word}.CharitableTrustHeader-sectionDivider{margin-top:16px}.CharitableTrustHeader-sectionDivider .CharitableTrustHeader-headerWrap{display:flex;margin-bottom:20px;margin-top:20px}.CharitableTrustHeader-sectionDivider .CharitableTrustHeader-headerWrap .CharitableTrustHeader-tableHeader{color:#002f6c;font-size:24px;font-weight:900;letter-spacing:.25px;line-height:24px}@media (max-width:759px){.CharitableTrustHeader-sectionDivider .CharitableTrustHeader-headerWrap .CharitableTrustHeader-tableHeader{font-size:20px;line-height:20px}}.CharitableTrustHeader-sectionDivider .CharitableTrustHeader-smallSpan{background-color:#071d39;display:block;height:6px;width:110px}@media (max-width:360px){.CharitableTrustHeader-sectionDivider .CharitableTrustHeader-smallSpan{width:88px}}.CharitableTrustHeader-sectionDivider .CharitableTrustHeader-border{background-color:#747474;display:block;height:1px;width:100%}.TrustActivityTable-trustActivityTable{display:flex;flex-wrap:wrap;max-width:1000px}.TrustActivityTable-activityTable{max-height:170px;max-width:1000px;overflow-x:hidden;overflow-y:auto;transition:max-height .3s ease-out;width:100%}@media (max-width:320px){.TrustActivityTable-activityTable{overflow-x:auto}}.TrustActivityTable-activityTable.TrustActivityTable-noActivity{align-items:center;display:flex;overflow-y:hidden;padding-right:20px;width:50%}@media (max-width:550px){.TrustActivityTable-activityTable.TrustActivityTable-noActivity{width:100%}}.TrustActivityTable-activityTable::-webkit-scrollbar{height:3px;width:3px}.TrustActivityTable-activityTable::-webkit-scrollbar-track{background:#d9d9d9;border-radius:3px}.TrustActivityTable-activityTable::-webkit-scrollbar-thumb{background:#9e9e9e}.TrustActivityTable-activityRow{align-items:center;background-color:#cfd8e240;border-left:3px solid #0496ff;border-radius:3px;display:flex;height:36px;margin-bottom:4px;margin-right:8px;min-width:310px;position:relative}.TrustActivityTable-activityRow:last-child{margin-bottom:0}.TrustActivityTable-activityLogo{align-items:center;display:flex;justify-content:center;min-width:48px;width:48px}@media (max-width:550px){.TrustActivityTable-activityLogo{min-width:40px;width:40px}}.TrustActivityTable-activityLogo span{background-color:#071d39;height:16px;width:16px}.TrustActivityTable-activityLogo .TrustActivityTable-tradeAlertIcon{mask-image:url(https://static-redesign.cnbcfm.com/dist/aad91182e297b128069c.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/aad91182e297b128069c.svg)}.TrustActivityTable-activityLogo .TrustActivityTable-earningsIcon{mask-image:url(https://static-redesign.cnbcfm.com/dist/3f94109d9f51677fee8d.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/3f94109d9f51677fee8d.svg)}.TrustActivityTable-activityLogo .TrustActivityTable-dividendIcon{mask-image:url(https://static-redesign.cnbcfm.com/dist/3635286e4568e237edcf.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/3635286e4568e237edcf.svg)}.TrustActivityTable-activityLogo .TrustActivityTable-highIcon{mask-image:url(https://static-redesign.cnbcfm.com/dist/4ecf1f23053f2b129fc4.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/4ecf1f23053f2b129fc4.svg)}.TrustActivityTable-activityLogo .TrustActivityTable-lowIcon{mask-image:url(https://static-redesign.cnbcfm.com/dist/68d05358c2f6a94bf78a.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/68d05358c2f6a94bf78a.svg)}.TrustActivityTable-activityType{color:#071d39;font-size:16px;font-weight:600;min-width:25%;padding:0 5px;white-space:nowrap}@media (max-width:760px){.TrustActivityTable-activityType{flex-grow:1;font-size:14px;margin-right:15px;min-width:25%}}@media (max-width:550px){.TrustActivityTable-activityType{margin-right:0;min-width:50%;padding:0}}.TrustActivityTable-quoteWrapper{max-width:20%}@media (max-width:760px){.TrustActivityTable-quoteWrapper{max-width:25%}}@media (max-width:759px){.TrustActivityTable-quoteWrapper{width:unset}}.TrustActivityTable-activityQuoteData{border:1px solid #9e9e9e;border-radius:8px;display:flex;font-size:12px;font-weight:800;justify-content:center;padding:8px;white-space:nowrap;width:130px}@media (max-width:550px){.TrustActivityTable-activityQuoteData{width:47px}}.TrustActivityTable-activityQuoteData:hover{background-color:#071d39}.TrustActivityTable-activityQuoteData:hover .TrustActivityTable-quoteGain{color:#34d07a}.TrustActivityTable-activityQuoteData:hover .TrustActivityTable-quoteDecline{color:#e64d55}.TrustActivityTable-activityQuoteData .TrustActivityTable-symbolDecline,.TrustActivityTable-activityQuoteData .TrustActivityTable-symbolGain{color:#071d39;margin-right:8px}.TrustActivityTable-activityQuoteData:hover .TrustActivityTable-symbolDecline,.TrustActivityTable-activityQuoteData:hover .TrustActivityTable-symbolGain{color:#fff}@media (max-width:550px){.TrustActivityTable-activityQuoteData:hover .TrustActivityTable-symbolDecline{color:#e64d55}.TrustActivityTable-activityQuoteData:hover .TrustActivityTable-symbolGain{color:#34d07a}.TrustActivityTable-activityQuoteData .TrustActivityTable-symbolGain{color:#008456;margin-right:0}.TrustActivityTable-activityQuoteData .TrustActivityTable-symbolDecline{color:#ce2b2b;margin-right:0}}.TrustActivityTable-activityQuoteData .TrustActivityTable-quoteGain{color:#008456}.TrustActivityTable-activityQuoteData .TrustActivityTable-quoteDecline{color:#ce2b2b}.TrustActivityTable-activityQuoteData .TrustActivityTable-quoteDecline span:nth-child(2),.TrustActivityTable-activityQuoteData .TrustActivityTable-quoteGain span:nth-child(2){margin-left:4px}@media (max-width:550px){.TrustActivityTable-activityQuoteData .TrustActivityTable-quoteDecline,.TrustActivityTable-activityQuoteData .TrustActivityTable-quoteGain{display:none}}.TrustActivityTable-descriptionWrap{max-width:calc(75% - 98px)}@media (min-width:550px){.TrustActivityTable-descriptionWrapWithQuote{width:calc(65% - 98px)}}@media (max-width:550px){.TrustActivityTable-descriptionWrapWithQuote{max-width:25%}}@media (min-width:1020px){.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription{margin-left:64px!important}}@media (max-width:1020px){.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription{margin-left:0;width:calc(65% - 98px)}}@media (max-width:760px){.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription{display:none}}@media (min-width:760px) and (max-width:1019px){.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription{text-align:center}}.TrustActivityTable-descriptionWrap{min-width:0}.TrustActivityTable-descriptionWrap,.TrustActivityTable-descriptionWrapWithQuote{display:flex;font-size:16px;justify-content:space-between;line-height:28px}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityLink,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityLink{font-family:Lyon Text;max-width:100%}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityDescription,.TrustActivityTable-descriptionWrap .TrustActivityTable-activityLink a,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityLink a{display:block;flex:1 2 auto;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityDescription,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription{color:#071d39;font-family:Proxima Nova}@media (max-width:760px){.TrustActivityTable-descriptionWrap .TrustActivityTable-activityDescription,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription{text-align:center}}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityLink a,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityLink a{color:#2077b6;position:relative}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityDescription a,.TrustActivityTable-descriptionWrap .TrustActivityTable-activityLink a,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription a,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityLink a{text-decoration:underline;-webkit-text-decoration-color:#2077b6;text-decoration-color:#2077b6}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityDescription a:hover,.TrustActivityTable-descriptionWrap .TrustActivityTable-activityLink a:hover,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription a:hover,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityLink a:hover{color:#fcb700;-webkit-text-decoration-color:#fcb700;text-decoration-color:#fcb700}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityLink a:before,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityLink a:before{bottom:5px;content:"";display:inline-block;left:0;position:absolute;width:99.5%}.TrustActivityTable-closeButton{align-items:center;display:flex;justify-content:flex-end;padding-left:20px;padding-right:14px;width:100%}@media (max-width:550px){.TrustActivityTable-closeButton{padding-left:0}}.TrustActivityTable-closeButton .TrustActivityTable-closeIcon{background-color:#071d39;height:16px;mask-image:url(https://static-redesign.cnbcfm.com/dist/ca2bb28892b3278d0e95.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/ca2bb28892b3278d0e95.svg);width:16px}@media (max-width:550px){.TrustActivityTable-closeButton .TrustActivityTable-closeIcon{margin-left:10px}}.TrustActivityTable-activityFooter{align-items:center;display:flex;flex:1;font-size:16px;justify-content:flex-end;line-height:28px;margin-top:16px;max-width:1000px;overflow-y:hidden;padding-right:1%;text-align:right;transition:max-height .3s ease-out;width:100%}.TrustActivityTable-activityFooter .TrustActivityTable-recentAlertMessage{color:#2077b6;font-family:Lyon Text;text-decoration:underline}.TrustActivityTable-noActivity+.TrustActivityTable-activityFooter{flex:unset;line-height:36px;margin-top:0;width:max-content}.TrustActivityTable-noActivityMessage{color:#071d39;font-size:16px;font-weight:600;line-height:24px}.TrustActivityTable-hiddenRowLink{height:36px;position:absolute;right:50px;top:0;width:calc(100% - 50px);z-index:0}@media (min-width:760px){.TrustActivityTable-hiddenRowLink{display:none}}.TrustActivityTable-closeButtonWrap{flex-grow:1}@media (max-width:759px){.TrustActivityTable-closeButtonWrap{display:flex;justify-content:flex-end}}@media (max-width:760px){.TrustActivityTable-activityDescription,.TrustActivityTable-viewQuote{display:none!important}}.HistoricalTrustActivity-historicalTrustActivity{margin-bottom:50px;margin-top:40px}.HistoricalTrustActivity-filterButtonWrap{overflow-x:auto;white-space:nowrap}.HistoricalTrustActivity-filterButtonWrap::-webkit-scrollbar{height:0;width:0}.HistoricalTrustActivity-filterButtonWrap::-webkit-scrollbar-track{background:#0000}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButton,.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButtonActive{border:1px solid #002f6c;border-radius:20px;height:28px;margin-left:12px}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButton:first-child,.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButtonActive:first-child{margin-left:0}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButton span,.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButtonActive span{color:#002f6c;display:block;font-size:12px;font-weight:600;letter-spacing:.79px;line-height:12px;margin:5px 10px;position:none;text-transform:uppercase}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButton{background-color:#fff}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButton span{color:#002f6c}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButtonActive{background-color:#002f6c}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButtonActive span{color:#fff}.HistoricalTrustActivity-date{color:#071d39;font-family:Proxima Nova;font-size:16px;font-weight:600;line-height:20px;margin-bottom:20px;margin-top:28px}.HistoricalTrustActivity-loadMoreWrap{display:flex;justify-content:flex-end;margin-top:20px;max-width:1000px;width:100%}.HistoricalTrustActivity-loadMoreWrap>a{margin-right:8px}.TodaysTrustActivity-trustActivity{margin-bottom:50px;margin-top:20px;max-width:100%;overflow:hidden}.TodaysTrustActivity-dropdownButton{align-items:center;color:#fff;display:flex}.TodaysTrustActivity-dropdownButton:active{-webkit-tap-highlight-color:transparent}.TodaysTrustActivity-dropdownButton .TodaysTrustActivity-dropdownArrow,.TodaysTrustActivity-dropdownButton .TodaysTrustActivity-dropdownUpArrow{background:#071d39;height:11px;margin-left:20px;width:19px}.TodaysTrustActivity-dropdownButton .TodaysTrustActivity-dropdownArrow,.TodaysTrustActivity-dropdownButton .TodaysTrustActivity-dropdownUpArrow{mask-image:url(https://static-redesign.cnbcfm.com/dist/b6891ac795b61eeb366b.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/b6891ac795b61eeb366b.svg)}.TodaysTrustActivity-dropdownButton .TodaysTrustActivity-dropdownUpArrow{transform:scaleY(-1)}.LivePill-watchLivePill{bottom:0;position:relative;vertical-align:initial;width:auto!important}.InvestingClubPill-investingClubPillLink,.LivePill-watchLivePill{display:inline-block;padding-right:4px}.InvestingClubPill-investingClubPill{bottom:0;display:inline-block;position:relative;vertical-align:initial;width:auto}.LatestNews-header{border-top:5px solid #002f6c}.LatestNews-header h2{color:#002f6c;font-size:24px;font-weight:900;letter-spacing:.5px;margin:12px 0 16px;text-transform:uppercase}@media (max-width:359px){.LatestNews-header h2{font-size:18px}}.LatestNews-item{border-bottom:1px solid #dedede;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin:0 0 12px;padding:0 0 10px}.LatestNews-item:last-child{margin:0 0 30px}.LatestNews-item:before{background:#fcb700;border-radius:100%;content:"";display:block;flex-shrink:0;height:8px;margin:7px 12px 0 0;width:8px}.LatestNews-item.LatestNews-iconCleared:before{background:none}.LatestNews-container{display:flex;flex-direction:column;margin:0 12px 0 0}.LatestNews-headline{color:#171717;font-size:16px;font-weight:700;line-height:18px;margin:0 10px 0 0}.LatestNews-videoIcon{display:inline;margin:0 0 -3px 5px;width:16px}.LatestNews-wrapper{white-space:nowrap}@media (min-width:360px) and (max-width:759px){.LatestNews-wrapper{display:block}}.LatestNews-source,.LatestNews-timestamp{color:#747474;display:inline-flex;font-size:12px;font-weight:700;letter-spacing:.2px;text-transform:uppercase}.LatestNews-investingClubPill,.LatestNews-proPill,.LatestNews-watchLivePill{margin-right:4px;padding:0!important;transform:translateY(2px)}.LatestNews-source:before{content:"-";display:block;margin:0 5px}@media (max-width:1019px){.LatestNews-isHomePage{background:#f7f7f7;padding:1px 16px 16px}}@media (min-width:1020px){.LatestNews-isHomePage{border-bottom:5px solid #002f6c}.LatestNews-isHomePage:after{background:linear-gradient(#fff0,#fff);bottom:5px;content:"";display:block;height:100px;pointer-events:none;position:absolute;width:96%}}.LatestNews-isHomePage.LatestNews-hideGradient:after{display:none}.LatestNews-isHomePage .LatestNews-header{border-top:none}@media (min-width:1020px){.LatestNews-isHomePage .LatestNews-header{border-top:1px solid #747474}.LatestNews-isHomePage .LatestNews-header:before{border-top:6px solid #0089d0;content:"";display:block;margin:-6px 0 0;width:110px}.LatestNews-isHomePage .LatestNews-header h2{font-size:18px;margin:10px 0}}.LatestNews-isHomePage .LatestNews-headline{font-weight:600;order:2}.LatestNews-isHomePage .LatestNews-headline:hover{color:#171717;text-decoration:underline}@media (min-width:1020px){.LatestNews-isHomePage .LatestNews-list{max-height:238px;overflow-y:auto;position:relative}}@media (min-width:1340px){.LatestNews-isHomePage .LatestNews-list{max-height:352px}}.LatestNews-isHomePage .LatestNews-item:last-child{border-bottom:none;margin:0 0 5px;padding:0 0 5px}.LatestNews-isHomePage .LatestNews-headlineWrapper{order:2}.LatestNews-isHomePage .LatestNews-wrapper{display:block;order:1}.LatestNews-isHomePage .LatestNews-visitedIcon{margin:2px 0 0}.LatestNews-isHomePage .LatestNews-source,.LatestNews-isHomePage .LatestNews-timestamp{letter-spacing:1.2px}@media (min-width:1020px){.LatestNews-isHomePage .LatestNews-buttonContainer{display:none}div.LatestNews-isIntlHomepage .LatestNews-list{max-height:378px}}@media (min-width:1340px){div.LatestNews-isIntlHomepage .LatestNews-list{max-height:472px}}@media (min-width:1020px){.LatestNews-noWatchLiveAbove .LatestNews-list{max-height:380px}}@media (min-width:1340px){.LatestNews-noWatchLiveAbove .LatestNews-list{max-height:472px}}.LatestNews-button,.LatestNews-newsTabButton{align-items:center;background:#fff;border:1px solid #002f6c;color:#002f6c;display:flex;font-family:Proxima Nova,sans-serif;font-size:14px;font-weight:600;justify-content:center;letter-spacing:1.09px;margin:15px 0;padding:10px;text-transform:uppercase;transition:background .15s,color .15s;width:100%}.LatestNews-button:after,.LatestNews-newsTabButton:after{border-bottom:2px solid #002f6c;border-right:2px solid #002f6c;content:"";display:block;height:7px;margin:-5px 0 0 7px;transform:rotate(45deg);transition:border .15s;width:7px}.LatestNews-button:hover,.LatestNews-newsTabButton:hover{background:#002f6c;color:#fff}.LatestNews-button:hover:after,.LatestNews-newsTabButton:hover:after{border-bottom-color:#fff;border-right-color:#fff}@media (min-width:760px){.LatestNews-button,.LatestNews-newsTabButton{margin:15px auto;padding:10px 30px;width:auto}}@media (min-width:1020px){.LatestNews-button,.LatestNews-newsTabButton{display:none}}.LatestNews-newsTabButton{display:none;margin:0 auto 30px}@media (min-width:760px){.LatestNews-newsTabButton{display:flex}}.LatestNews-tradeAlertLabel{background-color:#fff;border:.5px solid #071d39;border-radius:4px;color:#071d39;display:inline-block;font-family:Proxima Nova,sans-serif;font-size:11px;font-style:normal;font-weight:600;line-height:10px;margin-right:4px;margin-top:2px;padding:2.5px 4px;vertical-align:top}.QuoteNewsWithFilters-filterButtonWrap{margin:16px 0;overflow-x:auto;white-space:nowrap}.QuoteNewsWithFilters-filterButtonWrap::-webkit-scrollbar{height:0;width:0}.QuoteNewsWithFilters-filterButtonWrap::-webkit-scrollbar-track{background:#0000}.QuoteNewsWithFilters-filterButtonWrap .QuoteNewsWithFilters-filterButton{background-color:#fff;border:1px solid #002f6c;border-radius:20px;height:28px;margin-left:12px}.QuoteNewsWithFilters-filterButtonWrap .QuoteNewsWithFilters-filterButton:first-child{margin-left:0}.QuoteNewsWithFilters-filterButtonWrap .QuoteNewsWithFilters-filterButton span{color:#002f6c;display:block;font-size:12px;font-weight:600;letter-spacing:.79px;line-height:12px;margin:5px 10px;pointer-events:none;position:none;text-transform:uppercase}.QuoteNewsWithFilters-filterButtonWrap .QuoteNewsWithFilters-filterButtonActive{background-color:#002f6c}.QuoteNewsWithFilters-filterButtonWrap .QuoteNewsWithFilters-filterButtonActive span{color:#fff}.TableHeaderContent-headerRow .TableHeaderContent-headerCell,.TableHeaderContent-headerRow .TableHeaderContent-headerCellRight{background:#27313c;border-right:1px solid #fff;color:#f1f1f1;font-weight:500;line-height:1;padding:16px 8px;text-transform:uppercase}.TableHeaderContent-headerRow .TableHeaderContent-headerSortLabel{color:#f1f1f1!important;width:100%}.TableHeaderContent-headerRow .TableHeaderContent-headerSortLabel .TableHeaderContent-active,.TableHeaderContent-headerRow .TableHeaderContent-headerSortLabel svg{color:#f1f1f1!important;margin-left:auto;margin-right:0}.TableHeaderContent-headerRow .TableHeaderContent-headerSortLabel:hover svg{background:#fff;border-radius:50%;color:#27313c!important;height:16px;margin-left:auto;margin-right:0;opacity:1;width:16px}.TableHeaderContent-headerRow .TableHeaderContent-headerCellRight{text-align:right}.TableHeaderContent-headerRow .TableHeaderContent-headerCellRight .TableHeaderContent-headerSortLabel{flex-direction:row-reverse}.TableHeaderContent-headerRow .TableHeaderContent-headerCellRight .TableHeaderContent-headerSortLabel .TableHeaderContent-active,.TableHeaderContent-headerRow .TableHeaderContent-headerCellRight .TableHeaderContent-headerSortLabel svg,.TableHeaderContent-headerRow .TableHeaderContent-headerCellRight .TableHeaderContent-headerSortLabel:hover svg{margin-left:0;margin-right:auto}.TableBodyContent-contentCell{border:none!important;color:#424242}.TableBodyContent-symbol{max-width:100px;min-width:100px;width:100px}.TableBodyContent-symbol:after{box-shadow:6px 0 4px -4px #82828226;content:"";height:100%;position:absolute;right:0;top:0;width:100%;z-index:-1}.TableBodyContent-company{color:#005594}.TableBodyContent-company,.TableBodyContent-industry,.TableBodyContent-sector{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.TableBodyContent-index{white-space:nowrap}.NumberRenderer-positive{color:#0a6630}.NumberRenderer-negativeCellValue{color:#ce2b2b}.PercentRenderer-positive{color:#0a6630}.PercentRenderer-negativeCellValue{color:#ce2b2b}.NumberUnitConversionRenderer-positive{color:#0a6630}.NumberUnitConversionRenderer-negativeCellValue{color:#ce2b2b}.ConsensusRatingRenderer-strongBuy{color:#145c42}.ConsensusRatingRenderer-buy{color:#0a6630}.ConsensusRatingRenderer-neutral{color:#747474}.ConsensusRatingRenderer-sell,.ConsensusRatingRenderer-strongSell{color:#002f6c}.CompanyRenderer-companyName{color:#0053cf;cursor:pointer}.CompanyRenderer-companyName:focus,.CompanyRenderer-companyName:hover{color:#001e5a}.SymbolRenderer-symbolName{align-items:center;display:flex;justify-content:space-between}.SymbolRenderer-buttonStyles{margin-right:7px;padding:0}@media (max-width:1019px){.SymbolRenderer-dropdownStyles{transform:none!important;width:100%!important}}.InvestorSentimentRenderer-veryPositive{color:#145c42}.InvestorSentimentRenderer-positive{color:#0a6630}.InvestorSentimentRenderer-neutral{color:#747474}.InvestorSentimentRenderer-negative,.InvestorSentimentRenderer-veryNegative{color:#ce2b2b}.SignalRenderer-positive{color:#0a6630}.SignalRenderer-neutral{color:#747474}.SignalRenderer-negative{color:#ce2b2b}.TableLoadingPlaceholder-tableRow:nth-child(odd){background:#fff!important}.TableLoadingPlaceholder-tableRow:nth-child(2n){background:#f8f8f8!important}.TableLoadingPlaceholder-tableCell{border-bottom:0!important;height:53px}.TableLoadingPlaceholder-tableCell .TableLoadingPlaceholder-tableCellLoadingPill{background:#0000000a;border-radius:5px;height:12px;width:auto}.TableWarningErrorPlaceholder-container{flex-grow:0;flex-shrink:0;height:calc(100vh - 500px);min-height:170px;overflow:auto;overscroll-behavior:none;position:relative}@media (min-width:1020px){.TableWarningErrorPlaceholder-container{height:auto}}@media screen and (min-width:1020px) and (hover:hover) and (pointer:fine){.TableWarningErrorPlaceholder-container{overscroll-behavior:auto}}.TableWarningErrorPlaceholder-container tfoot{position:relative!important}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-tableBody{position:relative}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-tableBody tr:nth-child(odd){background:#fff!important}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-tableBody tr:nth-child(2n){background:#f8f8f8!important}.TableWarningErrorPlaceholder-container table{border-collapse:collapse;border-spacing:0;width:100%}.TableWarningErrorPlaceholder-container td,.TableWarningErrorPlaceholder-container th{padding:8px;text-align:left;text-transform:capitalize}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-headerRow{height:53px}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-headerRow .TableWarningErrorPlaceholder-headerCell{background:#27313c;border-right:1px solid #fff;color:#f1f1f1;font-weight:500;line-height:1;padding:16px 8px;text-transform:uppercase}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-headerRow .TableWarningErrorPlaceholder-headerSortLabel{color:#f1f1f1!important;width:100%}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-headerRow .TableWarningErrorPlaceholder-headerSortLabel .TableWarningErrorPlaceholder-active,.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-headerRow .TableWarningErrorPlaceholder-headerSortLabel svg{color:#f1f1f1!important;margin-left:auto;margin-right:0}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-headerRow .TableWarningErrorPlaceholder-headerSortLabel:active svg,.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-headerRow .TableWarningErrorPlaceholder-headerSortLabel:focus svg,.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-headerRow .TableWarningErrorPlaceholder-headerSortLabel:hover svg{background:#fff;border-radius:50%;color:#27313c!important;height:16px;margin-left:auto;margin-right:0;opacity:1;width:16px}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-tableCell{border-bottom:0;height:53px}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-tableCell .TableWarningErrorPlaceholder-tableCellLoadingPill{background:#0000000a;border-radius:5px;height:12px;width:auto}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer{left:0;position:absolute;text-align:center;top:37%;width:100%}@media screen and (min-width:480px) and (orientation:portrait){.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer{top:40%}}@media (min-width:760px){.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer{top:40%}}@media screen and (min-width:760px) and (orientation:landscape){.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer{top:30%}}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer .TableWarningErrorPlaceholder-warningLabel{color:#424242;font-size:12px;font-weight:500}@media screen and (min-width:480px) and (orientation:portrait){.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer .TableWarningErrorPlaceholder-warningLabel{color:#424242;font-size:16px;font-weight:600;margin-top:20px}}@media (min-width:760px){.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer .TableWarningErrorPlaceholder-warningLabel{color:#424242;font-size:16px;font-weight:600;margin-top:20px}}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer .TableWarningErrorPlaceholder-icon{height:23px;width:23px}@media screen and (min-width:480px) and (orientation:portrait){.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer .TableWarningErrorPlaceholder-icon{height:48px;margin-bottom:20px;width:48px}}@media (min-width:760px){.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer .TableWarningErrorPlaceholder-icon{height:48px;margin-bottom:20px;width:48px}}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer .TableWarningErrorPlaceholder-icon.TableWarningErrorPlaceholder-warningIcon{color:#fcb700}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer .TableWarningErrorPlaceholder-icon.TableWarningErrorPlaceholder-errorIcon{color:#ce2b2b}.CustomColumnsTable-container table{border-collapse:initial;border-spacing:0;width:100%}.CustomColumnsTable-container tfoot{position:relative!important}.CustomColumnsTable-container thead{top:-1px!important}.CustomColumnsTable-container td,.CustomColumnsTable-container th{font-size:14px;padding:8px;text-transform:capitalize}@media (max-width:1019px){.CustomColumnsTable-fixedHeightContainer{height:calc(100vh - 394px);min-height:250px}}@media (min-width:1020px){.CustomColumnsTable-fixedHeightContainer{flex-grow:0;flex-shrink:0;overflow-x:auto}}.CustomColumnsTable-fixedHeightContainer .CustomColumnsTable-tableContainer{height:calc(100vh - 410px)!important;min-height:250px;overscroll-behavior:none}@media (min-width:1020px){.CustomColumnsTable-fixedHeightContainer .CustomColumnsTable-tableContainer{height:calc(100vh - 330px)!important}}@media screen and (min-width:1020px) and (hover:hover) and (pointer:fine){.CustomColumnsTable-fixedHeightContainer .CustomColumnsTable-tableContainer{overscroll-behavior:auto}}.CustomColumnsTable-container:not(.CustomColumnsTable-fixedHeightContainer) div[data-viewport-type=element]{position:relative!important}.PortfolioCalendarEventFields-eventLabel{color:#171717;font-size:20px;font-weight:500;padding:20px 0;text-transform:capitalize}.PortfolioCalendarEventFields-fieldRow{border-bottom:1px dotted #d9d9d9;clear:both;height:19px;line-height:19px;margin-bottom:20px}.PortfolioCalendarEventFields-fieldText{background-color:#fff;color:#171717;display:inline-block;font-size:14px}.PortfolioCalendarEventFields-fieldText:first-child{font-weight:400;padding-right:5px}.PortfolioCalendarEventFields-fieldText:last-child{float:right;font-weight:500;padding-left:5px}.PortfolioCalendarEventDetails-container{padding-bottom:5px}.PortfolioCalendarEventDetails-header{color:#171717;font-size:24px;font-weight:500;padding:40px 0;text-transform:capitalize}.PortfolioCalendarEventDetails-tableHeader{color:#171717;font-size:20px;font-weight:500;padding:20px 0;text-transform:capitalize}.PortfolioCalendarEventDetails-spacer{height:15px}.DrawerBuilder-container{margin:0 22px 40px;max-width:100%}@media (min-width:760px){.DrawerBuilder-container{margin:0 40px 40px}}.DrawerBuilder-safariContainer{margin:0 40px 100px}@media (max-width:759px){.DrawerBuilder-safariContainer{margin:0 22px 100px}}.DrawerBuilder-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.DrawerBuilder-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.DrawerBuilder-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.DrawerBuilder-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.DrawerBuilder-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.DrawerBuilder-col:last-child{margin-right:0}.DrawerBuilder-mainContent{margin:42px 0 15px}.DrawerBuilder-mainContent .DrawerBuilder-QuoteNewsFilterContainer{margin-top:40px}@media (min-width:760px){.DrawerBuilder-sidebar{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.DrawerBuilder-sidebar{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.DrawerBuilder-sidebar{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.DrawerBuilder-sidebar{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.DrawerBuilder-sidebar{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.DrawerBuilder-sidebar{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}}@media (min-width:1340px){.DrawerBuilder-sidebar{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}.DrawerBuilder-button,.DrawerBuilder-buttonActive{align-items:center;background:#fff;border:1px solid #002f6c;color:#002f6c;display:flex;font-family:Proxima Nova,sans-serif;font-size:12px;font-weight:700;justify-content:center;letter-spacing:1.09px;margin:15px 0 30px;padding:15px 20px;text-transform:uppercase;width:100%}.DrawerBuilder-button:after,.DrawerBuilder-buttonActive:after{border-bottom:2px solid #002f6c;border-right:2px solid #002f6c;content:"";display:block;height:7px;margin:-4px 0 0 5px;transform:rotate(45deg);width:7px}.DrawerBuilder-buttonActive:after{margin:5px 0 0 5px;transform:rotate(225deg)}.DrawerBuilder-showOnDesktop{display:none}@media (min-width:760px){.DrawerBuilder-showOnDesktop{display:initial}}.DrawerBuilder-showOnMobile{display:initial;margin-bottom:10px}@media (min-width:760px){.DrawerBuilder-showOnMobile{display:none}}@media (max-width:759px){.DrawerBuilder-hideOnMobile{display:none}}.DrawerBuilder-analystConsensusContainer{display:flex;justify-content:center;margin-bottom:25px;margin-top:30px}.DrawerBuilder-quoteDetailsLink{color:#002f6c;font-size:14px;font-weight:600;position:absolute;right:45px;text-decoration:underline;-webkit-text-decoration-color:#002f6c;text-decoration-color:#002f6c;top:10px}.DrawerBuilder-quoteDetailsLink:focus,.DrawerBuilder-quoteDetailsLink:hover{color:#005594;-webkit-text-decoration-color:#005594;text-decoration-color:#005594}.DrawerBuilder-quoteDetailsLink:hover .DrawerBuilder-arrowIcon:before{color:#005594}.DrawerBuilder-arrowIcon{display:inline-block;line-height:14px;margin-left:5px;vertical-align:middle}.DrawerBuilder-arrowIcon:before{color:#002f6c;font-size:12px}@media (min-width:760px){.DrawerBuilder-quoteDetailsLink{font-size:16px}}.cq-dialogs{position:absolute;z-index:2001}.cq-color-picker[cq-active]{z-index:2002}.ciq-window{z-index:2002!important}@keyframes DrawerLoader-pulsating{0%{background-color:#d9d9d9}50%{background-color:#f1f1f1}to{background-color:#d9d9d9}}.DrawerLoader-container{margin:0 22px 40px;max-width:100%}@media (min-width:760px){.DrawerLoader-container{margin:0 40px 40px}}.DrawerLoader-titleLoading{animation:DrawerLoader-pulsating 2s infinite;height:50px;margin:63px 0 54px;width:123px}@media (min-width:760px){.DrawerLoader-titleLoading{height:54px;margin:63px 0 78px;width:151px}}.DrawerLoader-graphLoading{animation:DrawerLoader-pulsating 2s infinite;height:251px;margin-bottom:90px;width:320px}@media (min-width:760px){.DrawerLoader-graphLoading{height:400px;margin-bottom:118px;width:680px}}.DrawerLoader-newsLoading{animation:DrawerLoader-pulsating 2s infinite;height:26px;margin-bottom:20px}@media (min-width:760px){.DrawerLoader-newsLoading{height:28px}}.DrawerLoader-newsLoading:nth-child(2n){margin-bottom:40px}.DrawerLoader-newsBarMedium{width:258px}@media (min-width:760px){.DrawerLoader-newsBarMedium{width:524px}}.DrawerLoader-newsBarExtraLong{width:318px}@media (min-width:760px){.DrawerLoader-newsBarExtraLong{width:682px}}.DrawerLoader-newsBarLong{width:318px}@media (min-width:760px){.DrawerLoader-newsBarLong{width:609px}}.DrawerLoader-newsBarShort{width:318px}@media (min-width:760px){.DrawerLoader-newsBarShort{width:435px}}.SideDrawerBackground-sideDrawerBackground{background:#000000b3;height:100%;left:0;overflow-y:auto;position:fixed;top:0;transition:background-color .5s;width:100%;z-index:2000}.SideDrawerProvider-sideDrawer{background:#fff;bottom:0;box-shadow:5px 5px 20px #1717171a;display:inline-block;height:100vh;margin-top:0!important;max-width:100%;overflow:scroll;overscroll-behavior:contain;position:fixed;right:0;top:0;transform:none;width:100vw;z-index:2001}@media (min-width:1020px){.SideDrawerProvider-sideDrawer{width:760px}}.SideDrawerProvider-closeButton{color:#a9a9a9;cursor:pointer;position:absolute;right:12px;top:12px}.Help-container{color:#6f6f6f;font-size:12px;font-weight:300;letter-spacing:.78px;line-height:14.62px;padding:5px 0 15px;text-align:left}.Help-container a.Help-helpLink{color:#0053cf}.Help-container a.Help-helpLink:focus,.Help-container a.Help-helpLink:hover{color:#fcb700}.LabelLink-container{border-top:1px solid #d9d9d9;display:flex;flex-direction:row;justify-content:space-between}.LabelLink-container .LabelLink-label{color:#767575;font-size:16px;font-weight:600;letter-spacing:.5px;line-height:19.49px;margin:18px 0;text-align:left;text-transform:uppercase}@media (min-width:760px){.LabelLink-container .LabelLink-label{font-size:18px;line-height:21.92px}}.LabelLink-container a.LabelLink-link{color:#0053cf;font-size:12px;font-weight:500;letter-spacing:1px;line-height:12px;margin:auto 0;text-align:left}.LabelLink-container a.LabelLink-link:focus,.LabelLink-container a.LabelLink-link:hover{color:#fcb700}.Account-container{display:block}.Subscriptions-container{padding:0 10px 10px}.Subscriptions-headline{color:#696868;font-size:12px;font-weight:500;letter-spacing:1px;line-height:14.62px;margin-bottom:10px;margin-top:0;text-align:left;text-transform:uppercase}.Subscriptions-noContent{color:#484848;font-size:12px;font-weight:300;letter-spacing:.5px;line-height:18px;text-align:left}.Subscriptions-included{color:#484848;font-size:12px;font-weight:300;line-height:14.62px}.Subscription-dateContainer,.Subscription-logoContainer,.Subscription-top{align-items:center;display:flex}.Subscription-logoContainer{flex-direction:column}.Subscription-top{justify-content:space-between;margin:15px 0 10px}.Subscription-bottom{align-items:center;display:flex;justify-content:flex-start}.Subscription-date,.Subscription-dateLabel{color:#424242;font-size:12px;font-weight:400;letter-spacing:.009em;line-height:12px}.Subscription-dateLabel{padding-right:5px}.Subscription-date{font-weight:600}.Subscription-secondaryLogo{height:16px;width:53px}.Divider-divider{font-size:12px;font-weight:600;margin:auto 5px}.IncludedWith-included{color:#484848;font-size:12px;font-weight:300;line-height:14.62px}.SubscriptionInfo-containerLogoAndMessage{display:flex}.SubscriptionInfo-appStoreMsg{color:#424242;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:400;letter-spacing:.009em;line-height:14px;margin-left:auto;max-width:234px;text-align:right}.SubscriptionInfo-helpCenterLink{color:#0053cf}.SubscriptionInfo-helpCenterLink :hover{color:#171717;text-decoration:underline}.Product-promoBanner{align-items:center;background-color:#ffbc05;border-radius:7px 7px 0 0;display:flex;font-size:14px;font-weight:600;height:37px;justify-content:center;letter-spacing:1.1px;line-height:17.05px;margin:7px 0 -16px;padding-bottom:5px;position:relative;text-transform:uppercase}.Product-container{background:#f8f8f8;background-image:url(https://static-redesign.cnbcfm.com/dist/44944463efaf14fd092f.svg);background-position:right top -10px;background-repeat:no-repeat;background-size:500px;border:1px solid #e3e3e380;border-radius:6px;box-shadow:0 4px 4px 0 #00000040;display:block;margin:10px auto;padding:10px;position:relative}@media (min-width:760px){.Product-container{padding-bottom:17px}}.Product-container .Product-body,.Product-container .Product-head{align-items:flex-start;display:flex;justify-content:space-between;margin-top:5px}.Product-container .Product-left,.Product-container .Product-right{display:block}.Product-container .Product-head .Product-left{align-self:center}@media (min-width:760px){.Product-container .Product-head .Product-left{align-self:flex-start}}.Product-container .Product-head .Product-left svg{max-height:26px;max-width:128px}.Product-container .Product-feature{align-items:center;display:flex;padding:5px 0}@media (min-width:760px){.Product-container .Product-feature{padding:0}}.Product-container .Product-feature svg{margin-left:5px}.Product-container .Product-featureText{color:#4b4f54;font-size:12px;font-weight:500;line-height:14px;margin-left:10px;text-align:left;width:153px}@media (min-width:760px){.Product-container .Product-featureText{font-size:14px;line-height:26px;width:auto}}.Product-container .Product-featureText.Product-all-access{line-height:14px;margin-left:5px;max-width:235px;width:235px}@media (min-width:760px){.Product-container .Product-featureText.Product-all-access{line-height:17px;max-width:275px;width:275px}}.Product-container .Product-subscribeButton{align-items:center;appearance:none;background-color:#005594;border:1px solid #002f6c;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.Product-container .Product-subscribeButton.Product-defaultButton.Product-all-access,.Product-container .Product-subscribeButton.Product-defaultButton.Product-investing-club,.Product-container .Product-subscribeButton.Product-defaultButton.Product-pro{border-radius:3px;height:44px;letter-spacing:.5px;padding:7px 15px}@media (min-width:760px){.Product-container .Product-subscribeButton.Product-defaultButton.Product-all-access,.Product-container .Product-subscribeButton.Product-defaultButton.Product-investing-club,.Product-container .Product-subscribeButton.Product-defaultButton.Product-pro{height:31px}}.Product-container .Product-subscribeButton>span{display:block;line-height:12px}.Product-container .Product-subscribeButton [class*=" icon-"],.Product-container .Product-subscribeButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.Product-container .Product-subscribeButton [class*=" icon-"]:before,.Product-container .Product-subscribeButton [class^=icon-]:before{line-height:12px}.Product-container .Product-subscribeButton:focus,.Product-container .Product-subscribeButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.Product-container .Product-subscribeButton[class*=touchButton]:hover{background-color:#005594;border-color:#002f6c;color:#fff}@media (hover:hover){.Product-container .Product-subscribeButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.Product-container .Product-subscribeButton{padding:0 30px;width:auto}}.Product-container .Product-subscribeButton.Product-pro{align-items:center;appearance:none;background-color:#047e2e;border:1px solid #047e2e;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.Product-container .Product-subscribeButton.Product-pro>span{display:block;line-height:12px}.Product-container .Product-subscribeButton.Product-pro [class*=" icon-"],.Product-container .Product-subscribeButton.Product-pro [class^=icon-]{height:12px;margin-left:5px;position:relative}.Product-container .Product-subscribeButton.Product-pro [class*=" icon-"]:before,.Product-container .Product-subscribeButton.Product-pro [class^=icon-]:before{line-height:12px}.Product-container .Product-subscribeButton.Product-pro:focus,.Product-container .Product-subscribeButton.Product-pro:hover{background-color:#005034;border-color:#005034;color:#fff}.Product-container .Product-subscribeButton.Product-pro[class*=touchButton]:hover{background-color:#047e2e;border-color:#047e2e;color:#fff}@media (hover:hover){.Product-container .Product-subscribeButton.Product-pro[class*=touchButton]:hover{background-color:#005034;border-color:#005034;color:#fff}}@media (min-width:760px){.Product-container .Product-subscribeButton.Product-pro{padding:0 30px;width:auto}}.Product-container .Product-subscribeButton.Product-investing-club{align-items:center;appearance:none;background-color:#0053cf;border:1px solid #0053cf;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.Product-container .Product-subscribeButton.Product-investing-club>span{display:block;line-height:12px}.Product-container .Product-subscribeButton.Product-investing-club [class*=" icon-"],.Product-container .Product-subscribeButton.Product-investing-club [class^=icon-]{height:12px;margin-left:5px;position:relative}.Product-container .Product-subscribeButton.Product-investing-club [class*=" icon-"]:before,.Product-container .Product-subscribeButton.Product-investing-club [class^=icon-]:before{line-height:12px}.Product-container .Product-subscribeButton.Product-investing-club:focus,.Product-container .Product-subscribeButton.Product-investing-club:hover{background-color:#171717;border-color:#171717;color:#fff}.Product-container .Product-subscribeButton.Product-investing-club[class*=touchButton]:hover{background-color:#0053cf;border-color:#0053cf;color:#fff}@media (hover:hover){.Product-container .Product-subscribeButton.Product-investing-club[class*=touchButton]:hover{background-color:#171717;border-color:#171717;color:#fff}}@media (min-width:760px){.Product-container .Product-subscribeButton.Product-investing-club{padding:0 30px;width:auto}}.Product-container .Product-subscribeButton.Product-all-access{align-items:center;appearance:none;background-color:#001e5a;border:1px solid #001e5a;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.Product-container .Product-subscribeButton.Product-all-access>span{display:block;line-height:12px}.Product-container .Product-subscribeButton.Product-all-access [class*=" icon-"],.Product-container .Product-subscribeButton.Product-all-access [class^=icon-]{height:12px;margin-left:5px;position:relative}.Product-container .Product-subscribeButton.Product-all-access [class*=" icon-"]:before,.Product-container .Product-subscribeButton.Product-all-access [class^=icon-]:before{line-height:12px}.Product-container .Product-subscribeButton.Product-all-access:focus,.Product-container .Product-subscribeButton.Product-all-access:hover{background-color:#171717;border-color:#171717;color:#fff}.Product-container .Product-subscribeButton.Product-all-access[class*=touchButton]:hover{background-color:#001e5a;border-color:#001e5a;color:#fff}@media (hover:hover){.Product-container .Product-subscribeButton.Product-all-access[class*=touchButton]:hover{background-color:#171717;border-color:#171717;color:#fff}}@media (min-width:760px){.Product-container .Product-subscribeButton.Product-all-access{padding:0 30px;width:auto}}.Product-container a.Product-learnMoreLink{align-items:center;color:#0053cf;display:flex;font-size:14px;font-weight:600;height:44px;line-height:17.05px;text-align:left}@media (min-width:760px){.Product-container a.Product-learnMoreLink{height:31px}}.Product-container .Product-footer{align-items:center;display:flex;justify-content:flex-start;margin-top:10px;padding-left:5px}.Product-container .Product-secondaryLogo{height:16px;width:53px}.Products-container{margin-bottom:20px}.Products-title{border-top:1px dashed #d9d9d9;color:#696868;font-size:12px;font-weight:500;letter-spacing:1px;line-height:14.62px;margin:0 10px;padding:15px 0 5px;text-align:left;text-transform:uppercase}.AccountSideDrawer-container{background-color:#fff;box-shadow:0 4px 4px 0 #00000040;display:flex;flex-direction:column;height:100%;padding:25px 15px 15px;position:fixed;right:0;top:0;width:100%;z-index:9999}@media (min-width:760px){.AccountSideDrawer-container{padding:25px 25px 15px;width:468px}}.AccountSideDrawer-backdrop{background:#000000b3;height:100%;left:0;overflow-y:auto;position:fixed;top:0;transition:background-color .5s;width:100%;z-index:2000}.AccountSideDrawer-greeting{font-size:18px;letter-spacing:.78px;line-height:21.92px;margin:0;text-align:left}@media (min-width:760px){.AccountSideDrawer-greeting{font-size:20px;font-weight:600;line-height:24.36px}}.AccountSideDrawer-head{align-items:flex-end;display:flex;flex-direction:column;justify-content:flex-end}.AccountSideDrawer-body{-ms-overflow-style:none;display:block;overflow:auto;scrollbar-width:none}.AccountSideDrawer-body::-webkit-scrollbar{display:none}.AccountSideDrawer-signout{align-items:flex-start;border-top:1px solid #d9d9d9;display:flex;flex-direction:column;justify-content:flex-start;margin:5px 0 25px;padding:15px 0 0}.AccountSideDrawer-signout .AccountSideDrawer-signOutLink{color:#0053cf;font-size:16px;font-weight:600;letter-spacing:.5px;line-height:19.49px;text-align:left;text-transform:uppercase}@media (min-width:760px){.AccountSideDrawer-signout .AccountSideDrawer-signOutLink{font-size:18px;line-height:21.92px}}.AccountSideDrawer-signout .AccountSideDrawer-signOutLink:focus,.AccountSideDrawer-signout .AccountSideDrawer-signOutLink:hover{color:#fcb700}.AccountSideDrawer-closeButton svg path{fill:#171717}.UniversalVideoPlayer-videoContainer{opacity:1;position:absolute;z-index:10}.hfsf{z-index:100}.hfsf .ot-sdk-show-settings.US{background-image:url(https://static-redesign.cnbcfm.com/dist/17269f1b6083fd5f61be.svg);background-position-y:2px;background-repeat:no-repeat;background-size:24px;padding:0 0 0 30px}.NavSpacer-navSpacer{display:block;height:45px}.NavSpacer-navSpacer.NavSpacer-navSpacerCountDownClock,.NavSpacer-navSpacer.NavSpacer-navSpacerFiveThings{height:112px}@media (min-width:760px){.NavSpacer-navSpacer{height:70px}.NavSpacer-navSpacer.NavSpacer-navSpacerCountDownClock,.NavSpacer-navSpacer.NavSpacer-navSpacerFiveThings{height:112px}}.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert{height:85px}.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerLiveAlert{height:125px}.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerCountDownClock,.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerFiveThings{height:192px}@media (min-width:760px){.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert{height:110px}.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerLiveAlert{height:150px}.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerCountDownClock{height:152px}.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerFiveThings{height:185px}}.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert{height:85px}@media (min-width:360px){.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert{height:125px}.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert.NavSpacer-NavSpacer-navSpacerFiveThings{height:162px}}@media (min-width:760px){.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert{height:150px}}@media (min-width:1020px){.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert{height:150px}}@media (min-width:1340px){.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert{height:150px}}.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerFiveThings{height:185px}.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerCountDownClock{height:192px}.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerCountDownClock,.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerFiveThings{height:152px}@media (min-width:760px){.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert{height:110px}}.SelectHFSNav-container{height:60px;margin-bottom:-20px;position:sticky;top:0;z-index:9999}@media screen and (min-width:759px){.SelectHFSNav-container{height:80px}}.SelectHFSNav-container #hfs-header{position:fixed;width:100%}@supports (-webkit-overflow-scrolling:touch){.hfsh .menu .inner:after{display:none!important}}.hfsh .ot-sdk-show-settings.US{background-image:url(https://static-redesign.cnbcfm.com/dist/17269f1b6083fd5f61be.svg);background-position-y:4px;background-repeat:no-repeat;background-size:24px;padding:0 0 0 28px}@supports (-webkit-overflow-scrolling:touch){.menu-select__copyright:after{content:"";display:block;height:88px;width:100%}}nav.hfsh{pointer-events:auto!important}.MobileAdhesion-container{display:none;margin:10px auto;overflow:hidden;text-align:center}.JumpLink-container{margin:0 auto;position:relative;width:100%;z-index:1000}@media (min-width:1020px){.JumpLink-container{margin:0 auto;max-width:100%}}@media (min-width:1020px) and (min-width:760px){.JumpLink-container{max-width:678px}}@media (min-width:1020px) and (min-width:1020px){.JumpLink-container{max-width:960px}}@media (min-width:1020px) and (min-width:1340px){.JumpLink-container{max-width:1290px}}.JumpLink-link{align-items:center;background-color:#e8e8e8;color:#002f6c;display:flex;font-size:14px;font-weight:700;height:1px;left:-10000px;line-height:1;overflow:hidden;padding:0 14px;position:absolute;text-transform:uppercase;top:0;width:1px}.JumpLink-link:focus-visible{height:40px;left:0;width:auto}.SidebarArticle-sidebar{position:relative}@media (min-width:1020px){.SidebarArticle-sticky{margin-bottom:20px;position:sticky}}.SidebarArticle-noSticky{position:static!important}.SidebarArticle-noSticky .SidebarArticle-sticky{position:sticky}.LazyLoaderPlaceholder-articleBody{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.LazyLoaderPlaceholder-articleBody{padding-left:0;padding-right:0}}.LazyLoaderPlaceholder-bodyText{color:#2e2e2e;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:18px;line-height:1.66;margin-bottom:30px}@media (min-width:760px){.LazyLoaderPlaceholder-bodyText{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){.LazyLoaderPlaceholder-bodyText{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){.LazyLoaderPlaceholder-bodyText{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){.LazyLoaderPlaceholder-bodyText{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){.LazyLoaderPlaceholder-bodyText{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){.LazyLoaderPlaceholder-bodyText{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){.LazyLoaderPlaceholder-bodyText{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){.LazyLoaderPlaceholder-bodyText{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){.LazyLoaderPlaceholder-bodyText{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){.LazyLoaderPlaceholder-bodyText{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){.LazyLoaderPlaceholder-bodyText{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){.LazyLoaderPlaceholder-bodyText{margin-left:14.28571%}}@media (min-width:760px){.LazyLoaderPlaceholder-listWrapper{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){.LazyLoaderPlaceholder-listWrapper{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){.LazyLoaderPlaceholder-listWrapper{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){.LazyLoaderPlaceholder-listWrapper{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){.LazyLoaderPlaceholder-listWrapper{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){.LazyLoaderPlaceholder-listWrapper{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){.LazyLoaderPlaceholder-listWrapper{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){.LazyLoaderPlaceholder-listWrapper{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){.LazyLoaderPlaceholder-listWrapper{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){.LazyLoaderPlaceholder-listWrapper{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){.LazyLoaderPlaceholder-listWrapper{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){.LazyLoaderPlaceholder-listWrapper{margin-left:14.28571%}}.LazyLoaderPlaceholder-listTitle{font-size:24px;font-weight:700;margin-bottom:15px}.LazyLoaderPlaceholder-gridContainer{grid-gap:30px;display:grid;font-size:18px;font-weight:600;grid-template-columns:auto auto auto;line-height:22px;padding:10px}@media (min-width:360px) and (max-width:759px){.LazyLoaderPlaceholder-gridContainer{display:block;padding-left:0}}.LazyLoaderPlaceholder-gridItem{border-bottom:1px dashed #8b8b8b80}.LazyLoaderPlaceholder-gridItem .LazyLoaderPlaceholder-author,.LazyLoaderPlaceholder-gridItem .LazyLoaderPlaceholder-headline,.LazyLoaderPlaceholder-gridItem .LazyLoaderPlaceholder-section{color:#000;display:block;margin-bottom:12px;margin-top:12px}.LazyLoaderPlaceholder-gridItem .LazyLoaderPlaceholder-headline:hover{text-decoration:underline}.LazyLoaderPlaceholder-gridItem .LazyLoaderPlaceholder-author,.LazyLoaderPlaceholder-gridItem .LazyLoaderPlaceholder-section{font-size:12px;line-height:12px;overflow-y:hidden}@media (min-width:360px) and (max-width:759px){.LazyLoaderPlaceholder-headline{word-break:break-word}}.LazyLoaderPlaceholder-moduleTitle{color:#000;display:block;font-size:32px;font-weight:800;line-height:37px;padding:10px}.LazyLoaderPlaceholder-moduleTitle:hover{color:#2077b6}@media (min-width:360px) and (max-width:759px){.LazyLoaderPlaceholder-moduleTitle{padding-left:0}}.AdvertorialFooter-advertorialFooter{background-color:#e1e1e1;color:#737373;font-size:14px;text-align:center;width:100%}.AdvertorialFooter-advertorialFooter .AdvertorialFooter-innerText{font-family:Proxima Nova,450,normal,sans-serif;font-weight:450;margin:0 auto;padding:15px 0;text-align:center}@media (min-width:360px){.AdvertorialFooter-advertorialFooter .AdvertorialFooter-innerText{width:85%}}@media (min-width:760px){.AdvertorialFooter-advertorialFooter .AdvertorialFooter-innerText{width:500px}}*{box-sizing:border-box}li,ol,ul{list-style:none;margin:0;padding:0}a{color:#fff;cursor:pointer;text-decoration:none}a:focus,a:hover{color:#fcb700}button{background:none;border:none;cursor:pointer;padding:0}table{border-collapse:collapse}td,th{padding:8px 15px 8px 0;text-align:left}img{display:block}html{-ms-overflow-style:-ms-autohiding-scrollbar}body{-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:100%;border:0;font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin:0;padding:0}body:after{content:"mobile";display:none}@media (min-width:760px){body:after{content:"tablet"}}@media (min-width:1020px){body:after{content:"small_desktop"}}@media (min-width:1180px){body:after{content:"medium_desktop"}}@media (min-width:1340px){body:after{content:"large_desktop"}}:focus{outline:none}button{border-radius:0;font-family:Proxima Nova,Helvetica,Arial,sans-serif}button::-moz-focus-inner{border:0}.openNav{position:fixed;width:100%}@media (min-width:1020px){.openNav{overflow-y:scroll}}.App-articleBody{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.App-articleBody{padding-left:0;padding-right:0}}.group{font-family:Lyon,Helvetica,Arial,sans-serif;font-size:18px;line-height:1.66;margin-bottom:30px}@media (min-width:760px){.group{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){.group{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){.group{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){.group{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){.group{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){.group{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){.group{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){.group{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){.group{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){.group{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){.group{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){.group{margin-left:14.28571%}}@media (max-width:759px){.hideOnMobile{display:none}}.App-bodyText{color:#2e2e2e;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:18px;line-height:1.66;margin-bottom:30px}@media (min-width:760px){.App-bodyText{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){.App-bodyText{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){.App-bodyText{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){.App-bodyText{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){.App-bodyText{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){.App-bodyText{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){.App-bodyText{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){.App-bodyText{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){.App-bodyText{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){.App-bodyText{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){.App-bodyText{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){.App-bodyText{margin-left:14.28571%}}@media (min-width:760px){.App-listWrapper{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){.App-listWrapper{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){.App-listWrapper{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){.App-listWrapper{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){.App-listWrapper{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){.App-listWrapper{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){.App-listWrapper{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){.App-listWrapper{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){.App-listWrapper{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){.App-listWrapper{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){.App-listWrapper{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){.App-listWrapper{margin-left:14.28571%}}@media (min-width:760px){#taboolaContainer{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){#taboolaContainer{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){#taboolaContainer{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){#taboolaContainer{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){#taboolaContainer{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){#taboolaContainer{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){#taboolaContainer{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){#taboolaContainer{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){#taboolaContainer{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){#taboolaContainer{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){#taboolaContainer{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){#taboolaContainer{margin-left:14.28571%}}@media (min-width:760px){#taboolaContainer{flex:none}}@media (min-width:1020px){#taboolaContainer{flex-grow:0;flex-shrink:0;flex:none;margin-left:calc(16.66667% + 5px);max-width:calc(83.33333% - 5px);min-width:calc(83.33333% - 5px)}}@media (min-width:1340px){#taboolaContainer{flex-grow:0;flex-shrink:0;flex:none;margin-left:calc(14.28571% + 4.28571px);max-width:calc(85.71429% - 4.28571px);min-width:calc(85.71429% - 4.28571px)}}.App-listTitle{font-size:24px;font-weight:700;margin-bottom:15px}.numeric{text-align:right}@media (prefers-color-scheme:dark){.webview,.webview #taboola-below-article-thumbnails-Bento-Feed,.webview #taboola-below-article-thumbnails-Bento-Feed .video-title,.webview .trc_rbox_header_span{background-color:#000;color:#dce0e4}.webview #taboola-below-article-thumbnails-Bento-Feed .video-title a,.webview #taboola-below-article-thumbnails-Bento-Feed a,.webview .trc_rbox_header_span a,.webview a{color:#dce0e4}}.grecaptcha-badge{display:none}@font-face{font-display:block;font-family:icomoon;font-style:normal;font-weight:400;src:url(https://static-redesign.cnbcfm.com/dist/icomoon.woff2) format("woff2")}[class*=" icon-"],[class^=icon-]{speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:icomoon!important;font-style:normal;font-variant:normal;font-weight:400;line-height:1;text-transform:none}.icon-social_apple_news:before{content:"\e900"}.icon-close-2:before{content:"\e901"}.icon-thumbs-up:before{content:"\e902"}.icon-chat-bubble:before{content:"\e903"}.icon-chat-bubble-hover:before{content:"\e904"}.icon-thumbs-down:before{content:"\e905"}.icon-buffett-pause:before{content:"\e906"}.icon-buffett-timeline:before{content:"\e907"}.icon-buffett-backtotop:before{content:"\e908"}.icon-buffett-sync:before{content:"\e909"}.icon-buffett-arrow-right-long:before{content:"\e90a"}.icon-buffett-arrow-left-long:before{content:"\e90b"}.icon-buffett-diamond:before{content:"\e90c"}.icon-check:before{content:"\e90d"}.icon-search:before{content:"\e90e"}.icon-hamburger:before{content:"\e90f"}.icon-close:before{content:"\e910"}.icon-social_facebook:before{content:"\e911"}.icon-social_instagram:before{content:"\e912"}.icon-social_linkedin:before{content:"\e913"}.icon-social_rss:before{content:"\e914"}.icon-social_twitter:before{content:"\e915"}.icon-social_youtube:before{content:"\e916"}.icon-tumblr:before{content:"\e917"}.icon-stumbleupon:before{content:"\e918"}.icon-reddit:before{content:"\e919"}.icon-quote-mark:before{content:"\e91a"}.icon-probug:before{content:"\e91b"}.icon-play-triangle:before{content:"\e91c"}.icon-pinterest:before{content:"\e91d"}.icon-more-dots:before{content:"\e91e"}.icon-pause:before{content:"\e906"}.icon-play:before{content:"\e91f"}.icon-email:before{content:"\e920"}.icon-digg:before{content:"\e921"}.icon-arrow-left:before{content:"\e922"}.icon-arrow-right:before{content:"\e923"}.icon-arrow-down-readmore:before{content:"\e924"}.icon-arrow-transporter-down:before{content:"\e925"}.icon-calendar:before{content:"\e926"}.icon-livebug:before{content:"\e927"}.icon-lock:before{content:"\e928"}.icon-sort:before{content:"\e929"}.icon-cnbctv:before{content:"\e92a"}.icon-markets:before{content:"\e92b"}.icon-menu:before{content:"\e92c"}.icon-news:before{content:"\e92d"}.icon-offsite-arrow:before{content:"\e92e"}.icon-short-arrow-left:before{content:"\e92f"}.icon-short-arrow-right:before{content:"\e930"}.icon-live:before{content:"\e931"}.icon-newsletter:before{content:"\e932"}.icon-caret-left:before{content:"\e933"}.icon-triangle-down:before{content:"\e934"}.icon-triangle-up:before{content:"\e935"}.icon-caret-right:before{content:"\e936"}.icon-buffett-arrow-left:before{content:"\e937"}.icon-buffett-arrow-right:before{content:"\e938"}.icon-buffett-chevron-down:before{content:"\e939"}.icon-buffett-chevron-left:before{content:"\e93a"}.icon-buffett-chevron-right:before{content:"\e93b"}.icon-buffett-chevron-up:before{content:"\e93c"}.icon-buffett-playlist:before{content:"\e93d"}.icon-buffett-slideshow:before{content:"\e93e"}.icon-buffett-video-fullscreen:before{content:"\e93f"}.icon-buffett-video-mute:before{content:"\e940"}.icon-buffett-video-volume:before{content:"\e941"}.icon-buffett-video:before{content:"\e91C"}.PlayButton-buffett .icon-buffett-video:before{content:"\e942"}.icon-video_back_to_top:before{content:"\e943"}.icon-video_close:before{content:"\e944"}.icon-logo-cnbc:before{content:"\e945"}.icon-minus:before{content:"\e946"}.icon-plus:before{content:"\e947"}.icon-watchlist:before{content:"\e948"}.icon-replay:before{content:"\e965"}.icon-full-screen-alt:before{content:"\e98b"}.icon-full-screen-close-alt:before{content:"\e98c"}@font-face{font-display:block;font-family:makeit-icons;font-style:normal;font-weight:400;src:url(https://static-redesign.cnbcfm.com/dist/makeit-icons.woff2) format("woff2")}[class*=" icon-makeit-"]:before,[class^=icon-makeit-]:before{display:inline-block;font-family:makeit-icons!important}.icon-makeit-arrow-down:before{content:"\e900"}.icon-makeit-arrow-left:before{content:"\e901"}.icon-makeit-arrow-right:before{content:"\e902"}.icon-makeit-arrow-up:before{content:"\e903"}.icon-makeit-backtotop:before{content:"\e904"}.icon-makeit-check:before{content:"\e905"}.icon-makeit-close:before{content:"\e906"}.icon-makeit-externallink:before{content:"\e907"}.icon-makeit-filter-closed:before{content:"\e908"}.icon-makeit-filter-open:before{content:"\e909"}.icon-makeit-fullscreen:before{content:"\e90a"}.icon-makeit-hamburger:before{content:"\e90b"}.icon-makeit-logo-cnbc:before{content:"\e919"}.icon-makeit-mail:before{content:"\e90d"}.icon-makeit-mute:before{content:"\e90e"}.icon-makeit-pause:before{content:"\e90f"}.icon-makeit-play:before{content:"\e910"}.icon-makeit-questionnaire:before{content:"\e911"}.icon-makeit-quote:before{content:"\e912"}.icon-makeit-search:before{border-top:1px solid #0000;content:"\e913"}.icon-makeit-trending-bug:before{content:"\e914"}.icon-makeit-unmute:before{content:"\e915"}.icon-makeit-plus:before{content:"\e916"}.icon-makeit-minus:before{content:"\e917"}.icon-makeit-newsletter:before{content:"\e918"}@font-face{font-display:swap;font-family:social-icons;font-style:normal;font-weight:400;src:url(https://static-redesign.cnbcfm.com/dist/social-icons.woff2) format("woff2")}[class*=" gig-button-container-"],[class^=gig-button-container-]{speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:social-icons!important;font-style:normal;font-variant:normal;font-weight:400;line-height:1;text-transform:none}.gig-button-container-facebook .icon-social:before{content:"\e911"}.gig-button-container-instagram .icon-social:before{content:"\e912"}.gig-button-container-linkedin .icon-social:before{content:"\e913"}.gig-button-container-rss .icon-social:before{content:"\e914"}.gig-button-container-twitter .icon-social:before{content:"\e915"}.gig-button-container-youtube .icon-social:before{content:"\e916"}.gig-button-container-tumblr .icon-social:before{content:"\e917"}.gig-button-container-stumbleupon .icon-social:before{content:"\e918"}.gig-button-container-reddit .icon-social:before{content:"\e919"}.gig-button-container-pinterest .icon-social:before{content:"\e91d"}.gig-button-container-share .icon-social:before{content:"\e91e"}.gig-button-container-email .icon-social:before{content:"\e920"}.gig-button-container-digg .icon-social:before{content:"\e921"}.transition-fade-enter{opacity:.01!important}.transition-fade-appear{opacity:.01}.transition-fade-appear.transition-fade-appear-active{opacity:1!important;transition:opacity .5s ease-in}.transition-fade-enter.transition-fade-enter-active{opacity:1!important;transition:opacity .3s ease-in}.transition-transform-y-appear{transform:translateY(20%);transition:transform .5s ease-in}.transition-transform-y-appear.transition-transform-y-appear-active{transform:translateY(0);transition:transform .5s ease-in}.transition-top-enter{transform:translateY(-100%)}.transition-search-fade-enter{opacity:.01!important}.transition-search-fade-enter.transition-search-fade-enter-active{opacity:1!important;transition:opacity .5s ease-in}.transition-top-enter.transition-top-enter-active{transform:translateY(0);transition:transform .5s}.transition-bottom-enter{transform:translateY(100%)}.transition-bottom-enter.transition-bottom-enter-active{transform:translateY(0);transition:transform .5s}.mega-menu-enter{opacity:.01!important}.mega-menu-enter .mega-menu-megaMenu{transform:translate3d(0,-100%,0)!important}.mega-menu-enter.mega-menu-enter-active{opacity:1!important;transition:opacity .3s ease-in}.mega-menu-enter.mega-menu-enter-active .mega-menu-megaMenu{transform:translateZ(0)!important;transition:transform .3s cubic-bezier(.645,.045,.355,1)}.mega-menu-exit{opacity:1!important}.mega-menu-exit .mega-menu-megaMenu{transform:translateZ(0)!important}.mega-menu-exit.mega-menu-exit-active{opacity:.01!important;transition:opacity .15s ease-in}.mega-menu-exit.mega-menu-exit-active .mega-menu-megaMenu{transform:translate3d(0,-100%,0)!important;transition:transform .15s cubic-bezier(.645,.045,.355,1)}.App-contentWrapper{margin-top:45px}@media (min-width:760px){.App-contentWrapper{margin-top:70px}}.App-contentWrapperClock{margin-top:112px}.App-containerClick a:focus,.App-containerClick button:focus,.App-containerClick input:focus,.App-containerClick textarea:focus{outline:none}.App-proContentRecommendation{bottom:0;position:fixed;width:100%;z-index:9999}@media (max-width:759px){.App-proContentRecommendation{bottom:55px}}.App-makeit.App-buttonContainer{margin-bottom:20px;position:relative;text-align:center;width:auto}@media (min-width:760px){.App-makeit.App-buttonContainer{margin-bottom:50px}}.App-makeit .App-buttonLink{background:#fff;border:3px solid #68ebca;color:#3e4855;display:inline-block;font-size:14px;font-weight:600;height:42px;letter-spacing:3px;line-height:12px;padding:12px 75px;text-transform:uppercase;width:auto}.App-makeit .App-buttonLink:hover{background-color:#68ebca}body .makeitBrand{font-family:Averta,Helvetica,Arial,sans-serif}body .makeitBrand #faceteddata div>a{color:#000}.HalfAndHalfBreaker-halfAndHalfBreaker{margin-left:-20px;margin-right:-20px;width:auto}@media (min-width:760px){.HalfAndHalfBreaker-halfAndHalfBreaker{margin:0}}@media (min-width:1020px){.HalfAndHalfBreaker-halfAndHalfBreaker{padding-left:0;padding-right:0}}.HalfAndHalfBreaker-container{margin:0 auto;max-width:100%;width:100%}@media (min-width:760px){.HalfAndHalfBreaker-container{max-width:678px}}@media (min-width:1020px){.HalfAndHalfBreaker-container{max-width:960px}}@media (min-width:1340px){.HalfAndHalfBreaker-container{max-width:1290px}}@media (min-width:1020px){.HalfAndHalfBreaker-container{display:flex;max-width:none}}.HalfAndHalfBreaker-wrapper{position:relative}.HalfAndHalfBreaker-section{background-position:50%;background-size:cover;padding:30px 20px;position:relative;width:100%}.HalfAndHalfBreaker-section:last-child{border-top:1px solid #fff}@media (min-width:760px){.HalfAndHalfBreaker-section{display:flex;padding-left:0;padding-right:0}}@media (min-width:1020px){.HalfAndHalfBreaker-section{flex-direction:column;height:auto;max-width:50%;min-width:50%;padding:30px}.HalfAndHalfBreaker-section:first-child{padding-left:0}.HalfAndHalfBreaker-section:last-child{border-left:1px solid #fff;border-top:none;padding-right:0}}.HalfAndHalfBreaker-newsletterIcon{display:flex;margin-right:15px}.HalfAndHalfBreaker-newsletterIcon .icon-newsletter:before{font-size:38px;line-height:.73;position:relative;top:4px}@media (min-width:760px){.HalfAndHalfBreaker-newsletterIcon .icon-newsletter:before{font-size:44px;top:-2px}}@media (min-width:1020px){.HalfAndHalfBreaker-newsletterIcon .icon-newsletter:before{top:4px}}@media (min-width:1340px){.HalfAndHalfBreaker-newsletterIcon .icon-newsletter:before{font-size:45px;top:3px}}.HalfAndHalfBreaker-logo{display:block;height:auto;margin-right:15px;width:160px}@media (min-width:760px){.HalfAndHalfBreaker-logo{width:265px}}@media (min-width:1020px){.HalfAndHalfBreaker-logo{width:265px}}.HalfAndHalfBreaker-title{align-items:center;color:#fff;display:flex;font-size:24px;font-weight:700;letter-spacing:-.16em;line-height:32px;margin-bottom:10px;max-width:100%;position:relative;z-index:2}@media (min-width:760px){.HalfAndHalfBreaker-title{align-items:flex-start;font-size:26px;line-height:30px;padding-right:30px;width:51%}}@media (min-width:1020px){.HalfAndHalfBreaker-title{align-items:center;font-size:32px;line-height:31px;min-height:40px;padding-right:20px;width:100%}}.HalfAndHalfBreaker-titleImage{display:block;margin-bottom:10px;max-width:100%;padding-right:20px;position:relative;z-index:2}@media (min-width:760px){.HalfAndHalfBreaker-titleImage{max-height:40px;padding-right:30px;width:51%}}@media (min-width:1020px){.HalfAndHalfBreaker-titleImage{padding-right:20px;width:100%}}.HalfAndHalfBreaker-content{max-width:100%;position:relative;z-index:2}@media (min-width:760px){.HalfAndHalfBreaker-content{float:left;width:60%}}@media (min-width:1020px){.HalfAndHalfBreaker-content{align-items:flex-start;display:flex;flex-direction:column;flex-grow:1;float:none;width:auto}}@media (min-width:1340px){.HalfAndHalfBreaker-content{display:flex;flex-direction:row;justify-content:space-between;width:100%}}.HalfAndHalfBreaker-description{color:#fff;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:16px;font-weight:500;line-height:24px;margin:0 0 20px;max-width:100%;position:relative;z-index:2}@media (min-width:760px){.HalfAndHalfBreaker-description{margin-top:0}}@media (min-width:1020px){.HalfAndHalfBreaker-description{margin-top:15px;padding-right:20px}}@media (min-width:1340px){.HalfAndHalfBreaker-description{margin-bottom:0;max-width:none;padding-right:40px}}.HalfAndHalfBreaker-button{background:#0000;border:1px solid #fff;color:#fff;display:inline-block;font-size:12px;font-weight:600;height:40px;letter-spacing:1.09px;line-height:40px;position:relative;text-align:center;text-transform:uppercase;white-space:nowrap;width:100%;z-index:2}.HalfAndHalfBreaker-button:hover{background-color:#fcb700;border-color:#fcb700;color:#071d39}@media (min-width:760px){.HalfAndHalfBreaker-button{padding:0 20px;width:auto}}@media (min-width:1020px){.HalfAndHalfBreaker-button{margin-top:auto}}@media (min-width:1340px){.HalfAndHalfBreaker-button{margin:20px 0 0 auto}}.HalfAndHalfBreaker-background1{background-position:50%;background-size:cover;border:none;height:100%;left:0;position:absolute;top:0;width:100%}@media (min-width:760px){.HalfAndHalfBreaker-background1{width:100%}}@media (min-width:1020px){.HalfAndHalfBreaker-background1{left:0;margin-left:calc(-50vw - -480px);width:50vw}}@media (min-width:1180px){.HalfAndHalfBreaker-background1{margin-left:calc(-50vw - -538.5px)}}@media (min-width:1340px){.HalfAndHalfBreaker-background1{margin-left:calc(-50vw - -645px)}}.HalfAndHalfBreaker-background1:after{background:linear-gradient(90deg,#071d39e6,#39bb7ae6);content:"";height:100%;left:0;position:absolute;top:0;width:100%;z-index:1}@media (min-width:1020px){.HalfAndHalfBreaker-background2{margin-left:0}}.HalfAndHalfBreaker-background2:after{background:linear-gradient(90deg,#071d39e6,#005594e6);content:"";height:100%;left:0;position:absolute;top:0;width:100%;z-index:1}.HalfAndHalfBreaker-proBackground:after{background:#2e2e2e linear-gradient(180deg,#2e2e2e 40%,#39bb7ae6)}@media (min-width:1020px){.HalfAndHalfBreaker-proBackground:after{background:#2e2e2e linear-gradient(90deg,#2e2e2e 40%,#39bb7ae6)}}.HalfAndHalfBreaker-watchlistBackground:after{background:linear-gradient(270deg,#071d39e6 10%,#005594)}@media (min-width:760px){.HalfAndHalfBreaker-watchlistBackground:after{background:linear-gradient(90deg,#2e2e2ee6 40%,#005594)}}.HalfAndHalfBreaker-newsletterBackground:after{background:linear-gradient(180deg,#2e2e2e80,#071d39)}@media (min-width:1020px){.HalfAndHalfBreaker-newsletterBackground:after{background:linear-gradient(90deg,#2e2e2ecc 40%,#071d39e6)}}.WatchlistPage-container{max-width:100%;min-height:500px;position:relative}@media (min-width:360px){.WatchlistPage-container{margin-bottom:0}}@media (min-width:760px){.WatchlistPage-container{margin:0 auto;max-width:678px}}@media (min-width:1020px){.WatchlistPage-container{margin-bottom:15px;max-width:960px}}@media (min-width:1340px){.WatchlistPage-container{margin-bottom:25px;max-width:1290px}}.WatchlistPage-header{display:flex;justify-content:space-between;margin-top:30px}.WatchlistPage-header h2{margin:0}.WatchlistPage-header button{border:1px solid #002f6c;color:#002f6c;padding:10px}.StickyProductMarketingPage-pnHeader{background-color:#fff;box-shadow:0 4px 4px #00000040;display:flex;height:80px;justify-content:center;position:fixed;top:0;width:100%;z-index:99}.StickyProductMarketingPage-staticHeader{align-items:center;display:flex;flex-direction:row;gap:24px;height:104px;justify-content:space-between;margin:auto;max-width:1290px;padding-bottom:20px;position:fixed;top:0;width:100%}.StickyProductMarketingPage-cnbcLogo{margin-left:25px}.StickyProductMarketingPage-cnbcLogo>img{height:23px;width:135px}.StickyProductMarketingPage-headerSubscribe{color:#000;font-size:20px;font-weight:600;letter-spacing:1.09091px;line-height:16px;margin-right:25px;text-align:center}.StickyProductMarketingPage-allAccessButtonHeader,.StickyProductMarketingPage-buttonHeaderBaseStyle,.StickyProductMarketingPage-freeAccountButtonHeader,.StickyProductMarketingPage-investingClubButtonHeader,.StickyProductMarketingPage-plusButtonHeader,.StickyProductMarketingPage-proButtonHeader{background:#ffbc05;border:0;border-radius:3px;color:#fff;font-size:14px;font-weight:600;height:46px;letter-spacing:1.09091px;line-height:16px;margin-left:12px;text-align:center;text-transform:uppercase;width:199px}.StickyProductMarketingPage-allAccessButtonHeader:hover,.StickyProductMarketingPage-buttonHeaderBaseStyle:hover,.StickyProductMarketingPage-freeAccountButtonHeader:hover,.StickyProductMarketingPage-investingClubButtonHeader:hover,.StickyProductMarketingPage-plusButtonHeader:hover,.StickyProductMarketingPage-proButtonHeader:hover{background:#0477c9}.StickyProductMarketingPage-plusButtonHeader{background:#001e5a;width:116px}.StickyProductMarketingPage-plusButtonHeader:hover{background:#002f6c}.StickyProductMarketingPage-allAccessButtonHeader{background:#0053cf}.StickyProductMarketingPage-allAccessButtonHeader:hover{background:#0477c9}.StickyProductMarketingPage-proButtonHeader{background:#008456;width:140px}.StickyProductMarketingPage-proButtonHeader:hover{background:#005034}.StickyProductMarketingPage-investingClubButtonHeader{background:#071d39}.StickyProductMarketingPage-investingClubButtonHeader:hover{background:#1896ff}.StickyProductMarketingPage-freeAccountButtonHeader{background:#336aa0}.StickyProductMarketingPage-freeAccountButtonHeader:hover{background:#002f6c}@media (max-width:759px){.StickyProductMarketingPage-pnHeader{height:52px}.StickyProductMarketingPage-staticHeader{gap:unset;height:72px;width:100%}.StickyProductMarketingPage-cnbcLogo{margin-left:10px}.StickyProductMarketingPage-cnbcLogo>img{height:15px;width:83px}.StickyProductMarketingPage-headerSubscribe{align-items:center;display:flex;font-size:12px;font-weight:600;letter-spacing:.09px;line-height:16px;margin-right:20px}.StickyProductMarketingPage-allAccessButtonHeader,.StickyProductMarketingPage-buttonHeaderBaseStyleMobileTablet,.StickyProductMarketingPage-freeAccountButtonHeader,.StickyProductMarketingPage-investingClubButtonHeader,.StickyProductMarketingPage-plusButtonHeader,.StickyProductMarketingPage-proButtonHeader{font-size:10px;font-weight:600;height:28px;letter-spacing:1.09091px;line-height:10px;margin-left:5px;text-transform:uppercase;width:120px}.StickyProductMarketingPage-plusButtonHeader{width:55px}.StickyProductMarketingPage-proButtonHeader{width:120px}}.SiteMapHeader-container{display:flex;flex-direction:row;flex-wrap:wrap;padding:0;width:100%}@media (min-width:760px){.SiteMapHeader-container{padding-left:0;padding-right:0}}.SiteMapHeader-heading{border-top:1px solid #747474;color:#002f6c;font-size:30px;font-weight:800;letter-spacing:.5px;line-height:37px;margin-bottom:20px;margin-top:0;padding-top:10px;position:relative;text-transform:uppercase;width:100%}@media (min-width:760px){.SiteMapHeader-heading{margin-bottom:30px}}@media (min-width:1020px){.SiteMapHeader-heading{font-size:32px;line-height:40px}}.SiteMapHeader-heading:before{background-color:#2077b6;content:"";height:6px;left:0;position:absolute;top:-6px;width:110px}.SiteMapSubMenuItems-sitemapSubMenuItem{color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.03em;line-height:22px;text-align:left}.SiteMapSubMenuItems-sitemapSubMenuItem:hover{text-decoration:underline}.SiteMapMenuItem-menuItemColumn{margin-bottom:20px;width:100%}@media (min-width:760px){.SiteMapMenuItem-menuItemColumn{margin-bottom:30px;width:33.33333%}}.SiteMapMenuItem-sitemapMenuItemLabel{color:#002f6c;display:inline-block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.06em;text-align:left;text-transform:uppercase}.SiteMapMenuItem-sitemapMenuItemLabel:hover{color:#fcb700}.SiteMapMenu-container{position:relative}.SiteMapMenu-sitemapMenuWrapper{display:flex;flex-wrap:wrap}.SiteMapBreadCrumb-container{border-bottom:1px dotted #747474;padding-bottom:4px}.SiteMapBreadCrumb-container li{color:#005594;display:inline;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:500;letter-spacing:.06em;line-height:1.375;list-style-type:none;padding-bottom:12px;padding-right:10px;position:relative;text-transform:uppercase}.SiteMapBreadCrumb-container li:after{color:#ffbc05;content:">";display:inline;font-size:16px;padding-left:10px}.SiteMapBreadCrumb-container li:last-child{font-weight:700}.SiteMapBreadCrumb-container li:last-child:after{content:""}.SiteMapBreadCrumb-container .SiteMapBreadCrumb-link{word-break:break-word}.SiteMapBreadCrumb-container a{color:#005594}.SiteMapBreadCrumb-container a:hover{color:#ffbc05}@media (max-width:759px){.SiteMapBreadCrumb-container li:nth-child(4):before{content:"\A";white-space:pre}}.SiteMapMonth-container{margin-bottom:30px;width:100%}.SiteMapMonth-container h3{color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:700;letter-spacing:.06em;margin-bottom:6px;padding-bottom:8px;text-transform:uppercase}.SiteMapMonth-monthData ul{display:flex;flex-direction:column;flex-wrap:wrap;height:300px}@media (max-width:759px){.SiteMapMonth-monthData ul{display:table}}.SiteMapMonth-monthData li{color:#2e2e2e;cursor:pointer;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.03em;line-height:1.375;list-style-type:none;padding-bottom:12px;padding-right:10px;position:relative}.SiteMapMonth-monthData .SiteMapMonth-link{word-break:break-word}.SiteMapMonth-monthData a{color:#2e2e2e}.SiteMapMonth-monthData a:hover{color:#2e2e2e;text-decoration:underline}.SiteMapDay-container{margin:0 0 30px;width:100%}.SiteMapDay-container h3{color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:700;letter-spacing:.06em;margin-bottom:6px;padding-bottom:8px;text-transform:uppercase}.SiteMapDay-fullDate ul{display:flex;flex-direction:column;flex-wrap:wrap;height:375px}@media (max-width:759px){.SiteMapDay-fullDate ul{display:table}}.SiteMapDay-fullDate li{color:#2e2e2e;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.03em;line-height:1.375;list-style-type:none;margin:0 10px 12px 0;position:relative}.SiteMapDay-fullDate .SiteMapDay-link{word-break:break-word}.SiteMapDay-fullDate a{color:#2e2e2e}.SiteMapDay-fullDate a:hover{color:#2e2e2e;text-decoration:underline}.SiteMapArticleList-container{display:flex;flex-direction:row;flex-wrap:wrap;padding:0;width:100%}@media (min-width:760px){.SiteMapArticleList-container{padding-left:0;padding-right:0}}.SiteMapArticleList-content{width:100%}.SiteMapArticleList-content h3{color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:700;letter-spacing:.06em;margin-bottom:6px;padding-bottom:8px;text-transform:uppercase}.SiteMapArticleList-articleData li,.SiteMapArticleList-emptyPage{color:#2e2e2e;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.03em}.SiteMapArticleList-articleData li{line-height:1.3;list-style-type:none;padding-bottom:14px;padding-right:10px;position:relative}.SiteMapArticleList-articleData li .SiteMapArticleList-link{word-break:break-word}.SiteMapArticleList-articleData li a{color:#2e2e2e}.SiteMapArticleList-articleData li a:hover{color:#2e2e2e;text-decoration:underline}.SiteMapYear-container{margin-bottom:30px;width:100%}.SiteMapYear-container h3{border-bottom:1px dotted #005594;color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.06em;margin-bottom:10px;text-transform:uppercase}.SiteMapYear-yearData{padding-top:15px}.SiteMapYear-yearData ul{column-count:3;column-gap:0}@media (max-width:759px){.SiteMapYear-yearData ul{display:table}}.SiteMapYear-yearData li{color:#005594;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.03em;line-height:1.375;list-style-type:none;padding-bottom:12px;padding-right:10px;position:relative}.SiteMapYear-yearData .SiteMapYear-link{word-break:break-word}.SiteMapYear-yearData a{color:#005594}.SiteMapYear-yearData a:hover{color:#ffbc05}.SiteMap-container{margin:0 22px;max-width:100%;padding-top:5px}@media (min-width:360px){.SiteMap-container{margin-bottom:0}}@media (min-width:760px){.SiteMap-container{margin:0 auto;max-width:678px}}@media (min-width:1020px){.SiteMap-container{margin-bottom:15px;max-width:960px}}@media (min-width:1340px){.SiteMap-container{margin-bottom:25px;max-width:1290px}}.SiteMap-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.SiteMap-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.SiteMap-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.SiteMap-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.SiteMap-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.SiteMap-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.SiteMap-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.SiteMap-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}.SiteMap-col-9{padding-top:30px}.SiteMap-col-9 .BrandBanner-container{margin-bottom:30px;z-index:99}@media (min-width:1340px){.SiteMap-col-9 .BrandBanner-container{margin-left:calc(-50vw - -538.5px)}}@media (min-width:760px){.SiteMap-col-9 .BrandBanner-container{margin-bottom:-100px;margin-top:50px}.SiteMap-col-9{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.SiteMap-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.SiteMap-col-9{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.SiteMap-col-9{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.SiteMap-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.SiteMap-col-9{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.SiteMap-col-9:last-child{margin-right:0}}@media (min-width:1340px){.SiteMap-col-9{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}}.ExclusiveContentBucket-exclusiveContentBucket{font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin-bottom:40px;margin-top:40px}@media (min-width:760px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-29.16667%;max-width:677px}}@media (min-width:760px) and (min-width:760px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-29.16667%}}@media (min-width:760px) and (min-width:1020px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-29.16667%}}@media (min-width:760px) and (min-width:1340px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-29.16667%}}@media (min-width:1020px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-20.83333%;width:630px}}@media (min-width:1020px) and (min-width:760px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-20.83333%}}@media (min-width:1020px) and (min-width:1020px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-20.83333%}}@media (min-width:1020px) and (min-width:1340px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-20.83333%}}@media (min-width:1340px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-16.66667%}}@media (min-width:1340px) and (min-width:760px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-16.66667%}}@media (min-width:1340px) and (min-width:1020px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-16.66667%}}@media (min-width:1340px) and (min-width:1340px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-16.66667%}}.ExclusiveContentBucket-exclusiveContentBucket .ExclusiveContentBucket-exclusiveContentHeading{color:#002f6c;font-size:20px;font-weight:900;letter-spacing:.25px;line-height:24px;text-transform:uppercase}.ExclusiveContentBucket-smallSpan{background-color:#002f6c;display:block;height:6px;width:88px}.ExclusiveContentBucket-border{background-color:#747474;display:block;height:1px;width:100%}.ExclusiveContentBucket-contentContainer{display:flex;flex-direction:column;justify-content:space-between;overflow-x:scroll}@media (min-width:760px){.ExclusiveContentBucket-contentContainer{overflow-x:unset}}@media (prefers-color-scheme:dark){.webview .ExclusiveContentBucket-exclusiveContentBucket .ExclusiveContentBucket-exclusiveContentHeading{color:#dce0e4}.webview .ExclusiveContentBucket-smallSpan{background-color:#dce0e4}.webview .ExclusiveContentBucket-border{background-color:#f8f8f8}}.BucketItemByline-author{display:none;font-family:Lyon,Helvetica,Arial,sans-serif;font-weight:600;letter-spacing:.5px;line-height:16px;margin-right:10px}@media (min-width:760px){.BucketItemByline-author{display:inline}}.BucketItemByline-author a{color:#002f6c!important;font-size:12px;margin-right:8px;text-decoration:none!important}@media (prefers-color-scheme:dark){.webview .BucketItemByline-author a{font-size:12px}}.BucketItem-bucketItem{border-bottom:1px dashed #9e9e9e;display:flex;padding-bottom:10px;padding-top:20px}.BucketItem-bucketItem .BucketItem-title{font-size:18px;font-weight:600;line-height:22px;margin-bottom:16px}.BucketItem-bucketItem .BucketItem-title a{color:#171717;text-decoration:none!important}@media (max-width:759px){.BucketItem-bucketItem .BucketItem-title{font-size:16px;font-weight:500;line-height:20px;margin-bottom:0}}.BucketItem-bucketItem .BucketItem-publishTime{color:#747474;display:inline;font-size:12px;font-weight:600;letter-spacing:1.5px;line-height:16px;margin-top:9px;text-transform:uppercase}.BucketItem-bucketItem .BucketItem-textContainer{display:flex;flex-direction:column;justify-content:space-between;margin-left:-20px}@media (max-width:759px){.BucketItem-bucketItem .BucketItem-textContainer{margin-left:-25px}}.BucketItem-bucketItem .BucketItem-bylineContainer{display:flex;margin-top:10px}@media (max-width:759px){.BucketItem-bucketItem .BucketItem-bylineContainer{margin-top:0}}.BucketItem-bucketItem .BucketItem-icTextContainer{margin-left:-25px}.BucketItem-bucketImage{height:95px;object-fit:cover;width:190px}@media (max-width:759px){.BucketItem-bucketImage{height:75px;width:100px}}.BucketItem-bucketImageContainer{display:flex}.BucketItem-proPill{height:30px}.BucketItem-proPillContainer{position:relative;right:40px}@media (max-width:759px){.BucketItem-proPillContainer{right:40px}}.BucketItem-investingClubPill{height:25px}.BucketItem-investingClubPillContainer{position:relative;right:45px}@media (max-width:759px){.BucketItem-investingClubPillContainer{right:40px}}.BucketItem-investingClubItem{border-bottom-left-radius:15px;border-bottom-right-radius:15px}.BucketItem-proItem{border-bottom-right-radius:15px;border-top-left-radius:15px}@media (prefers-color-scheme:dark){.webview .BucketItem-bucketItem .BucketItem-textContainer .BucketItem-title a{color:#dce0e4}}.PlayerLoadingIndicator-loadingContainer{margin-bottom:30px;padding-bottom:56.25%;position:relative;text-align:center}.PlayerLoadingIndicator-loadingOverlay{align-items:center;background-color:#000;display:flex;height:100%;justify-content:center;left:0;position:absolute;top:0;width:100%}.LiveStreamPlayer-container.LiveStreamPlayer-isNotLoaded{display:block;max-width:100%;padding-bottom:57%}.LiveStreamPlayer-languageContainer{align-items:center;display:flex;font-size:14px;margin:13px 0}.LiveStreamPlayer-bold,.LiveStreamPlayer-toggle{margin-right:12px}.LiveStreamPlayer-bold{font-weight:800}.LiveStreamPlayer-toggle{margin-right:12px}.LiveStreamPlayer-toggle:hover{cursor:pointer}.jw-settings-audioTracks{display:none!important}.AudioButton-container{border-top:6px solid #0496ff;height:100%;left:0;position:absolute;top:0;width:100%;z-index:1}.AudioButton-base{align-items:center;background-color:#0496ff;color:#fff;display:flex;font-size:12px;height:50px;justify-content:center;position:absolute;right:0;top:-5px;transition:all .15s linear;width:50px;z-index:1}@media (min-width:760px){.AudioButton-base{font-size:22px;height:80px;width:80px}}.AudioButton-audioIcon{align-items:center;background-image:url(https://static-redesign.cnbcfm.com/dist/3416c1156c67ef487325.svg);border:2px solid #0496ff;display:flex;height:40px;justify-content:center;transition:border .15s linear;width:40px;z-index:2}.AudioButton-base:hover .AudioButton-audioIcon,.AudioButton-container:focus .AudioButton-audioIcon,.AudioButton-container:hover .AudioButton-audioIcon,a:focus .AudioButton-audioIcon,a:hover .AudioButton-audioIcon,button:focus .AudioButton-audioIcon,button:hover .AudioButton-audioIcon{border:2px solid #fff}@media (min-width:760px){.AudioButton-audioIcon{height:60px;width:60px}}.AudioButton-flyout{align-items:center;background-color:#0496ff;color:#fff;display:flex;font-size:9px;font-weight:800;height:100%;justify-content:center;letter-spacing:1px;line-height:1;position:absolute;right:35px;text-align:left;text-transform:uppercase;top:0;transform:scaleX(0);transform-origin:center right;transition:color .15s linear,transform .15s linear .15s;width:90px;z-index:1}.AudioButton-base:hover .AudioButton-flyout,.AudioButton-container:focus .AudioButton-flyout,.AudioButton-container:hover .AudioButton-flyout,a:focus .AudioButton-flyout,a:hover .AudioButton-flyout,button:focus .AudioButton-flyout,button:hover .AudioButton-flyout{color:#fff;transform:scaleX(1);transition:color .15s linear .15s,transform .15s linear}@media (min-width:760px){.AudioButton-flyout{font-size:20px;letter-spacing:2.2px;right:80px;text-align:center;width:200px}}@media (max-width:1019px){.AudioButton-base:hover .AudioButton-flyout.AudioButton-suppressFlyout,a:focus .AudioButton-flyout.AudioButton-suppressFlyout,a:hover .AudioButton-flyout.AudioButton-suppressFlyout,button:focus .AudioButton-flyout.AudioButton-suppressFlyout,button:hover .AudioButton-flyout.AudioButton-suppressFlyout{transform:scaleX(0)}}.Timer-progress{stroke:#fcb700;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%) rotate(-90deg)}.Timer-progress circle{stroke-dasharray:302;stroke-dashoffset:302;animation:Timer-dash 5s linear}.Timer-sticky .Timer-progress circle{stroke-dasharray:151;stroke-dashoffset:151;animation:Timer-sticky-dash 5s linear}@keyframes Timer-dash{0%{stroke-dashoffset:302}to{stroke-dashoffset:0}}@keyframes Timer-sticky-dash{0%{stroke-dashoffset:151}to{stroke-dashoffset:0}}.Timer-buttonWrapper{align-items:center;border:1px solid #cfd8e266;color:#fff;display:flex;height:40px;justify-content:center;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);width:40px}.Timer-buttonWrapper span{display:flex}.Timer-buttonWrapperEnded{border-radius:50%;box-shadow:inset 0 0 2px 0 #cfd8e2,0 0 2px 0 #cfd8e2;font-size:24px;height:66px;width:66px}@media (min-width:360px){.Timer-buttonWrapperEnded{font-size:36px;height:96px;width:96px}}.Timer-sticky .Timer-buttonWrapperEnded{font-size:18px;height:48px;width:48px}.Timer-buttonWrapperEnded:hover{color:#fcb700}.Timer-buttonWrapperEnded .icon-buffett-video{margin-left:5px}.Recommend-sticky .Recommend-buttonWrapperEnded .icon-buffett-video{margin-left:3px}.ScaledTimer-cancel{color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;left:50%;letter-spacing:.06em;position:absolute;text-transform:uppercase;top:calc(50% + 60px);transform:translateX(-50%)}.ScaledTimer-cancel:hover{color:#fcb700}.Recommend-endCardWrapper{background-color:#002f6ccc;background-image:url(https://static-redesign.cnbcfm.com/dist/8e3639eed7df32fad761.jpg);background-size:cover;cursor:pointer;height:0;padding-bottom:56.25%;position:relative;width:100%}.Recommend-endCardWrapper .Recommend-title{color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:18px;font-weight:600;line-height:1.1em}.Recommend-replay .Recommend-endCardWrapper .Recommend-title{font-size:16px}@media (min-width:1020px){.Recommend-endCardWrapper .Recommend-title{font-size:18px;letter-spacing:.17px}}@media (min-width:1340px){.Recommend-endCardWrapper .Recommend-title{font-size:24px}}.Recommend-endCardWrapper:before{background:linear-gradient(#0000,#002f6c);bottom:0;content:"";height:100%;left:0;position:absolute;width:100%}@media (min-width:760px){.Buffett-wrapper{max-width:100%}}.Recommend-buttons{display:flex;justify-content:space-between;left:15px;position:absolute;text-align:right;top:15px;width:calc(100% - 30px)}.Recommend-buttons span{color:#fff;font-size:15px}.Recommend-buttons span:hover{color:#fcb700}.Recommend-content{bottom:15px;left:15px;padding-right:55px;position:absolute}.Recommend-eyebrow,.Recommend-eyebrow.Recommend-compact,.Recommend-mobile .Recommend-compact{color:#fcb700;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;letter-spacing:2px;line-height:15px;margin-bottom:3px;text-transform:uppercase}.Recommend-replay
.Recommend-eyebrow.Recommend-compact,.Recommend-replay
.Recommend-mobile .Recommend-compact,.Recommend-replay .Recommend-eyebrow{font-size:10px}.Recommend-mobile .Recommend-replay .Recommend-eyebrow,.Recommend-mobile .Recommend-replay .Recommend-title,.Recommend-replay .Recommend-compact{display:none}.Recommend-mobile .Recommend-replay .Recommend-compact{color:#fff;display:initial}.Recommend-mobile .Recommend-replay .Recommend-eyebrow.Recommend-compact{padding-left:4px}.Recommend-endCardWrapper.Recommend-sticky .Recommend-eyebrow{font-size:10px;letter-spacing:.83px}.Recommend-endCardWrapper.Recommend-sticky .Recommend-title{font-size:12px;font-weight:700;letter-spacing:.5px;line-height:1.25}.Recommend-titleDark{color:#fff}.Recommend-slideshowItem .Recommend-titleDark{font-size:16px;letter-spacing:.15px;margin-top:5px}@media (min-width:760px){.Recommend-slideshowItem .Recommend-titleDark{font-size:24px;letter-spacing:.22px}}.PlaceHolder-buffettLongFormWrapper .Buffett-endCardWrapper{padding-bottom:calc(50% + 10px)}@media (min-width:760px){.PlaceHolder-buffettLongFormWrapper .Buffett-endCardWrapper{padding-bottom:calc(50% + 20px)}}@media (min-width:1020px){.PlaceHolder-buffettLongFormWrapper .Buffett-endCardWrapper{padding-bottom:680.625px}}.Recommend-content.Recommend-replay{bottom:auto;top:15px}.Recommend-sticky{padding-bottom:0;position:fixed;top:auto}.Recommend-endCardWrapper .icon-close{display:none}.Recommend-endCardWrapper.Recommend-sticky .icon-close{align-items:center;background:#fcb700;color:#fff;display:flex;font-size:15px;font-weight:900;height:28px;justify-content:center;left:0;position:relative;top:-28px;width:28px}.Recommend-endCardWrapper.Recommend-sticky .Recommend-cancel{display:none}.LiveEventDescription-container{margin-bottom:58px}.LiveEventDescription-container.LiveEventDescription-berkshireHathaway{margin-bottom:42px}.LiveEventDescription-container.LiveEventDescription-berkshireHathaway .group{max-width:unset}.LiveEventDescription-container.LiveEventDescription-berkshireHathaway .group p{font-family:Lyon,Helvetica,Arial,sans-serif;font-weight:400}.LiveEventDescription-container.LiveEventDescription-berkshireHathaway.LiveEventDescription-homepage p{font-family:Proxima Nova,Helvetica,Arial,sans-serif}@media (max-width:1019px){.LiveEventDescription-container.LiveEventDescription-berkshireHathaway{margin-bottom:30px}}@media (max-width:759px){.LiveEventDescription-container.LiveEventDescription-berkshireHathaway{margin-bottom:16px}}.LiveEventDescription-tagContainer{display:flex;flex-direction:row;margin:0 0 16px}.LiveEventDescription-title{color:#000;display:block;font-family:Proxima Nova,sans-serif;font-size:14px;font-weight:600;line-height:18px;margin:0;padding-right:18px;white-space:nowrap}@media (max-width:759px){.LiveEventDescription-title{display:none}}.LiveEventDescription-description{display:block}.LiveEventDescription-headline{color:#000;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:22px;font-weight:700;letter-spacing:.03px;line-height:26px;margin-bottom:16px;text-align:left}.LiveEventDescription-details{color:#000;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:18px;font-weight:400;letter-spacing:.4444px;line-height:26px}.LiveEventDescription-timestamp{color:#747474;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;letter-spacing:1.5px;line-height:16px;margin-top:16px;text-transform:uppercase}.LiveEventDescription-description .group{font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin-left:0}.LiveEventDescription-description .group a{color:#2077b6;text-decoration:underline}.LiveEventDescription-description .group a:hover{color:#fcb700}.LiveEventDescription-description .group ol,.LiveEventDescription-description .group ol li,.LiveEventDescription-description .group ul,.LiveEventDescription-description .group ul li{list-style:revert;margin-left:10px}.CreateFreeAccountButton-buttonContainer{background:#002f6c;border-radius:2px;color:#fff;height:100%;padding:10px;width:100%}.CreateFreeAccountButton-buttonContainer:hover{color:#ffe895}@media (min-width:760px){.CreateFreeAccountButton-buttonContainer{max-height:50px;order:2;width:180px}}.CreateFreeAccountButton-buttonContainer .CreateFreeAccountButton-buttonText{align-items:center;display:flex;font-size:11px;font-weight:400;justify-content:center}@media (min-width:760px){.CreateFreeAccountButton-buttonContainer .CreateFreeAccountButton-buttonText{flex-direction:column}}.CreateFreeAccountButton-buttonContainer .CreateFreeAccountButton-buttonText .CreateFreeAccountButton-buttonTextBold{font-size:12px;font-weight:800;letter-spacing:.5px;margin-left:8px}@media (min-width:760px){.CreateFreeAccountButton-buttonContainer .CreateFreeAccountButton-buttonText .CreateFreeAccountButton-buttonTextBold{font-size:11px;margin-left:0}}.QuoteItem-item{border:.5px solid #cfd8e2;border-radius:7px;display:flex;margin:0 15px 10px 0;position:relative}.QuoteItem-item:before{content:"";display:none}.QuoteItem-item:hover{border:.5px solid #747474}.QuoteItem-item.QuoteItem-hideHoverBorder{border:.5px solid #cfd8e2}.QuoteItem-link{align-items:center;display:flex;padding:8px;text-decoration:none!important;white-space:nowrap}.QuoteItem-link.QuoteItem-extHours{padding:7px 8px}.QuoteItem-link.QuoteItem-updated{border-color:#002f6c;transition:border-color .25s}.QuoteItem-symbol{color:#171717;font-family:Proxima Nova,sans-serif;font-size:12px;font-weight:700;line-height:12px;margin:0}@media (prefers-color-scheme:dark){.webview .QuoteItem-symbol{color:#fff}}.QuoteItem-quote,.QuoteItem-quoteDown,.QuoteItem-quoteUp{color:#747474;font-family:Proxima Nova,sans-serif;font-size:12px;font-weight:700;line-height:12px;margin:0 0 0 5px}.QuoteItem-quoteUp{color:#008456}.QuoteItem-quoteDown{color:#d0021b}.QuoteItem-afterHoursIcon{display:inline;height:14px;margin-left:8px}.RelatedQuotes-relatedQuotes{display:flex;flex-direction:column;margin:0 0 28px}@media (max-width:1019px){.RelatedQuotes-relatedQuotes{overflow-x:hidden}}@media (min-width:760px){.RelatedQuotes-relatedQuotes{align-items:center;display:grid;grid-template-columns:auto 1fr}}.RelatedQuotes-relatedQuotes .RelatedQuotes-titleAndTime{align-items:center;display:flex;margin:0 15px 10px 0}.RelatedQuotes-relatedQuotes .RelatedQuotes-subtext,.RelatedQuotes-relatedQuotes .RelatedQuotes-text{color:#171717;font-family:Proxima Nova,sans-serif;font-size:12px;font-weight:700;line-height:16px;margin:0;padding:0;white-space:nowrap}.RelatedQuotes-relatedQuotes .RelatedQuotes-subtext{color:#747474;font-size:9px;font-weight:700;margin:0;text-transform:uppercase}.RelatedQuotes-relatedQuotes .RelatedQuotes-list{-webkit-overflow-scrolling:touch;display:flex;line-height:0;margin:0;padding:0;text-indent:0;width:100%}@media (min-width:760px){.RelatedQuotes-relatedQuotes .RelatedQuotes-list{flex-wrap:wrap}}@media (max-width:759px){.RelatedQuotes-relatedQuotes .RelatedQuotes-list{overflow-x:scroll}}.RelatedQuotes-relatedQuotes .RelatedQuotes-list.RelatedQuotes-isMobileWebview{flex-wrap:wrap}.RelatedQuotes-relatedQuotes .RelatedQuotes-list:before{content:"";display:none}.RelatedQuotes-relatedQuotes .RelatedQuotes-list::-webkit-scrollbar{display:none}.RelatedQuotes-relatedQuotes .RelatedQuotes-quotesContainer{order:2}@media (min-width:760px){.RelatedQuotes-relatedQuotes .RelatedQuotes-quotesContainer{flex-wrap:wrap;order:1}}.RelatedQuotes-relatedQuotes .RelatedQuotes-cfaButtonContainer{margin-bottom:12px;order:1}@media (min-width:760px){.RelatedQuotes-relatedQuotes .RelatedQuotes-cfaButtonContainer{align-items:center;display:flex;margin-bottom:0;margin-left:auto;order:2}}@media (max-width:759px){.RelatedQuotes-listDropdownVisible{overflow-x:unset!important}}@media (prefers-color-scheme:dark){.RelatedQuotes-relatedQuotes .webview .RelatedQuotes-subtext,.webview .RelatedQuotes-relatedQuotes .RelatedQuotes-subtext,.webview .RelatedQuotes-text{color:#fff}.webview .RelatedQuotes-subtext{color:#9a9fa7!important}}.LiveEventSlate-container .LiveEventSlate-liveEventSlate{background-repeat:no-repeat;background-size:contain;display:block;margin-bottom:30px;max-width:100%;padding-bottom:57%}.LiveEventSlate-container .LiveEventSlate-error{background-image:url(https://static-redesign.cnbcfm.com/dist/54f3d8c60727fdd092ad.png)}.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-investingClub{background-image:url(https://static-redesign.cnbcfm.com/dist/261db0afca7926c9c4d5.png)}@media (max-width:759px){.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-investingClub{background-image:url(https://static-redesign.cnbcfm.com/dist/635637529f397c6b0b99.png)}}.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/c4b2ab67f20d4702a761.png)}@media (max-width:759px){.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-morningMeeting{height:300px}}@media (min-width:760px){.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/05644c6301c29d5f98e1.png)}}@media (min-width:1020px){.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/0907dbcaa9e6b98f1590.png)}}@media (min-width:1340px){.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/4c02522e1899983c236e.png)}}.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-pro{background-image:url(https://static-redesign.cnbcfm.com/dist/603bc0c9eee2fffcf418.png)}.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-berkshireHathawayMeeting,.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-free{background-image:url(https://static-redesign.cnbcfm.com/dist/aa7e1174aeed08b7bd0f.png)}.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-etfEdge{background-image:url(https://static-redesign.cnbcfm.com/dist/fe6c30a870e27a7c6358.png)}.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-berkshireHathawayMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/5c142c155da6b42bf23b.png)}@media (max-width:759px){.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-berkshireHathawayMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/acff13a99fc3cb2c8406.png)}}.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-investingClub{background-image:url(https://static-redesign.cnbcfm.com/dist/9b60e1df4c50583b02fa.png)}@media (max-width:759px){.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-investingClub{background-image:url(https://static-redesign.cnbcfm.com/dist/00e4560338770d5246e7.png)}}.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/189c780e2af6e2b69066.png)}@media (max-width:759px){.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-morningMeeting{height:300px}}@media (min-width:760px){.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/b055b5b9f509671e0d77.png)}}@media (min-width:1020px){.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/00daf039d9d82c7296e8.png)}}@media (min-width:1340px){.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/b6108ecbb43ceecfdd4b.png)}}.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-pro{background-image:url(https://static-redesign.cnbcfm.com/dist/351cbae0bbe7fd326046.png)}.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-free{background-image:url(https://static-redesign.cnbcfm.com/dist/fe3c67caf861a2022cf7.png)}.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-etfEdge{background-image:url(https://static-redesign.cnbcfm.com/dist/64b2b9ef1609dc7d850a.png)}.StandaloneLiveEventPlayerWrapper-standaloneContainer{font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin-top:20px}.StandaloneLiveEventPlayerWrapper-eventState{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:20px;font-weight:600}.StandaloneLiveEventPlayerWrapper-webview{display:flex;justify-content:center;padding:15px 0}@media (max-width:359px){.StandaloneLiveEventPlayerWrapper-webview img{width:100%}}.QuoteInBody-quoteNameContainer{white-space:nowrap}.QuoteInBody-inlineButton{margin-right:-6px;position:relative}.QuoteInBody-dropdownInBody{border-radius:unset;color:#000;left:0;top:22px;width:200px}@media (max-width:1019px){.QuoteInBody-dropdownInBody{top:0;width:100%}}.CollapsibleContainer-collapsibleContainer,.CollapsibleContainer-collapsibleContent{position:relative}.CollapsibleContainer-collapsibleContent{height:auto;overflow:hidden;transition:max-height .2s ease}.CollapsibleContainer-collapsed .CollapsibleContainer-collapsibleContent{max-height:300px}@media (min-width:760px){.CollapsibleContainer-collapsed .CollapsibleContainer-collapsibleContent{max-height:140px}}.CollapsibleContainer-collapsed .CollapsibleContainer-fadingGradient{background-image:linear-gradient(180deg,#fff0,#fff 49.23%);background-image:linear-gradient(180deg,#fff0,#ffffffe6);content:"";height:80px;height:300px;left:0;position:absolute;right:0;top:calc(100% - 80px);top:0}@media (min-width:760px){.CollapsibleContainer-collapsed .CollapsibleContainer-fadingGradient{max-height:140px}}.CollapsibleContainer-expanded .CollapsibleContainer-collapsibleContent{max-height:4000px}@media (min-width:1020px){.CollapsibleContainer-expanded .CollapsibleContainer-collapsibleContent{max-height:3000px}}.CollapsibleContainer-toggleContainer{align-items:center;border-top:1px solid #d9d9d9;display:flex;height:42px;justify-content:center;position:relative;text-align:center}.CollapsibleContainer-toggle{align-items:center;color:#0477c9;cursor:pointer;display:flex;font-family:Lato,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:900;line-height:20px;transition:all .2s ease}.CollapsibleContainer-webview-normal .CollapsibleContainer-toggle{font-size:14px}.CollapsibleContainer-webview-large .CollapsibleContainer-toggle{font-size:17.5px;line-height:normal}.CollapsibleContainer-webview-larger .CollapsibleContainer-toggle{font-size:21px;line-height:normal}.CollapsibleContainer-webview-xlarge .CollapsibleContainer-toggle{font-size:24.5px;line-height:normal}.CollapsibleContainer-webview-xxlarge .CollapsibleContainer-toggle{font-size:28px;line-height:normal}.CollapsibleContainer-webview-xxxlarge .CollapsibleContainer-toggle{font-size:31.5px;line-height:normal}.CollapsibleContainer-toggle span{display:inline-block;line-height:1}.CollapsibleContainer-toggle:active,.CollapsibleContainer-toggle:focus,.CollapsibleContainer-toggle:hover,.CollapsibleContainer-toggle:link{color:#0477c9}.CollapsibleContainer-toggle .icon-arrow-down-readmore:before{font-size:13px;font-weight:400;margin-left:8px}.CollapsibleContainer-expanded .icon-arrow-down-readmore:before{display:inline-block;transform:rotate(180deg)}.Collapsible-proliveCollapsableContainer{align-items:center;border:1px solid #d9d9d9;border-top-left-radius:4px;border-top-right-radius:4px;display:flex;height:40px}.Collapsible-proliveCollapsableContainer path{fill:#747474}.Collapsible-proliveCollapsedContainer{border-radius:4px}.Collapsible-proLivePlayerCloseOrExpand{cursor:pointer;margin-left:auto;position:relative;right:20px;transition:all .1s linear}.Collapsible-dismissButton{height:16px;pointer-events:none;width:16px}.Collapsible-stockChartIcon{height:55%;margin-left:15px}.InteractiveChart-caption{color:#171717;font-size:12px;font-weight:600;line-height:1.5;margin-bottom:5px}.InteractiveChart-addToWatchlistButton{height:42px;min-width:42px;padding:8px 12px}@media (max-width:450px){.InteractiveChart-addToWatchlistButton{height:30px;min-width:30px;padding:8px}}.InteractiveChart-quoteDetailsButton{align-items:center;background:#002f6c;border:1px solid #002f6c;box-sizing:border-box;color:#fff;display:flex;font-size:12px;font-weight:600;height:42px;justify-content:center;letter-spacing:1px;line-height:12px;padding:8px 12px;text-transform:uppercase}@media (max-width:450px){.InteractiveChart-quoteDetailsButton{height:30px}}.InteractiveChart-quoteDetailsLink{text-decoration:none}.InteractiveChart-container{padding:15px 30px}.InteractiveChart-headerColumns{align-items:center;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;gap:8px;margin-bottom:10px}.InteractiveChart-headerColumn1{display:flex;flex-direction:column;flex-grow:1}.InteractiveChart-companyName{color:#000;font-size:24px;font-weight:800;line-height:32px}.InteractiveChart-quoteStripSubHeader{color:#747474;font-size:10px;font-weight:700;line-height:16px}.InteractiveChart-lastPriceStripContainer{align-items:center;display:flex;font-size:12px;font-weight:700;letter-spacing:-.1px;line-height:18px;margin-top:10px}.InteractiveChart-extendedHoursStripContainer{font-size:20px;font-weight:700;letter-spacing:-.1px}.InteractiveChart-lastPrice{color:#000;font-size:24px;font-weight:800;line-height:28px;margin-right:10px}.InteractiveChart-changeDown{color:#ce2b2b}.InteractiveChart-changeUp{color:#008456}.InteractiveChart-changeIcon{display:inline;height:8px;margin-right:4px;width:10px}.InteractiveChart-lastTradeTime{color:#424242;font-size:10px;font-weight:800;line-height:16px}.InteractiveChart-mobileButtonRow{align-items:center;display:flex;gap:10px;margin-top:10px}@media (max-width:450px){.InteractiveChart-showRange div{padding:0 8px!important}}.InteractiveChart-watchlistDropdown{border-radius:unset;color:#000;left:-4px;top:44px;width:250px}@media (max-width:1019px){.InteractiveChart-watchlistDropdown{top:0;width:100%}}@media (prefers-color-scheme:dark){.webview .InteractiveChart-caption,.webview .InteractiveChart-companyName,.webview .InteractiveChart-lastPrice,.webview .InteractiveChart-lastTradeTime{color:#dce0e4}}.Slide-name{-webkit-box-orient:vertical;-webkit-line-clamp:3;color:#171717;display:-webkit-box;font-size:14px;font-weight:800;margin:0 0 5px;overflow:hidden}.Slide-lastTime{align-items:flex-start;color:#424242;display:flex;font-size:11px;font-weight:700}.Slide-last,.Slide-lastRegMktPrice{color:#171717;display:block;font-size:20px;font-weight:800}.Slide-lastRegMkt{align-items:center;display:flex;gap:5px;margin:8px 0 0}.Slide-lastRegMktPrice{font-size:14px}.Slide-changeRegMkt{font-size:8px}.Slide-change{align-items:center;color:#171717;display:flex;font-size:10px;font-weight:800}.Slide-changeIndicator{margin:0 2px 0 0;width:10px}.Slide-changeUp{color:#008456}.Slide-changeDown{color:#ce2b2b}.Slide-changeUnchanged{color:#424858}.Slide-afterHours{color:#e8802a;margin:0 5px 0 0}.Carousel-carousel{align-items:center;display:flex;gap:10px;margin:0 0 20px}@media (max-width:759px){.Carousel-carousel{position:relative}.Carousel-carousel:before{background:linear-gradient(90deg,#0000,#fff);content:"";height:120px;position:absolute;right:0;top:0;width:30px}}.Carousel-list{display:flex;gap:10px;overflow-x:hidden;scroll-behavior:smooth;scroll-snap-type:x mandatory;scrollbar-width:none;width:100%}@media not all and (min-resolution:0.001dpcm){@supports (-webkit-appearance:none){.Carousel-list{overflow-x:auto}}}.Carousel-list::-webkit-scrollbar{height:0}@media (max-width:759px){.Carousel-list{overflow-x:auto}}.Carousel-slideWrapper{background:#f8f8f8;display:grid;grid-template-rows:1fr auto;min-width:calc(33.33333% - 6.66667px);padding:8px 10px;scroll-snap-align:start}@media (max-width:759px){.Carousel-slideWrapper{min-width:70%}}@media (min-width:760px){.Carousel-slideWrapperTwo{min-width:calc(50% - 5px)}}.Carousel-arrow{border-right:7px solid #0477c9;border-top:7px solid #0477c9;box-sizing:border-box;cursor:pointer;padding:8px;rotate:45deg}@media (max-width:759px){.Carousel-arrow{display:none}}.Carousel-arrowBack{rotate:-135deg}.Carousel-arrowDisabled{border-right-color:#cfd8e2;border-top-color:#cfd8e2;cursor:auto}.LiveBlogTimestamp-liveBlogTimeStamp>div,.LiveBlogTimestamp-time,.LiveBlogTimestamp-timeHidden{color:#747474;font-size:10px;font-weight:600;letter-spacing:1.2px;margin-bottom:10px;margin-right:4px;text-transform:uppercase;white-space:normal}.LiveBlogTimestamp-liveBlogTimeStamp>div time,.LiveBlogTimestamp-time time,.LiveBlogTimestamp-timeHidden time{white-space:nowrap}@media (min-width:760px){.LiveBlogTimestamp-liveBlogTimeStamp>div,.LiveBlogTimestamp-time,.LiveBlogTimestamp-timeHidden{font-size:12px;margin-bottom:16px}}.LiveBlogTimestamp-timeHidden{opacity:1}.LiveBlogTimestamp-liveBlogTimeStamp{align-items:center;display:flex;margin-top:0}.LiveBlogTimestamp-datetimeDivider:before{content:"•";display:inline-block;padding:0 3px}.NavigationArrows-styles-select-arrow--A1aiV{align-items:center;color:#0477c9;display:flex;font-size:48px;height:30px;line-height:30px}.NavigationArrows-styles-select-arrow--A1aiV:first-child{margin:0 30px 0 0}.NavigationArrows-styles-select-controller--qImJR>.NavigationArrows-styles-select-arrow--A1aiV:focus-visible{outline:3px solid #57ad57;outline-offset:1px}.NavigationArrows-styles-select-arrowInactive--U0brL{cursor:default;opacity:.3;-webkit-user-select:none;user-select:none}.NavigationArrows-styles-select-controller--qImJR{align-items:center;display:flex;justify-content:flex-end}.Pill-styles-select-pill--u1O5c{border-radius:3px;font-size:10px;height:-moz-fit-content;height:fit-content;min-height:14px;padding:1px 3px 1px 4px;width:-moz-fit-content;width:fit-content}.Pill-styles-select-pillDefault--rov0j{background-color:#a3cd39;color:#000}.Title-styles-select-title--VMqTu{color:#3e4855;font-family:Lato,Helvetica,Arial,sans-serif;font-size:24px;font-weight:900;line-height:normal}.Disclaimer-styles-select-disclaimer--D2JJf,.Title-styles-select-title--VMqTu{width:-moz-fit-content;width:fit-content}.Disclaimer-styles-select-disclaimerDefault--U71Mv{color:#3e4855;font-family:Lato,Helvetica,Arial,sans-serif;font-size:12px;font-weight:400;line-height:normal}.Tooltip-styles-select-tooltipContainer--UHEZW{position:relative}.Tooltip-styles-select-inline--GmIPe{display:inline-block}.Tooltip-styles-select-tooltipBody--vrNp6{background:#fff;border-radius:5px;bottom:24px;box-shadow:0 0 4px 0 #00000040;color:#757575;font-size:12px;font-weight:400;max-width:200px;padding:10px;position:absolute;transform:translate(-50%);transition:opacity .2s ease;width:max-content;z-index:999}.Tooltip-styles-select-mobileShiftRight--gtWUW{left:-90px;transform:unset}.Tooltip-styles-select-mobileShiftLeft--Hs2Fx{right:-20px;transform:unset}.Tooltip-styles-select-tooltipArrow--_4zoC{border-left:10px solid #0000;border-right:10px solid #0000;border-top:10px solid #fff;bottom:20px;content:"";height:0;left:-3px;position:absolute;width:0;z-index:999}.Tooltip-styles-select-tooltipIcon--a_uq0{fill:#757575;stroke:#757575;cursor:pointer}.Tooltip-styles-select-tooltipIcon--a_uq0:hover{fill:#005594;stroke:#005594}.Tooltip-styles-select-tooltipIcon--a_uq0:focus-visible{outline:3px solid #57ad57}.Tooltip-styles-select-iconActive--P0wah{fill:#0477c9;fill-opacity:.5;stroke:#0477c9;stroke-opacity:.5}.LearnMore-styles-select-container--dNiRG{align-items:center;color:#757575;display:flex;flex-basis:30%;flex-direction:column;font-family:Lato,Helvetica,Arial,sans-serif;font-weight:400;gap:8px}.LearnMore-styles-select-container--dNiRG>.LearnMore-styles-select-learnMoreButton--YCW2h{text-decoration:none}.LearnMore-styles-select-learnMoreButton--YCW2h{align-items:center;background-color:#1277ba;border-radius:24px;color:#fff!important;display:flex;font-family:Lato,Helvetica,Arial,sans-serif;font-size:14px;font-weight:700;height:28px;justify-content:center;letter-spacing:1.4px;position:relative;text-align:center;text-transform:uppercase;width:150px}.LearnMore-styles-select-learnMoreButton--YCW2h:hover{background-color:#005594;color:#fff;cursor:pointer}.LearnMore-styles-select-learnMoreButton--YCW2h:focus-visible:before{content:"";inset:-1px;outline:3px solid #57ad57;position:absolute}.LearnMore-styles-select-termsTextTop--kLmHQ{display:inline-block;font-size:12px;text-align:center}.LearnMore-styles-select-termsTextTop--kLmHQ .LearnMore-styles-select-icon--U2rIM{margin-right:4px;position:relative;top:2px}.LearnMore-styles-select-termsTextTop--kLmHQ a{text-decoration:underline;-webkit-text-decoration-color:#757575;text-decoration-color:#757575}.LearnMore-styles-select-termsTextTop--kLmHQ .LearnMore-styles-select-sourceText--VWYO5>p{background-color:initial;font-size:var(--pop-font-size)}.LearnMore-styles-select-container--dNiRG .LearnMore-styles-select-termsTextBottom--_t3TD{color:#171717;font-size:var(--pop-font-size)}.LearnMore-styles-select-container--dNiRG .LearnMore-styles-select-termsTextBottom--_t3TD>p{background-color:initial;font-size:var(--pop-font-size)}.LearnMore-styles-select-container--dNiRG .LearnMore-styles-select-termsTextBottom--_t3TD>p>a{color:#0477c9;text-decoration:none}.ProductDataGridItem-styles-select-item--SJoD3{display:flex;flex-direction:column;gap:8px;padding:10px;text-align:left;width:100%}.ProductDataGridItem-styles-select-item--SJoD3:first-child{border:none;border-right:1px solid #e4f0f9}.ProductDataGridItem-styles-select-item--SJoD3:nth-child(2){border-left:none}.ProductDataGridItem-styles-select-headingContainer--eqm00{display:flex;gap:4px}.ProductDataGridItem-styles-select-heading--c2XsX{color:#3e4855;font-weight:400;margin:0}.ProductDataGridItem-styles-select-item--SJoD3>.ProductDataGridItem-styles-select-contentContainer--KbRmj>.ProductDataGridItem-styles-select-content--wwq_l{background-color:initial;font-size:var(--pop-font-size)}.ProductDataGridItem-styles-select-content--wwq_l{color:#171717;font-weight:700;margin:0}.ProductDataGridItem-styles-select-item--SJoD3 .ProductDataGridItem-styles-select-content--wwq_l>p{background-color:initial;font-size:var(--pop-font-size)}div.CreditHistoryGridItem-styles-select-content--yZuwr{align-items:center;display:flex;flex-direction:column;width:max-content}div.CreditHistoryGridItem-styles-select-content--yZuwr>p{background-color:initial;display:block;font-size:var(--pop-font-size);margin-bottom:8px!important}.ProductDataGrid-styles-select-container--nV33Z{border:1px solid #e4f0f9;border-radius:5px;display:grid;font-family:Lato,Helvetica,Arial,sans-serif;font-size:var(--pop-font-size);font-style:normal;grid-template-columns:repeat(2,1fr);height:-moz-fit-content;height:fit-content;justify-content:space-evenly;line-height:normal;max-width:535px;min-width:261px;width:100%}.ProductDataGrid-styles-select-singleItem--CmmEU{grid-template-columns:repeat(1,1fr)}.PartnerOfferCard-headingContainer{align-items:center;display:flex;margin-bottom:10px}.PartnerOfferCard-headingContainer>.PartnerOfferCard-titleLink{text-decoration:none}.PartnerOfferCard-partnerOfferCard{background:#fff;border-radius:5px;box-shadow:0 0 2px 1px #ddd;display:flex;padding:12px;width:280px}.PartnerOfferCard-partnerOfferCard.PartnerOfferCard-fullWidth{width:100%}.PartnerOfferCard-outerImage{display:none}.PartnerOfferCard-fullWidth .PartnerOfferCard-learnMore{justify-content:center;margin:0 0 0 20px}@media (min-width:1340px){.PartnerOfferCard-fullWidth .PartnerOfferCard-outerImage{display:block}.PartnerOfferCard-fullWidth .PartnerOfferCard-innerImage{display:none}}@media (min-width:760px){.PartnerOfferCard-fullWidth .PartnerOfferCard-learnMoreAndHeadingContainer{flex-direction:row}}.PartnerOfferCard-title{color:#000;font-family:Lato,Helvetica,Arial,sans-serif;font-size:14px;font-weight:700;line-height:normal}.PartnerOfferCard-title:hover{color:#005594}.PartnerOfferCard-image{height:60px;margin-right:12px;object-fit:contain;width:118px}.PartnerOfferCard-partnerOfferGrid{margin-bottom:12px}@media (max-width:759px){.PartnerOfferCard-partnerOfferGrid{max-width:100%}}.PartnerOfferCard-headingAndGridContainer,.PartnerOfferCard-learnMoreAndHeadingContainer{--pop-font-size:12px;display:flex;flex-direction:column;width:100%}@media (min-width:760px){.PartnerOfferCard-learnMore{text-align:center}.PartnerOfferCard-learnMore a{margin:0}}.PartnerOffers-container{background:#f8f8f8;border-left:3px solid #0477c9;margin:24px 0}@media (min-width:760px){.PartnerOffers-container{margin-right:118px}}@media (min-width:1020px){.PartnerOffers-container{margin-left:calc(11.11111% + 3.33333px);margin-right:0;max-width:unset}}@media (min-width:1340px){.PartnerOffers-container{margin-left:calc(8.33333% + 32.5px)}}.PartnerOffers-sponsored{background:#ebf5fc}.PartnerOffers-topSection{display:flex;flex-direction:column;gap:8px;padding:12px 12px 0}.PartnerOffers-bottomSection{color:#000;padding:16px 12px}.PartnerOffers-bottomSection p{color:inherit!important;display:inline;margin:0!important}@media (max-width:759px){.PartnerOffers-topController{display:none}}.PartnerOffers-bottomController{align-items:center;display:flex;flex-direction:column;padding-bottom:16px}@media (min-width:760px){.PartnerOffers-bottomController{display:none}}.PartnerOffers-headlineRow{display:flex;justify-content:space-between}.PartnerOffers-disclosures{align-items:center;display:flex;gap:4px}.PartnerOffers-disclosures p{margin:0!important}.PartnerOffers-shiftLastTooltip [class*=tooltipBody]{right:-20px;transform:unset}.Carousel-styles-select-carousel--aEtWQ{overflow:hidden;width:100%}.Carousel-styles-select-carouselSlide--WUqSd{-webkit-overflow-scrolling:touch;display:flex;gap:12px;overflow-x:auto;scroll-snap-type:x mandatory;scrollbar-width:none;transition:transform .5s}.Carousel-styles-select-carouselSlide--WUqSd::-webkit-scrollbar{display:none}.Carousel-styles-select-carouselCard--OzvLG{display:flex;flex:0 0 auto;justify-content:center;min-width:280px;scroll-snap-align:start;width:50%}.Carousel-styles-select-carouselCard--OzvLG.Carousel-styles-select-oneCard--kZasP{max-width:100%;width:100%}.Carousel-styles-select-carouselCard--OzvLG.Carousel-styles-select-twoCards--kayn6{max-width:unset;width:calc(50% - 6px)}.Carousel-styles-select-carouselCard--OzvLG.Carousel-styles-select-threePlusCards--uqbMy{max-width:280px;width:280px}@media (min-width:760px){.Carousel-styles-select-carouselCard--OzvLG.Carousel-styles-select-threePlusCards--uqbMy{width:280px}}@media (min-width:1020px){.Carousel-styles-select-carouselCard--OzvLG.Carousel-styles-select-threePlusCards--uqbMy{width:330px}}@media (min-width:1340px){.Carousel-styles-select-carouselCard--OzvLG.Carousel-styles-select-threePlusCards--uqbMy{width:320px}}.OneTrustLoadingPlaceholder-container{align-items:center;background:#fff;display:flex;justify-content:center}.OneTrustBlockedPlaceholder-container{align-items:center;background-color:#d1d9dc;background-image:url(https://static-redesign.cnbcfm.com/dist/1eaf28c48f6e504fb498.svg);background-repeat:no-repeat;background-size:auto 100%;display:flex;justify-content:center}.OneTrustBlockedPlaceholder-innerCopy{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:18px;font-weight:800;padding:20px;text-align:center}@media (prefers-color-scheme:dark){.OneTrustBlockedPlaceholder-innerCopy{color:#111}}.OneTrustBlockedPlaceholder-link{color:#1876b8;cursor:pointer}a.OneTrustBlockedPlaceholder-onetrustSettingsDeepLink{text-decoration:none!important}.withOneTrustPlaceholder-placeholderDimensions{width:100%}@media (max-width:759px){.withOneTrustPlaceholder-placeholderDimensions{height:196px}}@media (min-width:760px){.withOneTrustPlaceholder-placeholderDimensions{height:235px}}body .videoResponsive{height:0;margin-bottom:18px;overflow:hidden;padding-bottom:56.25%;position:relative}body .videoResponsive iframe{border:0;height:100%;left:0;position:absolute;top:0;width:100%}body .postContainer iframe{display:flex;left:0;position:absolute;top:0}body .postContainer [src*=post]{position:relative;width:335px}body .postContainer [src*=video]{position:relative;width:100%}body .instagram-media iframe{width:99%}body .instagramWrapper iframe,body .tiktokWrapper iframe{left:0;right:0;width:99%}.WebService-wrapper{margin-top:20px;max-width:630px;min-height:auto;position:relative;text-align:center}@media (min-width:760px){.WebService-wrapper{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){.WebService-wrapper{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){.WebService-wrapper{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){.WebService-wrapper{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){.WebService-wrapper{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){.WebService-wrapper{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){.WebService-wrapper{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){.WebService-wrapper{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){.WebService-wrapper{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){.WebService-wrapper{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){.WebService-wrapper{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){.WebService-wrapper{margin-left:14.28571%}}@media (max-width:759px){.WebService-wrapper{margin-bottom:20px}}@media (min-width:1020px){.WebService-wrapper{margin-left:calc(16.66667% + 5px);min-width:auto}}@media (min-width:1340px){.WebService-wrapper{margin-bottom:20px;margin-left:calc(14.28571% + 4.28571px);min-width:auto}}.WebService-wsod_stock_screener.WebService-wrapper{margin-left:0;max-width:100%}.WebService-giphy{text-align:start}@media (min-width:360px){body .giphyContainer iframe{width:100%}}@media (min-width:760px){body .postContainer [src*=post]{width:395px}body .giphyContainer iframe{height:none;min-height:0;min-width:0;width:none}}@media (min-width:1020px){body .postContainer iframe{left:0;position:absolute;top:0}}@media (min-width:1180px){body .postContainer{padding-bottom:0}body .postContainer [src*=video]{display:flex}body .postContainer [src*=post]{display:flex;width:560px}}.ArticleNode-anchorWrapper{pointer-events:none;position:relative}.ArticleNode-anchorWrapper .ArticleNode-anchor{left:0;position:absolute;top:-230px;visibility:hidden}.QuoteKeyPoints-keyPointsHeader{align-items:center;color:#071d39;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:18px;font-style:normal;font-weight:900;line-height:22px;text-transform:uppercase}.QuoteKeyPoints-keyPointsContainer{margin:12px 0}.QuoteKeyPoints-keyPointsContainer .group{margin-bottom:0;margin-left:0;max-width:unset;min-width:unset}.QuoteKeyPoints-keyPointsContainer ul{padding-left:16px}.QuoteKeyPoints-keyPointsContainer ul li{color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:500;letter-spacing:.029999999329447746px;line-height:20px;list-style:disc;margin:12px 0;text-align:left}.QuoteKeyPoints-keyPointsContainer a{color:#2077b6;text-decoration:underline}.QuoteKeyPoints-keyPointsContainer a:hover{color:#fcb700}.ICBanner-icBannerContainer{display:flex;flex-direction:column}.ICBanner-icBannerComponent{align-items:center;background:#071d39;border-radius:3px;display:flex;flex:none;flex-direction:row;flex-grow:0;gap:16px;height:44px;margin-bottom:40px;order:0;padding:0;position:relative;width:100%}@media (max-width:759px){.ICBanner-icBannerComponent{gap:8px}}.ICBanner-icBannerComponentExpanded{margin-bottom:12px}@media (max-width:759px){.ICBanner-icBannerComponentExpanded{margin-bottom:4px}}.ICBanner-icBannerContainerExpanded{border-bottom:5px solid #071d39;margin-bottom:40px;padding-bottom:5px}.ICBanner-investingClubPill{height:24px;margin-left:10px;top:1px;width:49.71px!important}@media (max-width:759px){.ICBanner-investingClubPill{height:20px}}.ICBanner-portfolioLink{align-items:center;color:#005594;cursor:pointer;display:flex;float:right;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:18px;font-weight:400;letter-spacing:.444444px;line-height:28px}@media (max-width:759px){.ICBanner-portfolioLink{text-decoration:underline}}.ICBanner-icBannerHeader,.ICBanner-signInLink,.ICBanner-signInText,.ICBanner-signedOutHeader{align-items:center;color:#fff;display:flex;flex:none;flex-grow:0;font-size:12px;font-weight:700;letter-spacing:1.5px;line-height:16px;order:1;text-transform:uppercase}.ICBanner-dropdownButton{align-items:center;color:#fff;display:flex;flex:none;float:right;order:2;position:absolute;right:16px}.ICBanner-dropdownButton:active{-webkit-tap-highlight-color:transparent}.ICBanner-dropdownButton .ICBanner-dropdownArrow,.ICBanner-dropdownButton .ICBanner-dropdownUpArrow{background:#fff;height:11px;margin-left:32px;width:12px}@media (max-width:1019px){.ICBanner-dropdownButton .ICBanner-dropdownArrow,.ICBanner-dropdownButton .ICBanner-dropdownUpArrow{margin-left:78px}}@media (max-width:759px){.ICBanner-dropdownButton .ICBanner-dropdownArrow,.ICBanner-dropdownButton .ICBanner-dropdownUpArrow{margin-bottom:4px;margin-left:10px}}.ICBanner-dropdownButton .ICBanner-dropdownArrow{margin-bottom:6px;mask-image:url(https://static-redesign.cnbcfm.com/dist/95a89411c4cb62dc5920.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/95a89411c4cb62dc5920.svg)}@media (max-width:759px){.ICBanner-dropdownButton .ICBanner-dropdownArrow{margin-bottom:4px}}.ICBanner-dropdownButton .ICBanner-dropdownUpArrow{margin-bottom:0;mask-image:url(https://static-redesign.cnbcfm.com/dist/24f214b19a613fd9a0e2.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/24f214b19a613fd9a0e2.svg)}@media (max-width:759px){.ICBanner-dropdownButton .ICBanner-dropdownUpArrow{margin-top:2px}}.ICBanner-expandedComponent{display:flex;flex-direction:column}.ICBanner-expandedComponentRow{border-bottom:2px solid #e5e5e5;display:flex;flex-direction:row;margin-bottom:10px;padding-bottom:10px;width:100%}.ICBanner-rowComponent{display:flex;flex-direction:row;justify-content:space-between;width:50%}.ICBanner-heading{color:#747474;font-size:18px;font-weight:600;line-height:22px}.ICBanner-rowValue{float:right;position:relative;right:14px}.ICBanner-firstRow,.ICBanner-rowValue{color:#171717;font-size:18px;font-weight:600;line-height:22px}.ICBanner-firstRow{width:100px}@media (min-width:1340px){.ICBanner-firstRow{width:220px}}.ICBanner-mobileExpandedComponent{display:flex;flex-direction:column}.ICBanner-mobileExpandedComponentRow{border-bottom:2px solid #e5e5e5;display:flex;flex-direction:row;justify-content:space-between;margin-bottom:10px;padding-bottom:10px}.ICBanner-mobileHeading{color:#747474;font-size:18px;font-weight:700;line-height:22px;margin-left:10px}.ICBanner-mobileRowValue{color:#171717;font-size:18px;font-weight:700;line-height:22px;margin-right:10px}.ICBanner-icBannerComponentSignedOut{align-items:center;background:#071d39;border-radius:3px;color:#fff;display:flex;height:56px;margin-bottom:40px;position:relative;text-transform:uppercase;width:100%}.ICBanner-icBannerComponentSignedOut .ICBanner-investingClubPillLink{margin-top:2px}.ICBanner-icBannerComponentSignedOutMobile{height:44px}.ICBanner-signInLink,.ICBanner-signedOutHeader{order:unset}.ICBanner-clubMemberButton{border:1px solid #fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:600;height:40px;letter-spacing:1.09px;line-height:40px;text-align:center;text-transform:uppercase;width:191px}.ICBanner-signInLink{margin-right:6px;text-decoration:underline}.ICBanner-signInLink a:focus,.ICBanner-signInLink a:hover{color:#fff}.ICBanner-signInText{margin-left:10px;order:unset}.ICBanner-memberButtonContainer{margin-left:auto;margin-right:16px}.ICBanner-memberButtonContainer:focus,.ICBanner-memberButtonContainer:hover{color:#fff}.ICBanner-mobileSubscribeButton{margin-left:6px;text-decoration:underline}.QuotePageBuilder-container{margin:0 22px;max-width:100%;padding-top:15px}@media (min-width:360px){.QuotePageBuilder-container{margin-bottom:0}}@media (min-width:760px){.QuotePageBuilder-container{margin:0 auto;max-width:678px}}@media (min-width:1020px){.QuotePageBuilder-container{margin-bottom:15px;max-width:960px}}@media (min-width:1340px){.QuotePageBuilder-container{margin-bottom:25px;max-width:1290px}}@media (min-width:760px){.QuotePageBuilder-row{margin-bottom:20px;padding-top:30px}}@media (min-width:1020px){.QuotePageBuilder-row{display:flex}}.QuotePageBuilder-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.QuotePageBuilder-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.QuotePageBuilder-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.QuotePageBuilder-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.QuotePageBuilder-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.QuotePageBuilder-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.QuotePageBuilder-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.QuotePageBuilder-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}.QuotePageBuilder-mainContent{padding-top:15px}@media (min-width:1020px){.QuotePageBuilder-mainContent{padding-top:30px}}.QuotePageBuilder-mainContent .BrandBanner-container{margin-bottom:30px;z-index:99}@media (min-width:1340px){.QuotePageBuilder-mainContent .BrandBanner-container{margin-left:calc(-50vw - -538.5px)}}@media (min-width:760px){.QuotePageBuilder-mainContent .BrandBanner-container{margin-bottom:-100px;margin-top:50px}.QuotePageBuilder-mainContent{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px);padding-top:0}}@media (min-width:760px) and (min-width:760px){.QuotePageBuilder-mainContent{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.QuotePageBuilder-mainContent{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.QuotePageBuilder-mainContent{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.QuotePageBuilder-mainContent{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.QuotePageBuilder-mainContent{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.QuotePageBuilder-mainContent:last-child{margin-right:0}}@media (min-width:1340px){.QuotePageBuilder-mainContent{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}}@media (min-width:760px){.QuotePageBuilder-sidebar{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.QuotePageBuilder-sidebar{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.QuotePageBuilder-sidebar{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.QuotePageBuilder-sidebar{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.QuotePageBuilder-sidebar{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.QuotePageBuilder-sidebar{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}}@media (min-width:1340px){.QuotePageBuilder-sidebar{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}.QuotePageBuilder-button,.QuotePageBuilder-buttonActive{align-items:center;background:#fff;border:1px solid #002f6c;color:#002f6c;display:flex;font-family:Proxima Nova,sans-serif;font-size:12px;font-weight:700;justify-content:center;letter-spacing:1.09px;margin:15px 0 30px;padding:15px 20px;text-transform:uppercase;width:100%}.QuotePageBuilder-button:after,.QuotePageBuilder-buttonActive:after{border-bottom:2px solid #002f6c;border-right:2px solid #002f6c;content:"";display:block;height:7px;margin:-4px 0 0 5px;transform:rotate(45deg);width:7px}.QuotePageBuilder-buttonActive:after{margin:5px 0 0 5px;transform:rotate(225deg)}.QuotePageBuilder-showOnDesktop{display:none}@media (min-width:760px){.QuotePageBuilder-showOnDesktop{display:initial}}.QuotePageBuilder-showOnMobile{display:initial;margin-bottom:10px}@media (min-width:760px){.QuotePageBuilder-showOnMobile{display:none}}.QuotePageBuilder-analystConsensusContainer{display:flex;justify-content:center;margin-bottom:25px;margin-top:30px}.LiveTVScheduleHeader-header{color:#071d39;font-style:normal;position:relative;width:100%}.LiveTVScheduleHeader-header .LiveTVScheduleHeader-heading{font-size:40px;font-weight:800;line-height:42px;padding:36px 8px 0;text-align:center}@media (max-width:759px){.LiveTVScheduleHeader-header .LiveTVScheduleHeader-heading{font-size:36px}}@media (max-width:359px){.LiveTVScheduleHeader-header .LiveTVScheduleHeader-heading{font-size:24px}}.LiveTVScheduleHeader-header .LiveTVScheduleHeader-headerUnderline{background:#fcb700;height:7px;margin-bottom:40px;width:100%}.LiveTVDatePicker-container{margin:0 auto 38px;max-width:1145px;width:90%}.LiveTVDatePicker-modal{bottom:0;height:100%;left:0;position:absolute;right:0;top:0;width:100%;z-index:99}.LiveTVDatePicker-tveDropdown{background:#aeaeae;border-radius:3px;color:#171717;display:block;height:34px;padding:1px;position:relative;width:272px}.LiveTVDatePicker-head{background:linear-gradient(#e7e7e7,#fff);background-image:linear-gradient(#f6f6f6,#fafafa);border-radius:3px;cursor:pointer;text-shadow:0 1px 0 #fff;width:100%}.LiveTVDatePicker-arrowWrap,.LiveTVDatePicker-head{border-top:1px solid #fff;display:inline-block;height:32px}.LiveTVDatePicker-arrowWrap{background-image:-o-linear-gradient(top,#dbdbdb 0,#fcfcfc 100%);border-left:1px solid #fff;border-radius:0 3px 3px 0;box-shadow:-1px 0 0 0 #c9c9c9;float:right;position:absolute;right:1px;top:1px;width:31px}.LiveTVDatePicker-arrow{background-image:url(https://static-redesign.cnbcfm.com/dist/3f3502c997d472bd03be.png);background-repeat:no-repeat;border:none;box-shadow:none;height:25px;left:-10%;margin:-15px 0 0;position:absolute;top:50%;width:29px}.LiveTVDatePicker-openArrow{border-color:#171717 #0000 #0000;border-style:solid;border-width:7px 7px 0;box-shadow:0 -1px 0 0 #171717;height:0;margin-left:10px;margin-top:-2px;width:0}.LiveTVDatePicker-close{background:none;background-image:none;border-color:#0000;border-radius:0;box-shadow:none}.LiveTVDatePicker-today{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-style:normal;font-weight:800;line-height:28px;text-transform:uppercase}.LiveTVDatePicker-datesContainer{float:left}.LiveTVDatePicker-dates{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-style:normal;font-weight:500;line-height:28px;margin-left:6px}.LiveTVDatePicker-selectDateContainer{text-align:left}.LiveTVDatePicker-selectDate{font-size:18px;font-style:normal;font-weight:500;line-height:28px;margin-left:6px}.LiveTVDatePicker-menu{background:#fff;border:1px solid #c3c3c3;border-radius:3px;height:200px;overflow:scroll;padding:6px 0 6px 7px;position:absolute;width:272px;z-index:100}.LiveTVDatePicker-menu button{border-radius:3px;display:block;font-family:Proxima Nova Semi Bold,Helvetica,Arial,sans-serif;font-size:16px;line-height:23px;margin-right:6px;padding:5px 12px 4px 8px;position:relative;text-align:initial;text-overflow:ellipsis;white-space:nowrap;width:100%}.LiveTVDatePicker-menu button:hover{color:#fff}.LiveTVDatePicker-menu li:hover{background-color:#2077b6;border-radius:3px;cursor:pointer;width:254px}.LiveTVDatePicker-filterDayWeek{display:inline-block;text-align:left;width:87px}.LiveTVDatePicker-filterMonth{display:inline-block;width:40px}.LiveTVDatePicker-hide{display:none}.LiveTVCurrentShow-container{border:4px solid #002f6c;color:#002f6c;margin:0 auto 41px;max-width:1145px;padding:8px 16px;position:relative;width:90%}.LiveTVCurrentShow-liveScheduleContainer{align-items:center;display:flex;justify-content:space-between;margin:0 22px}@media (max-width:1019px){.LiveTVCurrentShow-liveScheduleContainer{display:block}}.LiveTVCurrentShow-link,.LiveTVCurrentShow-link:hover{color:#002f6c}.LiveTVCurrentShow-onNow{align-items:center;background:#fff;display:flex;font-size:14px;font-style:normal;font-weight:700;justify-content:center;line-height:20px;position:absolute;text-align:center;top:-11px;width:114px}.LiveTVCurrentShow-onNow:before{animation:LiveTVCurrentShow-pulse 2s infinite;background-color:#ff5053;border-radius:100%;box-shadow:0 0 0 0 #ce2b2b;content:"";display:block;height:6px;margin:6px 8px;transform:scale(1);width:6px}@keyframes LiveTVCurrentShow-pulse{0%{box-shadow:0 0 0 1px #ce2b2b;opacity:1;transform:scale(.95)}70%{box-shadow:0 0 0 2px #ce2b2b;opacity:.9;transform:scale(1)}to{box-shadow:0 0 0 1px #ce2b2b;opacity:1;transform:scale(.95)}}.LiveTVCurrentShow-currShow{font-size:28px;font-style:normal;font-weight:400;line-height:18px;padding:16px 0}@media (max-width:759px){.LiveTVCurrentShow-currShow{font-size:24px}}@media (max-width:479px){.LiveTVCurrentShow-currShow{font-size:18px}}.LiveTVCurrentShow-currShow .LiveTVCurrentShow-onNowTitle{font-weight:800}.LiveTVCurrentShow-currShow .LiveTVCurrentShow-separator{font-weight:700}.LiveTVCurrentShow-nextShow{font-size:20px;font-style:normal;font-weight:400;line-height:14px;padding:16px 0}@media (max-width:479px){.LiveTVCurrentShow-nextShow{display:none}}@media (max-width:759px){.LiveTVCurrentShow-nextShow{font-size:16px}}.LiveTVCurrentShow-nextShow .LiveTVCurrentShow-nextTitle{font-weight:800}.LiveTVSchedule-container{margin:auto;max-width:1145px;width:100%}.MobileAppChart-container{max-width:100%}.WelcomeMessage-container{font-family:Proxima Nova,Arial,Helvetica,sans-serif;font-size:16px;font-style:normal;font-weight:500;letter-spacing:.03px;line-height:20px;margin-bottom:10px;padding:0 20px}.WelcomeMessage-container a{color:#005594}@media (min-width:1020px){.WelcomeMessage-container{margin:0 40px 15px}}@media (min-width:1340px){.WelcomeMessage-container{margin:0 275px 15px}}.WelcomeMessage-blockText{display:block}.NewslettersHeader-container{display:flex;flex-direction:column;margin:0 auto;max-width:100%;padding:30px 0;text-align:center}@media (min-width:760px){.NewslettersHeader-container{max-width:678px}}@media (min-width:1020px){.NewslettersHeader-container{max-width:960px}}@media (min-width:1340px){.NewslettersHeader-container{max-width:1290px}}@media (min-width:760px){.NewslettersHeader-container{padding:20px 0}}@media (min-width:1020px){.NewslettersHeader-container{padding:30px 0}}.NewslettersHeader-header{color:#002f6c;font-family:Proxima Nova,Arial,Helvetica,sans-serif;font-size:28px;font-weight:700;letter-spacing:-.5px;line-height:32px;margin-bottom:10px;margin-top:0;padding:0 20px}@media (min-width:760px){.NewslettersHeader-header{font-size:40px;line-height:42px;padding:0}}@media (min-width:1020px){.NewslettersHeader-header{font-size:54px;line-height:60px;margin-bottom:20px}}.NewslettersHeader-paragraph{font-family:Proxima Nova,Arial,Helvetica,sans-serif;font-size:16px;font-style:normal;font-weight:500;letter-spacing:.03px;line-height:20px;margin-bottom:10px;padding:0 20px}@media (min-width:1020px){.NewslettersHeader-paragraph{margin:0 40px 15px;padding:0}}@media (min-width:1340px){.NewslettersHeader-paragraph{margin:0 275px 15px}}.NewslettersHeader-email{color:#747474}.NewslettersHeader-signInContainer{align-items:center;display:flex;flex-direction:row;font-family:Proxima Nova,Arial,Helvetica,sans-serif;font-size:14px;font-style:normal;font-weight:500;justify-content:center;letter-spacing:.03px;line-height:16px;padding:0 20px}.NewslettersHeader-signInContainer .NewslettersHeader-question{color:#000}.NewslettersHeader-signInContainer .NewslettersHeader-question:after{content:" ";white-space:pre}.NewslettersHeader-signInContainer .NewslettersHeader-signIn a{color:#005594}.NewslettersHeader-signInContainer .NewslettersHeader-signIn a:hover{color:#fcb700}.ExclusivePill-baseExclusiveStyles,.ExclusivePill-icExclusive,.ExclusivePill-proExclusive{background-color:#fffc;border-radius:4px;bottom:10px;font-size:12px;font-weight:600;left:10px;padding:2px 5px;position:absolute}.ExclusivePill-proExclusive{color:#008456}.ExclusivePill-icExclusive{color:#005594}.BecomeAPaidUserPill-icLink,.BecomeAPaidUserPill-proLink{color:#005594;display:block;font-size:11px;font-weight:500;margin:10px 0;width:-moz-fit-content;width:fit-content}.BecomeAPaidUserPill-proLink{color:#008456}.AuthenticatedSubscriptionButton-subscriptionButton{background-color:#fff;border:1px solid #002f6c;border-radius:100%;color:#fff;display:block;font-size:16px;height:18px;line-height:1;position:absolute;right:10px;text-align:center;top:1px;width:18px}.AuthenticatedSubscriptionButton-unchecked{background-color:#fff;border:1px solid #002f6c;color:#002f6c}@media (min-width:1020px){.AuthenticatedSubscriptionButton-unchecked:focus-visible,.AuthenticatedSubscriptionButton-unchecked:hover{background-color:#002f6c;border:1px solid #002f6c;color:#fff}}.AuthenticatedSubscriptionButton-checked{background-color:#002f6c;border:1px solid #002f6c;color:#fff}@media (min-width:1020px){.AuthenticatedSubscriptionButton-checked:focus-visible:before,.AuthenticatedSubscriptionButton-checked:hover:before{align-items:center;background-color:#002f6c;border:1px solid #002f6c;border-radius:9px;color:#fff;content:"Unsubscribe";display:flex;font-size:10px;font-weight:300;height:17px;justify-content:center;margin-right:-1px;margin-top:-1px;position:absolute;right:0;top:0;width:70px;z-index:1}}.AuthenticatedSubscriptionButton-checkmarkIcon{background-color:#002f6c;border:1px solid #002f6c;border-radius:100%;color:#fff;height:18px;position:absolute;right:-1px;top:-1px;width:18px}.AuthenticatedSubscriptionButton-checkmarkIcon circle{fill:#002f6c;opacity:1}.AuthenticatedSubscriptionButton-checkmarkIcon path{fill:#fff}.AuthenticatedSubscriptionButton-wide{border-radius:9px;font-size:10px;font-weight:300;width:72px}.AuthenticatedSubscriptionButton-subscribed{background-color:#002f6c;border:1px solid #002f6c;color:#fff}.AuthenticatedSubscriptionButton-subscribed span{left:4px;position:absolute;top:3px}.AuthenticatedSubscriptionButton-subscribed .AuthenticatedSubscriptionButton-checkmarkIcon{border-radius:100%;color:#fff;height:18px;position:absolute;right:0;top:-1px;width:17px}.AuthenticatedSubscriptionButton-unsubscribed{background-color:#fff;border:1px solid #002f6c;color:#002f6c}.AuthenticatedSubscriptionButton-loading{background-color:#d9d9d9;border:#d9d9d9;color:#0000;cursor:default;pointer-events:none}.AuthenticatedSubscriptionButton-loading span{background-image:url(https://static-redesign.cnbcfm.com/dist/994bcb47d39748c1b663.gif);background-position:50%;background-repeat:no-repeat;background-size:contain;border-radius:100%;display:inline-block;height:18px;margin:auto;width:18px}.AddNewsletter-selectedToggle{background-color:#9e9e9e;border:1px solid #9e9e9e;color:#fff!important}.AddNewsletter-selectedToggle:before{color:#424242;content:"Remove";font-size:10px;font-weight:300;line-height:14px;position:absolute;right:calc(100% + 5px);text-align:right}.AddNewsletter-selectedToggle:after{content:"﹣";display:inline}.AddNewsletter-selectedToggle:focus-visible,.AddNewsletter-selectedToggle:hover{background-color:#424242;border:1px solid #424242}.AddNewsletter-deselectedToggle,.AddNewsletter-selectedToggle{border-radius:100%;display:block;font-size:16px;height:18px;line-height:1;position:absolute;right:10px;text-align:center;top:1px;width:18px}.AddNewsletter-deselectedToggle{background-color:#fff;border:1px solid #002f6c;color:#002f6c!important}.AddNewsletter-deselectedToggle:after{content:"+";display:inline}.AddNewsletter-deselectedToggle:focus-visible,.AddNewsletter-deselectedToggle:hover{background-color:#002f6c;border:1px solid #002f6c;color:#fff!important}.NewslettersCard-container{background-color:#fff;border:1px solid #f8f8f8;box-shadow:0 1px 4px 0 #00000040;display:inline-block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;height:294px;position:relative;vertical-align:top;width:165px}@media (min-width:1020px){.NewslettersCard-container:focus,.NewslettersCard-container:hover{transform:scale3d(1.1,1.1,1);transition:transform .3s}}@media (max-width:759px){.NewslettersCard-container{width:100%}}.NewslettersCard-thumbnailWrapper{background-color:#f8f8f8;height:120px;left:-1px;overflow:hidden;position:relative;top:-1px;width:calc(100% + 2px)}.NewslettersCard-thumbnail{height:100%;object-fit:cover;width:100%}.NewslettersCard-body{padding:10px}.NewslettersCard-title{-webkit-box-orient:vertical;-webkit-line-clamp:2;display:-webkit-box;font-size:16px;font-weight:500;line-height:1.1;overflow:hidden}@media (max-width:759px){.NewslettersCard-title{font-size:12px}}.NewslettersCard-description{-webkit-box-orient:vertical;-webkit-line-clamp:2;display:-webkit-box;font-size:11px;font-weight:300;margin:10px 0;overflow:hidden}.NewslettersCard-sampleLink{color:#005594;display:block;font-size:11px;font-weight:500;margin:10px 0;width:-moz-fit-content;width:fit-content}.NewslettersCard-bottomRow{background-image:url(https://static-redesign.cnbcfm.com/dist/757f1cf1b09912b51cd0.png);background-position:10px 1px;background-repeat:no-repeat;background-size:15px;bottom:0;left:0;padding:0 10px 10px 30px;position:absolute;width:100%}.NewslettersCard-cadence{font-size:11px;font-weight:500;line-height:18px}.NewslettersCard-cadenceSelected{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:60px}.NewslettersCard-errorContainer{background:#fff;bottom:0;height:calc(100% - 120px);left:0;opacity:.97;position:absolute;width:100%;z-index:2}.NewslettersCard-errorMessage{color:#ce2b2b;font-size:16px;font-weight:600;line-height:19.49px;margin-top:40px;padding:10px;text-align:left}.NewslettersCard-errorPill{background:#b40909;border-radius:9px;bottom:10px;color:#fff;font-size:10px;font-weight:500;height:18px;line-height:12.18px;padding:3px;position:absolute;right:10px;text-align:center;width:46px}.NewslettersCategory-smallSpan{background-color:#0477c9;display:block;height:6px;margin-top:10px;width:110px}@media (max-width:360px){.NewslettersCategory-smallSpan{width:88px}}@media (min-width:760px){.NewslettersCategory-smallSpan{margin-top:20px}}.NewslettersCategory-smallSpanPro{background-color:#008456}.NewslettersCategory-smallSpanInvestingClub{background-color:#0496ff}.NewslettersCategory-border{background-color:#747474;display:block;height:1px;width:100%}.NewslettersCategory-categoryTitle{font-size:20px;font-weight:700;letter-spacing:-.5px;line-height:32px;margin-bottom:0;margin-top:0;text-transform:uppercase}@media (min-width:760px){.NewslettersCategory-categoryTitle{font-size:28px}}.NewslettersCategory-categoryTopContainer{align-items:center;display:flex;justify-content:space-between;margin-bottom:10px;margin-top:5px}@media (min-width:760px){.NewslettersCategory-categoryTopContainer{margin-top:11px}}.NewslettersCategory-checkboxAndCollapseButtonContainer{color:#336aa0;display:flex;font-family:Proxima Nova,Arial,Helvetica,sans-serif;font-size:13px;font-style:normal;font-weight:600;gap:10px;line-height:normal;text-transform:uppercase}.NewslettersCategory-selectAllCheckbox{cursor:pointer;height:0;opacity:0;position:absolute;right:0;width:0}.NewslettersCategory-checkmark{border:2px solid #336aa0;border-radius:3px;display:block;height:18px;position:relative;width:18px}.NewslettersCategory-dropdownArrow{border:1px solid #0000}.NewslettersCategory-dropdownArrow:focus-visible{border:1px solid #336aa0}.NewslettersCategory-subCategoriesContainer{display:flex;flex-wrap:wrap;gap:20px;justify-content:space-between;max-width:100%;padding-bottom:30px}@media (min-width:760px){.NewslettersCategory-subCategoriesContainer{justify-content:flex-start;padding-bottom:50px}}@media (min-width:1020px){.NewslettersCategory-subCategoriesContainer{padding-bottom:10px}}.NewslettersCategory-checkboxLabel:focus-within input:not(:checked)~.NewslettersCategory-checkmark{border:4px solid #336aa0}.NewslettersCategory-checkboxLabel input:checked~.NewslettersCategory-checkmark{background-color:#336aa0}.NewslettersCategory-checkmark:after{content:"";display:none;position:absolute}.NewslettersCategory-checkboxLabel input:checked~.NewslettersCategory-checkmark:after{display:block}.NewslettersCategory-checkboxLabel .NewslettersCategory-checkmark:after{border:solid #fff;border-width:0 2px 2px 0;height:9px;left:4px;top:0;transform:rotate(45deg);width:5px}@media (max-width:759px){.NewslettersCategory-cardContainer{max-width:185px;width:46%}}.NewslettersCategory-disabledCheckbox{cursor:not-allowed;opacity:.5}.NewslettersOverlay-overlayContainer{background:#fff;border-top:1px solid #bababa;bottom:0;left:0;padding:20px 20px 15px;position:sticky;right:0;z-index:1000}@media (min-width:760px){.NewslettersOverlay-overlayContainer{padding:30px 39px 15px}}@media (min-width:1020px){.NewslettersOverlay-overlayContainer{padding:30px 20px 15px}}@media (max-width:759px){.NewslettersOverlay-overlayContainer{bottom:54px}}.NewslettersOverlay-contentContainer{margin:0 auto}@media (min-width:1020px){.NewslettersOverlay-contentContainer{max-width:960px}}@media (min-width:1340px){.NewslettersOverlay-contentContainer{max-width:1290px}}.NewslettersOverlay-overlayText{font-family:Proxima Nova,Arial,Helvetica,sans-serif;font-size:20px;font-style:normal;font-weight:500;letter-spacing:.03px;line-height:20px}@media (min-width:760px){.NewslettersOverlay-overlayText{font-size:28px;line-height:30px}}@media (min-width:1020px){.NewslettersOverlay-overlayText{font-size:36px;line-height:38px}}.NewslettersOverlay-overlayText span{font-weight:700}.NewslettersOverlay-tosContainer{color:#747474;font-size:8px;font-weight:600;line-height:10px;margin:10px 0;max-width:1140px}.NewslettersOverlay-tosContainer a{color:#005594}@media (min-width:760px){.NewslettersOverlay-tosContainer{font-size:10px;line-height:12px;margin:15px 0;padding-right:106px}}@media (min-width:1020px){.NewslettersOverlay-tosContainer{font-size:12px;line-height:14px;padding-right:270px}}.NewslettersOverlay-emailInput{border:1px solid #747474;border-radius:4px;font-family:Proxima Nova,Arial,Helvetica,sans-serif;font-size:14px;font-weight:700;height:54px;letter-spacing:1px;line-height:12px;padding-left:20px;width:100%}.NewslettersOverlay-emailInput::placeholder{color:#424242;opacity:1}@media (min-width:760px){.NewslettersOverlay-emailInput{border-radius:0;border-bottom-left-radius:4px;border-top-left-radius:4px;width:325px}}.NewslettersOverlay-submitButton{background-color:#005594;border-radius:4px;color:#fff;font-size:18px;font-weight:600;height:54px;letter-spacing:1px;text-align:center;width:100%}.NewslettersOverlay-submitButton:focus,.NewslettersOverlay-submitButton:hover{background-color:#071d39}@media (min-width:760px){.NewslettersOverlay-submitButton{border-radius:0;border-bottom-right-radius:4px;border-top-right-radius:4px;width:177px}}.NewslettersOverlay-recaptchaText{color:#747474;font-size:12px;font-weight:700;line-height:normal}.NewslettersOverlay-inputAndSubmit{display:flex;flex-direction:column;gap:10px;margin-bottom:10px}@media (min-width:760px){.NewslettersOverlay-inputAndSubmit{flex-direction:row;gap:0;margin-bottom:15px}}.NewslettersOverlay-disabledButton,.NewslettersOverlay-disabledButton:focus,.NewslettersOverlay-disabledButton:hover{background-color:#d9d9d9}.NewslettersOverlay-errorMessage{color:red;height:18px}.NewslettersOverlay-footerContainer{display:flex;flex-flow:column}@media (min-width:760px){.NewslettersOverlay-footerContainer{flex-flow:row}}.NewslettersOverlay-signin{font-size:14px;font-weight:500;letter-spacing:.029px;line-height:16px;margin:8px 0;text-align:left}.NewslettersOverlay-signin a{color:#005594;margin-left:5px}.NewslettersOverlay-signin a:hover{color:#fcb700}@media (min-width:760px){.NewslettersOverlay-signin{margin:0 20px 0 0}}.NewslettersConfirmation-container{background-image:url(https://static-redesign.cnbcfm.com/dist/44944463efaf14fd092f.svg);background-position:right -300px top -40px;background-repeat:no-repeat;background-size:900px;color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:15px;font-style:normal;font-weight:400;line-height:1.2;margin-top:-30px;text-align:center}@media (max-width:759px){.NewslettersConfirmation-container{background-position:right -300px bottom -40px;height:100%;width:100%}}@media (min-width:760px) and (max-width:1019px){.NewslettersConfirmation-container{margin-top:10px}}.NewslettersConfirmation-logo{margin:0 auto 40px}@media (max-width:759px){.NewslettersConfirmation-logo{margin:0 auto 30px}}.NewslettersConfirmation-emailText,.NewslettersConfirmation-thankYou,.NewslettersConfirmation-titlesList{margin:0 auto 10px;max-width:410px}.NewslettersConfirmation-thankYou{font-size:28px;font-weight:700;letter-spacing:-.5px;line-height:32px}@media (max-width:759px){.NewslettersConfirmation-thankYou{line-height:30px}}.NewslettersConfirmation-emailText{margin-bottom:18px}.NewslettersConfirmation-emailAddress{font-weight:600}.NewslettersConfirmation-signUpPrompt{font-size:16px;font-weight:500;line-height:16px;margin:20px auto;text-align:center}.NewslettersCategories-container{margin:0 auto 40px;max-width:100%;padding:0 20px}@media (min-width:760px){.NewslettersCategories-container{max-width:678px}}@media (min-width:1020px){.NewslettersCategories-container{max-width:960px}}@media (min-width:1340px){.NewslettersCategories-container{max-width:1290px}}@media (min-width:760px){.NewslettersCategories-container{padding:0}}.UnsubscribeConfirmationModal-container{color:#171717;display:flex;flex-direction:column;font-size:18px;font-weight:600;line-height:20px;min-height:277px;padding:30px 12px 50px;text-align:center;width:500px}.UnsubscribeConfirmationModal-container .UnsubscribeConfirmationModal-text{margin:0 auto}@media (min-width:760px){.UnsubscribeConfirmationModal-container .UnsubscribeConfirmationModal-text{width:70%}}@media (max-width:759px){.UnsubscribeConfirmationModal-container{height:unset;padding:45px 28px;width:100%}}.UnsubscribeConfirmationModal-logo{height:23px;margin:0 auto 40px}@media (max-width:759px){.UnsubscribeConfirmationModal-logo{margin:0 auto 30px}}.UnsubscribeConfirmationModal-buttons{display:flex;justify-content:space-between;margin:40px auto 0;width:90%}.UnsubscribeConfirmationModal-buttons button{border:1px solid #005594;border-radius:3px;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-weight:600;height:50px;letter-spacing:1.09px;line-height:12px;text-align:center;text-transform:uppercase;width:200px}.UnsubscribeConfirmationModal-buttons button:hover{background:#002f6c}@media (max-width:759px){.UnsubscribeConfirmationModal-buttons button{margin:0 auto;width:100%}}.UnsubscribeConfirmationModal-buttons .UnsubscribeConfirmationModal-cancelButton{color:#005594}.UnsubscribeConfirmationModal-buttons .UnsubscribeConfirmationModal-cancelButton:hover{color:#fff}@media (max-width:759px){.UnsubscribeConfirmationModal-buttons .UnsubscribeConfirmationModal-cancelButton{margin-bottom:22px}}.UnsubscribeConfirmationModal-buttons .UnsubscribeConfirmationModal-yesButton{background-color:#005594;color:#fff}.UnsubscribeConfirmationModal-buttons .UnsubscribeConfirmationModal-loading{background-color:#d9d9d9;border:#d9d9d9;transition:none}.UnsubscribeConfirmationModal-buttons .UnsubscribeConfirmationModal-loading:hover{background-color:#d9d9d9;border:#d9d9d9}@media (max-width:759px){.UnsubscribeConfirmationModal-buttons{flex-direction:column}}.UnsubscribeConfirmationModal-error{word-wrap:break-word;color:#f44336;font-size:14px;font-weight:400;line-height:16px;position:relative;text-align:center;top:10px}.NewslettersFooter-container{color:#000;font-size:12px;font-weight:500;line-height:12px;margin-bottom:20px;padding:0 20px 20px;text-align:center}@media (min-width:760px){.NewslettersFooter-container{line-height:28px}}.NewslettersFooter-unsubscribeButton{color:#005594;font-size:12px;font-weight:500}.NewslettersFooter-unsubscribe{display:block}@media (min-width:760px){.NewslettersFooter-unsubscribe{display:inline}}.ZephrLandingPage-main{min-height:90vh}.WatchlistSortableColumnHeader-defaultSort{fill:#bababa}.WatchlistSortableColumnHeader-sortActive{color:#005594!important}.WatchlistSortableColumnHeader-sortActive .WatchlistSortableColumnHeader-asc,.WatchlistSortableColumnHeader-sortActive .WatchlistSortableColumnHeader-desc{fill:#005594}button.WatchlistSortableColumnHeader-sortButton{align-items:center;border-right:1px solid #ccc;display:flex;float:right;margin-right:4px;padding-right:4px}button.WatchlistSortableColumnHeader-sortButton:last-child{border:0;margin:0;padding:0}.WatchlistSortableColumnHeader-sortingIcons{display:flex;flex-direction:column;margin-left:8px}.SymbolTable-symbolTable{border-bottom:1px solid #d9d9d9;font-family:Proxima Nova,Helvetica,Arial,sans-serif;position:relative;table-layout:fixed;width:100%}.SymbolTable-symbolTable.SymbolTable-zeroQuotes{border-bottom:none}.SymbolTable-symbolTable:before{bottom:0;content:"";display:block;height:40px;pointer-events:none;position:absolute;width:100%;z-index:1}.SymbolTable-symbolTable.SymbolTable-fade:before{background:linear-gradient(180deg,#fff0,25%,#fff)}.SymbolTable-symbolTable thead{display:table;width:100%}.SymbolTable-symbolTable thead th{color:#747474;font-size:12px;font-style:normal;font-weight:700;line-height:15px;padding-bottom:5px}.SymbolTable-symbolTable td,.SymbolTable-symbolTable th{font-size:14px;padding:unset;padding-right:10px;text-align:end;width:25%}@media (max-width:1339px){.SymbolTable-symbolTable td,.SymbolTable-symbolTable th{font-size:12px}}.SymbolTable-symbolTable tr{box-sizing:border-box;display:table;width:100%}.SymbolTable-symbolTable tbody{display:block;max-height:240px;overflow-y:scroll;width:100%}.SymbolTable-symbolTable tbody tr{width:100%}.SymbolTable-symbolTable tbody tr:nth-child(odd){background:#f1f1f1}.SymbolTable-symbolTable tbody td{font-size:14px;font-style:normal;font-weight:600;height:30px;padding:4px 10px 4px 0}.SymbolTable-symbolTable tbody td.SymbolTable-symbol{overflow:hidden;padding-left:12px;text-align:start;text-overflow:ellipsis;white-space:nowrap}.SymbolTable-symbolTable tbody td a:hover{color:#005594;text-decoration:none}th{color:#9e9e9e}.SymbolTable-symbolLink{color:#000;cursor:pointer}.SymbolTable-positive{color:#00a857}.SymbolTable-negative{color:#ce2b2b}.SymbolTable-extendedHours{align-items:center;color:#e8802a;justify-content:flex-end;position:relative;text-align:end}.SymbolTable-extendedHours>svg{position:absolute;right:-3px;top:10px}.WatchlistSymbolAdder-container .WatchlistSymbolAdder-dropdownContent{left:0;right:auto}.WatchlistSymbolAdder-marketBanner{border:1px solid #005594!important}.WatchlistSymbolAdder-form{position:relative;white-space:nowrap;z-index:99}.WatchlistSymbolAdder-input{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:700;letter-spacing:.07em;padding:3px 3px 3px 6px;width:auto}@media (max-width:759px){.WatchlistSymbolAdder-input{width:100px}}input::placeholder{color:#ccc}.WatchlistSymbolAdder-addButton{background-color:#005594;border-radius:4px;color:#fff;font-size:12px;font-weight:700;letter-spacing:.07em;padding:3px 5px}.WatchlistSymbolAdder-addButton:hover{background-color:#002f6c;color:#fff;cursor:pointer;font-size:12px;font-weight:700;letter-spacing:.07em}.WatchlistSymbolAdder-dropdownContent{background-color:#fff;border-radius:4px;color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-weight:500;position:absolute;text-align:left;white-space:normal;width:392px;z-index:5000}@media (max-width:759px){.WatchlistSymbolAdder-dropdownContent{padding:10px;width:270px}}.WatchlistSymbolAdder-dropdownContent table{border-collapse:collapse;table-layout:fixed;white-space:nowrap;width:100%}.WatchlistSymbolAdder-dropdownContent table td{font-size:16px;padding:6px 6px 6px 0}.WatchlistSymbolAdder-dropdownItem{border-bottom:1px solid #ccd6d8;color:#333;display:table-row;line-height:20px;padding:2px 0;text-decoration:none}.WatchlistSymbolAdder-dropdownItem:last-of-type{border-bottom:0}.WatchlistSymbolAdder-dropdownItem.WatchlistSymbolAdder-active,.WatchlistSymbolAdder-dropdownItem:hover{background-color:#d5dee2;cursor:pointer}.WatchlistSymbolAdder-dropdownItem .WatchlistSymbolAdder-symbolName{overflow:hidden;text-overflow:ellipsis;width:90px}.WatchlistSymbolAdder-dropdownItem .WatchlistSymbolAdder-companyName{overflow:hidden;text-overflow:ellipsis;width:auto}.WatchlistSymbolAdder-dropdownItem .WatchlistSymbolAdder-countryCode{padding-right:0;width:25px}.WatchlistSymbolAdder-dropdownContent.WatchlistSymbolAdder-hasHighlightedSymbol .WatchlistSymbolAdder-dropdownItem:hover{background-color:none}.WatchlistSymbolAdder-ghostDropdownCloser{bottom:0;left:0;position:fixed;right:0;top:0;z-index:98}.WatchlistSymbolAdder-watchlistPage{background:#fff;border:1px solid #9e9e9e;border-bottom-left-radius:6px;border-bottom-right-radius:6px;border-top-right-radius:6px;display:flex;margin-right:20px;padding:10px;position:absolute;top:35px;z-index:98}.WatchlistSymbolAdder-watchlistPage.WatchlistSymbolAdder-rightAlign{border-bottom-left-radius:6px;border-bottom-right-radius:6px;border-top-left-radius:6px;border-top-right-radius:0;right:0}@media (min-width:760px){.WatchlistSymbolAdder-watchlistPage.WatchlistSymbolAdder-rightAlign{margin-right:40px}}@media (min-width:1020px){.WatchlistSymbolAdder-watchlistPage.WatchlistSymbolAdder-rightAlign{margin-right:0}}.WatchlistSymbolAdder-watchlistPage .WatchlistSymbolAdder-searchOptions{border-bottom:1px solid #bababa;display:flex;justify-content:space-between;padding-bottom:8px}.WatchlistSymbolAdder-watchlistPage .WatchlistSymbolAdder-form{width:307px}.WatchlistSymbolAdder-watchlistPage .WatchlistSymbolAdder-form .WatchlistSymbolAdder-input{border:none;font-size:14px;font-weight:600;line-height:20px;padding:unset;text-transform:unset;width:85%}.WatchlistSymbolAdder-watchlistPage .WatchlistSymbolAdder-form .WatchlistSymbolAdder-dropdownContent{border:unset;box-shadow:unset;display:flex;padding:unset;padding-top:8px;position:inherit;width:auto;z-index:inherit}@media (max-width:759px){.WatchlistSymbolAdder-watchlistPage .WatchlistSymbolAdder-form{width:240px}}.WatchlistSymbolAdder-embedded .WatchlistSymbolAdder-form{width:100%}.WatchlistSymbolAdder-embedded .WatchlistSymbolAdder-form .WatchlistSymbolAdder-input{border:unset;border-bottom:1px solid #747474;border-radius:unset;color:#747474;font-size:12px;font-weight:600;letter-spacing:.15px;line-height:15px;margin-bottom:5px;text-transform:unset;width:100%}.WatchlistSymbolAdder-embedded .WatchlistSymbolAdder-form .WatchlistSymbolAdder-dropdownContent{border:1px solid #ccd6d8;box-shadow:0 1px 10px #d9d9d9;padding:8px;text-align:center;width:100%}.WatchlistSymbolAdder-embedded .WatchlistSymbolAdder-form .WatchlistSymbolAdder-dropdownContent table tr{line-height:16px}.WatchlistSymbolAdder-embedded .WatchlistSymbolAdder-form .WatchlistSymbolAdder-dropdownContent table tr td{font-size:14px}.EmbeddedWatchlist-container{display:flex;flex-direction:column;font-weight:800;height:100%;position:relative}.EmbeddedWatchlist-container,.EmbeddedWatchlist-container .EmbeddedWatchlist-notify{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal}.EmbeddedWatchlist-container .EmbeddedWatchlist-notify{color:#747474;font-weight:500;line-height:15px;padding:16px 0;text-align:center}.EmbeddedWatchlist-dropdownAnchor{position:relative}.icon-offsite-arrow{color:#9e9e9e;font-size:10px;font-weight:600}.EmbeddedWatchlist-dropdownButton{align-items:center;display:flex;justify-content:left;margin-bottom:18px;text-align:left;width:-moz-fit-content;width:fit-content;z-index:2}.EmbeddedWatchlist-dropdownButton:hover{cursor:pointer}.EmbeddedWatchlist-dropdownButton:hover h2{color:#071d39}.EmbeddedWatchlist-dropdownButton div{align-items:center;border-bottom:1px solid #002f6c;display:flex;height:33px;max-width:200px;min-width:118px}.EmbeddedWatchlist-dropdownButton svg{margin-left:5px;margin-right:5px}.EmbeddedWatchlist-watchlistName{color:#002f6c;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:18px;font-style:normal;font-weight:600;letter-spacing:.33px;line-height:20px;margin:unset;margin-left:5px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%}.EmbeddedWatchlist-chevron{border-radius:1px;border-style:solid;border-width:2px 2px 0 0;color:#005594;height:10px;margin-left:10px;margin-right:7px;position:relative;transform:rotate(135deg);width:12px}.EmbeddedWatchlist-dropdown{background:#fff;box-shadow:1px 4px 16px #00000029;padding:0 10px;position:absolute;top:-18px;width:200px;z-index:2}.EmbeddedWatchlist-watchlistDropdownLink,.EmbeddedWatchlist-watchlistTools{border-bottom:1px solid #ccc;color:#424242;cursor:pointer;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:600;letter-spacing:.05em;line-height:15px;max-height:25px;overflow:hidden;padding-bottom:5px;padding-top:5px;text-align:left;text-overflow:ellipsis;white-space:nowrap;width:100%;word-break:break-word}.EmbeddedWatchlist-watchlistDropdownLink.EmbeddedWatchlist-activeWatchlist,.EmbeddedWatchlist-watchlistTools.EmbeddedWatchlist-activeWatchlist{color:#336aa0}.EmbeddedWatchlist-addIcon{fill:#005594}.EmbeddedWatchlist-watchlistDropdownLink:focus,.EmbeddedWatchlist-watchlistDropdownLink:hover{color:#002f6c}.EmbeddedWatchlist-selectedWatchlist{color:#005594}.EmbeddedWatchlist-watchlistTools a:last-of-type{border-bottom:0}.EmbeddedWatchlist-watchlistTools a:last-of-type:focus,.EmbeddedWatchlist-watchlistTools a:last-of-type:hover{color:#002f6c;text-decoration:none}.EmbeddedWatchlist-watchlistTools{align-items:center;border:none;display:flex;justify-content:space-between}.EmbeddedWatchlist-watchlistTools:focus .EmbeddedWatchlist-watchlistDropdownLink{color:#005594;text-decoration:none}.EmbeddedWatchlist-watchlistTools a{color:#005594}.EmbeddedWatchlist-watchlistTools .EmbeddedWatchlist-watchlistDropdownLink{padding:unset}.EmbeddedWatchlist-watchlistTools .EmbeddedWatchlist-watchlistDropdownLink:hover{color:#171717}.EmbeddedWatchlist-ghostDropdownCloser{bottom:0;left:0;position:fixed;right:0;top:0;z-index:1}.EmbeddedWatchlist-addWatchlistContainer,.EmbeddedWatchlist-errorContainer{align-items:center;background:#f1f1f1;display:flex;flex-direction:column;height:240px;justify-content:center}@media (max-width:1339px){.EmbeddedWatchlist-addWatchlistContainer,.EmbeddedWatchlist-errorContainer{height:269px}}.EmbeddedWatchlist-addWatchlistContainer>p,.EmbeddedWatchlist-errorContainer>p{color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:600;letter-spacing:.05em;line-height:17px;margin-bottom:24px;margin-top:0;max-width:197px;text-align:center}.EmbeddedWatchlist-addWatchlistContainer>a,.EmbeddedWatchlist-errorContainer>a{align-items:center;background:#00a857;border-radius:3px;color:#fff;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;justify-content:center;letter-spacing:1.09091px;line-height:16px;min-height:40px;min-width:191px;text-transform:uppercase}.EmbeddedWatchlist-addWatchlistContainer>a:hover,.EmbeddedWatchlist-errorContainer>a:hover{background-color:#008456;color:#fff;text-decoration:none}.EmbeddedWatchlist-errorContainer>p{margin-bottom:unset;margin-top:unset}.EmbeddedWatchlist-linkContainer{display:flex;font-size:12px;font-style:normal;font-weight:500;justify-content:flex-end;line-height:15px;margin-right:10px;margin-top:13px}.EmbeddedWatchlist-linkContainer a{align-items:center;color:#005594;display:flex}.EmbeddedWatchlist-linkContainer a>div{margin-right:3px;text-decoration:underline}.EmbeddedWatchlist-linkContainer a:hover,.EmbeddedWatchlist-linkContainer a:hover .icon-offsite-arrow{color:#002f6c}.EmbeddedWatchlist-linkContainer .icon-offsite-arrow{color:#336aa0;font-size:9px;font-weight:800}.EmbeddedWatchlist-tableOptions{align-items:baseline;display:flex;flex-direction:row;justify-content:flex-end;margin-bottom:12px}.EmbeddedWatchlist-tableOptions a,.EmbeddedWatchlist-tableOptions button{color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:500;line-height:15px;-webkit-text-decoration-line:underline;text-decoration-line:underline}.EmbeddedWatchlist-tableOptions a:hover,.EmbeddedWatchlist-tableOptions button:hover{color:#002f6c}.EmbeddedWatchlist-tableOptions a:hover svg,.EmbeddedWatchlist-tableOptions button:hover svg{fill:#002f6c}.EmbeddedWatchlist-tableOptions a svg,.EmbeddedWatchlist-tableOptions button svg{margin-left:5px}.EmbeddedWatchlist-tableOptions a:first-child{margin-right:10px}.EmbeddedWatchlist-notificationContainer{right:0;top:86px}.EmbeddedWatchlist-notificationContainer .EmbeddedWatchlist-notification{background-color:#2077b6;border-radius:3px;box-shadow:0 1px 3px 1px #00000014;color:#fff;font-weight:700;line-height:16px;padding:10px;width:224px}.EmbeddedWatchlist-notificationContainer .EmbeddedWatchlist-notification.EmbeddedWatchlist-error{background-color:#ce2b2b;width:204px}.ArticleGate-proGate{display:flex;justify-content:flex-end;margin-bottom:50px;margin-left:0;padding-bottom:50px;position:relative;width:100%}.ArticleGate-proGate:before{background:linear-gradient(180deg,#fff0,#fff);bottom:calc(100% + 30px);content:"";height:160px;position:absolute;width:100%}.ArticleGate-proGate .ArticleGate-spacer{overflow:hidden;width:100%}@media (min-width:760px){.ArticleGate-proGate{margin-bottom:40px;padding-bottom:0}.ArticleGate-proGate:before{height:135px}.ArticleGate-proGate .ArticleGate-spacer{margin-left:16.66667%}}@media (min-width:1020px){.ArticleGate-proGate{margin-bottom:50px}.ArticleGate-proGate:before{height:105px}.ArticleGate-proGate .ArticleGate-spacer{margin-left:calc(14.28571% + 4.28571px)}}.ArticleGate-pianoGateWebview{position:relative}.ArticleGate-pianoGateWebview:before{background:linear-gradient(180deg,#fff0,#fff);bottom:calc(100% + 30px);content:"";height:160px;position:absolute;width:100%}@media (prefers-color-scheme:dark){.ArticleGate-pianoGateWebview:before{background:linear-gradient(180deg,#0000,#000)}}.ArticleGate-dynamicPaywall{display:flex;margin-bottom:50px}.ArticleGate-dynamicPaywall:before{background:none}.ArticleGate-dynamicPaywall .ArticleGate-spacer{overflow:hidden;width:100%}@media (min-width:760px){.ArticleGate-dynamicPaywall{margin-bottom:40px;padding-bottom:0}.ArticleGate-dynamicPaywall .ArticleGate-spacer{margin-left:16.66667%}}@media (min-width:1020px){.ArticleGate-dynamicPaywall{margin-bottom:50px}.ArticleGate-dynamicPaywall .ArticleGate-spacer{margin-left:calc(14.28571% + 4.28571px)}}.UpdatePill-updatePill{align-items:center;background:#ce2b2b;border-radius:14px;color:#fff;cursor:pointer;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;height:28px;justify-content:center;line-height:17px;margin-right:7.78px;pointer-events:auto;-webkit-user-select:none;user-select:none;width:120px}.UpdatePill-displayText{margin-left:7.78px}.BackToTopPill-pillContainer{align-items:center;background:#fff;border:2px solid #27313c;border-radius:60px;color:#27313c;cursor:pointer;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;height:28px;justify-content:center;line-height:17px;pointer-events:auto;-webkit-user-select:none;user-select:none;width:120px}.BackToTopPill-pillContainer svg{fill:#27313c}.BackToTopPill-backPillStickyPosition{align-items:center;display:block;display:flex;justify-content:center;pointer-events:none;position:sticky;right:0;top:0;z-index:95}.BackToTopPill-backPillStickyPosition .BackToTopPill-backPillVerticalOffset{pointer-events:none;position:relative;top:10px}.BackToTopPill-displayText{margin-left:5.78px;margin-top:-1px;padding-right:2px}.LiveCommentaryFeed-scrollContainer{height:100%;overflow-x:hidden;overflow-y:auto;position:relative;width:100%}.LiveCommentaryFeed-scrollContainer .LiveCommentaryFeed-fade:before{box-shadow:0 0 93px 93px #fff;content:"";display:block;height:.1px;pointer-events:none;position:sticky;top:100%;width:100%;z-index:1}@media (min-width:760px){.LiveCommentaryFeed-scrollContainer .LiveCommentaryFeed-fade:before{box-shadow:0 0 76px 76px #fff}}@media (min-width:1020px){.LiveCommentaryFeed-scrollContainer .LiveCommentaryFeed-fade:before{box-shadow:0 0 93px 93px #fff}}.LiveCommentaryFeed-slate,.LiveCommentaryFeed-slate a{color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:18px;font-style:normal;font-weight:600;line-height:24px}.LiveCommentaryFeed-slate{align-items:center;background-color:#f8f8f8;border:1px solid #d9d9d9;display:flex;flex-direction:column;height:100%;justify-content:center;padding:18px;text-align:center}.LiveCommentaryFeed-slate a{text-decoration:underline}.LiveCommentaryFeed-slate a:hover{color:#00a857}.LiveCommentaryFeed-slateContainer{border-top:3px solid #9e9e9e;height:120px}.LiveCommentaryFeed-slateContainer p{font-size:12px;line-height:20px;margin:0}.LiveCommentaryFeed-slateContainer p a{font-size:12px}.LiveCommentaryFeed-slateContainer p:first-child{font-size:14px}.LiveCommentaryFeed-slateContainer p:not(:first-child):not(:last-child){margin-top:8px}.LiveCommentaryFeed-slateContainer p:last-child{line-height:22px;margin-top:8px}@media (min-width:760px){.LiveCommentaryFeed-slateContainer p{font-size:16px;line-height:36px}.LiveCommentaryFeed-slateContainer p a{font-size:16px}.LiveCommentaryFeed-slateContainer p:first-child{font-size:18px;line-height:24px}.LiveCommentaryFeed-slateContainer p:not(:first-child):not(:last-child){margin-top:unset}.LiveCommentaryFeed-slateContainer p:last-child{line-height:28px}}@media (min-width:1020px){.LiveCommentaryFeed-slateContainer{margin-top:unset}.LiveCommentaryFeed-slateContainer p:not(:first-child):not(:last-child){line-height:58px}}@media (min-width:760px){.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-offline{height:180px}}@media (min-width:1020px){.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-offline{height:302px}}@media (min-width:1340px){.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-offline{height:425px}}.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-coverageEnded{height:0;overflow:visible;position:sticky;top:0;transform:translateY(-62px);z-index:90}.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-coverageEnded .LiveCommentaryFeed-slate{height:62px}@media (min-width:760px){.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-coverageEnded{transform:translateY(-120px)}.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-coverageEnded .LiveCommentaryFeed-slate{height:120px}}.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-shadow .LiveCommentaryFeed-slate{box-shadow:0 6px 4px -4px #c4c4c4}.LiveCommentaryFeed-coverageEndedFeedWrapper{padding-top:62px}@media (min-width:760px){.LiveCommentaryFeed-coverageEndedFeedWrapper{padding-top:120px}}.LiveCommentaryHeader-liveUpdatesPill{height:28px;margin-bottom:12px;text-align:center;width:142px}.LiveCommentaryHeader-liveUpdatesPill .LiveCommentaryHeader-liveUpdatesPillContent{background:#002f6c;color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-weight:600;height:100%;line-height:28px;margin:0;width:100%}.LiveCommentaryHeader-timestampContainer{align-items:baseline;height:18px;width:288px}@media (max-width:759px){.LiveCommentaryHeader-timestampContainer{flex-direction:column;margin-bottom:16px}}.LiveCommentaryHeader-liveCommentaryHeader{position:relative}.LiveCommentaryHeader-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(100% - 30px);max-width:100%;min-width:calc(100% - 30px);padding-left:2px;position:relative}@media (min-width:760px){.LiveCommentaryHeader-wrapper{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.LiveCommentaryHeader-wrapper{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.LiveCommentaryHeader-wrapper{max-width:100%;min-width:100%}}@media (min-width:1340px){.LiveCommentaryHeader-wrapper{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:760px){.LiveCommentaryHeader-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.LiveCommentaryHeader-wrapper{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.LiveCommentaryHeader-wrapper{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.LiveCommentaryHeader-wrapper{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.LiveCommentaryHeader-wrapper{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.LiveCommentaryHeader-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(88.88889% - 3.33333px);min-width:calc(88.88889% - 3.33333px)}}@media (min-width:1340px){.LiveCommentaryHeader-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(72.72727% + 21.81818px);min-width:calc(72.72727% + 21.81818px);padding-right:70px}}.LiveCommentaryHeader-headerContentContainer{margin:0 auto;position:relative}@media (min-width:760px){.LiveCommentaryHeader-headerContentContainer{padding:0}}@media (min-width:1020px){.LiveCommentaryHeader-headerContentContainer{max-width:960px}}@media (min-width:1340px){.LiveCommentaryHeader-headerContentContainer{max-width:1290px}}.LiveCommentaryHeader-liveBlogTimeStamp>div,.LiveCommentaryHeader-time,.LiveCommentaryHeader-timeHidden{color:#747474;font-size:11px;font-weight:600;letter-spacing:1.2px;margin-bottom:4px;margin-right:4px;text-transform:uppercase}.LiveCommentaryHeader-liveBlogTimeStamp>div time,.LiveCommentaryHeader-time time,.LiveCommentaryHeader-timeHidden time{white-space:nowrap}@media (min-width:760px){.LiveCommentaryHeader-liveBlogTimeStamp>div,.LiveCommentaryHeader-time,.LiveCommentaryHeader-timeHidden{font-size:12px;margin-bottom:6px}}.LiveCommentaryHeader-timeHidden{opacity:1}.LiveCommentaryHeader-datetimeDivider:before{content:"•";display:inline-block;padding:0 3px}.LiveCommentaryHeader-title{color:#171717;font-family:Proxima Nova,sans-serif;font-size:16px;font-style:normal;font-weight:700;letter-spacing:0;line-height:20px;margin:0 0 1px}@media (min-width:760px){.LiveCommentaryHeader-title{font-size:28px;line-height:32px;margin:0 0 6px}}@media (max-width:759px){.LiveCommentaryHeader-about.LiveCommentaryHeader-proUserAboutSection{display:none}}.LiveCommentaryHeader-about>div{color:#747474;font-family:Lyon,serif;font-size:18px;font-style:italic;font-weight:400;line-height:26px;margin-left:0;max-width:unset}@media (max-width:759px){.LiveCommentaryHeader-about>div{font-size:14px;line-height:20px}}.LiveCommentaryHeader-about>div p{margin-bottom:10px;margin-top:10px}.LiveCommentaryHeader-about>div p a{color:#747474;text-decoration:underline}.LiveCommentaryHeader-about>div p a:hover{color:#00a857}.PlayerSlate-slateOverlay{display:block;height:auto;top:0;width:100%;z-index:2}.PlayerSlate-clickable{cursor:pointer}.ProLivePlayer-container{aspect-ratio:16/9;background-color:#171717;width:100%}.ProLivePlayer-nofs .jw-icon-fullscreen{display:none!important}#jw-cnbc-live-stream-player .jw-text-live:before{color:#ce2b2b}#jw-cnbc-live-stream-player .jw-text-live.jw-dvr-live:before{color:#fff}#jw-cnbc-live-stream-player .jw-text-live.jw-dvr-live{color:#747474}#jw-cnbc-live-stream-player .jw-slider-time .jw-progress{background:#f2f2f2}.LiveCommentaryPlayer-container{background-color:#171717;left:0;padding-top:56.25%;position:relative;top:0;width:100%}@media (max-width:1019px){.LiveCommentaryPlayer-container{margin-bottom:16px}}.LiveCommentaryPopularQuotes-tableContainer{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='100%25' height='100%25' fill='none' stroke='%239E9E9EFF' stroke-dasharray='1, 2' stroke-linecap='square'/%3E%3C/svg%3E");display:flex;flex-direction:column;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:800;height:100%;padding:30px 18px}.LiveCommentaryPopularQuotes-title{border-top:3px solid #cfd8e2;color:#002f6c;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-style:bold;font-weight:700;line-height:20px;max-width:365px;padding:4px 0 20px}.ProLiveCommentary-outerContainer{align-items:center;display:flex;flex-direction:column;margin:0 auto;max-width:1290px;min-height:900px;padding:20px;width:100%}@media (min-width:760px){.ProLiveCommentary-outerContainer{padding:40px 20px}}@media (min-width:1020px){.ProLiveCommentary-outerContainer{padding:40px 0}}.ProLiveCommentary-nonProMainContainer,.ProLiveCommentary-proMainContainer{display:flex;flex-direction:column;width:100%}@media (min-width:1020px){.ProLiveCommentary-nonProMainContainer,.ProLiveCommentary-proMainContainer{flex-direction:row;margin:0 auto;max-width:960px}}@media (min-width:1340px){.ProLiveCommentary-nonProMainContainer,.ProLiveCommentary-proMainContainer{max-width:1290px}}.ProLiveCommentary-nonProMainContainer{flex-direction:column}.ProLiveCommentary-leftColumn{padding:0;width:100%}@media (min-width:1020px){.ProLiveCommentary-leftColumn{width:555px}}@media (min-width:1340px){.ProLiveCommentary-leftColumn{width:770px}}.ProLiveCommentary-rightColumn{height:700px;margin:0 auto;padding:0;width:100%}@media (min-width:1020px){.ProLiveCommentary-rightColumn{height:651px;margin:0 0 20px 26px;width:410px}}@media (min-width:1340px){.ProLiveCommentary-rightColumn{height:794px;width:520px}}.ProLiveCommentary-title{color:#171717;font-family:Proxima Nova,sans-serif;font-size:16px;font-style:normal;font-weight:700;letter-spacing:0;line-height:20px;margin:16px 0 12px}@media (min-width:760px){.ProLiveCommentary-title{font-size:28px;line-height:32px;margin:24px 0 12px}}.ProLiveCommentary-about>div{color:#747474;font-family:Lyon,serif;font-size:18px;font-style:italic;font-weight:400;line-height:26px;margin-left:0;max-width:unset}@media (max-width:759px){.ProLiveCommentary-about>div{font-size:14px;line-height:20px}}.ProLiveCommentary-about>div p{margin-bottom:10px;margin-top:10px}.ProLiveCommentary-about>div p a{color:#747474;text-decoration:underline}.ProLiveCommentary-about>div p a:hover{color:#00a857}@media (max-width:759px){.ProLiveCommentary-proMainContainer .ProLiveCommentary-about{display:none}}.ProLiveCommentary-headerAndMainContainer{display:flex;flex-direction:column;width:100%}.ProLiveCommentary-nonProTextContainer{width:100%}@media (min-width:1020px){.ProLiveCommentary-nonProTextContainer{max-width:648px}}@media (min-width:1340px){.ProLiveCommentary-nonProTextContainer{max-width:739px}}.ProLiveCommentary-nonProTextContainer .ProLiveCommentary-title{margin-top:0}@media (min-width:760px){.ProLiveCommentary-nonProTextContainer .ProLiveCommentary-title{margin-top:2px}}.ProLiveCommentary-nonProTextContainer .ProLiveCommentary-about{margin-bottom:-6px}@media (min-width:760px){.ProLiveCommentary-nonProTextContainer .ProLiveCommentary-about{margin-bottom:-2px}}.ProLiveCommentary-tableTitle{border-top:3px solid #cfd8e2;color:#002f6c;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-style:bold;font-weight:700;line-height:20px;padding:4px 0 20px}.ProLiveCommentary-symbolTablesContainer{display:flex;justify-content:space-between;margin-top:33px}.ProLiveCommentary-symbolTablesContainer>div:first-child{margin-right:9px}.ProLiveCommentary-symbolTablesContainer>div{flex-basis:0;flex-grow:1}@media (max-width:1019px){.ProLiveCommentary-symbolTablesContainer{display:none}}.ProLiveCommentary-symbolTablesContainer .ProLiveCommentary-popularQuotesContainer{margin-bottom:11px}@media (max-width:1339px){.ProLiveCommentary-symbolTablesContainer .ProLiveCommentary-popularQuotesContainer{height:269px}}.ProLiveCommentary-symbolTablesContainer .ProLiveCommentary-watchlistContainer{margin-bottom:11px}.ProLiveCommentary-symbolTablesContainer .ProLiveCommentary-popularQuotesContainer>div,.ProLiveCommentary-symbolTablesContainer .ProLiveCommentary-watchlistContainer>div{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='100%25' height='100%25' fill='none' stroke='%239E9E9EFF' stroke-dasharray='1, 2' stroke-linecap='square'/%3E%3C/svg%3E");padding:14px 18px}.PageBuilder-container{display:flex;flex-flow:column;height:calc(100vh - 110px);max-height:-webkit-fill-available;min-height:-webkit-fill-available;overflow:auto}.PageBuilder-container,.PageBuilder-container *{font-family:Proxima Nova,Helvetica,Arial,sans-serif!important}.PageBuilder-container .PageBuilder-filterManagerContainer{margin-bottom:132px;margin-top:-103px;order:2}.PageBuilder-container .PageBuilder-filterManagerContainer.PageBuilder-closed{height:0;opacity:0;position:fixed;top:1000px;visibility:hidden;width:0}@media screen and (max-width:1019px) and (orientation:landscape){.PageBuilder-container .PageBuilder-filterManagerContainer{margin-bottom:70px}}@media screen and (min-width:480px) and (orientation:portrait){.PageBuilder-container .PageBuilder-filterManagerContainer{margin-top:-120px}}@media (min-width:1020px){.PageBuilder-container .PageBuilder-filterManagerContainer{margin:0;order:1;padding:0}}.PageBuilder-container .PageBuilder-mainContentContainer{margin-bottom:70px;order:1;padding:20px 21px}@media screen and (min-width:480px) and (orientation:portrait){.PageBuilder-container .PageBuilder-mainContentContainer{padding:41px 41px 20px}}@media screen and (max-width:759px) and (orientation:landscape){.PageBuilder-container .PageBuilder-mainContentContainer{padding:20px 21px}}@media screen and (min-width:480px) and (orientation:portrait){.PageBuilder-container{height:calc(100vh - 170px);max-height:-webkit-fill-available;min-height:-webkit-fill-available;overflow:hidden}}@media (min-width:1020px){.PageBuilder-container{flex-flow:row;height:auto;margin-bottom:0;overflow-x:hidden}.PageBuilder-container .PageBuilder-filterManagerContainer{animation:PageBuilder-slideIn .35s ease-out}.PageBuilder-container .PageBuilder-filterManagerContainer.PageBuilder-closed{animation:PageBuilder-slideOutPanel .35s ease-out;animation-fill-mode:forwards;opacity:1;position:static;visibility:visible}.PageBuilder-container .PageBuilder-mainContentContainer{flex:auto;margin-left:50px;order:2;padding:0 38px 0 16px;position:relative}.PageBuilder-container .PageBuilder-ep{animation:PageBuilder-slideOutMainContent .35s ease-out}.PageBuilder-container .PageBuilder-defaultViewOpen{animation:PageBuilder-slideIn .35s ease-out;padding:0 20px 0 16px}.PageBuilder-container .PageBuilder-defaultViewOpenSelected{animation:PageBuilder-slideIn .35s ease-out;padding:0 0 0 16px}.PageBuilder-container .PageBuilder-defaultViewCloseSelected{animation:PageBuilder-slideOutMainContent .35s ease-out;padding:0 0 0 16px}}@media (min-width:1340px){.PageBuilder-container .PageBuilder-mainContentContainer{padding:0 33px 0 16px}.PageBuilder-container .PageBuilder-defaultViewOpen{animation:PageBuilder-slideIn .35s ease-out;padding:0 23px 0 16px}.PageBuilder-container .PageBuilder-defaultViewOpenSelected{animation:PageBuilder-slideIn .35s ease-out;padding:0 0 0 16px}.PageBuilder-container .PageBuilder-ep{animation:PageBuilder-slideOutMainContent .35s ease-out}}@media (min-width:1850px){.PageBuilder-container .PageBuilder-mainContentContainer{padding:0 277px 0 237px}.PageBuilder-container .PageBuilder-defaultViewOpen{animation:PageBuilder-slideInWide .35s ease-out;padding:0 277px 0 16px}.PageBuilder-container .PageBuilder-defaultViewOpenSelected{animation:PageBuilder-slideInWide .35s ease-out;padding:0 0 0 16px}.PageBuilder-container .PageBuilder-defaultViewCloseSelected{animation:PageBuilder-slideOutMainContent .35s ease-out;padding:0 43px 0 16px}.PageBuilder-container .PageBuilder-ep{animation:PageBuilder-slideOutMainContentWide .35s ease-out;padding-left:237px}}@keyframes PageBuilder-slideIn{0%{transform:translateX(-300px)}to{transform:translateX(0)}}@keyframes PageBuilder-slideOutPanel{0%{transform:translateX(0)}to{transform:translateX(-300px)}}@keyframes PageBuilder-slideOutMainContent{0%{transform:translateX(300px)}to{transform:translateX(0)}}@keyframes PageBuilder-slideInWide{0%{transform:translateX(-100px)}to{transform:translateX(0)}}@keyframes PageBuilder-slideOutMainContentWide{0%{transform:translateX(100px)}to{transform:translateX(0)}}.StockScreenerPage-container{min-height:500px}.PortfolioNews-container{container-type:inline-size;container-name:outerCard;background-color:#fff;border-radius:4px;box-shadow:0 6px 24px 0 #82828226;color:#171717;flex:1;font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin-bottom:30px;padding:12px;width:100%}.PortfolioNews-header{align-items:center;display:flex;flex-direction:row;justify-content:space-between}.PortfolioNews-headerTitle{font-size:20px;font-weight:600;letter-spacing:.03px;line-height:26px}.PortfolioNews-ctaLinkContainer{align-items:center;color:#0053cf;display:flex;flex-direction:row;gap:8px}.PortfolioNews-ctaLinkContainer .PortfolioNews-chevronDownImage{fill:#0053cf}.PortfolioNews-ctaLinkContainer:focus,.PortfolioNews-ctaLinkContainer:hover{color:#001e5a}.PortfolioNews-ctaLinkContainer:focus .PortfolioNews-chevronDownImage,.PortfolioNews-ctaLinkContainer:hover .PortfolioNews-chevronDownImage{fill:#001e5a}.PortfolioNews-ctaTitle{font-size:12px;font-weight:600;letter-spacing:0;line-height:15px}.PortfolioNews-chevronDownImage{fill:#0053cf}.PortfolioNews-containerSubheader{color:#171717;font-size:12px;font-weight:500;line-height:16px;padding:20px 0}.PortfolioNews-asset{display:flex;flex-direction:row;padding:10px 0}.PortfolioNews-asset:not(:last-child){border-bottom:1px dashed #9e9e9e}.PortfolioNews-infoContainer{flex:1;padding-right:8px}.PortfolioNews-tag{color:#0053cf;font-size:12px;font-weight:700;letter-spacing:1.5px;line-height:16px;text-transform:uppercase}.PortfolioNews-tag:focus,.PortfolioNews-tag:hover{color:#001e5a}.PortfolioNews-articleTitle{-webkit-line-clamp:2;-webkit-box-orient:vertical;color:#171717;display:-webkit-box;font-weight:500;letter-spacing:.03px;margin-bottom:20px;max-width:100%;overflow:hidden}.PortfolioNews-articleTitle:hover{color:#171717;text-decoration:underline}.PortfolioNews-assetFooter{align-items:flex-start;display:flex;flex-direction:column;gap:12px;justify-content:flex-end;padding:0}.PortfolioNews-date{align-items:flex-end;color:#424242;display:flex;font-size:12px;font-weight:600;letter-spacing:1.5px;line-height:16px;text-transform:uppercase;white-space:nowrap}.PortfolioNews-videoIndicator{background-color:#fcb700;display:inline-block;height:16px;margin-bottom:4px;margin-right:4px;position:relative;vertical-align:middle;width:16px}.PortfolioNews-videoIndicator:after{border-bottom:3px solid #0000;border-left:5px solid #fff;border-top:3px solid #0000;content:"";height:0;left:6px;position:absolute;top:5px;width:0}.PortfolioNews-investingClubPill,.PortfolioNews-proPill{bottom:-2px!important}.PortfolioNews-imageContainer{height:78px;max-height:78px;max-width:138.6px;min-height:78px;min-width:138.6px;overflow:hidden;width:138.6px}.PortfolioNews-imageContainer img{object-fit:cover;position:relative;top:50%;transform:translateY(-50%)}.PortfolioNews-bold{font-weight:600}.PortfolioNews-forMore{padding-top:50px}.PortfolioNews-forMoreLink{color:#0053cf;font-weight:600}.PortfolioNews-forMoreLink:focus,.PortfolioNews-forMoreLink:hover{color:#001e5a}@container outerCard (max-width: 385px){.PortfolioNews-imageContainer{display:none}}.PortfolioMovers-container{background-color:#fff;border-radius:4px;box-shadow:0 6px 24px 0 #82828226;color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin-bottom:30px;padding:12px;width:100%}@media (min-width:760px){.PortfolioMovers-containerHeader{align-items:center;display:flex;justify-content:space-between}}.PortfolioMovers-headerTitle{color:#171717;font-size:20px;font-weight:600;line-height:26px}.PortfolioMovers-headerTime{color:#424242;font-size:10px;font-weight:600}@media (max-width:759px){.PortfolioMovers-headerTime{padding-top:20px}}.PortfolioMovers-listsContainer{display:flex;flex-wrap:wrap;gap:16px;padding-top:20px}.PortfolioMovers-moversList{display:flex;flex:1;flex-direction:column;min-width:240px}.PortfolioMovers-tableHeader{font-size:14px;font-weight:600;line-height:18px;padding:8px}.PortfolioMovers-tableContainer{width:100%}.PortfolioMovers-dataContainer{background:#f8f8f8;padding:8px}.PortfolioMovers-dataContainer:nth-child(2n){background:#fff}.PortfolioMovers-dataRow{display:flex;justify-content:space-between}.PortfolioMovers-dataRow:first-child{padding-bottom:8px}.PortfolioMovers-symbolName{color:#0053cf;cursor:pointer;font-size:12px;font-weight:500;line-height:16px}.PortfolioMovers-symbolName:focus,.PortfolioMovers-symbolName:hover{color:#001e5a}.PortfolioMovers-companyName{font-size:12px;overflow:hidden;padding-right:8px;text-overflow:ellipsis;white-space:nowrap}.PortfolioMovers-triangle-DOWN,.PortfolioMovers-triangle-UP{border-left:4px solid #0000;border-right:4px solid #0000;height:0;position:relative;width:0}.PortfolioMovers-triangle-UP{border-bottom:8px solid #0a6630;bottom:11px}.PortfolioMovers-triangle-DOWN{border-top:8px solid #ce2b2b;top:11px}.PortfolioMovers-quoteChange{font-size:12px;font-weight:500;line-height:16px}.PortfolioMovers-quoteChange-UP{color:#0a6630}.PortfolioMovers-quoteChange-DOWN{color:#ce2b2b}.PortfolioMovers-changeValue{padding:0 5px 0 8px}.PortfolioMovers-changeValue:empty{padding:0 0 0 8px}.PortfolioMovers-lastPrice{color:#171717;font-size:12px;font-weight:600;line-height:16px}.PortfolioCalendarEvent-eventRow{background-color:#f8f8f8;border-radius:4px;display:block;font-size:12px;height:33px;line-height:33px;overflow:hidden;padding:0 10px;text-align:left;text-overflow:ellipsis;white-space:nowrap;width:100%}.PortfolioCalendarEvent-eventRow:hover{background-color:#f1f1f1}.PortfolioCalendarEvent-eventRow:not(:last-child){margin-bottom:2px}.PortfolioCalendarEvent-categoryDot{border-radius:100%;display:inline-block;height:8px;margin-right:4px;pointer-events:none;vertical-align:middle;width:8px}.PortfolioCalendarEvent-symbol{color:#171717;display:inline-block;font-size:14px;font-weight:500;padding:0 10px;vertical-align:middle;width:80px}.PortfolioCalendarEvent-label{color:#171717;display:inline-block;overflow:hidden;text-overflow:ellipsis;text-transform:capitalize;vertical-align:middle;white-space:nowrap}.PortfolioCalendarFilterButton-filterButton{background-color:#fff;border:1px solid #424242;border-radius:100px;color:#171717;font-size:12px;height:20px;margin:5px 0;padding:0 8px}.PortfolioCalendarFilterButton-filterButton[data-selected=true]{background-color:#171717;color:#fff}.PortfolioCalendarFilterButton-filterButton:disabled{cursor:default}.PortfolioCalendarFilterButton-filterButton:not(:last-child){margin-right:5px}.PortfolioCalendarFilterButton-categoryDot{border-radius:100%;display:inline-block;height:8px;margin-right:4px;pointer-events:none;width:8px}.PortfolioCalendar-container{container-type:inline-size;container-name:outerCard;background-color:#fff;border-radius:4px;box-shadow:0 6px 24px 0 #82828226;color:#171717;flex:1;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:0;margin-bottom:30px;padding:12px;width:100%}.PortfolioCalendar-containerHeader{color:#171717;font-size:20px;font-weight:600;line-height:26px}.PortfolioCalendar-containerSubheader{color:#171717;font-size:12px;font-weight:500;line-height:16px;padding:20px 0}.PortfolioCalendar-calendarWrapper,.PortfolioCalendar-listWrapper{display:inline-block;font-size:12px;height:488px;vertical-align:top;width:50%}.PortfolioCalendar-listWrapper{padding-left:10px;padding-top:40px;position:relative}.PortfolioCalendar-filterRow{height:48px;min-width:360px;overflow-x:auto;overflow-y:hidden;padding-left:10px;position:absolute;right:0;top:0;white-space:nowrap;width:100%}.PortfolioCalendar-list{font-size:16px;height:100%;overflow-x:hidden;overflow-y:auto;position:relative}.PortfolioCalendar-emptyList{padding:20px 10px}.PortfolioCalendar-listItem{line-height:28px;padding:10px 0;text-transform:capitalize}.PortfolioCalendar-listItem:last-child:not(:only-child){margin-bottom:360px}.PortfolioCalendar-listItemHeader{height:36px;line-height:20px;padding:8px 10px}.PortfolioCalendar-listItemDate{font-weight:600}.PortfolioCalendar-eventCount{border:1px solid #008456;border-radius:100%;color:#008456;float:right;font-size:12px;font-weight:500;height:20px;line-height:18px;text-align:center;width:20px}.PortfolioCalendar-muiCalendar{height:auto!important;max-height:none!important;width:auto!important}.PortfolioCalendar-muiCalendarHeader{margin-bottom:20px!important;margin-top:0!important;padding:0!important}.PortfolioCalendar-muiCalendarHeader div:empty{width:0!important}.PortfolioCalendar-muiCalendarHeader div[role=presentation]{margin-right:0!important;width:130px!important}.PortfolioCalendar-muiCalendarHeader button[title="Next month"],.PortfolioCalendar-muiCalendarHeader button[title="Previous month"]{border-radius:50%!important;margin:0!important;padding:0!important}.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) button:not([aria-selected=true]):focus{background-color:inherit!important}.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) div[role=presentation]{min-height:360px!important}.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) div[role=rowgroup]{bottom:0!important;left:0!important;right:0!important;top:0!important}.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) div[role=row]:not(:last-child){margin-bottom:26px!important}.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) [role=gridcell]{margin:0!important}.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) [role=columnheader]{min-width:36px!important}.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) [role=columnheader],.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) span:has([role=gridcell]){margin:0!important}.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) [role=columnheader]:not(:last-child),.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) span:has([role=gridcell]):not(:last-child){margin-right:calc(14% - 34px)!important}@container outerCard (max-width: 568px){.PortfolioCalendar-calendarWrapper{height:auto;width:100%}.PortfolioCalendar-listWrapper{padding-left:0;width:100%}.PortfolioCalendar-filterRow{min-width:0;padding-left:0}.PortfolioCalendar-listItem:last-child:not(:only-child){margin-bottom:0}.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) *{display:none}}.PortfolioHoldingsTable-container{background-color:#fff;border-radius:4px;box-shadow:0 6px 24px 0 #82828226;color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin-bottom:30px;min-height:304px;padding:12px;width:100%}.PortfolioHoldingsTable-containerHeader{color:#171717;font-size:20px;font-weight:600;line-height:26px}.PortfolioHoldingsTable-containerSubheader{color:#171717;font-size:12px;font-weight:500;line-height:16px;padding:20px 0}.PortfolioOverview-container{color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin:30px 0}.PortfolioOverview-containerHeader{font-size:28px;font-weight:700;line-height:32px}.PortfolioOverview-containerSubheader{color:#424242;font-size:12px;font-weight:500;line-height:16px;padding:20px 0 40px}.PortfolioOverview-aggregateHeader{font-size:16px;font-weight:400;line-height:20px;padding-bottom:20px;text-transform:uppercase}.PortfolioOverview-aggregateContainer{padding-bottom:80px}.PortfolioOverview-aggregateColumn{display:inline-block;vertical-align:top}.PortfolioOverview-aggregateMarketValue{font-size:56px;font-weight:500;line-height:60px}.PortfolioOverview-aggregateMarketValueText{color:#424242;font-size:16px;font-weight:500;line-height:16px;text-align:right}.PortfolioOverview-aggregateChangePercent{font-size:24px;font-weight:500;line-height:30px;padding-left:40px;vertical-align:middle}.PortfolioOverview-aggregateChangePercentText{font-size:16px;font-weight:500;letter-spacing:2.5px;line-height:27px;padding-left:10px;vertical-align:middle}.PortfolioOverview-listContainer{color:#171717;display:flex;flex-direction:row;gap:15px;overflow-x:auto;overflow-y:hidden;padding-bottom:10px;width:100%}.PortfolioOverview-sticky{background-color:#f8f8f8;display:flex;flex-direction:column;justify-content:center;left:0;position:sticky;z-index:2}.PortfolioOverview-sticky:after{background-color:inherit;content:"";height:10px;left:0;position:absolute;top:100%;width:100%}.PortfolioOverview-linkAccountButton{color:#0a6630;cursor:pointer;display:inline-block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:30px;font-weight:500;height:34px;width:34px}.PortfolioOverview-portfolioCardContainer{background:#fff;border:1px solid #0000;border-radius:8px;display:flex;flex-direction:row;flex-shrink:0;gap:8px;min-width:200px;padding:8px;position:relative;text-align:left;white-space:nowrap}.PortfolioOverview-portfolioCardContainer:after{background-color:initial;border-radius:12px;bottom:-8px;content:"";display:block;height:4px;left:0;pointer-events:none;position:absolute;width:100%}.PortfolioOverview-portfolioCardContainer:disabled{box-shadow:0 6px 24px 0 #82828226;color:#171717;cursor:default}.PortfolioOverview-portfolioCardContainer:disabled:after{background-color:#0a6630}.PortfolioOverview-portfolioCardContainer:hover:not(:disabled){border-color:#9e9e9e;box-shadow:0 2px 4px 0 #82828233}.PortfolioOverview-portfolioCardContainer:hover:not(:disabled):after{background-color:#9e9e9e}.PortfolioOverview-brokerageIcon{height:24px;position:relative;top:50%;transform:translateY(-50%);width:24px}.PortfolioOverview-portfolioCardColumn{display:flex;flex-direction:column;font-size:12px;gap:8px;line-height:16px}.PortfolioOverview-portfolioCardColumn:last-child{margin-left:auto}.PortfolioOverview-brokerageName{max-width:100px;overflow:hidden;text-overflow:ellipsis}.PortfolioOverview-portfolioCardMarketValue{font-size:16px;font-weight:500}.PortfolioOverview-portfolioCardChange{font-weight:500}.PortfolioOverview-portfolioCardToday{font-size:10px;font-weight:600;letter-spacing:1.5px}.PortfolioOverview-positiveChange{color:#0a6630}.PortfolioOverview-negativeChange{color:#ce2b2b}.SegmentDataAllocation-segment{display:flex;margin-bottom:12px}.SegmentDataAllocation-tileSegment{background:#0471e6;border-radius:2px;display:flex;height:16px;width:16px}.SegmentDataAllocation-segmentName{color:#171717;font-size:12px;font-weight:700;line-height:16px;margin-left:10px;text-transform:uppercase}.SegmentDataAllocation-segmentPercentContainer,.SegmentDataAllocation-segmentPercentData{color:#171717;font-size:12px;font-weight:700;line-height:16px;margin-left:auto}.SegmentDataAllocation-segmentPercentContainer{display:flex;gap:16px}.SegmentDataAllocation-sectorPercentData{color:#171717;font-size:12px;font-weight:700;line-height:16px}.SegmentDataAllocation-chevron{background:#171717;cursor:pointer;height:8px;mask-image:url(https://static-redesign.cnbcfm.com/dist/6d2e721986ddae3d97e6.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/6d2e721986ddae3d97e6.svg);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;position:relative;top:3.5px;width:15px}.SegmentDataAllocation-chevronOpen{transform:scaleY(-1)}.SegmentDataAllocation-disabledTile{background-color:#878eb6;cursor:default}.SegmentDataAllocation-disabled{color:#747474}.SegmentDataAllocation-industryTile{margin-left:8px}.DataTileGrid-gridContainer{container-type:inline-size;container-name:gridDataContainer;align-content:flex-start;display:flex;flex-direction:column;flex-wrap:wrap;height:70px;justify-content:flex-start;margin:0 auto 20px;max-width:386px}.DataTileGrid-gridItem{align-items:center;background-color:#ccc;display:flex;height:12px;justify-content:center;margin:1px;text-align:center;width:17px}@container gridDataContainer (max-width: 300px){.DataTileGrid-gridItem{height:12px;width:12px}}.Composition-container{background:#fff;margin-bottom:30px;padding:10px 12px 30px}.Composition-containerHeader{font-size:20px;font-weight:600;line-height:26px;padding-bottom:18px}.Composition-description{font-size:12px;font-weight:600;line-height:16px;padding-bottom:20px}.Composition-buttonContainer{display:flex;gap:12px;margin-bottom:20px}.Composition-buttonAssetSector{border:1px solid #001e5a;border-radius:100px;color:#001e5a;display:flex;font-size:12px;font-weight:400;line-height:16px;padding:2px 3px}.Composition-buttonAssetSector.Composition-selected,.Composition-buttonAssetSector:hover{background-color:#001e5a;color:#fff}.PortfolioLinkAccountGate-mainContainer{padding:40px 0}.PortfolioLinkAccountGate-leadContainer{background-image:url(https://static-redesign.cnbcfm.com/dist/66c912ab17167b75719a.svg);background-position:right 20px;background-repeat:no-repeat;box-shadow:0 6px 24px 0 #82828226;margin-bottom:40px;width:100%}.PortfolioLinkAccountGate-leadPropsContainer{display:flex;flex-direction:row;padding:65px 25px 0}.PortfolioLinkAccountGate-leadHeading{color:#101418;font-size:48px;font-weight:700;line-height:36px}.PortfolioLinkAccountGate-sublead{color:#424242;font-size:24px;font-weight:400;line-height:36px}.PortfolioLinkAccountGate-linkButton,.PortfolioLinkAccountGate-linkButtonFooter{background-color:#008456;border-radius:4px;color:#fff;font-size:18px;font-weight:700;height:50px;letter-spacing:.04em;line-height:18px;width:354px}.PortfolioLinkAccountGate-linkButton:hover,.PortfolioLinkAccountGate-linkButtonFooter:hover{background-color:#005034}.PortfolioLinkAccountGate-linkButtonFooter{width:100%}.PortfolioLinkAccountGate-leadHeadingContainer{display:flex;flex-basis:0;flex-direction:column;flex-grow:1;gap:40px;min-width:0}.PortfolioLinkAccountGate-leadLogo{align-items:center;display:flex;flex-basis:0;flex-grow:1;justify-content:center;min-width:0}.PortfolioLinkAccountGate-leadFooterContainer{align-items:flex-end;display:flex;flex-direction:column;gap:8px;margin-right:25px;padding-bottom:16px}.PortfolioLinkAccountGate-leadFooterLogoContainer{display:flex;flex-direction:row;gap:8px}.PortfolioLinkAccountGate-contentContainer{display:flex;flex-direction:column;gap:40px}.PortfolioLinkAccountGate-valuePropRowContainer{display:flex;flex-direction:row;gap:20px}.PortfolioLinkAccountGate-valuePropContainer{background-color:#fff;box-shadow:0 6px 24px 0 #82828226;display:flex;flex-basis:0;flex-direction:column;flex-grow:1;gap:24px;min-width:0}.PortfolioLinkAccountGate-valuePropHeading{align-items:center;color:#171717;display:flex;font-size:24px;font-weight:700;gap:8px;line-height:36px;padding:24px 24px 0}.PortfolioLinkAccountGate-valuePropDescription{color:#424242;font-size:16px;font-weight:500;line-height:20.8px;padding:24px 24px 0;text-align:left}.PortfolioLinkAccountGate-valuePropImageContainer{align-items:center;display:flex;height:168px;margin:auto}.PortfolioLinkAccountGate-valuePropLink{align-items:center;color:#101418;display:flex;flex-direction:row;font-size:16px;font-weight:600;gap:8px;justify-content:flex-end;letter-spacing:.03px;line-height:26px;margin:0 25px 25px 0}.PortfolioLinkAccountGate-valuePropImageContainer>img{width:100%}.PortfolioContainer-containerFluidWidths{margin:0 auto;width:100%}@media (min-width:1020px){.PortfolioContainer-containerFluidWidths{max-width:960px}}@media (min-width:1340px){.PortfolioContainer-containerFluidWidths{max-width:1290px}}.PortfolioContainer-page{display:block;margin-bottom:25px;overflow:visible}@media (min-width:760px){.PortfolioContainer-page{margin-bottom:28px}}.PortfolioContainer-pageWrapper{margin:0 auto;max-width:100%}@media (min-width:760px){.PortfolioContainer-pageWrapper{max-width:678px}}@media (min-width:1020px){.PortfolioContainer-pageWrapper{max-width:960px}}@media (min-width:1340px){.PortfolioContainer-pageWrapper{max-width:1290px}}@media (min-width:760px){.PortfolioContainer-pageWrapper{max-width:100%!important}}.PortfolioContainer-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.PortfolioContainer-pageRow{padding-left:0;padding-right:0}}@media (min-width:1020px){.PortfolioContainer-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}}@media (min-width:1020px) and (min-width:760px){.PortfolioContainer-pageRow{padding-left:0;padding-right:0}}@media (max-width:1019px){.PortfolioContainer-pageRow{margin:0;padding:0}}@media (min-width:360px) and (max-width:759px){.PortfolioContainer-pageRow.PortfolioContainer-containerFluidWidths{padding:0 21px}}@media (min-width:760px) and (max-width:1019px){.PortfolioContainer-pageRow.PortfolioContainer-containerFluidWidths{padding:0 45px}}.PortfolioContainer-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.PortfolioContainer-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.PortfolioContainer-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.PortfolioContainer-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.PortfolioContainer-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.PortfolioContainer-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.PortfolioContainer-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.PortfolioContainer-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}.PortfolioContainer-containerFluidWidths .PortfolioContainer-col{max-width:678px!important;min-width:678px}}@media (min-width:760px){.PortfolioContainer-col-3{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.PortfolioContainer-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.PortfolioContainer-col-3{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.PortfolioContainer-col-3{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.PortfolioContainer-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.PortfolioContainer-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}.PortfolioContainer-col-3:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.PortfolioContainer-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}@media (min-width:760px){.PortfolioContainer-col-4{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.PortfolioContainer-col-4{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.PortfolioContainer-col-4{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.PortfolioContainer-col-4{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.PortfolioContainer-col-4{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.PortfolioContainer-col-4{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}.PortfolioContainer-col-4:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.PortfolioContainer-col-4{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}}@media (min-width:760px){.PortfolioContainer-col-6{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.PortfolioContainer-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.PortfolioContainer-col-6{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.PortfolioContainer-col-6{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.PortfolioContainer-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.PortfolioContainer-col-6{flex-grow:0;flex-shrink:0;margin-left:0;margin-right:0;max-width:calc(44.44444% - 16.66667px);min-width:calc(44.44444% - 16.66667px)}.PortfolioContainer-col-6:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.PortfolioContainer-col-6{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(50% - 15px);min-width:calc(50% - 15px)}}@media (min-width:760px){.PortfolioContainer-col-8{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.PortfolioContainer-col-8{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.PortfolioContainer-col-8{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.PortfolioContainer-col-8{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.PortfolioContainer-col-8{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.PortfolioContainer-col-8{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.PortfolioContainer-col-8:last-child{margin-right:0}}@media (min-width:1340px){.PortfolioContainer-col-8{flex-grow:0;flex-shrink:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}}@media (min-width:760px){.PortfolioContainer-col-9{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.PortfolioContainer-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.PortfolioContainer-col-9{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.PortfolioContainer-col-9{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.PortfolioContainer-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.PortfolioContainer-col-9{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.PortfolioContainer-col-9:last-child{margin-right:0}}@media (min-width:1340px){.PortfolioContainer-col-9{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}}@media (min-width:760px){.PortfolioContainer-col-12{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.PortfolioContainer-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.PortfolioContainer-col-12{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.PortfolioContainer-col-12{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.PortfolioContainer-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.PortfolioContainer-col-12{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.PortfolioContainer-col-12:last-child{margin-right:0}}@media (min-width:1340px){.PortfolioContainer-col-12{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}.PortfolioContainer-col-full{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.PortfolioContainer-col-full .MyComponentName-container{width:100vw}@media (min-width:1340px){.PortfolioContainer-col-full .MyComponentName-container{max-width:none}}.PortfolioContainer-col-full:last-child{margin-right:0}.PortfolioPage-pageBackground{background-color:#f8f8f8}.PortfolioPage-container{min-height:500px}@media (min-width:1020px){.PortfolioPage-container{margin:0 auto;max-width:100%}}@media (min-width:1020px) and (min-width:760px){.PortfolioPage-container{max-width:678px}}@media (min-width:1020px) and (min-width:1020px){.PortfolioPage-container{max-width:960px}}@media (min-width:1020px) and (min-width:1340px){.PortfolioPage-container{max-width:1290px}}.omega_tapToUnmuteBtn{align-items:center;background:#fcb700;border:0;display:flex;height:44px;justify-content:center;margin:15px 0 0 15px;padding:0;width:44px;z-index:var(--z-index-tap-to-unmute);.omega_tapToUnmuteBtn-icon{color:#071d39;height:22px;width:22px}}.omega_rackWithDVR{align-items:center;bottom:0;box-sizing:border-box;display:grid;gap:10px 25px;grid-template-columns:repeat(5,auto) 1fr repeat(2,auto);opacity:0;padding:15px;position:fixed;transition:var(--fade-transition);width:100%;z-index:var(--z-index-control-rack);&.omega_rackWithDVR-show{opacity:1;transition:none}.omega_slider{&.omega_slider-scrubber{grid-column:1/-1;grid-row:1;justify-self:center}}.omega_btnSubtitle,.omega_btnSubtitleVOD,.omega_playPauseDesktop,.omega_playPauseMobile,.omega_rewind{align-items:center;background:#0000;border:none;display:flex;height:100%;justify-content:center;padding:0;&:focus{outline:none}}.omega_btnSubtitleVOD{justify-content:end}}.omega_volume{--volumeTransition:0.05s ease-in-out 0.5s;align-items:center;display:flex;&:hover{.omega_volume-muteBtn{margin:0 6px 0 0;transition-delay:0s}.omega_volume-container{transition-delay:0s;visibility:visible;width:88px}}.omega_volume-muteBtn{border:none;margin:0;padding-left:24px;transition:margin var(--volumeTransition)}.omega_volume-container{align-items:center;transition:width var(--volumeTransition),visibility var(--volumeTransition);visibility:hidden;width:0}}.omega_time{font-size:14px;letter-spacing:1.2px}.omega_liveBtn{align-items:center;display:flex;gap:8px;.omega_liveBtn-dot{background:red;border-radius:100%;display:block;height:8px;width:8px}.omega_liveBtn-label{font-size:14px;font-weight:700;letter-spacing:1.1px;line-height:normal;text-transform:uppercase}}.omega_slider{--sliderColor:#888;--sliderProgressColor:#fff;--sliderThumbColor:var(--sliderProgressColor);--sliderProgress:linear-gradient(to right,var(--sliderProgressColor) 0% var(--sliderPosition),var(--sliderColor) var(--sliderPosition) 100%);--sliderThumbShadow:0 1px 2px #00000040;--sliderThumbSize:15px;--sliderTrackHeight:5px;appearance:none;background:#0000;cursor:pointer;justify-self:center;width:100%;&::-webkit-slider-runnable-track{appearance:none;background:var(--sliderProgress);height:var(--sliderTrackHeight)}&::-webkit-slider-thumb{appearance:none;background:var(--sliderThumbColor);border:none;border-radius:100%;box-shadow:var(--sliderThumbShadow);height:var(--sliderThumbSize);margin-top:-5px;width:var(--sliderThumbSize)}&::-moz-range-track{background:var(--sliderColor);height:var(--sliderTrackHeight)}&::-moz-range-progress{background:var(--sliderProgressColor);height:var(--sliderTrackHeight)}&::-moz-range-thumb{background:var(--sliderThumbColor);border:none;border-radius:100%;box-shadow:var(--sliderThumbShadow);height:var(--sliderThumbSize);width:var(--sliderThumbSize)}}:root{--fade-transition:opacity 0.667s ease-in-out;--z-index-omega-overlay:50}.omega_aspectRatioContainer{margin:auto}.omega_videoContainer{container-name:video-container dvr-rack;container-type:size;--z-index-video:0;--z-index-captions:10;--z-index-control-rack-backdrop:20;--z-index-control-rack:30;--z-index-pip-close:30;--z-index-tap-to-unmute:40;--transition-backdrop-fade:var(--fade-transition);color:#fff;font-family:FoundersGroteskCond,Arial Narrow,Arial,sans-serif;height:100%;left:0;max-height:100vh;position:absolute;top:0;width:100%}.omega_videoContainer button{color:#fff}@container video-container (max-width: 312px){.omega_playPauseDesktop{display:none}}.omega_playPauseMobile{display:none}.omega_volume-container{display:flex}@container video-container (max-width: 480px){.omega_playPauseDesktop,.omega_volume-container{display:none}.omega_volume:hover .omega_volume-muteBtn{margin:0}.omega_playPauseMobile{align-self:center;background-color:initial;border:none;color:#fff;display:block;justify-self:center;z-index:var(--z-index-control-rack)}.omega_playPauseMobile svg{height:58px;width:58px}}@container dvr-rack (max-width: 435px){.omega_videoContainer .omega_rackWithDVR{grid-template-columns:repeat(4,auto) 1fr auto}.omega_videoContainer .omega_rackWithDVR .omega_btnSubtitle,.omega_videoContainer .omega_rackWithDVR .omega_liveBtn,.omega_videoContainer .omega_rackWithDVR .omega_volume-container{display:none}.omega_videoContainer .omega_rackWithDVR .omega_btnFullScreen{grid-column:auto/-1}}.omega_gridStackWrapper{display:grid;grid-template-columns:auto;grid-template-rows:auto}.omega_gridStackWrapper>*{grid-column:1/2;grid-row:1/2}.omega_coreVideoContainer video{left:0;position:absolute;top:0}.omega_controlRackBackdrop.omega_uiVisible{opacity:1}.omega_controlRackBackdrop{align-self:stretch;background-image:linear-gradient(180deg,#0000 50%,#000000e6);justify-self:stretch;z-index:var(--z-index-control-rack-backdrop)}.omega_controlRackBackdrop:not(.omega_uiVisible){opacity:0;transition:var(--fade-transition)}.omega_playPauseMobileContainer.omega_uiVisible{opacity:1}.omega_playPauseMobileContainer:not(.omega_uiVisible){opacity:0;transition:var(--fade-transition)}.omega_center{display:flex;justify-content:center}.omega_controlRack.omega_uiVisible{opacity:1}.omega_controlRack:not(.omega_uiVisible){opacity:0;transition:var(--fade-transition)}@media only screen and (min-width:758px){.omega_controlRack{padding:0 24px 13px}}.omega_controlRack{align-items:center;align-self:end;display:flex;justify-content:space-between;overflow:hidden;padding:0 24px 16px 0;z-index:var(--z-index-control-rack)}.omega_left,.omega_right{column-gap:12px;display:flex}.omega_left{justify-content:flex-start}.omega_right{justify-content:flex-end}.omega_adPlaying{font-size:.9rem;font-weight:600;padding:0 1em;text-transform:uppercase;white-space:nowrap}.omega_sections{align-items:center;flex-basis:0;flex-grow:1}.omega_controlRack button{background:none;border:none}.omega_right button{padding:0 .5em}.omega_right button:first-child{margin-left:-.5em}.omega_right button:last-child{margin-right:-.5em}svg:not(:root){overflow:hidden}.omega_captionOn{background-color:#fff;border-radius:2px}.omega_captionOn path{fill:#000}.omega_captionOff{border-radius:2px}.omega_captionOff path{fill:#fff}.omega_subtitles{background:#000;bottom:15%;color:#fff;font-family:var(--founders-mono,sans-serif);justify-self:center;padding:.5em 1em;position:absolute}.sr-only{clip:rect(0,0,0,0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.omega_slate{container-type:inline-size;display:flex;flex-direction:column;height:100%;justify-content:center;margin:auto;width:100%;z-index:var(--z-index-omega-overlay)}.omega_slate a{text-decoration:underline}.omega_slate p{color:#fff;font-size:calc(2cqi + 6px);font-weight:500;line-height:2;text-align:center}.omega_overlay{container-name:overlay;container-type:size;background-color:#000;color:#fff;height:100%;position:absolute;width:100%;z-index:var(--z-index-omega-overlay)}.omega_overlay_clickthrough{pointer-events:none}.omega_overlay_content{display:block;left:50%;max-height:100%;max-width:100%;position:relative;top:50%;transform:translate(-50%,-50%)}@container overlay (aspect-ratio > 16 /9){.omega_overlay .omega_overlay_image{height:100%;width:auto}}.omega_overlay_image{aspect-ratio:16/9;width:100%}.omega_overlay_text{font-size:10cqh;text-align:center}.FullEpisodePlayer-container{align-items:center;display:flex;flex-direction:row;font-size:22px;justify-content:space-between}.FullEpisodePlayer-fullEpisodePlayerContainer{display:flex;flex-direction:column;gap:20px}.FullEpisodePlayer-fullEpisodePlayer{container:video-player/inline-size;aspect-ratio:16/9;background-color:#000;position:relative;top:0;width:100%}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR{font-family:Proxima Nova,Helvetica,Arial,sans-serif;position:absolute;will-change:opacity}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_slider{--sliderColor:#ddd;--sliderProgressColor:#fff;--sliderThumbColor:#fff}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_volume{--volumeTransition:0.1s ease-in-out 0.5s;flex-direction:column-reverse}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_volume .omega_volume-muteBtn{padding:0}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_volume:hover .omega_volume-container{opacity:1;transition-delay:0s;visibility:visible;width:88px}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_volume:hover .omega_volume-muteBtn{margin:0}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_volume .omega_volume-container{opacity:0;position:absolute;rotate:-90deg;top:-50px;transition:opacity var(--volumeTransition),visibility var(--volumeTransition),width 0s .75s;visibility:hidden}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_liveBtn{display:flex;white-space:nowrap}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_liveBtn .omega_liveBtn-label{align-items:center;display:flex;font-weight:500;justify-content:center;letter-spacing:-.1px;position:relative}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_liveBtn .omega_liveBtn-label:before{border:2px solid #fff;content:"";display:block;height:100%;padding:5px 11px;position:absolute;width:100%}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_liveBtn .omega_liveBtn-dot+.omega_liveBtn-label:before{display:none}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_time{font-size:13px;letter-spacing:.5px;margin:0 0 1px}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR button{opacity:.8;transition:opacity .2s}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR button:hover{opacity:1}@container video-player (max-width: 460px){.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR{gap:5px 20px;grid-template-columns:repeat(2,auto) 1fr repeat(3,auto)}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR div:empty{display:none}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_slider{grid-row:1}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_playPauseDesktop{grid-row:2;height:30px}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_playPauseDesktop svg{height:24px;width:24px}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_volume .omega_volume-container{top:0;z-index:100}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_btnSubtitle{display:block}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_liveBtn .omega_liveBtn-label:before{padding:2px 6px}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_rewind{display:none}}.FullEpisodePlayer-fullEpisodePlayer .omega_controlRackBackdrop{align-self:end;aspect-ratio:16/9;background:#000;height:100%;max-height:75px;width:100%}.FullEpisodePlayer-fullEpisodePlayer .omega_tapToUnmuteBtn{background:#fff}@container video-player (max-width: 630px){.FullEpisodePlayer-fullEpisodePlayer .omega_subtitles{bottom:2%;display:flex;max-width:600px;overflow:hidden;text-align:center;white-space:normal}}@container video-player (max-width: 460px){.FullEpisodePlayer-fullEpisodePlayer .omega_controlRackBackdrop{max-height:65px}.FullEpisodePlayer-fullEpisodePlayer .omega_subtitles{bottom:2%;display:flex;font-size:13px;max-width:280px;overflow:hidden;text-align:center;white-space:normal}}.FullEpisodePlayer-episodeInfoContianer{display:flex;flex-direction:column;gap:15px}.FullEpisodePlayer-seriesTitle{color:#2077b6;font-size:12px;font-weight:800;letter-spacing:1.5px;line-height:16px}.FullEpisodePlayer-episodeTitle{color:#f8f8f8;font-size:18px;font-weight:600;letter-spacing:.029999999329447746px;line-height:22px}.FullEpisodePlayer-episodeDescription{color:#f8f8f8;font-size:14px;font-weight:400;letter-spacing:.029999999329447746px;line-height:22px}.FullEpisodePlayer-videoThumbnail{width:100%}@media (min-width:760px) and (max-width:1019px){.FullEpisodePlayer-videoThumbnail{min-height:430px}}@media (min-width:360px) and (max-width:759px){.FullEpisodePlayer-videoThumbnail{min-height:230px}}.FullEpisodePlayer-PlayButton{position:relative}.FullEpisodePlayer-episodeDate{color:#9a9fa7;font-size:12px;font-weight:700;letter-spacing:1.5px;line-height:16px;text-align:left}.FullEpisodePlayer-videoThumbnailContainer{position:relative}.FullEpisodePlayer-videoFooter{background:linear-gradient(180deg,#1e579900 0,#000);bottom:0;filter:progid:dximagetransform.microsoft.gradient(startColorstr="#001e5799",endColorstr="#000000",GradientType=0);height:40px;padding-left:10px;padding-top:15px;position:absolute;text-align:left;width:100%}.FullEpisodePlayer-videoLabel{color:#fcb700;font-size:10px;font-weight:800;letter-spacing:1.67px;line-height:12px}@media (min-width:760px){.FullEpisodePlayer-videoLabel{font-size:12px;letter-spacing:2px;line-height:15px}}.FullEpisodePlayer-videoTime{color:#fffc;font-weight:600;letter-spacing:1.2px;padding-left:10px}@media (min-width:760px){.FullEpisodePlayer-videoTime{letter-spacing:1.44px}}.FullEpisodePlayer-slate{display:flex;height:100%;justify-content:center;margin:auto;width:100%}.FullEpisodePlayer-slate img{width:100%}.FullEpisodePlayer-slate+.omega_aspectRatioContainer{display:none}.EpisodePlayListItem-videoItem{margin-bottom:10px}.EpisodePlayListItem-episodeButtonContainer{display:flex;flex-direction:row;justify-content:space-between}@media (max-width:1019px){.EpisodePlayListItem-episodeButtonContainer{justify-content:flex-start;width:100%}}.EpisodePlayListItem-thumbnailContainer{height:72px;margin-right:10px;max-width:129px;overflow:hidden;position:relative}.EpisodePlayListItem-thumbnailContainer.EpisodePlayListItem-spacer{height:0}.EpisodePlayListItem-thumbnailContainer img{width:100%}.EpisodePlayListItem-headline{color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:500;letter-spacing:.03px;line-height:16px;margin:0;text-align:left}.EpisodePlayListItem-episodeDuration{bottom:5px;color:#fff;font-size:12px;font-weight:700;letter-spacing:1.5px;line-height:16px;margin:0;position:absolute;text-align:left}.EpisodePlayListItem-episodeDetailsContainer{border-bottom:.5px dashed #9e9e9e;display:flex;min-height:72px;min-width:160px;position:relative}@media (max-width:1019px){.EpisodePlayListItem-episodeDetailsContainer{margin-left:10px;width:inherit}}@media (min-width:1340px){.EpisodePlayListItem-episodeDetailsContainer{width:410px}}.EpisodePlayListItem-activeEpisodeContainer{border:2px solid #fcb700}.EpisodePlayListItem-activeEpisodeIndicator{background:linear-gradient(180.76deg,#00081a 18.7%,rgba(42,48,64,.836) 29.88%,rgba(74,80,93,.707) 37.74%,hsla(220,6%,47%,.553) 45.6%,#fdfeff00 99.35%);color:#fff;font-size:10px;font-weight:700;height:72px;line-height:16px;padding-left:8px;position:absolute;text-align:left;width:129px}.FullEpisodeVideoList-container{margin-bottom:20px;margin-top:24px}.FullEpisodeVideoList-episodeContainer{height:500px;margin-bottom:200px;overflow-x:clip;overflow-y:scroll;position:relative}@media (max-width:1019px){.FullEpisodeVideoList-episodeContainer{margin-bottom:0}}.ShowsListDropdown-showContainer{align-items:center;border-top:.5px solid #d9d9d9;display:flex;flex-direction:row;gap:12px;padding-top:12px}.ShowsListDropdown-showText{color:#9a9fa7;font-size:12px;font-weight:800;line-height:18px;padding:7px 5px}.ShowsListDropdown-buttonContainer{align-items:center;background-color:#fff;border:.5px solid #fff;border-radius:100px;display:flex;gap:4px;justify-content:center;padding:5px}.ShowsListDropdown-showName{color:#00081a;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:400;letter-spacing:.4px;line-height:16px;text-transform:uppercase}.ShowsListDropdown-chevron{background:#00081a;height:7px;mask-image:url(https://static-redesign.cnbcfm.com/dist/6d2e721986ddae3d97e6.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/6d2e721986ddae3d97e6.svg);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;position:relative;top:-.5px;width:11px}.ShowsListDropdown-chevronOpen{transform:scaleY(-1)}.ShowsListDropdown-dropdownContainer{background:#00081a;padding:24px 20px;position:absolute;width:300px;z-index:999}@media (max-width:1019px){.ShowsListDropdown-dropdownContainer{height:100%;left:0;padding:24px 41px;top:200px;width:100%}}@media (max-width:759px){.ShowsListDropdown-dropdownContainer{padding:24px 20px;top:0}}.ShowsListDropdown-dropdownItem{align-items:center;border-bottom:1px solid #2e3337;cursor:pointer;display:flex;height:37px;padding:8px}.ShowsListDropdown-dropdownItem:hover .ShowsListDropdown-dropDownShowTitle,.ShowsListDropdown-dropdownItem:hover .ShowsListDropdown-nbcShowContainer{color:#fcb700}.ShowsListDropdown-dropdownItem:hover .ShowsListDropdown-nbcIcon{background-color:#fcb700}.ShowsListDropdown-dropdownItem:last-child{border-bottom:0}.ShowsListDropdown-dropDownShowTitle{color:#fff;font-size:12px;font-weight:600;letter-spacing:1.32px;line-height:37px;text-align:justify;text-transform:uppercase;width:100%}.ShowsListDropdown-closeButtonContainer{display:flex;justify-content:flex-end}.ShowsListDropdown-closeButton{align-items:center;color:#fff;cursor:pointer;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;gap:10px;letter-spacing:1.32px;line-height:37px;text-align:right;width:70px}.ShowsListDropdown-closeButton:hover{color:#fcb700}.ShowsListDropdown-closeButton:hover .ShowsListDropdown-closeIcon{background-color:#fcb700}.ShowsListDropdown-closeIcon{background-color:#fff;display:inline-block;height:12px;mask-image:url(https://static-redesign.cnbcfm.com/dist/6118770fb27b2d9fb92e.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/6118770fb27b2d9fb92e.svg);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;position:relative;top:-2px;width:12px}.ShowsListDropdown-nbcShowContainer{display:flex;justify-content:space-between}.ShowsListDropdown-nbcIcon{background-color:#fff;display:inline-block;height:11px;margin-left:5px;mask-image:url(https://static-redesign.cnbcfm.com/dist/102cc85fdaab546b3ee8.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/102cc85fdaab546b3ee8.svg);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;width:14px}.ShowsVideosRightRail-rightRailContainer{margin-bottom:20px}.ShowsVideosRightRail-watchLivestreamButton{align-items:center;background-color:#0053cf;border-radius:5px;color:#fff;display:flex;font-size:14px;font-weight:600;justify-content:center;line-height:17px;margin-bottom:30px;min-height:51px;min-width:300px}@media (max-width:1019px){.ShowsVideosRightRail-watchLivestreamButton{margin-top:30px}}.ShowsVideosRightRail-watchLivestreamButton span{animation:ShowsVideosRightRail-pulse 1.5s infinite;animation-timing-function:ease-in-out;background-color:#fff;border-radius:100%;box-shadow:0 0 0 0 #fff;display:inline-block;height:8px;margin-right:8px;position:relative;transform:scale(1);width:8px}@keyframes ShowsVideosRightRail-pulse{0%{box-shadow:0 0 0 1px #0053cf;opacity:1}70%{border:1px solid #0053cf;box-shadow:0 0 0 1px #fff;opacity:.9;padding:2px;transform:scale(1.2)}to{box-shadow:0 0 0 1px #fff;opacity:1;transform:scale(1)}}.ShowsVideosRightRail-watchLivestreamButton:hover{background-color:#002f6c;color:#fff}.PlusLogoHeader-headerContainer{display:inline-flex;margin-bottom:20px;margin-top:20px}@media (max-width:759px){.PlusLogoHeader-headerContainer{justify-content:space-between}}.PlusLogoHeader-headerText{color:#fff;font-size:24px;font-weight:700;letter-spacing:.03px;line-height:26px}.PlusLogoHeader-plusLogo{display:inline;margin-right:20px}.FullEpisodeContainer-containerFluidWidths{margin:0 auto;width:100%}@media (min-width:1020px){.FullEpisodeContainer-containerFluidWidths{max-width:960px}}@media (min-width:1340px){.FullEpisodeContainer-containerFluidWidths{max-width:1290px}}.FullEpisodeContainer-container{min-height:500px}@media (min-width:1020px){.FullEpisodeContainer-container{margin:0 auto;max-width:100%}}@media (min-width:1020px) and (min-width:760px){.FullEpisodeContainer-container{max-width:678px}}@media (min-width:1020px) and (min-width:1020px){.FullEpisodeContainer-container{max-width:960px}}@media (min-width:1020px) and (min-width:1340px){.FullEpisodeContainer-container{max-width:1290px}}@media (max-width:1019px){.FullEpisodeContainer-container{padding:0 30px}}@media (max-width:759px){.FullEpisodeContainer-container{margin-top:-1px;padding:0 20px}}.FullEpisodeContainer-page{display:block;overflow:visible;padding-bottom:25px}@media (min-width:760px){.FullEpisodeContainer-page{padding-bottom:28px}}.FullEpisodeContainer-pageWrapper{margin:0 auto;max-width:100%}@media (min-width:760px){.FullEpisodeContainer-pageWrapper{max-width:678px}}@media (min-width:1020px){.FullEpisodeContainer-pageWrapper{max-width:960px}}@media (min-width:1340px){.FullEpisodeContainer-pageWrapper{max-width:1290px}}@media (min-width:760px){.FullEpisodeContainer-pageWrapper{max-width:100%!important}}.FullEpisodeContainer-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.FullEpisodeContainer-pageRow{padding-left:0;padding-right:0}}@media (min-width:1020px){.FullEpisodeContainer-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}}@media (min-width:1020px) and (min-width:760px){.FullEpisodeContainer-pageRow{padding-left:0;padding-right:0}}@media (max-width:1019px){.FullEpisodeContainer-pageRow{margin:0;padding:0}}.FullEpisodeContainer-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.FullEpisodeContainer-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.FullEpisodeContainer-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.FullEpisodeContainer-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.FullEpisodeContainer-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.FullEpisodeContainer-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.FullEpisodeContainer-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.FullEpisodeContainer-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}.FullEpisodeContainer-containerFluidWidths .FullEpisodeContainer-col{max-width:678px!important;min-width:678px}}@media (min-width:760px){.FullEpisodeContainer-col-3{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.FullEpisodeContainer-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.FullEpisodeContainer-col-3{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.FullEpisodeContainer-col-3{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.FullEpisodeContainer-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.FullEpisodeContainer-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}.FullEpisodeContainer-col-3:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.FullEpisodeContainer-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);max-width:calc(25% + 77.5px);min-width:calc(25% - 22.5px);min-width:calc(25% + 77.5px)}}@media (min-width:760px){.FullEpisodeContainer-col-6{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.FullEpisodeContainer-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.FullEpisodeContainer-col-6{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.FullEpisodeContainer-col-6{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.FullEpisodeContainer-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.FullEpisodeContainer-col-6{flex-grow:0;flex-shrink:0;margin-left:0;margin-right:0;max-width:calc(44.44444% - 16.66667px);min-width:calc(44.44444% - 16.66667px)}.FullEpisodeContainer-col-6:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.FullEpisodeContainer-col-6{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(50% - 15px);min-width:calc(50% - 15px)}}.FullEpisodeContainer-col-9 .BrandBanner-container{margin-bottom:30px;z-index:99}@media (min-width:1340px){.FullEpisodeContainer-col-9 .BrandBanner-container{margin-left:calc(-50vw - -538.5px)}}@media (min-width:760px){.FullEpisodeContainer-col-9 .BrandBanner-container{margin-bottom:-100px;margin-top:50px}.FullEpisodeContainer-col-9{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.FullEpisodeContainer-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.FullEpisodeContainer-col-9{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.FullEpisodeContainer-col-9{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.FullEpisodeContainer-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.FullEpisodeContainer-col-9{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.FullEpisodeContainer-col-9:last-child{margin-right:0}}@media (min-width:1340px){.FullEpisodeContainer-col-9{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);max-width:calc(75% - 107.5px);min-width:calc(75% - 7.5px);min-width:calc(75% - 107.5px)}.FullEpisodeContainer-col-9.FullEpisodeContainer-article{flex-grow:0;flex-shrink:0;margin-left:calc(8.33333% + 2.5px);max-width:calc(58.33333% - 12.5px);min-width:calc(58.33333% - 12.5px)}}@media (min-width:760px){.FullEpisodeContainer-col-12{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.FullEpisodeContainer-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.FullEpisodeContainer-col-12{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.FullEpisodeContainer-col-12{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.FullEpisodeContainer-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.FullEpisodeContainer-col-12{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.FullEpisodeContainer-col-12:last-child{margin-right:0}}@media (min-width:1340px){.FullEpisodeContainer-col-12{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}.FullEpisodeContainer-col-full{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.FullEpisodeContainer-col-full .MyComponentName-container{width:100vw}@media (min-width:1340px){.FullEpisodeContainer-col-full .MyComponentName-container{max-width:none}}.FullEpisodeContainer-col-full:last-child{margin-right:0}.FullEpisodeContainer-mvpdContainer{background-color:#000;bottom:0;left:0;padding-top:20px;position:absolute;right:0;top:0}.FullEpisodePage-container{min-height:800px}@media (max-width:1019px){.FullEpisodePage-container{min-height:1100px}}.LiveTVRightRail-rightRailContainer{margin-bottom:20px}.LiveTVRightRail-watchRecentEpisodesButton{align-items:center;background-color:#0053cf;border-radius:5px;color:#fff;display:flex;font-size:14px;font-weight:700;justify-content:center;letter-spacing:-.001em;line-height:13.3px;margin-bottom:30px;min-height:51px;min-width:300px;padding:16px 0}@media (max-width:1019px){.LiveTVRightRail-watchRecentEpisodesButton{margin-top:30px}}.LiveTVRightRail-watchRecentEpisodesButton span{background-image:url(https://static-redesign.cnbcfm.com/dist/8f814ea5e4aca99eb1cc.svg);background-repeat:no-repeat;display:inline-block;height:15px;margin-right:8px;position:relative;width:14px}.LiveTVRightRail-watchRecentEpisodesButton:hover{background-color:#002f6c;color:#fff}.LiveTVRightRail-cableProviderContainer{align-items:flex-start;background:linear-gradient(#101418,#101418) padding-box,linear-gradient(to bottom right,#ef1541,#890c25) border-box;border:1px solid #0000;border-radius:5px;color:#fff;display:flex;flex-flow:column;justify-content:center;margin-bottom:30px;min-width:300px;padding:17px 10px}@media (min-width:760px) and (max-width:1019px){.LiveTVRightRail-cableProviderContainer{align-items:center;flex-flow:row;height:60px;justify-content:space-between;padding:12px 10px}}.LiveTVRightRail-mvpdContainer{background:linear-gradient(#101418,#101418) padding-box,linear-gradient(to bottom right,#fccc12,#ff7112,#ef1541,#6e55dc,#069de0,#05ac3f) border-box;border:1px solid #0000;height:92px;position:relative}.LiveTVRightRail-mvpdContainer>.LiveTVRightRail-buttonContainer>.LiveTVRightRail-linkButton{font-weight:600}@media (min-width:760px) and (max-width:1019px){.LiveTVRightRail-mvpdContainer>.LiveTVRightRail-buttonContainer>.LiveTVRightRail-linkButton{top:0}}.LiveTVRightRail-mvpdContainer>.LiveTVRightRail-textContainer{margin-bottom:12px}@media (min-width:760px) and (max-width:1019px){.LiveTVRightRail-mvpdContainer>.LiveTVRightRail-textContainer{margin-bottom:0}}.LiveTVRightRail-mvpdContainer>.LiveTVRightRail-textContainer>.LiveTVRightRail-cableProviderTitle{line-height:26px}@media (min-width:760px) and (max-width:1019px){.LiveTVRightRail-mvpdContainer{height:42px}}.LiveTVRightRail-rightArrow{background-color:#fff;display:inline-block;height:10px;margin-left:8px;mask-image:url(https://static-redesign.cnbcfm.com/dist/102cc85fdaab546b3ee8.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/102cc85fdaab546b3ee8.svg);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;position:absolute;top:8px;width:14px}.LiveTVRightRail-cableProviderTitle{font-size:14px;font-weight:700;letter-spacing:.03px;line-height:22px;margin:0 10px;position:relative}.LiveTVRightRail-textContainer{margin-bottom:15px}@media (min-width:760px) and (max-width:1019px){.LiveTVRightRail-textContainer{margin-bottom:0;width:263px}}.LiveTVRightRail-buttonContainer{align-items:flex-start;display:flex;flex-flow:column;gap:12px}@media (min-width:760px) and (max-width:1019px){.LiveTVRightRail-buttonContainer{gap:0;margin:0 10px;padding:0 10px}}.LiveTVRightRail-linkButton{color:#fff;font-size:12px;font-weight:400;height:14px;letter-spacing:.03px;line-height:26px;margin:0 10px;position:relative;top:-8px}.LiveTVRightRail-linkButton:hover{color:#fcb700}.LiveTVRightRail-linkButton:hover .LiveTVRightRail-rightArrow{background-color:#fcb700}@media (min-width:760px) and (max-width:1019px){.LiveTVRightRail-linkButton{height:unset;top:0}}.LiveTVRightRail-linkButtonMvpdAndSubscription{height:20px}@media (min-width:760px) and (max-width:1019px){.LiveTVRightRail-linkButtonMvpdAndSubscription{height:unset}}.LiveTVRightRail-blur{background:linear-gradient(45deg,#ef15414d,#0000);filter:blur(50px);height:107px;margin:15px;position:absolute;width:210px}@media (min-width:760px) and (max-width:1019px){.LiveTVRightRail-blur{height:40px;margin-left:150px;width:483px}}.LiveTVRightRail-mvpdBlur{background:linear-gradient(146.23deg,#121212 75.35%,#4d4855 126.39%),linear-gradient(0deg,#101418,#101418);border-radius:6px;filter:none;height:100%;left:0;margin:unset;width:100%}.LiveTVRightRail-rightRailScheduleContainer{background-color:#101418;background-image:url(https://static-redesign.cnbcfm.com/dist/a421642a37beaf56ee95.svg);background-size:cover;border-radius:12px;box-shadow:0 4px 16px 1px #00000026;display:flex;flex-direction:column;gap:18px;margin-bottom:30px;padding:12px;position:relative}@media (min-width:760px) and (max-width:1019px){.LiveTVRightRail-rightRailScheduleContainer{background-image:url(https://static-redesign.cnbcfm.com/dist/9d98cbc9c3d696aba29d.svg);background-position:120px 250px;gap:8px}}@media (min-width:360px) and (max-width:759px){.LiveTVRightRail-rightRailScheduleContainer{background-position:0 150px;gap:27px}}.LiveTVRightRail-rightRailScheduleTitle{color:#fff;font-size:20px;font-weight:700;letter-spacing:-.5px;line-height:24.36px}.LiveTVRightRail-rightRailScheduleText{color:#fff;font-size:14px;font-weight:400;line-height:18.2px}.LiveTVRightRail-rightRailScheduleLinkContainer{display:flex;justify-content:flex-end;width:100%}@media (min-width:760px) and (max-width:1019px){.LiveTVRightRail-rightRailScheduleLinkContainer{bottom:12px;position:absolute;right:18px}}.LiveTVRightRail-rightRailScheduleLink{color:#fff;font-size:12px;font-weight:700;line-height:14.62px}.LiveTVRightRail-rightRailScheduleLink .LiveTVRightRail-rightArrow{margin-left:3px;position:relative;top:unset}.LiveTVRightRail-rightRailScheduleLink:hover .LiveTVRightRail-rightArrow{background-color:#fcb700}.ProLiveTVWithSelections-container{background-color:#171717;border-radius:4px;height:100%;left:0;position:relative;top:0;width:100%}.ProLiveTVWithSelections-playerWithTabsContainer{background-color:initial}#standaloneLivePlayer .OmegaPlayer-omegaPlayerContainer{max-height:unset}.omega_coreVideoContainer{position:relative;z-index:10}.omega_subtitles{z-index:10}.OmegaPlayer-slate{container-type:inline-size;background:linear-gradient(#059,#026);display:flex;flex-direction:column;height:100%;justify-content:center;margin:auto;width:100%}.OmegaPlayer-slate.OmegaPlayer-loading{background:none}.OmegaPlayer-slate.OmegaPlayer-loading img{width:100%}.OmegaPlayer-slate a{text-decoration:underline}.OmegaPlayer-slate p{color:#fff;font-size:calc(2cqi + 6px);font-weight:500;line-height:2;text-align:center}.OmegaPlayer-windowBoxContainer .OmegaPlayer-slate{aspect-ratio:16/9;height:calc(100% - 96px);max-height:56.25cqw;width:unset}.OmegaPlayer-slate+.omega_aspectRatioContainer{display:none}@container (min-aspect-ratio: 16/9){@container (max-width: 470px){.omega_volume-container{--volumeTransition:0.01s ease-in-out 0.5s;bottom:50%;display:block;margin-bottom:-15px;padding-bottom:20px;position:absolute;transform:rotate(-90deg)}}}@media (max-width:1019px){.omega_volume-container{display:none}}@container (min-aspect-ratio: 15/8){.OmegaPlayer-windowBoxContainer .OmegaPlayer-slate{height:auto;max-height:100%;max-width:177cqh;width:calc(100% - 240px)}}@container (max-width: 320px){.omega_btnSubtitle,.omega_subtitles{display:none}}.OmegaPlayer-CNBCLogo{height:20%}.OmegaPlayer-container{aspect-ratio:16/9}.OmegaPlayer-windowBoxContainer{container-type:size;background:#000;display:flex;height:100vw;max-height:calc(100vh - 180px);min-height:350px}.OmegaPlayer-windowBoxContainer .omega_coreVideoContainer{margin:48px 0}@container (min-aspect-ratio: 15/8){.OmegaPlayer-windowBoxContainer .omega_coreVideoContainer{margin:0 120px}}.ProDAIPlayer-proDAIPlayer{container:video-player/inline-size;aspect-ratio:16/9;background-color:#000;position:relative;top:0;width:100%}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR{font-family:Proxima Nova,Helvetica,Arial,sans-serif;position:absolute;will-change:opacity}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR:has([aria-label=Picture-in-Picture]){grid-template-columns:repeat(5,auto) 1fr repeat(3,auto)}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR button:has([aria-label=Picture-in-Picture]){justify-self:center}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_slider{--sliderColor:#ddd;--sliderProgressColor:#fff;--sliderThumbColor:#fff}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_volume{--volumeTransition:0.1s ease-in-out 0.5s;flex-direction:column-reverse}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_volume .omega_volume-muteBtn{padding:0}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_volume:hover .omega_volume-container{opacity:1;transition-delay:0s;visibility:visible;width:88px}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_volume:hover .omega_volume-muteBtn{margin:0}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_volume .omega_volume-container{opacity:0;position:absolute;rotate:-90deg;top:-50px;transition:opacity var(--volumeTransition),visibility var(--volumeTransition),width 0s .75s;visibility:hidden}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_liveBtn{display:flex;white-space:nowrap}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_liveBtn .omega_liveBtn-label{align-items:center;display:flex;font-weight:500;justify-content:center;letter-spacing:-.1px;position:relative}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_liveBtn .omega_liveBtn-label:before{border:2px solid #fff;content:"";display:block;height:100%;padding:5px 11px;position:absolute;width:100%}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_liveBtn .omega_liveBtn-dot+.omega_liveBtn-label:before{display:none}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_time{font-size:13px;letter-spacing:.5px;margin:0 0 1px;min-width:45px}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR button{opacity:.8;transition:opacity .2s}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR button:hover{opacity:1}@media (max-width:1019px){.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_volume .omega_volume-container{display:none}}@container video-player (max-width: 460px){.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR{gap:5px;grid-template-columns:repeat(3,auto) 1fr repeat(3,auto)}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR:has([aria-label=Picture-in-Picture]){grid-template-columns:repeat(3,auto) 1fr repeat(3,auto);padding:8px}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR div:empty,.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR img[aria-label=Picture-in-Picture]{display:none}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_slider.omega_slider-scrubber{grid-row:1}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_playPauseDesktop{grid-row:2;height:30px}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_btnFullScreen svg,.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_playPauseDesktop svg{height:20px;width:20px}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_volume{margin-right:4px;position:relative;top:2px}@media (min-width:1020px){.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_volume .omega_volume-container{display:block!important;left:45px;rotate:0deg;top:-152px;z-index:100}}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR:has([aria-label="Exit full screen"]) .omega_volume{position:unset}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR:has([aria-label="Exit full screen"]) .omega_volume .omega_volume-container{left:unset;rotate:-90deg;top:-50px}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_btnSubtitle{display:block!important}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_liveBtn{display:flex!important;min-width:76px}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_liveBtn .omega_liveBtn-label:before{padding:2px 6px}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_rewind{display:none}}.ProDAIPlayer-proDAIPlayer .omega_controlRackBackdrop{align-self:end;aspect-ratio:16/9;background:#000;height:100%;max-height:75px;width:100%}.ProDAIPlayer-proDAIPlayer .omega_tapToUnmuteBtn{background:#fff}@container video-player (max-width: 630px){.ProDAIPlayer-proDAIPlayer .omega_subtitles{bottom:2%;display:flex;max-width:600px;overflow:hidden;text-align:center;white-space:normal}}@container video-player (max-width: 460px){.ProDAIPlayer-proDAIPlayer .omega_controlRackBackdrop{max-height:65px}.ProDAIPlayer-proDAIPlayer .omega_subtitles{bottom:2%;display:flex;font-size:13px;max-width:280px;overflow:hidden;text-align:center;white-space:normal}}.ProDAIPlayer-proDAIPlayer .ProDAIPlayer-slate{display:flex;height:100%;justify-content:center;margin:auto;width:100%}.ProDAIPlayer-proDAIPlayer .ProDAIPlayer-slate img{width:100%}.ProDAIPlayer-proDAIPlayer .ProDAIPlayer-slate+.omega_aspectRatioContainer{display:none}.ProPlayerChannel-channelContainer{background-color:#171717;display:block;overflow:hidden;width:100%}.ProPlayerChannel-channelContainer *{box-sizing:border-box}.ProPlayerChannel-pcpChannelContainer{border-radius:4px}.ProPlayerChannel-channelHolder{background-color:#171717;display:flex;flex-wrap:wrap;justify-content:center;padding:0 8px;width:100%}@media (max-width:1019px){.ProPlayerChannel-channelHolder{align-items:center;flex-direction:column}}.ProPlayerChannel-leftContainer{display:block;width:295px}@media (max-width:1339px){.ProPlayerChannel-leftContainer{display:none}}.ProPlayerChannel-channels,.ProPlayerChannel-rightContainer{display:flex;text-align:center}.ProPlayerChannel-channels{background:#3cb87833;border-radius:26px;flex-direction:row;height:31px;margin-bottom:16px;margin-top:16px;position:relative;width:336px}.ProPlayerChannel-channels .ProPlayerChannel-slider{background-color:#3cb878;border-radius:30px;height:31px;left:0;position:absolute;top:0;transition:left .2s ease-in-out;width:33.33%}@media (max-width:759px){.ProPlayerChannel-channels .ProPlayerChannel-slider{width:88px}}.ProPlayerChannel-channels .ProPlayerChannel-buttonContainer{display:flex;flex-wrap:nowrap;width:100%}.ProPlayerChannel-channels .ProPlayerChannel-buttonContainer .ProPlayerChannel-selector{color:#fff;cursor:pointer;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;height:31px;line-height:17px;transition:color .2s ease-in;width:33.33%;z-index:1}.ProPlayerChannel-channels .ProPlayerChannel-buttonContainer .ProPlayerChannel-activeStream{color:#000}@media (max-width:759px){.ProPlayerChannel-channels{width:264px}}.ProPlayerChannel-embeddedPlayerSpacing{align-items:center;flex-direction:column}.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-rightContainer{justify-content:space-around;padding:0 22px 16px;text-align:center;width:295px}@media (max-width:1019px){.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-rightContainer{padding:0 16px 16px;width:300px}}@media (max-width:759px){.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-rightContainer{padding:0 22px 16px;width:300px}}.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels{background:#3cb87833;border-radius:26px;flex-direction:row;height:31px;margin-bottom:16px;margin-top:16px;position:relative;width:336px}.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels .ProPlayerChannel-slider{background-color:#3cb878;border-radius:30px;height:31px;left:0;position:absolute;top:0;transition:left .2s ease-in-out;width:33.33%}.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels .ProPlayerChannel-buttonContainer{display:flex;flex-wrap:nowrap;width:100%}.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels .ProPlayerChannel-buttonContainer .ProPlayerChannel-selector{color:#fff;cursor:pointer;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;height:31px;line-height:17px;transition:color .2s ease-in;width:33.33%;z-index:1}.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels .ProPlayerChannel-buttonContainer .ProPlayerChannel-activeStream{color:#000}@media (max-width:1019px){.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels{width:276px}}@media (max-width:759px){.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels{width:264px}}.ProPlayerChannel-rightContainer{justify-content:space-around;padding:16px 22px;text-align:center;width:295px}@media (max-width:1019px){.ProPlayerChannel-rightContainer{padding:0 16px 16px;width:300px}}@media (max-width:759px){.ProPlayerChannel-rightContainer{padding:0 22px 16px;width:300px}}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton{cursor:pointer;display:flex;text-decoration:none;transition:background-color .15s ease-in 50ms}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton>.ProPlayerChannel-withEmphasis{height:26px;justify-content:center;padding:4px 0;transition:color .1s ease-in;width:133px}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton>.ProPlayerChannel-noEmphasis{height:26px;justify-content:center;padding:4px 0;transition:color .1s ease-in}.ProPlayerChannel-rightContainer .ProPlayerChannel-noEmphasisIcon,.ProPlayerChannel-rightContainer .ProPlayerChannel-withEmphasisIcon{fill:#d9d9d9;margin-right:8px;margin-top:2px;transition:fill .1s ease-in}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton:hover .ProPlayerChannel-noEmphasis,.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton:hover .ProPlayerChannel-withEmphasis{color:#3cb878}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton:hover .ProPlayerChannel-noEmphasisIcon,.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton:hover .ProPlayerChannel-withEmphasisIcon{fill:#3cb878}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton:active .ProPlayerChannel-withEmphasis{background-color:#3cb878;border-radius:30px;color:#171717}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton:active .ProPlayerChannel-withEmphasisIcon{fill:#171717}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton>span>img{display:inline-block;padding-right:8px;width:24px}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton>span{color:#d9d9d9;display:inline-flex;flex-wrap:nowrap;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:700;text-decoration:none}@media (max-width:1019px){.ProPlayerChannel-rightContainer{flex-direction:row;margin-left:0;text-align:center;top:40px}}.ProPlayerToast-overlay{background-color:#171717;position:absolute;top:0;width:100%;z-index:1}.ProPlayerToast-toastMessageContainer{color:#fff;left:0;padding-top:12px;position:absolute;text-align:center;top:0;width:100%}.StreamToast-toastMessage{background-color:#171717;border-radius:3px;display:flex;flex-direction:column;justify-content:center;margin:auto;opacity:.85!important;width:-moz-fit-content;width:fit-content}.StreamToast-textAndButton{color:#fff;display:flex;flex-direction:row;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-style:normal;font-weight:600;justify-content:center;line-height:22px;padding:12px 24px}.StreamToast-textAndButton .StreamToast-dismissButton{margin-left:18px}@media (max-width:425px){.StreamToast-textAndButton{font-size:12px;line-height:16px;padding:8px 12px}.StreamToast-textAndButton .StreamToast-dismissButton{height:14px;margin-left:10px;width:14px}}@media (max-width:1020px){.StreamToast-embeddedPlayerContainer{font-size:12px;line-height:16px;padding:8px 12px}.StreamToast-embeddedPlayerContainer .StreamToast-dismissButton{height:14px;margin-left:10px;width:14px}}@media (max-width:759px){.StreamToast-embeddedPlayerContainer{font-size:16px;line-height:24px;padding:12px 24px}.StreamToast-embeddedPlayerContainer .StreamToast-dismissButton{margin-left:18px}}@media (max-width:425px){.StreamToast-embeddedPlayerContainer{font-size:12px;line-height:16px;padding:8px 12px}.StreamToast-embeddedPlayerContainer .StreamToast-dismissButton{height:14px;margin-left:10px;width:14px}}.StreamToastWithCTA-toastMessage{background-color:#171717;border-radius:3px;color:#fff;display:flex;flex-direction:column;justify-content:center;margin:auto;opacity:.85!important;width:-moz-fit-content;width:fit-content}.StreamToastWithCTA-textAndButton{display:flex;flex-direction:row;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-style:normal;font-weight:600;justify-content:center;line-height:22px;padding:12px 24px}.StreamToastWithCTA-textAndButton .StreamToastWithCTA-dismissButton{margin-left:18px}.StreamToastWithCTA-textAndButton .StreamToastWithCTA-switchButton{border:1px solid #fff;color:#fff;font-size:12px;font-style:normal;font-weight:700;letter-spacing:1.09px;line-height:12px;margin-left:18px;padding:10px 31px;text-transform:uppercase}@media (max-width:425px){.StreamToastWithCTA-textAndButton{font-size:12px;line-height:16px;padding:8px 12px}.StreamToastWithCTA-textAndButton .StreamToastWithCTA-switchButton{font-size:10px;line-height:12px;margin-left:10px;padding:5.5px 14.5px}.StreamToastWithCTA-textAndButton .StreamToastWithCTA-dismissButton{height:14px;margin-left:10px;width:14px}}@media (max-width:1020px){.StreamToastWithCTA-embeddedPlayerContainer{font-size:12px;line-height:16px;padding:8px 12px}.StreamToastWithCTA-embeddedPlayerContainer .StreamToastWithCTA-switchButton{font-size:10px;line-height:12px;margin-left:10px;padding:5.5px 14.5px}.StreamToastWithCTA-embeddedPlayerContainer .StreamToastWithCTA-dismissButton{height:14px;margin-left:10px;width:14px}}@media (max-width:759px){.StreamToastWithCTA-embeddedPlayerContainer{font-size:16px;line-height:24px;padding:12px 24px}.StreamToastWithCTA-embeddedPlayerContainer .StreamToastWithCTA-switchButton{font-size:12px;line-height:12px;margin-left:10px;padding:10px 31px}.StreamToastWithCTA-embeddedPlayerContainer .StreamToastWithCTA-dismissButton{margin-left:18px}}@media (max-width:425px){.StreamToastWithCTA-embeddedPlayerContainer{font-size:12px;line-height:16px;padding:8px 12px}.StreamToastWithCTA-embeddedPlayerContainer .StreamToastWithCTA-switchButton{font-size:10px;line-height:12px;margin-left:10px;padding:5.5px 14.5px}.StreamToastWithCTA-embeddedPlayerContainer .StreamToastWithCTA-dismissButton{height:14px;margin-left:10px;width:14px}}.StreamToastWithCTA-text{align-self:center}.StreamToastAutoSwitch-toastMessage{background-color:#171717;border-radius:3px;display:flex;flex-direction:column;justify-content:center;margin:auto;opacity:.85!important;width:-moz-fit-content;width:fit-content}.StreamToastAutoSwitch-textAndButton{color:#fff;display:flex;flex-direction:row;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-style:normal;font-weight:600;justify-content:center;line-height:22px;padding:12px 24px}.StreamToastAutoSwitch-textAndButton .StreamToastAutoSwitch-dismissButton{margin-left:18px}@media (max-width:425px){.StreamToastAutoSwitch-textAndButton{font-size:12px;line-height:16px;padding:8px 12px}.StreamToastAutoSwitch-textAndButton .StreamToastAutoSwitch-dismissButton{height:14px;margin-left:10px;width:14px}}@media (max-width:1020px){.StreamToastAutoSwitch-embeddedPlayerContainer{font-size:12px;line-height:16px;padding:8px 12px}.StreamToastAutoSwitch-embeddedPlayerContainer .StreamToastAutoSwitch-dismissButton{height:14px;margin-left:10px;width:14px}}@media (max-width:759px){.StreamToastAutoSwitch-embeddedPlayerContainer{font-size:16px;line-height:24px;padding:12px 24px}.StreamToastAutoSwitch-embeddedPlayerContainer .StreamToastAutoSwitch-dismissButton{margin-left:18px}}@media (max-width:425px){.StreamToastAutoSwitch-embeddedPlayerContainer{font-size:12px;line-height:16px;padding:8px 12px}.StreamToastAutoSwitch-embeddedPlayerContainer .StreamToastAutoSwitch-dismissButton{height:14px;margin-left:10px;width:14px}}.ProPlayerTabs-channelContainer{background-color:initial;display:block;overflow:hidden;width:100%}.ProPlayerTabs-channelContainer *{box-sizing:border-box}.ProPlayerTabs-pcpChannelContainer{border-radius:4px}.ProPlayerTabs-channelHolder{background-color:initial;display:flex;flex-wrap:wrap;justify-content:space-between;padding:0 8px;width:100%}@media (max-width:1019px){.ProPlayerTabs-channelHolder{flex-direction:column}}.ProPlayerTabs-standaloneChannelHolder{align-items:center;justify-content:center}.ProPlayerTabs-standaloneChannelContainer{background-color:#171717}.ProPlayerTabs-tabsHolder{justify-content:space-between}.ProPlayerTabs-leftContainer{display:block;width:295px}@media (max-width:1339px){.ProPlayerTabs-leftContainer{display:none}}.ProPlayerTabs-channels,.ProPlayerTabs-rightContainer{display:flex;text-align:center}.ProPlayerTabs-proChannels{width:100%!important}.ProPlayerTabs-channels{flex-direction:row;height:40px;margin-bottom:16px;position:relative;width:50%}@media (max-width:759px){.ProPlayerTabs-channels{width:100%}}.ProPlayerTabs-channels .ProPlayerTabs-slider{background-color:#3cb878;border-radius:30px;height:31px;left:0;position:absolute;top:0;transition:left .2s ease-in-out;width:33.33%}@media (max-width:759px){.ProPlayerTabs-channels .ProPlayerTabs-slider{width:88px}}.ProPlayerTabs-channels .ProPlayerTabs-buttonContainer{display:flex;flex-wrap:nowrap;width:100%}.ProPlayerTabs-channels .ProPlayerTabs-buttonContainer .ProPlayerTabs-proSelector{width:183px}.ProPlayerTabs-channels .ProPlayerTabs-buttonContainer .ProPlayerTabs-plusSelector{width:165px}.ProPlayerTabs-channels .ProPlayerTabs-buttonContainer .ProPlayerTabs-selector{color:#747474;cursor:pointer;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:600;height:40px;line-height:22px;transition:color .2s ease-in;white-space:nowrap;z-index:1}@media (max-width:759px){.ProPlayerTabs-channels .ProPlayerTabs-buttonContainer .ProPlayerTabs-selector{width:100%}}.ProPlayerTabs-channels .ProPlayerTabs-buttonContainer .ProPlayerTabs-activeStream{border-bottom:2px solid #171717;color:#171717}@media (max-width:759px){.ProPlayerTabs-plusTab{flex-basis:0;flex-grow:1;width:unset}}.ProPlayerTabs-darkThemeButtonContainer .ProPlayerTabs-selector{color:#9e9e9e!important}.ProPlayerTabs-darkThemeButtonContainer .ProPlayerTabs-activeStream{border-bottom:2px solid #f8f8f8!important;color:#f8f8f8!important}.ProPlayerTabs-rightContainer{gap:20px;padding:16px 16px 16px 0;text-align:center;width:230px}.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton{cursor:pointer;display:flex;text-decoration:none;transition:background-color .15s ease-in 50ms}.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton>.ProPlayerTabs-withEmphasis{height:26px;justify-content:flex-start;padding:4px 0;transition:color .1s ease-in;width:133px}.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton>.ProPlayerTabs-noEmphasis{height:26px;justify-content:flex-start;padding:4px 0;transition:color .1s ease-in}.ProPlayerTabs-rightContainer .ProPlayerTabs-noEmphasisIcon,.ProPlayerTabs-rightContainer .ProPlayerTabs-withEmphasisIcon{fill:#171717;margin-right:8px;margin-top:2px;transition:fill .1s ease-in}.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton:hover .ProPlayerTabs-noEmphasis,.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton:hover .ProPlayerTabs-withEmphasis{color:#fcb700}.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton:hover .ProPlayerTabs-noEmphasisIcon,.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton:hover .ProPlayerTabs-withEmphasisIcon{fill:#fcb700}.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton>span>img{display:inline-block;padding-right:8px;width:24px}.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton>span{color:#171717;display:inline-flex;flex-wrap:nowrap;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:700;line-height:16px;text-decoration:none}.ProPlayerTabs-darkThemeRightContainer .ProPlayerTabs-linkButton>span{color:#f8f8f8}.ProPlayerTabs-darkThemeRightContainer .ProPlayerTabs-noEmphasisIcon,.ProPlayerTabs-darkThemeRightContainer .ProPlayerTabs-withEmphasisIcon{fill:#d9d9d9;margin-right:8px;margin-top:2px;transition:fill .1s ease-in}.ProPlayerTabs-darkThemeRightContainer .ProPlayerTabs-linkButton:hover .ProPlayerTabs-noEmphasis,.ProPlayerTabs-darkThemeRightContainer .ProPlayerTabs-linkButton:hover .ProPlayerTabs-withEmphasis{color:#fcb700}.ProPlayerTabs-darkThemeRightContainer .ProPlayerTabs-linkButton:hover .ProPlayerTabs-noEmphasisIcon,.ProPlayerTabs-darkThemeRightContainer .ProPlayerTabs-linkButton:hover .ProPlayerTabs-withEmphasisIcon{fill:#fcb700}.MvpdLogout-mvpdLogout{background-position:50%;background-repeat:no-repeat;background-size:contain;font-weight:700;height:50px;position:absolute;right:10px;top:5px;width:100px}.MvpdLogout-mvpdLogout:hover .MvpdLogout-mvpdLogoutDropdown{display:block}.MvpdLogout-mvpdLogoutDropdown{background-color:#f2f2f2;color:#000;cursor:pointer;display:none;font-weight:700;padding:10px 20px;position:absolute;right:0;top:50px;white-space:nowrap}.MvpdServiceProvider-mvpdProvider{display:flex;position:relative}.MvpdServiceProvider-mvpdProvider--twc:after{color:#fff;content:"*";font-size:1.5rem;position:absolute;right:10px;top:8px}.MvpdServiceProvider-mvpdProviderFeatured{background:#383838;box-sizing:border-box;height:70px;margin:0 2px 2px 0;max-width:122px;padding:10px;width:calc(33% - 2px)}.MvpdServiceProvider-mvpdProviderFeatured:nth-child(3n){margin-right:0}@media (min-width:1020px){.MvpdServiceProvider-mvpdProviderFeatured{height:68px;margin:0 3px 3px 0;max-width:122px;width:calc(20% - 3px)}.MvpdServiceProvider-mvpdProviderFeatured:nth-child(3n){margin-right:3px}.MvpdServiceProvider-mvpdProviderFeatured:nth-child(5n){margin-right:0}}@media (min-width:1340px){.MvpdServiceProvider-mvpdProviderFeatured{height:92px;max-width:190px}}.MvpdServiceProvider-mvpdProviderFeatured:hover{background-color:#484848}.MvpdServiceProvider-mvpdProviderFeatured .MvpdServiceProvider-mvpdProviderContent{height:100%;margin:auto;max-height:28px;max-width:97px;position:relative;width:100%}@media (min-width:1020px){.MvpdServiceProvider-mvpdProviderFeatured .MvpdServiceProvider-mvpdProviderContent{max-height:30px;max-width:102px}}@media (min-width:1340px){.MvpdServiceProvider-mvpdProviderFeatured .MvpdServiceProvider-mvpdProviderContent{max-height:35px;max-width:138px}}.MvpdServiceProvider-mvpdProviderFeatured img{bottom:0;left:0;margin:auto;max-height:100%;max-width:100%;position:absolute;right:0;top:0}.MvpdServiceProvider-mvpdProviderFull .MvpdServiceProvider-mvpdProviderContent{color:#000;padding:7px 30px;text-transform:none}.MvpdServiceProvider-mvpdProviderFull .MvpdServiceProvider-mvpdProviderContent:hover{background:#fff}.MvpdPredictiveResults-mvpdPredictive{position:relative}@media (min-width:760px){.MvpdPredictiveResults-mvpdPredictive{margin:0}}.MvpdPredictiveResults-mvpdPredictiveResults{background-color:#eee;border:1px solid #e6e6e6;list-style-type:none;margin-top:18px;padding:0}.MvpdPredictiveResults-mvpdPredictiveItem{border-bottom:1px solid #e6e6e6;box-sizing:border-box;color:#000;font-size:1.25rem;height:48px;line-height:1.125rem;padding:14px 15px;text-align:left}@media (min-width:1020px){.MvpdPredictiveResults-mvpdPredictiveItem{font-size:1.125rem;height:50px;padding:16px 15px}}@media (min-width:1340px){.MvpdPredictiveResults-mvpdPredictiveItem{height:54px;line-height:1.5rem}}.MvpdPredictiveResults-mvpdPredictiveItem:hover{background-color:#e6e6e6;cursor:pointer}.MvpdPredictiveResults-mvpdPredictiveItem a{text-transform:none}.MvpdPredictiveResults-mvpdPredictiveItemSelected{background-color:#e6e6e6;cursor:pointer}.MvpdPredictiveResults-mvpdPredictiveResultsList{position:relative}.MvpdPredictiveResults-mvpdPredictiveResultsFull{margin-bottom:18px;margin-top:0;max-height:352px;overflow-y:scroll}@media (min-width:1020px){.MvpdPredictiveResults-mvpdPredictiveResultsFull{margin-bottom:26px;max-height:246px}}@media (min-width:1340px){.MvpdPredictiveResults-mvpdPredictiveResultsFull{margin-bottom:42px;max-height:308px}}.MvpdPredictiveInput-mvpdPredictive{position:relative}@media (min-width:760px){.MvpdPredictiveInput-mvpdPredictive{margin:0}}.MvpdPredictiveInput-mvpdPredictiveIcon{height:26px;pointer-events:none;position:absolute;right:15px;top:50%;transform:translateY(-50%);width:26px}@media (min-width:1020px){.MvpdPredictiveInput-mvpdPredictiveIcon{height:24px;width:24px}}@media (min-width:1340px){.MvpdPredictiveInput-mvpdPredictiveIcon{height:26px;width:26px}}.MvpdPredictiveInput-mvpdPredictiveIcon:before{color:#666;font-size:12px;pointer-events:all;position:relative}.MvpdPredictiveInput-mvpdPredictiveIconClose:before{cursor:pointer;font-size:18px;top:3px}.MvpdPredictiveInput-mvpdPredictiveIconSearch:before{font-size:20px;top:2px}.MvpdPredictiveInput-mvpdPredictiveInput{border:none;box-sizing:border-box;color:#1e1e1e;font-size:1.25rem;height:48px;padding:0 15px;pointer-events:all;width:100%}@media (min-width:1020px){.MvpdPredictiveInput-mvpdPredictiveInput{font-size:1.125rem;height:50px;padding:0 20px}}@media (min-width:1340px){.MvpdPredictiveInput-mvpdPredictiveInput{font-size:1.5rem}}.MvpdFooter-mvpdDialogFaq{color:#fff;display:block;font-size:1.25rem;margin-top:20px;text-align:left}.MvpdFooter-mvpdDialogFaq a{text-transform:none!important}@media (min-width:1020px){.MvpdFooter-mvpdDialogFaq{font-size:1.125rem;margin-top:24px;text-align:center}}@media (min-width:1340px){.MvpdFooter-mvpdDialogFaq{font-size:1.375rem;margin-top:42px}}.MvpdDialog-episodePageEmbed{background:#000}.MvpdDialog-episodePageEmbed .MvpdDialog-mvpdDialog{padding:20px 15px}.MvpdDialog-mvpdDialogContainer{background:#000}.MvpdDialog-mvpdDialog{background:#000;padding:20px 15px}@media (min-width:760px){.MvpdDialog-mvpdDialog{padding:15px}}@media (min-width:1020px){.MvpdDialog-mvpdDialog{padding:32px 15px}}@media (min-width:1340px){.MvpdDialog-mvpdDialog{padding:48px 15px 235px}}.MvpdDialog-mvpdDialog a{color:#005594;cursor:pointer;text-decoration:none;text-transform:uppercase}.MvpdDialog-mvpdDialog a:hover{opacity:.7}.MvpdDialog-mvpdDialog a.MvpdDialog-mvpdDialogBack{text-transform:none}.MvpdDialog-mvpd-dialog__animate-appear{opacity:.01}.MvpdDialog-mvpd-dialog__animate-appear.MvpdDialog-mvpd-dialog__animate-enter-active{opacity:1;transition:opacity .6s ease-in-out}.MvpdDialog-mvpd-dialog__animate-enter{opacity:.01}.MvpdDialog-mvpd-dialog__animate-enter.MvpdDialog-mvpd-dialog__animate-enter-active{opacity:1;transition:opacity .6s ease-in-out}.MvpdDialog-mvpdDialogIframe{box-sizing:border-box;display:table;margin:auto;max-width:370px;text-align:center}@media (min-width:1020px){.MvpdDialog-mvpdDialogIframe{max-width:612px}}@media (min-width:1340px){.MvpdDialog-mvpdDialogIframe{max-width:832px}}.MvpdDialog-mvpdDialogIframe iframe{border:none;max-width:100%}.MvpdDialog-mvpdDialogIframe .MvpdDialog-mvpdDialogBack{margin-bottom:1rem;position:static}.MvpdDialog-mvpdDialogFeatured,.MvpdDialog-mvpdDialogFull{margin:0 auto;text-align:center}.MvpdDialog-mvpdDialogFeatured{margin:auto;max-width:370px}@media (min-width:760px){.MvpdDialog-mvpdDialogFeatured{max-width:370px;min-height:475px}}@media (min-width:1020px){.MvpdDialog-mvpdDialogFeatured{max-width:612px;min-height:475px}}@media (min-width:1340px){.MvpdDialog-mvpdDialogFeatured{max-width:832px}}.MvpdDialog-mvpdDialogFeatured .MvpdDialog-mvpdDialogProviders{display:flex;flex-wrap:wrap;justify-content:center;margin-bottom:30px}.MvpdDialog-mvpdDialogFull{max-width:370px;position:relative}@media (min-width:1020px){.MvpdDialog-mvpdDialogFull{max-width:612px}}@media (min-width:1340px){.MvpdDialog-mvpdDialogFull{max-width:832px}}.MvpdDialog-mvpdDialogFull .MvpdDialog-mvpdDialogProviders{text-align:left}.MvpdDialog-mvpdDialogTitle{color:#fff;font-size:1.5rem;line-height:1.5rem;margin-bottom:20px;text-transform:uppercase}@media (min-width:760px){.MvpdDialog-mvpdDialogTitle{margin-bottom:10px}}@media (min-width:1020px){.MvpdDialog-mvpdDialogTitle{font-size:1.75rem;margin-bottom:20px}}@media (min-width:1340px){.MvpdDialog-mvpdDialogTitle{font-size:1.875rem}}.MvpdDialog-mvpdDialogDescription{color:#fff;font-size:1.25rem;line-height:24px;margin-bottom:1rem;text-align:left}@media (min-width:760px){.MvpdDialog-mvpdDialogDescription{margin-bottom:11px}}@media (min-width:1020px){.MvpdDialog-mvpdDialogDescription{font-size:1.125rem;margin-bottom:24px;text-align:center}}@media (min-width:1340px){.MvpdDialog-mvpdDialogDescription{font-size:1.375rem}}.MvpdDialog-mvpd-dialog__twc{color:#f1f1f1;font-size:1rem;text-align:left}@media (min-width:1020px){.MvpdDialog-mvpd-dialog__twc{text-align:center}}.MvpdDialog-mvpdDialogFullLink{color:#fff;display:block;font-size:1.25rem;line-height:24px;margin:14px 0 12px;text-align:left}@media (min-width:1020px){.MvpdDialog-mvpdDialogFullLink{font-size:1.125rem;margin:26px 0 18px;text-align:center}}@media (min-width:1340px){.MvpdDialog-mvpdDialogFullLink{font-size:1.375rem;margin:42px 0 18px}}.MvpdDialog-mvpdDialogFullLink a{text-transform:none}.MvpdDialog-mvpdDialogBack{display:block;font-size:1.375rem;line-height:20px;margin-bottom:18px;text-align:left;text-transform:none}@media (min-width:1020px){.MvpdDialog-mvpdDialogBack{left:0;line-height:33px;position:absolute;top:42px}}@media (min-width:1340px){.MvpdDialog-mvpdDialogBack{top:45px}}.MvpdDialog-mvpd-dialog__predictive-input{border:none;width:100%}.MvpdDialog-mvpdDialogPredictive{position:relative}.MvpdDialog-mvpdDialogPredictive .MvpdDialog-mvpdPredictiveResults{left:0;max-height:240px;overflow-y:scroll;position:absolute;right:0;z-index:1}@media (min-width:1020px){.MvpdDialog-mvpdDialogPredictive .MvpdDialog-mvpdPredictiveResults{max-height:250px}}.MvpdDialog-mvpdDialogFullList{position:relative}.MvpdDialog-mvpdDialogFullList .MvpdDialog-mvpdDialogDescription{margin-top:20px}@media (min-width:760px){.MvpdDialog-mvpdDialogFullList .MvpdDialog-mvpdDialogDescription{font-size:1.375rem;margin-bottom:18px}}@media (min-width:1020px){.MvpdDialog-mvpdDialogFullList .MvpdDialog-mvpdDialogDescription{font-size:1.125rem;margin-top:32px}}@media (min-width:1340px){.MvpdDialog-mvpdDialogFullList .MvpdDialog-mvpdDialogDescription{font-size:1.375rem;margin-top:48px}}.MvpdDialog-mvpdDialogSubscribe{background-color:#383838;margin-bottom:5.5rem}.MvpdConcurrencyMessage-container{align-items:center;background:radial-gradient(51.05% 62.78% at 50% 26.48%,#062f62 0,#062956 37.18%,#051838 100%);display:flex;flex-direction:column;justify-content:center;padding:23px;width:100%}.MvpdConcurrencyMessage-logo{height:27px;margin-bottom:10px;width:185px}.MvpdConcurrencyMessage-message{margin-bottom:32px;width:350px}@media (max-width:359px){.MvpdConcurrencyMessage-message{width:266px}}.MvpdConcurrencyMessage-message p{color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:23px;font-weight:700;line-height:28px;text-align:center}@media (max-width:359px){.MvpdConcurrencyMessage-message p{font-size:18px;line-height:24px}}.MvpdConcurrencyMessage-tryAgainButton{align-items:center;appearance:none;background-color:#005594;border:1px solid #002f6c;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px!important;justify-content:center;letter-spacing:1px;margin:0 auto;padding:0 20px;padding:0!important;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:191px}.MvpdConcurrencyMessage-tryAgainButton>span{display:block;line-height:12px}.MvpdConcurrencyMessage-tryAgainButton [class*=" icon-"],.MvpdConcurrencyMessage-tryAgainButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.MvpdConcurrencyMessage-tryAgainButton [class*=" icon-"]:before,.MvpdConcurrencyMessage-tryAgainButton [class^=icon-]:before{line-height:12px}.MvpdConcurrencyMessage-tryAgainButton:focus,.MvpdConcurrencyMessage-tryAgainButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.MvpdConcurrencyMessage-tryAgainButton[class*=touchButton]:hover{background-color:#005594;border-color:#002f6c;color:#fff}@media (hover:hover){.MvpdConcurrencyMessage-tryAgainButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.MvpdConcurrencyMessage-tryAgainButton{padding:0 30px;width:auto}}@media (max-width:359px){.MvpdConcurrencyMessage-tryAgainButton{width:100%}}@media (min-width:760px){.MvpdConcurrencyMessage-tryAgainButton{width:191px}}.MvpdConcurrencyMessage-tryAgainButton:last-child{margin-bottom:7px}.MvpdRedirect-unsupportedDevice{position:relative}.MvpdRedirect-redirectScreenMobile,.MvpdRedirect-redirectScreenTablet{height:auto;width:100%}.MvpdRedirect-appleButtonMobile{display:block;left:10%;position:absolute;top:55%;width:35%}.MvpdRedirect-appleButtonTablet{display:block;left:17%;position:absolute;top:70%;width:25%}.MvpdRedirect-androidButtonMobile{display:block;position:absolute;right:10%;top:55%;width:35%}.MvpdRedirect-androidButtonTablet{display:block;position:absolute;right:17%;top:70%;width:25%}.MvpdRedirect-downloadButton{height:auto;width:100%}.BionicPlayer-videoPlayer{height:100%;width:100%}.BionicPlayer-playerContainer{background-color:#000;height:90%;padding:60px 0}.BionicPlayer-playerContainer iframe{border:none}@media (min-width:760px){.BionicPlayer-playerContainer{margin:0 auto;max-height:calc(100vh - 130px);max-width:calc(177.77778vh - 231.11111px);padding:30px 120px}}.BionicPlayer-playerContainerUninitialized{background-color:initial;position:absolute;top:0;width:100%}.BionicPlayer-playerContainerHidden{display:none}.BionicPlayer-slate{display:flex;height:100%;padding-top:20px;vertical-align:middle}.BionicPlayer-slateimg{margin:auto;max-height:50vh;max-width:100%}.video-player-progress{display:none!important}.video-player__controls{margin:0 auto 8%!important}@media (min-width:760px){.video-player__controls{margin:0 auto 6%!important}}.video-player__controls__container{background-color:initial!important;height:39px!important}.PlayerLoader{position:unset!important}.video-ccoptions__overlay{display:block!important;position:unset!important;width:200px!important}.ccoptions-menu__content{bottom:40%!important;float:right!important;height:60px!important;position:absolute!important;right:12%!important;top:unset!important;width:unset!important;z-index:20!important}#ccPageOptions-audio-main,#ccPageOptions-captions-en,#ccPageOptions-edge-none{display:none!important}.video-ccoptions__header{border-bottom:1px solid #fcb700!important;color:#fcb700!important;font-family:Proxima Nova,Helvetica,Arial,sans-serif!important;font-size:20px!important;font-weight:700!important;margin-left:15px!important;padding:unset!important;padding-top:30px!important;width:90%!important}.video-ccoptions__close-button:before{margin-right:12px!important;margin-top:4px!important}.video-ccoptions__menu--item .video-ccoptions__menu--checkbox .checkbox__content{font-family:Proxima Nova,Helvetica,Arial,sans-serif!important;font-size:18px}.video-ccoptions__menu--item .video-ccoptions__menu--checkbox .checkbox__icon{float:right!important;position:absolute!important;right:0}.video-ccoptions__menu--item .video-ccoptions__item--icon{float:right;height:16px;margin-right:7px;position:absolute;right:0;width:16px}.video-ccoptions__submenu--title{font-family:Proxima Nova,Helvetica,Arial,sans-serif!important;font-size:16px!important}#audio-label{padding-top:20px}.video-ccoptions__close-button--wrapper .video-ccoptions__close-button:before{margin-top:10px!important}.ccpreferences-overlay__content,.video-ccpreferences__overlay{font-family:Proxima Nova,Helvetica,Arial,sans-serif!important}.ccpreferences-overlay__content{left:0!important}.video-ccpreferences__header{font-family:Proxima Nova,Helvetica,Arial,sans-serif!important}#captions-label{padding-top:10px!important}.video-ccoptions__panel{background-color:#000000b3!important}.BionicPlayer-geoErrorSlate{background:linear-gradient(#005594,#002f6c);height:50vh;margin:auto;position:relative;top:5vh;width:80vh}.BionicPlayer-geoErrorSlateText{color:#fff;font-size:26px;font-weight:500;line-height:2.5;margin:auto;position:relative;text-align:center;top:10vh}.BionicPlayer-geoRedirectLink{color:#fff;font-size:27px;font-weight:500;text-decoration:underline}.BionicPlayer-geoCNBCLogo{height:100px;margin:auto;position:relative;top:65px}@media only screen and (min-height:360px) and (max-height:700px){.BionicPlayer-geoErrorSlateText{font-size:18px;line-height:2;margin-top:10px}.BionicPlayer-geoRedirectLink{font-size:18px}.BionicPlayer-geoCNBCLogo{height:80px}}@media only screen and (max-width:1440px){.ccoptions-menu__content{right:8%!important}}@media only screen and (max-width:1340px){.ccoptions-menu__content{right:4%!important}}@media only screen and (min-width:1180px) and (max-width:1250px){.ccoptions-menu__content{height:70px!important}}@media only screen and (max-width:1020px){.ccoptions-menu__content{height:85px!important}.video-ccoptions__header{font-size:16px!important}.video-ccoptions__menu--item .video-ccoptions__menu--checkbox .checkbox__content{font-size:14px!important}.video-ccoptions__menu--item .video-ccoptions__item--icon{height:12px;width:12px}.video-ccoptions__submenu--title{font-size:12px!important}}@media only screen and (max-width:1180px){.ccoptions-menu__content{height:100px!important}}@media only screen and (max-height:800px){.ccoptions-menu__content{height:100px!important}}@media only screen and (max-height:700px){.ccoptions-menu__content{height:120px!important}.video-ccoptions__header{font-size:16px!important}.video-ccoptions__menu--item .video-ccoptions__menu--checkbox .checkbox__content{font-size:14px!important}.video-ccoptions__menu--item .video-ccoptions__item--icon{height:12px;width:12px}.video-ccoptions__submenu--title{font-size:12px!important}}.BionicPlayer-tempPassPlayerContainer{height:100%;width:100%}.BionicPlayer-tempPassPlayerContainer video{display:flex}.BionicPlayer-tempPassPlayerContainer .video-player__controls--cc,.BionicPlayer-tempPassPlayerContainer .video-player__controls--fullscreen{display:none!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls{margin-bottom:0!important;padding:0!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls__container{align-items:center;border-radius:0!important;height:28px!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls--button{bottom:auto!important;height:24px!important;width:24px!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls--button img,.BionicPlayer-tempPassPlayerContainer .video-player__controls--button svg{height:50%!important;transform:translate(-50%,-50%)!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls--button:first-child{margin-left:5px!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls__volume{bottom:auto!important;display:flex;left:30px!important;position:absolute!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls--slider{display:none!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls__top-button--icon{height:18px!important;width:18px!important}.LivePlayerChannel-channelContainer{background-color:#171717;display:block;overflow:visible;padding:10px;position:relative;width:100%}.LivePlayerChannel-channelContainer *{box-sizing:border-box}.LivePlayerChannel-channelHolder{background-color:#171717;display:flex;flex-wrap:wrap;justify-content:center;padding:5px 8px;width:100%}@media (max-width:1019px){.LivePlayerChannel-channelHolder{align-items:center;flex-direction:column;padding:5px 8px}}.LivePlayerChannel-leftContainer{display:block;width:295px}@media (max-width:1339px){.LivePlayerChannel-leftContainer{display:none}}.LivePlayerChannel-channels,.LivePlayerChannel-rightContainer{display:flex;text-align:center}.LivePlayerChannel-channels{background:#3cb87833;border-radius:26px;flex-direction:row;height:31px;margin-bottom:16px;margin-top:16px;position:relative;width:336px}.LivePlayerChannel-channels .LivePlayerChannel-slider{background-color:#3cb878;border-radius:30px;height:31px;left:0;position:absolute;top:0;transition:left .2s ease-in-out;width:112px}@media (max-width:759px){.LivePlayerChannel-channels .LivePlayerChannel-slider{width:88px}}.LivePlayerChannel-channels .LivePlayerChannel-buttonContainer{display:flex;flex-wrap:nowrap;width:336px}.LivePlayerChannel-channels .LivePlayerChannel-buttonContainer .LivePlayerChannel-selector{color:#000;cursor:pointer;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;height:31px;line-height:17px;transition:color .2s ease-in;width:112px;z-index:1}@media (max-width:759px){.LivePlayerChannel-channels .LivePlayerChannel-buttonContainer .LivePlayerChannel-selector{width:88px}}.LivePlayerChannel-channels .LivePlayerChannel-buttonContainer .LivePlayerChannel-buttonInactive{color:#fff;transition:color .2s ease-in}@media (max-width:759px){.LivePlayerChannel-channels{width:264px}}.LivePlayerChannel-embeddedPlayerSpacing{align-items:center;flex-direction:column}.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-rightContainer{justify-content:space-around;padding:0 22px 16px;text-align:center;width:295px}@media (max-width:1019px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-rightContainer{padding:0 16px 16px;width:300px}}@media (max-width:759px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-rightContainer{padding:0 22px 16px;width:300px}}.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels{background:#3cb87833;border-radius:26px;flex-direction:row;height:31px;margin-bottom:16px;margin-top:16px;position:relative;width:336px}.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-slider{background-color:#3cb878;border-radius:30px;height:31px;left:0;position:absolute;top:0;transition:left .2s ease-in-out;width:112px}@media (max-width:1019px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-slider{width:92px}}@media (max-width:759px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-slider{width:88px}}.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-buttonContainer{display:flex;flex-wrap:nowrap;width:336px}.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-buttonContainer .LivePlayerChannel-selector{color:#000;cursor:pointer;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;height:31px;line-height:17px;transition:color .2s ease-in;width:112px;z-index:1}@media (max-width:1019px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-buttonContainer .LivePlayerChannel-selector{width:92px}}@media (max-width:759px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-buttonContainer .LivePlayerChannel-selector{width:88px}}.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-buttonContainer .LivePlayerChannel-buttonInactive{color:#fff;transition:color .2s ease-in}@media (max-width:1019px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels{width:276px}}@media (max-width:759px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels{width:264px}}.LivePlayerChannel-rightContainer{justify-content:space-around;padding:8px 16px 22px;text-align:center;width:295px}@media (max-width:1019px){.LivePlayerChannel-rightContainer{padding:0 16px 16px;width:300px}}@media (max-width:759px){.LivePlayerChannel-rightContainer{padding:0 22px 16px;width:300px}}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton{cursor:pointer;display:flex;text-decoration:none;transition:background-color .15s ease-in 50ms}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton>.LivePlayerChannel-withEmphasis{height:26px;justify-content:center;padding:4px 0;transition:color .1s ease-in;width:133px}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton>.LivePlayerChannel-noEmphasis{height:26px;justify-content:center;padding:4px 0;transition:color .1s ease-in}.LivePlayerChannel-rightContainer .LivePlayerChannel-noEmphasisIcon,.LivePlayerChannel-rightContainer .LivePlayerChannel-withEmphasisIcon{fill:#d9d9d9;margin-right:8px;margin-top:2px;transition:fill .1s ease-in}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton:hover .LivePlayerChannel-noEmphasis,.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton:hover .LivePlayerChannel-withEmphasis{color:#fcb700}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton:hover .LivePlayerChannel-noEmphasisIcon,.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton:hover .LivePlayerChannel-withEmphasisIcon{fill:#fcb700}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton:active .LivePlayerChannel-withEmphasis{background-color:#fcb700;border-radius:30px;color:#171717}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton:active .LivePlayerChannel-withEmphasisIcon{fill:#171717}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton>span>img{display:inline-block;padding-right:8px;width:24px}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton>span{color:#d9d9d9;display:inline-flex;flex-wrap:nowrap;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:700;text-decoration:none}@media (max-width:1019px){.LivePlayerChannel-rightContainer{flex-direction:row;margin-left:0;text-align:center;top:40px}}.LiveTvGate-liveTvMvpd{height:100%;position:relative}.LiveTvGate-closeButton{align-items:center;background-color:#fff;border-radius:23px;display:flex;height:24px;justify-content:center;position:absolute;right:20px;width:24px}.LiveTvGate-closeButton svg path{fill:#00081a}.WatchLiveRightRail-containerFluidWidths{margin:0 auto;width:100%}@media (min-width:1020px){.WatchLiveRightRail-containerFluidWidths{max-width:960px}}@media (min-width:1340px){.WatchLiveRightRail-containerFluidWidths{max-width:1290px}}.WatchLiveRightRail-containerWidth100{width:100%}.WatchLiveRightRail-page{display:block;margin-bottom:25px;overflow:visible}@media (min-width:760px){.WatchLiveRightRail-page{margin-bottom:28px}}.WatchLiveRightRail-advertorialPage{display:block;overflow:visible}.WatchLiveRightRail-pageGrid{margin-left:auto;margin-right:auto;max-width:1290px;overflow:visible;width:100%}.WatchLiveRightRail-pageWrapper{margin:0 auto;max-width:100%}@media (min-width:760px){.WatchLiveRightRail-pageWrapper{max-width:678px}}@media (min-width:1020px){.WatchLiveRightRail-pageWrapper{max-width:960px}}@media (min-width:1340px){.WatchLiveRightRail-pageWrapper{max-width:1290px}}@media (min-width:760px){.WatchLiveRightRail-pageWrapper{max-width:100%!important}}.WatchLiveRightRail-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.WatchLiveRightRail-pageRow{padding-left:0;padding-right:0}}@media (min-width:1020px){.WatchLiveRightRail-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}}@media (min-width:1020px) and (min-width:760px){.WatchLiveRightRail-pageRow{padding-left:0;padding-right:0}}@media (max-width:1019px){.WatchLiveRightRail-pageRow{margin:0;padding:0}}@media (min-width:360px) and (max-width:759px){.WatchLiveRightRail-pageRow.WatchLiveRightRail-containerFluidWidths{padding:0 21px}}@media (min-width:760px) and (max-width:1019px){.WatchLiveRightRail-pageRow.WatchLiveRightRail-containerFluidWidths{padding:0 45px}}.WatchLiveRightRail-pageRowFlex{display:flex}.WatchLiveRightRail-rowUnderAd{margin-top:-29px}@media (min-width:1020px){.WatchLiveRightRail-rowUnderAd{margin-top:-50px}}@media (min-width:1340px){.WatchLiveRightRail-rowUnderAd{margin-top:-44px}}.WatchLiveRightRail-rowWithBackground{background:#cfd8e2;position:relative}.WatchLiveRightRail-rowWithBackground:after,.WatchLiveRightRail-rowWithBackground:before{background:#cfd8e2;content:"";display:block;height:100%;position:absolute;width:25vw}.WatchLiveRightRail-rowWithBackground:before{right:100%;top:0}.WatchLiveRightRail-rowWithBackground:after{left:100%;top:0}.WatchLiveRightRail-isAdvertorial{display:block;margin-bottom:50px!important}.WatchLiveRightRail-flipRowOrder .WatchLiveRightRail-col:first-child{order:2}@media (min-width:1020px){.WatchLiveRightRail-flipRowOrder .WatchLiveRightRail-col:first-child{order:1}}.WatchLiveRightRail-flipRowOrder .WatchLiveRightRail-col:last-child{order:1}@media (min-width:1020px){.WatchLiveRightRail-flipRowOrder .WatchLiveRightRail-col:last-child{order:2}}.WatchLiveRightRail-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.WatchLiveRightRail-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.WatchLiveRightRail-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.WatchLiveRightRail-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.WatchLiveRightRail-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.WatchLiveRightRail-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.WatchLiveRightRail-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.WatchLiveRightRail-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}.WatchLiveRightRail-containerFluidWidths .WatchLiveRightRail-col{max-width:678px!important;min-width:678px}}@media (min-width:760px){.WatchLiveRightRail-col-3{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.WatchLiveRightRail-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.WatchLiveRightRail-col-3{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.WatchLiveRightRail-col-3{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.WatchLiveRightRail-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.WatchLiveRightRail-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}.WatchLiveRightRail-col-3:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.WatchLiveRightRail-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}@media (min-width:760px){.WatchLiveRightRail-col-6{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.WatchLiveRightRail-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.WatchLiveRightRail-col-6{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.WatchLiveRightRail-col-6{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.WatchLiveRightRail-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.WatchLiveRightRail-col-6{flex-grow:0;flex-shrink:0;margin-left:0;margin-right:0;max-width:calc(44.44444% - 16.66667px);min-width:calc(44.44444% - 16.66667px)}.WatchLiveRightRail-col-6:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.WatchLiveRightRail-col-6{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(50% - 15px);min-width:calc(50% - 15px)}}.WatchLiveRightRail-col-9 .BrandBanner-container{margin-bottom:30px;z-index:99}@media (min-width:1340px){.WatchLiveRightRail-col-9 .BrandBanner-container{margin-left:calc(-50vw - -538.5px)}}@media (min-width:760px){.WatchLiveRightRail-col-9 .BrandBanner-container{margin-bottom:-100px;margin-top:50px}.WatchLiveRightRail-col-9{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.WatchLiveRightRail-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.WatchLiveRightRail-col-9{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.WatchLiveRightRail-col-9{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.WatchLiveRightRail-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.WatchLiveRightRail-col-9{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.WatchLiveRightRail-col-9:last-child{margin-right:0}}@media (min-width:1340px){.WatchLiveRightRail-col-9{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}.WatchLiveRightRail-col-9.WatchLiveRightRail-article{flex-grow:0;flex-shrink:0;margin-left:calc(8.33333% + 2.5px);max-width:calc(58.33333% - 12.5px);min-width:calc(58.33333% - 12.5px)}}@media (min-width:760px){.WatchLiveRightRail-col-12{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.WatchLiveRightRail-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.WatchLiveRightRail-col-12{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.WatchLiveRightRail-col-12{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.WatchLiveRightRail-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.WatchLiveRightRail-col-12{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.WatchLiveRightRail-col-12:last-child{margin-right:0}}@media (min-width:1340px){.WatchLiveRightRail-col-12{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}.WatchLiveRightRail-col-full{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.WatchLiveRightRail-col-full .MyComponentName-container{width:100vw}@media (min-width:1340px){.WatchLiveRightRail-col-full .MyComponentName-container{max-width:none}}.WatchLiveRightRail-col-full:last-child{margin-right:0}.WatchLiveRightRail-clear-col-padding{padding-bottom:0;padding-top:0}.WatchLiveRightRail-paddedWrapper{padding-bottom:15px;padding-top:15px}@media (min-width:1020px){.WatchLiveRightRail-paddedWrapper{padding-bottom:20px;padding-top:25px}.WatchLiveRightRail-hasBanner{margin-bottom:130px}}.WatchLiveRightRail-sidebar{flex-grow:0;flex-shrink:0;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.WatchLiveRightRail-sidebar{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.WatchLiveRightRail-sidebar{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.WatchLiveRightRail-sidebar{max-width:100%;min-width:100%}}@media (min-width:1340px){.WatchLiveRightRail-sidebar{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:360px){.WatchLiveRightRail-sidebar{min-width:100%}}@media (min-width:760px){.WatchLiveRightRail-sidebar{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}@media (min-width:1020px){.WatchLiveRightRail-sidebar{flex-grow:0;flex-shrink:0;margin-bottom:40px;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}}@media (min-width:1340px){.WatchLiveRightRail-sidebar{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}.WatchLiveRightRail-sidebarLeft{flex-grow:0;flex-shrink:0;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.WatchLiveRightRail-sidebarLeft{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.WatchLiveRightRail-sidebarLeft{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.WatchLiveRightRail-sidebarLeft{max-width:100%;min-width:100%}}@media (min-width:1340px){.WatchLiveRightRail-sidebarLeft{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:360px){.WatchLiveRightRail-sidebarLeft{min-width:100%}}@media (min-width:760px){.WatchLiveRightRail-sidebarLeft{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}@media (min-width:1020px){.WatchLiveRightRail-sidebarLeft{flex-grow:0;flex-shrink:0;margin-bottom:40px;margin-left:0;margin-right:30px;max-width:calc(22.22222% - 23.33333px);min-width:calc(22.22222% - 23.33333px);z-index:1}}@media (min-width:1340px){.WatchLiveRightRail-sidebarLeft{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}@media (min-width:1020px){.WatchLiveRightRail-sidebarLeftNav{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}}@media (min-width:1340px){.WatchLiveRightRail-sidebarLeftNav{flex-grow:0;flex-shrink:0;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}.WatchLiveRightRail-sidebarPro{margin-left:0;margin-right:30px}.WatchLiveRightRail-AdvertorialStory-ArticleHeader-1{display:hide}@media (min-width:360px){.WatchLiveRightRail-rightRail{display:none}}@media (min-width:1020px){.WatchLiveRightRail-rightRail{display:block}}.WatchLiveRightRail-mobileBanner.WatchLiveRightRail-berkshireEventContainer{margin:0 auto}@media (min-width:1020px){.WatchLiveRightRail-mobileBanner{display:none}}.WatchLiveRightRail-desktopBanner{display:none}@media (min-width:1020px){.WatchLiveRightRail-desktopBanner{display:block}}.WatchLiveRightRail-container{border:4px solid #002f6c;color:#002f6c;margin-bottom:30px;padding:8px 16px}.WatchLiveRightRail-container a{color:#002f6c}.WatchLiveRightRail-watchliveBannerV2{background:linear-gradient(#fff,#fff) padding-box,linear-gradient(to bottom right,#fccc12,#ff7112,#ef1541,#6e55dc,#069de0,#05ac3f) border-box;border:2px solid #0000;border-radius:4px;padding:16px 12px}.WatchLiveRightRail-header{display:flex;justify-content:space-between;margin-bottom:10px}.WatchLiveRightRail-header a{display:flex}.WatchLiveRightRail-liveTV{background:#fff;display:flex;font-size:14px;font-style:normal;font-weight:800;height:20px;line-height:18px;margin:-18px 0 0 -8px;padding:2px 10px;width:65px}.WatchLiveRightRail-liveTV img{margin-right:2px;width:22px}.WatchLiveRightRail-currTitle{display:block;font-size:20px;font-weight:800;line-height:18px;margin-bottom:10px;width:70%}@media (min-width:760px) and (max-width:1019px){.WatchLiveRightRail-currTitle{max-width:205px}}.WatchLiveRightRail-currTitle:hover{color:#4699d6}.WatchLiveRightRail-wlButton,.WatchLiveRightRail-wlButtonMobile{background:#ce2b2b;color:#fff!important;display:flex;font-weight:700;justify-content:space-evenly;margin-bottom:10px}.WatchLiveRightRail-wlButton:hover,.WatchLiveRightRail-wlButtonMobile:hover{background:#b40909}.WatchLiveRightRail-wlButton{display:none;font-size:12px;height:30px;padding:6px 4px}@media (min-width:1020px){.WatchLiveRightRail-wlButton{display:flex;width:130px}}.WatchLiveRightRail-wlButton .WatchLiveRightRail-logo{width:18px}.WatchLiveRightRail-wlButtonMobile{font-size:12px;padding:4px 6px}@media (min-width:760px){.WatchLiveRightRail-wlButtonMobile{display:flex;padding:4px;width:260px}}@media (min-width:1020px){.WatchLiveRightRail-wlButtonMobile{display:none}}.WatchLiveRightRail-contents{align-items:center;display:flex;justify-content:space-between}.WatchLiveRightRail-nextTitle{font-weight:800}.WatchLiveRightRail-footer{display:flex;font-size:12px;justify-content:space-between}.WatchLiveRightRail-footer .WatchLiveRightRail-audio{align-items:center;display:flex;font-size:12px;font-style:normal;font-weight:700;line-height:19px;margin-top:-3px;text-transform:capitalize}.WatchLiveRightRail-footer .WatchLiveRightRail-audio span{text-decoration:underline}.WatchLiveRightRail-footer .WatchLiveRightRail-nextShow{padding-right:22px}.WatchLiveRightRail-inline{border:none;border-top:3px solid #002f6c;padding:8px 0}@media (min-width:760px){.WatchLiveRightRail-inline{display:none}}@media (min-width:1020px){.WatchLiveRightRail-inline{display:block;margin-left:calc(16.66667% + 5px);min-width:auto}}@media (min-width:1340px){.WatchLiveRightRail-inline{margin-left:calc(14.28571% + 4.28571px);min-width:auto}}.WatchLiveRightRail-inline .WatchLiveRightRail-audio,.WatchLiveRightRail-inline .WatchLiveRightRail-liveTV{display:none}.WatchLiveRightRail-inline .WatchLiveRightRail-wlButton{margin-bottom:-10px;margin-top:0}.WatchLiveRightRail-berkshireEvent{margin-bottom:30px;max-width:300px;width:100%}@media (max-width:759px){.WatchLiveRightRail-berkshireEvent{display:block;margin:auto auto 15px;max-width:318px;width:100%}}.WatchLiveRightRail-BHmobileBanner{display:block}@media (min-width:480px){.WatchLiveRightRail-BHmobileBanner{display:none}}.WatchLiveRightRail-BHinline{display:none}.WatchLiveRightRail-BHrightRail{display:block}@media (min-width:760px){.WatchLiveRightRail-BHrightRail{display:none}}@media (min-width:1020px){.WatchLiveRightRail-BHrightRail{display:block}}.WatchLiveRightRail-audioLink{color:#001e5a;display:block;font-size:12px;font-weight:600;line-height:14.62px;margin-bottom:12px;text-decoration:underline;width:-moz-fit-content;width:fit-content}.WatchLiveRightRail-watchLivestreamButton{align-items:center;background-color:#0053cf;border-radius:5px;color:#fff!important;display:flex;font-size:14px;font-weight:700;justify-content:center;line-height:17.05px;margin-bottom:12px;min-height:51px}.WatchLiveRightRail-watchLivestreamButton span{animation:WatchLiveRightRail-pulse 1.5s infinite;animation-timing-function:ease-in-out;background-color:#fff;border-radius:100%;box-shadow:0 0 0 0 #fff;display:inline-block;height:8px;margin-right:8px;position:relative;transform:scale(1);width:8px}@keyframes WatchLiveRightRail-pulse{0%{box-shadow:0 0 0 1px #0053cf;opacity:1}70%{border:1px solid #0053cf;box-shadow:0 0 0 1px #fff;opacity:.9;padding:2px;transform:scale(1.2)}to{box-shadow:0 0 0 1px #fff;opacity:1;transform:scale(1)}}.WatchLiveRightRail-watchLivestreamButton:hover{background-color:#002f6c;color:#fff}.WatchLiveRightRail-footerV2{display:flex;flex-direction:column;gap:10px;justify-content:space-between}.WatchLiveRightRail-showDetailsContainer{align-items:center;display:flex;flex-direction:row;justify-content:space-between}.WatchLiveRightRail-nowText,.WatchLiveRightRail-upNextText{color:#001e5a;font-size:12px;font-weight:400;line-height:14.62px}.WatchLiveRightRail-liveShow{color:#002f6c;font-size:16px;font-weight:800;line-height:18px}@media (min-width:760px) and (max-width:1019px){.WatchLiveRightRail-liveShow{text-align:right}}.WatchLiveRightRail-nextShow{color:#002f6c;font-size:14px;font-weight:600;line-height:18px}@media (min-width:760px) and (max-width:1019px){.WatchLiveRightRail-nextShow{text-align:right;width:170px}}.TempPassOverlay-overlay{height:0;pointer-events:none;position:relative;width:100%;z-index:40}.TempPassOverlay-liveContainer{align-items:center;background:#27313c;border-radius:4px;display:flex;height:20px;justify-content:center;position:absolute;right:5px;top:5px;width:57px}@keyframes TempPassOverlay-blink{25%{opacity:1}50%{opacity:.4}75%{opacity:1}}.TempPassOverlay-redIcon{animation:TempPassOverlay-blink 2s linear infinite;background-clip:content-box;background-color:#ce2b2b;border:1px solid #b40909;border-radius:50%;box-sizing:initial;height:7px;margin-top:-1px;padding:2px;width:7px}.TempPassOverlay-liveText{color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:800;letter-spacing:.01em;line-height:15px;margin-left:5px;text-transform:uppercase}.TempPassOverlay-timerContainer{align-items:center;display:flex;height:20px;justify-content:left;position:absolute;right:5px;top:25px;width:57px}.TempPassOverlay-time{color:#fff;display:inline-block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:600;letter-spacing:.05em;line-height:14px;margin-left:5px;max-width:36px;min-width:36px;text-shadow:0 0 2px #000,0 0 1px #000;width:36px}.TempPassOverlay-linkOut{margin-top:2px;pointer-events:auto}.TempPassOverlay-linkIcon{filter:drop-shadow(0 0 .5px #000) drop-shadow(0 0 .5px #000)}.LogoOverlay-logoContainer{align-items:center;border-radius:4px;display:flex;height:20px;justify-content:center;pointer-events:none;position:absolute;right:66px;top:6px;width:auto;z-index:40}.LogoOverlay-logoContainer img{filter:drop-shadow(1px 1px 0 black) drop-shadow(-1px -1px 0 black) drop-shadow(-1px 1px 0 black) drop-shadow(1px -1px 0 black);height:auto;width:57px}.TempPass-playerContainer{background:#000;position:relative}.TempPass-omegaPlayerContainer{aspect-ratio:16/9;position:relative;z-index:0}.LiveTV-contentArea{background-color:#000;height:100%;min-height:60vh;width:100%}.LiveTV-contentAreaOmega{height:100%}.LiveTV-contentAreaOmega,.LiveTV-contentAreaOmegaPlus{background-color:#000;display:flex;flex-direction:column}.LiveTV-contentAreaOmegaPlus{height:487px}@media (max-width:1339px){.LiveTV-contentAreaOmegaPlus{height:325px}}@media (max-width:1019px){.LiveTV-contentAreaOmegaPlus{height:467px}}@media (max-width:759px){.LiveTV-contentAreaOmegaPlus{height:435px}}.LiveTV-slate{display:flex;height:100%;padding-top:20px;vertical-align:middle}.LiveTV-slateimg{margin:auto;max-height:50vh;max-width:100%}.liveTV{margin-bottom:0!important}.LiveTV-loadingContainer{align-items:center;display:flex;justify-content:center;min-height:60vh}.LiveTV-concurrencyMessage{align-items:stretch;display:flex;min-height:60vh}.LiveTV-wrapperForProAndTempPass{margin-bottom:20px;position:relative;width:100%}.LiveTV-channel{height:-moz-fit-content;height:fit-content}.LiveTV-channels,.LiveTV-leftContainer,.LiveTV-rightContainer{width:100%!important}.LiveTV-channels .LiveTV-buttonContainer .LiveTV-selector{text-align:center}.LiveTV-rightContainer .LiveTV-linkButton{justify-content:center;width:50%!important}.LiveTVContainer-containerFluidWidths{margin:0 auto;width:100%}@media (min-width:1020px){.LiveTVContainer-containerFluidWidths{max-width:960px}}@media (min-width:1340px){.LiveTVContainer-containerFluidWidths{max-width:1290px}}.LiveTVContainer-page{display:block;overflow:visible;padding-bottom:25px}@media (min-width:760px){.LiveTVContainer-page{padding-bottom:28px}}.LiveTVContainer-pageWrapper{margin:0 auto;max-width:100%}@media (min-width:760px){.LiveTVContainer-pageWrapper{max-width:678px}}@media (min-width:1020px){.LiveTVContainer-pageWrapper{max-width:960px}}@media (min-width:1340px){.LiveTVContainer-pageWrapper{max-width:1290px}}@media (min-width:760px){.LiveTVContainer-pageWrapper{max-width:100%!important}}.LiveTVContainer-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.LiveTVContainer-pageRow{padding-left:0;padding-right:0}}@media (min-width:1020px){.LiveTVContainer-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}}@media (min-width:1020px) and (min-width:760px){.LiveTVContainer-pageRow{padding-left:0;padding-right:0}}@media (max-width:1019px){.LiveTVContainer-pageRow{margin:0;padding:0}}.LiveTVContainer-gateContainer{background:#000;margin:0;padding:0}.LiveTVContainer-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.LiveTVContainer-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.LiveTVContainer-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.LiveTVContainer-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.LiveTVContainer-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.LiveTVContainer-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.LiveTVContainer-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.LiveTVContainer-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}.LiveTVContainer-containerFluidWidths .LiveTVContainer-col{max-width:678px!important;min-width:678px}}@media (min-width:760px){.LiveTVContainer-col-3{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.LiveTVContainer-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.LiveTVContainer-col-3{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.LiveTVContainer-col-3{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.LiveTVContainer-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.LiveTVContainer-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}.LiveTVContainer-col-3:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.LiveTVContainer-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}@media (min-width:760px){.LiveTVContainer-col-6{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.LiveTVContainer-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.LiveTVContainer-col-6{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.LiveTVContainer-col-6{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.LiveTVContainer-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.LiveTVContainer-col-6{flex-grow:0;flex-shrink:0;margin-left:0;margin-right:0;max-width:calc(44.44444% - 16.66667px);min-width:calc(44.44444% - 16.66667px)}.LiveTVContainer-col-6:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.LiveTVContainer-col-6{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(50% - 15px);min-width:calc(50% - 15px)}}.LiveTVContainer-col-9 .BrandBanner-container{margin-bottom:30px;z-index:99}@media (min-width:1340px){.LiveTVContainer-col-9 .BrandBanner-container{margin-left:calc(-50vw - -538.5px)}}@media (min-width:760px){.LiveTVContainer-col-9 .BrandBanner-container{margin-bottom:-100px;margin-top:50px}.LiveTVContainer-col-9{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.LiveTVContainer-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.LiveTVContainer-col-9{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.LiveTVContainer-col-9{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.LiveTVContainer-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.LiveTVContainer-col-9{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.LiveTVContainer-col-9:last-child{margin-right:0}}@media (min-width:1340px){.LiveTVContainer-col-9{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}.LiveTVContainer-col-9.LiveTVContainer-article{flex-grow:0;flex-shrink:0;margin-left:calc(8.33333% + 2.5px);max-width:calc(58.33333% - 12.5px);min-width:calc(58.33333% - 12.5px)}}@media (min-width:760px){.LiveTVContainer-col-12{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.LiveTVContainer-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.LiveTVContainer-col-12{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.LiveTVContainer-col-12{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.LiveTVContainer-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.LiveTVContainer-col-12{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.LiveTVContainer-col-12:last-child{margin-right:0}}@media (min-width:1340px){.LiveTVContainer-col-12{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}.LiveTVContainer-col-full{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.LiveTVContainer-col-full .MyComponentName-container{width:100vw}@media (min-width:1340px){.LiveTVContainer-col-full .MyComponentName-container{max-width:none}}.LiveTVContainer-col-full:last-child{margin-right:0}.LiveTVContainer-container{min-height:500px}@media (min-width:1020px){.LiveTVContainer-container{margin:0 auto;max-width:100%}}@media (min-width:1020px) and (min-width:760px){.LiveTVContainer-container{max-width:678px}}@media (min-width:1020px) and (min-width:1020px){.LiveTVContainer-container{max-width:960px}}@media (min-width:1020px) and (min-width:1340px){.LiveTVContainer-container{max-width:1290px}}@media (max-width:1019px){.LiveTVContainer-container{padding:0 30px}}@media (max-width:759px){.LiveTVContainer-container{margin-top:-1px;padding:0 20px}}.LiveTVContainer-mvpdContainer{background-color:#000;bottom:0;left:0;padding-top:20px;position:absolute;right:0;top:0}.LiveTVContainer-liveTvMvpd{height:100%;position:relative}.LiveTVContainer-closeButton{align-items:center;background-color:#fff;border-radius:23px;display:flex;height:24px;justify-content:center;position:absolute;right:20px;width:24px}.LiveTVContainer-closeButton svg path{fill:#00081a}.LiveTVPage-container{min-height:800px}@media (max-width:1019px){.LiveTVPage-container{min-height:1100px}}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:800;src:local("~assets/fonts/Lyon/LyonText-Black-Web-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Black-Web-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:800;src:local("~assets/fonts/Lyon/LyonText-Black-Web-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Black-Web-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:800;src:local("~assets/fonts/Lyon/LyonText-Black-Web-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Black-Web-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:600;src:local("~assets/fonts/Lyon/LyonText-Bold-Web-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Bold-Web-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:600;src:local("~assets/fonts/Lyon/LyonText-Bold-Web-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Bold-Web-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:600;src:local("~assets/fonts/Lyon/LyonText-Bold-Web-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Bold-Web-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:400;src:local("~assets/fonts/Lyon/LyonText-Regular-Web-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Regular-Web-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:400;src:local("~assets/fonts/Lyon/LyonText-Regular-Web-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Regular-Web-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:400;src:local("~assets/fonts/Lyon/LyonText-Regular-Web-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Regular-Web-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lyon;font-style:italic;font-weight:400;src:local("~assets/fonts/Lyon/LyonText-RegularItalic-Web-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-RegularItalic-Web-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Lyon;font-style:italic;font-weight:400;src:local("~assets/fonts/Lyon/LyonText-RegularItalic-Web-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-RegularItalic-Web-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lyon;font-style:italic;font-weight:400;src:local("~assets/fonts/Lyon/LyonText-RegularItalic-Web-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-RegularItalic-Web-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:500;src:local("~assets/fonts/Lyon/LyonText-Semibold-Web-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Semibold-Web-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:500;src:local("~assets/fonts/Lyon/LyonText-Semibold-Web-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Semibold-Web-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:500;src:local("~assets/fonts/Lyon/LyonText-Semibold-Web-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Semibold-Web-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0-oriya.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0-oriya.woff2) format("woff2");unicode-range:"U+0964-0965, U+0B01-0B77, U+200C-200D, U+20B9, U+25CC"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0-greek.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0-greek.woff2) format("woff2");unicode-range:"U+0370-03FF"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0-cyrillic-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0-cyrillic-ext.woff2) format("woff2");unicode-range:"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0-cyrillic.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0-cyrillic.woff2) format("woff2");unicode-range:"U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0-oriya.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0-oriya.woff2) format("woff2");unicode-range:"U+0964-0965, U+0B01-0B77, U+200C-200D, U+20B9, U+25CC"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0-greek.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0-greek.woff2) format("woff2");unicode-range:"U+0370-03FF"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0-cyrillic-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0-cyrillic-ext.woff2) format("woff2");unicode-range:"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0-cyrillic.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0-cyrillic.woff2) format("woff2");unicode-range:"U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0-oriya.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0-oriya.woff2) format("woff2");unicode-range:"U+0964-0965, U+0B01-0B77, U+200C-200D, U+20B9, U+25CC"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0-greek.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0-greek.woff2) format("woff2");unicode-range:"U+0370-03FF"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0-cyrillic-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0-cyrillic-ext.woff2) format("woff2");unicode-range:"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0-cyrillic.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0-cyrillic.woff2) format("woff2");unicode-range:"U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0-oriya.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0-oriya.woff2) format("woff2");unicode-range:"U+0964-0965, U+0B01-0B77, U+200C-200D, U+20B9, U+25CC"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0-greek.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0-greek.woff2) format("woff2");unicode-range:"U+0370-03FF"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0-cyrillic-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0-cyrillic-ext.woff2) format("woff2");unicode-range:"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0-cyrillic.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0-cyrillic.woff2) format("woff2");unicode-range:"U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:800;src:local("~assets/fonts/ProximaNova/351C86_0_0-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_0_0-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:800;src:local("~assets/fonts/ProximaNova/351C86_0_0-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_0_0-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:600;src:local("~assets/fonts/ProximaNova/351C86_1_0-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_1_0-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:600;src:local("~assets/fonts/ProximaNova/351C86_1_0-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_1_0-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:700;src:local("~assets/fonts/ProximaNova/351C86_2_0-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_2_0-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:700;src:local("~assets/fonts/ProximaNova/351C86_2_0-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_2_0-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:400;src:local("~assets/fonts/ProximaNova/351C86_3_0-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_3_0-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:400;src:local("~assets/fonts/ProximaNova/351C86_3_0-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_3_0-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:500;src:local("~assets/fonts/ProximaNova/351C86_4_0-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_4_0-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:500;src:local("~assets/fonts/ProximaNova/351C86_4_0-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_4_0-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-gujarati.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-gujarati.woff2) format("woff2");unicode-range:"U+0964-0965, U+0A80-0AFF, U+200C-200D, U+20B9, U+25CC, U+A830-A839"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-myanmar.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-myanmar.woff2) format("woff2");unicode-range:"U+1000-109F, U+200C-200D, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-devanagari.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-devanagari.woff2) format("woff2");unicode-range:"U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-thai.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-thai.woff2) format("woff2");unicode-range:"U+0E01-0E5B, U+200C-200D, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-bengali.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-bengali.woff2) format("woff2");unicode-range:"U+0964-0965, U+0981-09FB, U+200C-200D, U+20B9, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-telugu.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-telugu.woff2) format("woff2");unicode-range:"U+0951-0952, U+0964-0965, U+0C00-0C7F, U+1CDA, U+200C-200D, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-khmer.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-khmer.woff2) format("woff2");unicode-range:"U+1780-17FF, U+200C, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-tamil.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-tamil.woff2) format("woff2");unicode-range:"U+0964-0965, U+0B82-0BFA, U+200C-200D, U+20B9, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-kannada.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-kannada.woff2) format("woff2");unicode-range:"U+0964-0965, U+0C82-0CF2, U+200C-200D, U+20B9, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-gurmukhi.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-gurmukhi.woff2) format("woff2");unicode-range:"U+0964-0965, U+0A01-0A75, U+200C-200D, U+20B9, U+25CC, U+262C, U+A830-A839"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-malayalam.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-malayalam.woff2) format("woff2");unicode-range:"U+0307, U+0323, U+0964-0965, U+0D02-0D7F, U+200C-200D, U+20B9, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-oriya.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-oriya.woff2) format("woff2");unicode-range:"U+0964-0965, U+0B01-0B77, U+200C-200D, U+20B9, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-hebrew.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-hebrew.woff2) format("woff2");unicode-range:"U+0590-05FF, U+20AA, U+25CC, U+FB1D-FB4F"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-sinhala.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-sinhala.woff2) format("woff2");unicode-range:"U+0964-0965, U+0D82-0DF4, U+200C-200D, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lato;font-style:normal;font-weight:400;src:local("~assets/fonts/Lato/Lato-Regular-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-Regular-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lato;font-style:normal;font-weight:400;src:local("~assets/fonts/Lato/Lato-Regular-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-Regular-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lato;font-style:normal;font-weight:700;src:local("~assets/fonts/Lato/Lato-Bold-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-Bold-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lato;font-style:normal;font-weight:700;src:local("~assets/fonts/Lato/Lato-Bold-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-Bold-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lato;font-style:normal;font-weight:900;src:local("~assets/fonts/Lato/Lato-Black-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-Black-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lato;font-style:normal;font-weight:900;src:local("~assets/fonts/Lato/Lato-Black-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-Black-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lato;font-style:italic;font-weight:400;src:local("~assets/fonts/Lato/Lato-RegularItalic-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-RegularItalic-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lato;font-style:italic;font-weight:400;src:local("~assets/fonts/Lato/Lato-RegularItalic-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-RegularItalic-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lato;font-style:italic;font-weight:700;src:local("~assets/fonts/Lato/Lato-BoldItalic-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-BoldItalic-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lato;font-style:italic;font-weight:700;src:local("~assets/fonts/Lato/Lato-BoldItalic-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-BoldItalic-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lato;font-style:italic;font-weight:900;src:local("~assets/fonts/Lato/Lato-BlackItalic-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-BlackItalic-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lato;font-style:italic;font-weight:900;src:local("~assets/fonts/Lato/Lato-BlackItalic-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-BlackItalic-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}.SearchGroup-container{border-top:6px solid #002f6c;display:block;width:100%}.SearchGroup-container.SearchGroup-railVariant{margin-bottom:0}@media (min-width:760px){.SearchGroup-container.SearchGroup-railVariant{margin-bottom:20px}}@media (min-width:1020px){.SearchGroup-container.SearchGroup-railVariant{margin-bottom:20px}}.SearchGroup-header{align-items:flex-start;background:#fff;display:flex;flex-direction:row;justify-content:space-between;padding:10px 0}@media (min-width:760px){.SearchGroup-header{align-items:center}}.SearchGroup-sectionTitle{color:#002f6c;font-size:22px;font-weight:800;line-height:1.2;margin:0;text-transform:uppercase}@media (min-width:1020px){.SearchGroup-sectionTitle{font-size:14px}}.SearchGroup-railVariant .SearchGroup-sectionTitle{font-size:18px;font-weight:800}@media (min-width:760px){.SearchGroup-railVariant .SearchGroup-sectionTitle{font-size:20px}}@media (min-width:1340px){.SearchGroup-railVariant .SearchGroup-sectionTitle{font-size:30px}}.SearchGroup-contentButton{color:#002f6c;display:inline-block;font-size:12px;font-weight:700;letter-spacing:1px;margin-top:10px;text-transform:uppercase;vertical-align:middle;white-space:nowrap}.SearchGroup-contentButton i{font-style:normal;margin-right:3px}.SearchGroup-railVariant .SearchGroup-contentButton{margin:10px 0 0}@media (min-width:760px){.SearchGroup-contentButton{margin:0 0 0 25px}.SearchGroup-railVariant .SearchGroup-contentButton{margin:0 0 0 auto}}@media (min-width:1020px){.SearchGroup-contentButton{line-height:1}.SearchGroup-railVariant .SearchGroup-contentButton{margin:5px 0 0}}@media (min-width:1340px){.SearchGroup-railVariant .SearchGroup-contentButton{flex-grow:0;margin:0 0 0 24px}}.SearchGroup-headerButton{margin:0 0 0 50px}.SearchGroup-headerButton .icon-short-arrow-right{display:inline-block;margin-left:3px;margin-right:0;vertical-align:middle}@media (min-width:760px){.SearchGroup-headerButton{margin-left:auto}}.SearchGroup-content{position:relative}.SearchGroup-item{border-top:1px dashed #9b9b9b;display:flex;flex-direction:row;flex-wrap:wrap;padding:8px 5px}.SearchGroup-item:nth-of-type(1n+6){display:none}.SearchGroup-item:nth-child(2n){background-color:#f2f2f2}@media (min-width:360px){.SearchGroup-item:nth-of-type(1n+6){display:none}}@media (min-width:760px){.SearchGroup-item{flex-wrap:nowrap;padding:20px 5px}.SearchGroup-item:nth-of-type(1n+4){display:block}.SearchGroup-item:nth-of-type(1n+6){display:none}.SearchGroup-railVariant .SearchGroup-item{flex-wrap:wrap}}@media (min-width:1020px){.SearchGroup-item{min-height:53px;padding:10px}}@media (min-width:1340px){.SearchGroup-railVariant .SearchGroup-item{flex-wrap:nowrap}}.SearchGroup-itemIdentifier{display:block;flex-grow:1;float:left;min-width:50%;width:60%}@media (min-width:760px){.SearchGroup-itemIdentifier{min-width:0;width:auto}.SearchGroup-railVariant .SearchGroup-itemIdentifier{max-width:42%;min-width:42%}}@media (min-width:1020px){.SearchGroup-railVariant .SearchGroup-itemIdentifier{max-width:50%;min-width:50%}}@media (min-width:1340px){.SearchGroup-railVariant .SearchGroup-itemIdentifier{max-width:100%;min-width:0}}.SearchGroup-itemTitle{color:#171717;display:block;font-size:16px;font-weight:800;line-height:1.25;text-transform:uppercase}.SearchGroup-itemTitle:focus,.SearchGroup-itemTitle:hover{color:#005594}.SearchGroup-itemSubTitle{color:#747474;display:block;font-size:14px;line-height:1.4;margin-top:5px}@media (min-width:1020px){.SearchGroup-itemSubTitle{font-size:12px;line-height:1}}.SearchGroup-railVariant .SearchGroup-itemSubTitle{font-weight:500}.SearchGroup-marketChange{color:#747474;display:block;font-size:14px;font-weight:600;line-height:1.42;margin-left:auto;min-width:40%;text-align:right;text-transform:uppercase}@media (min-width:760px){.SearchGroup-marketChange{min-width:0}}@media (min-width:1020px){.SearchGroup-marketChange{font-size:12px;line-height:1}.SearchGroup-railVariant .SearchGroup-marketChange{max-width:50%;min-width:50%}}@media (min-width:1340px){.SearchGroup-railVariant .SearchGroup-marketChange{max-width:100%;min-width:0}}.SearchGroup-marketChangeUp{color:#008456}.SearchGroup-marketChangeDown{color:#ce2b2b}.SearchGroup-change,.SearchGroup-change_pct{display:block}.SearchGroup-change_pct{margin-top:5px}.SearchGroup-label{color:#747474;display:block;font-size:14px;font-weight:600;line-height:1.42;margin-left:auto;text-align:right;text-transform:uppercase}@media (min-width:1020px){.SearchGroup-label{font-size:12px;line-height:1}}.SearchGroup-noSavedData{border-top:1px dashed #9b9b9b;display:block;padding:20px 0}@media (min-width:1020px){.SearchGroup-noSavedData{padding:10px 0 0}}@media (min-width:1340px){.SearchGroup-noSavedData{padding-top:18px}}.SearchGroup-callToActionTitle{color:#171717;display:block;font-size:20px;font-weight:700;line-height:1.2;margin:0}.SearchGroup-callToActionDescription{color:#5d5d5d;display:block;font-size:14px;font-weight:500;line-height:1.28;margin:10px 0 20px}.SearchGroup-callToActionDescription .SearchGroup-emphasized{font-weight:600;text-transform:uppercase}@media (min-width:760px){.SearchGroup-callToActionDescription{font-size:12px;line-height:1.33;margin:10px 0 30px;max-width:382px;width:70%}}@media (min-width:1020px){.SearchGroup-callToActionDescription{font-size:12px;line-height:1.33;margin:10px 0 20px;max-width:100%;width:100%}}.SearchGroup-callToActionButton{align-items:center;appearance:none;background-color:#002f6c;border:1px solid #002f6c;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.SearchGroup-callToActionButton>span{display:block;line-height:12px}.SearchGroup-callToActionButton [class*=" icon-"],.SearchGroup-callToActionButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.SearchGroup-callToActionButton [class*=" icon-"]:before,.SearchGroup-callToActionButton [class^=icon-]:before{line-height:12px}.SearchGroup-callToActionButton:focus,.SearchGroup-callToActionButton:hover{background-color:#2077b6;border-color:#2077b6;color:#fff}.SearchGroup-callToActionButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}@media (hover:hover){.SearchGroup-callToActionButton[class*=touchButton]:hover{background-color:#2077b6;border-color:#2077b6;color:#fff}}@media (min-width:760px){.SearchGroup-callToActionButton{max-width:236px;padding:0 30px;width:auto}}.SearchGroup-noResults{border-top:1px dotted #9b9b9b;color:#5d5d5d;font-size:14px;font-weight:500;padding-top:10px}.SearchGroup-noResults span{font-weight:700}.SearchResult-searchResult{border-bottom:1px dashed #9b9b9b;margin-bottom:20px;padding-bottom:20px}@media (min-width:760px){.SearchResult-searchResult{display:flex;flex-direction:row;margin-bottom:30px;padding-bottom:30px}}@media (min-width:1020px){.SearchResult-searchResult{margin-bottom:40px;padding-bottom:40px}}@media (min-width:1340px){.SearchResult-searchResult{margin-left:-30px}}.SearchResult-searchResult:last-child{border-bottom:0;padding-bottom:0}.SearchResult-searchResult.SearchResult-standardVariant{justify-content:space-between}@media (min-width:1340px){.SearchResult-searchResult.SearchResult-standardVariant{margin-left:0}}.SearchResult-searchResultCard{margin-bottom:10px}.SearchResult-standardVariant .SearchResult-searchResultCard{height:150px;padding-bottom:50%}@media (min-width:760px){.SearchResult-searchResultCard{margin-bottom:-20px;order:2;width:calc(33.33333% - 15px)}.SearchResult-standardVariant .SearchResult-searchResultCard{flex:1 1 300px;padding-bottom:inherit}}@media (min-width:1020px){.SearchResult-standardVariant .SearchResult-searchResultCard{margin-bottom:20px}}@media (min-width:1340px){.SearchResult-searchResultCard{width:calc(30% - 15px)}.SearchResult-standardVariant .SearchResult-searchResultCard{flex:1 1 300px}}.PlayButton-container{border-top:6px solid #fcb700;height:100%;left:0;position:absolute;top:0;width:100%;z-index:1}.PlayButton-base{align-items:center;background-color:#fcb700;color:#fff;display:flex;font-size:12px;height:40px;justify-content:center;position:absolute;right:0;top:-5px;transition:all .15s linear;width:40px;z-index:1}.PlayButton-base:focus .PlayButton-flyout,.PlayButton-base:hover .PlayButton-flyout,.PlayButton-basebutton:focus .PlayButton-flyout,.PlayButton-basebutton:hover .PlayButton-flyout{color:#071d39;transform:scaleX(1);transition:color .15s linear .15s,transform .15s linear}.PlayButton-flyout{background-color:#fcb700;color:#071d39;font-size:9px;font-weight:800;height:100%;letter-spacing:1px;line-height:1;position:absolute;right:35px;text-align:left;text-transform:uppercase;top:0;transform:scaleX(0);transform-origin:center right;transition:color .15s linear,transform .15s linear .15s;width:90px;z-index:1}.PlayButton-flyout,.PlayButton-icon{align-items:center;display:flex;justify-content:center}.PlayButton-icon{border:2px solid #fcb700;height:30px;transition:border .15s linear;width:30px;z-index:2}.PlayButton-icon:focus,.PlayButton-icon:hover,.PlayButton-iconbutton:focus,.PlayButton-iconbutton:hover{border:2px solid #fff}@media (min-width:760px){.SearchResult-searchResultContent{margin-right:30px;width:calc(66.66667% - 15px)}.SearchResult-standardVariant .SearchResult-searchResultContent{flex:1 1 340px}}@media (min-width:1340px){.SearchResult-searchResultContent{width:calc(70% - 15px)}.SearchResult-standardVariant .SearchResult-searchResultContent{flex:1 0 410px}}.SearchResult-searchHighlight{background-color:#e7ecf1}.SearchResult-searchResultEyebrow{color:#732634;font-size:12px;font-weight:500;letter-spacing:2px;line-height:1.116;margin-bottom:10px;text-transform:uppercase}.SearchResult-standardVariant .SearchResult-searchResultEyebrow{color:#005594;font-weight:700;letter-spacing:1px}.SearchResult-searchResultTitle{color:#171717;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:20px;font-weight:500;line-height:1.3;margin-bottom:10px}.SearchResult-standardVariant .SearchResult-searchResultTitle{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-weight:600}@media (min-width:1020px){.SearchResult-standardVariant .SearchResult-searchResultTitle{margin-bottom:10px}.SearchResult-searchResultTitle{font-size:26px;line-height:1.23;margin-bottom:20px}}.SearchResult-searchResultPreview{color:#5d5d5d;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:18px;font-weight:400;line-height:1.611;margin-bottom:0;margin-top:0}.SearchResult-standardVariant .SearchResult-searchResultPreview{margin-bottom:10px}.SearchResult-byline{font-size:12px}.SearchResult-author{color:#005594;font-family:Lyon,Helvetica,Arial,sans-serif;font-weight:600;letter-spacing:1px}.SearchResult-publishedDate{color:#747474;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-weight:600;text-transform:uppercase}.SearchResult-searchResultFrom{color:#b2b2b2;font-size:12px;font-weight:500;letter-spacing:2px;line-height:1.33;margin-top:15px;text-transform:uppercase}@media (min-width:1020px){.SearchResult-searchResultFrom{margin-top:25px}}.SearchResult-searchResultFrom a{color:#000}.SearchResult-searchResultFrom a:hover{color:#d1bb7e}.SearchResult-searchResultImage{background-position:50% 50%;background-size:cover;margin-bottom:10px;padding-bottom:50%;width:100%}@media (min-width:760px){.SearchResult-searchResultImage{margin-bottom:20px}}.SearchDropDown-dropDownContainer .Card-mediaContainer{background-position:50% 50%;background-size:cover;padding-bottom:50%}.SearchDropDown-dropDownContainer .Card-mediaContainer .Card-placeholder{position:absolute}
.BrandPageWrapper-contentWrapper{margin-top:45px;overflow:visible;position:relative}@media (min-width:1020px){.BrandPageWrapper-contentWrapper{overflow:visible}}.BrandPageWrapper-contentWrapper.BrandPageWrapper-xfinity{margin-top:89px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-countDownClock{margin-top:112px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-fiveThings{margin-top:85px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-xfinity.BrandPageWrapper-fiveThings{margin-top:130px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-fiveThings.BrandPageWrapper-countDownClock{margin-top:152px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-advertorial{margin-top:135px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-advertorial #BrandPageWrapper-MainContent{margin:0!important}.BrandPageWrapper-contentWrapper.BrandPageWrapper-advertorial .BrandPageWrapper-PageBuilder-pageWrapper .BrandPageWrapper-PageBuilder-pageRow{display:block}@media (min-width:760px){.BrandPageWrapper-contentWrapper{margin-top:85px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-xfinity{margin-top:114px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-fiveThings{margin-top:125px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-fiveThings.BrandPageWrapper-xfinity{margin-top:156px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-fiveThings.BrandPageWrapper-xfinity.BrandPageWrapper-countDownClock{margin-top:196px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-countDownClock{margin-top:112px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-countDownClock.BrandPageWrapper-xfinity{margin-top:156px}}.BrandPageWrapper-contentWrapper.BrandPageWrapper-darkTheme{background:#00081a;color:#fff}.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert{margin-top:85px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert.BrandPageWrapper-xfinity{margin-top:129px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert.BrandPageWrapper-liveAlert{margin-top:125px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert.BrandPageWrapper-countDownClock{margin-top:192px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert.BrandPageWrapper-fiveThings{margin-top:125px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert.BrandPageWrapper-xfinity.BrandPageWrapper-fiveThings,.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert.BrandPageWrapper-xfinity.BrandPageWrapper-liveAlert{margin-top:169px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert.BrandPageWrapper-xfinity.BrandPageWrapper-liveAlert.BrandPageWrapper-fiveThings{margin-top:209px}@media (min-width:760px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert{margin-top:125px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert.BrandPageWrapper-xfinity{margin-top:154px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert.BrandPageWrapper-fiveThings,.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert.BrandPageWrapper-liveAlert{margin-top:165px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert.BrandPageWrapper-countDownClock{margin-top:152px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert.BrandPageWrapper-countDownClock.BrandPageWrapper-xfinity{margin-top:196px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert.BrandPageWrapper-xfinity.BrandPageWrapper-fiveThings,.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert.BrandPageWrapper-xfinity.BrandPageWrapper-liveAlert{margin-top:194px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert.BrandPageWrapper-xfinity.BrandPageWrapper-fiveThings.BrandPageWrapper-countDownClock{margin-top:236px}}.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert{margin-top:85px}@media (min-width:360px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-xfinity{margin-top:128px}}@media (min-width:760px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-xfinity{margin-top:154px}}@media (min-width:1020px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-xfinity{margin-top:154px}}@media (min-width:1340px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-xfinity{margin-top:154px}}@media (min-width:360px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-newsAlert{margin-top:125px}}@media (min-width:760px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-newsAlert{margin-top:165px}}@media (min-width:1020px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-newsAlert{margin-top:165px}}@media (min-width:1340px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-newsAlert{margin-top:165px}}.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-newsAlert.BrandPageWrapper-countDownClock{margin-top:192px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-newsAlert.BrandPageWrapper-countDownClock.BrandPageWrapper-xfinity{margin-top:236px}@media screen and (max-width:500px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-newsAlert.BrandPageWrapper-liveAlertAd{margin-top:165px}}@media (min-width:360px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-fiveThings{margin-top:125px}}@media (min-width:760px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-fiveThings{margin-top:165px}}@media (min-width:1020px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-fiveThings{margin-top:165px}}@media (min-width:1340px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-fiveThings{margin-top:165px}}@media screen and (max-width:500px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-fiveThings.BrandPageWrapper-liveAlertAd{margin-top:165px}}.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-fiveThings.BrandPageWrapper-countDownClock,.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-fiveThings.BrandPageWrapper-newsAlert{margin-top:192px}@media (max-width:759px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-fiveThings.BrandPageWrapper-newsAlert{margin-top:165px}}@media screen and (max-width:500px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-fiveThings.BrandPageWrapper-newsAlert.BrandPageWrapper-liveAlertAd{margin-top:205px}}.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-fiveThings.BrandPageWrapper-newsAlert.BrandPageWrapper-xfinity{margin-top:236px}@media (min-width:360px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-fiveThings.BrandPageWrapper-newsAlert.BrandPageWrapper-xfinity{margin-top:209px}}@media (min-width:760px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-fiveThings.BrandPageWrapper-newsAlert.BrandPageWrapper-xfinity{margin-top:234px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-fiveThings.BrandPageWrapper-newsAlert.BrandPageWrapper-xfinity.BrandPageWrapper-countDownClock{margin-top:276px}}.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-fiveThings.BrandPageWrapper-newsAlert.BrandPageWrapper-countDownClock{margin-top:232px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-fiveThings.BrandPageWrapper-newsAlert.BrandPageWrapper-countDownClock.BrandPageWrapper-xfinity{margin-top:276px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-countDownClock{margin-top:152px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-countDownClock.BrandPageWrapper-xfinity{margin-top:196px}@media (min-width:760px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert{margin-top:125px}}@media (min-width:1020px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert .Ad-adWrapperSticky,.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert .Ad-adWrapperSticky{top:120px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-fiveThings .Ad-adWrapperSticky,.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert .Ad-adWrapperSticky,.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert .Ad-adWrapperSticky{top:160px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-xfinity .Ad-adWrapperSticky{top:124px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-countDownClock .Ad-adWrapperSticky{top:122px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-fiveThings .Ad-adWrapperSticky,.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-newsAlert .Ad-adWrapperSticky,.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert.BrandPageWrapper-fiveThings .Ad-adWrapperSticky{top:160px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-fiveThings.BrandPageWrapper-xfinity .Ad-adWrapperSticky,.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-xfinity .Ad-adWrapperSticky,.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert.BrandPageWrapper-xfinity .Ad-adWrapperSticky{top:164px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-countDownClock .Ad-adWrapperSticky,.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert.BrandPageWrapper-countDownClock .Ad-adWrapperSticky{top:162px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-newsAlert.BrandPageWrapper-countDownClock .Ad-adWrapperSticky{top:204px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-newsAlert.BrandPageWrapper-countDownClock.BrandPageWrapper-xfinity .Ad-adWrapperSticky{top:246px}}.BrandPageWrapper-contentWrapperClock{margin-top:112px}.BrandPageWrapper-mobileWebview{margin-bottom:100px;margin-top:0}
.nav-menu-navMenu,.nav-menu-navMenuAllAccess,.nav-menu-navMenuIC,.nav-menu-navMenuLoggedIn,.nav-menu-navMenuPro{align-items:center;background-color:#001e5a;display:flex;flex-direction:row;height:54px;left:0;overflow:hidden;padding:0 20px;position:fixed;z-index:99}@media (min-width:760px){.nav-menu-navMenu,.nav-menu-navMenuAllAccess,.nav-menu-navMenuIC,.nav-menu-navMenuLoggedIn,.nav-menu-navMenuPro{padding:0 20px}}@media (min-width:1020px){.nav-menu-navMenu,.nav-menu-navMenuAllAccess,.nav-menu-navMenuIC,.nav-menu-navMenuLoggedIn,.nav-menu-navMenuPro{background-color:initial;height:35px;padding:0 15px 0 30px}}.nav-menu-navMenuAllAccess{background-color:#002f6c;transition:background-color .5s ease}.nav-menu-navMenuPro{background-color:#27313c;transition:background-color .5s ease}.nav-menu-navMenuIC{background-color:#071d39;transition:background-color .5s ease}.nav-menu-navMenu,.nav-menu-navMenuAllAccess,.nav-menu-navMenuIC,.nav-menu-navMenuPro{bottom:0;padding-left:8px;position:fixed;transition:background-color .25s;width:100%}@media (max-width:1019px){.nav-menu-navMenu,.nav-menu-navMenuAllAccess,.nav-menu-navMenuIC,.nav-menu-navMenuPro{padding-left:28px}}@media (min-width:760px){.nav-menu-navMenu,.nav-menu-navMenuAllAccess,.nav-menu-navMenuIC,.nav-menu-navMenuPro{background-color:initial;height:36px;overflow:visible;position:absolute;top:45px;transition:top .25s,height .25s,width .25s}}@media (min-width:1020px){.nav-menu-navMenu,.nav-menu-navMenuAllAccess,.nav-menu-navMenuIC,.nav-menu-navMenuPro{position:absolute;top:45px;width:70%;z-index:999}.nav-menu-navMenu.nav-menu-navMenuSticky,.nav-menu-navMenu.nav-menu-navMenuStickyAllAccess,.nav-menu-navMenu.nav-menu-navMenuStickyIC,.nav-menu-navMenu.nav-menu-navMenuStickyLoggedIn,.nav-menu-navMenu.nav-menu-navMenuStickyPro,.nav-menu-navMenuAllAccess.nav-menu-navMenuSticky,.nav-menu-navMenuAllAccess.nav-menu-navMenuStickyAllAccess,.nav-menu-navMenuAllAccess.nav-menu-navMenuStickyIC,.nav-menu-navMenuAllAccess.nav-menu-navMenuStickyLoggedIn,.nav-menu-navMenuAllAccess.nav-menu-navMenuStickyPro,.nav-menu-navMenuIC.nav-menu-navMenuSticky,.nav-menu-navMenuIC.nav-menu-navMenuStickyAllAccess,.nav-menu-navMenuIC.nav-menu-navMenuStickyIC,.nav-menu-navMenuIC.nav-menu-navMenuStickyLoggedIn,.nav-menu-navMenuIC.nav-menu-navMenuStickyPro,.nav-menu-navMenuPro.nav-menu-navMenuSticky,.nav-menu-navMenuPro.nav-menu-navMenuStickyAllAccess,.nav-menu-navMenuPro.nav-menu-navMenuStickyIC,.nav-menu-navMenuPro.nav-menu-navMenuStickyLoggedIn,.nav-menu-navMenuPro.nav-menu-navMenuStickyPro{padding-bottom:19px}}@media (min-width:1340px){.nav-menu-navMenu,.nav-menu-navMenuAllAccess,.nav-menu-navMenuIC,.nav-menu-navMenuPro{top:45px}}@media only screen and (device-width:375px) and (device-height:812px) and (-webkit-device-pixel-ratio:3){.nav-menu-navMenu,.nav-menu-navMenuAllAccess,.nav-menu-navMenuIC,.nav-menu-navMenuPro{margin-bottom:0;overflow:visible}.nav-menu-navMenu:after,.nav-menu-navMenuAllAccess:after,.nav-menu-navMenuIC:after,.nav-menu-navMenuPro:after{background:#001e5a;bottom:-20px;content:"";height:21px;left:0;position:absolute;transition:background-color .25s;width:100%}}@media (min-width:760px) and (max-width:1019px){.nav-menu-navMenu,.nav-menu-navMenuAllAccess,.nav-menu-navMenuIC,.nav-menu-navMenuPro{z-index:0}}.nav-menu-navMenuLoggedIn{background-color:#00081a;bottom:0;padding-left:8px;position:fixed;transition:background-color .25s;width:100%}@media (max-width:1019px){.nav-menu-navMenuLoggedIn{padding-left:28px}}@media (min-width:760px){.nav-menu-navMenuLoggedIn{background-color:initial;height:36px;overflow:visible;position:absolute;top:45px;transition:top .25s,height .25s,width .25s}}@media (min-width:1020px){.nav-menu-navMenuLoggedIn{position:absolute;top:45px;width:70%;z-index:999}.nav-menu-navMenuLoggedIn.nav-menu-navMenuSticky,.nav-menu-navMenuLoggedIn.nav-menu-navMenuStickyAllAccess,.nav-menu-navMenuLoggedIn.nav-menu-navMenuStickyIC,.nav-menu-navMenuLoggedIn.nav-menu-navMenuStickyPro{padding-bottom:19px}}@media (min-width:1340px){.nav-menu-navMenuLoggedIn{top:45px}}@media only screen and (device-width:375px) and (device-height:812px) and (-webkit-device-pixel-ratio:3){.nav-menu-navMenuLoggedIn{margin-bottom:0;overflow:visible}.nav-menu-navMenuLoggedIn:after{background:#005594;bottom:-20px;content:"";height:21px;left:0;position:absolute;transition:background-color .25s;width:100%}}@media (min-width:760px) and (max-width:1019px){.nav-menu-navMenuLoggedIn{z-index:0}}@media (min-width:760px){.nav-menu-navMenuArticle{pointer-events:auto}}.nav-menu-navMenuSticky{background:#001e5a}.nav-menu-navMenuStickyLoggedIn{background:#00081a}.nav-menu-navMenuStickyAllAccess{background:#002f6c}.nav-menu-navMenuStickyPro{background:#27313c}.nav-menu-navMenuStickyIC{background:#071d39}.nav-menu-navMenuSticky,.nav-menu-navMenuStickyAllAccess,.nav-menu-navMenuStickyIC,.nav-menu-navMenuStickyLoggedIn,.nav-menu-navMenuStickyPro{z-index:1000}@media (min-width:760px){.nav-menu-navMenuSticky,.nav-menu-navMenuStickyAllAccess,.nav-menu-navMenuStickyIC,.nav-menu-navMenuStickyLoggedIn,.nav-menu-navMenuStickyPro{height:45px;top:0}}@media (min-width:1020px){.nav-menu-navMenuSticky,.nav-menu-navMenuStickyAllAccess,.nav-menu-navMenuStickyIC,.nav-menu-navMenuStickyLoggedIn,.nav-menu-navMenuStickyPro{height:45px;top:0}}.nav-menu-navMenuSticky.nav-menu-withOpenSearch,.nav-menu-navMenuStickyAllAccess.nav-menu-withOpenSearch,.nav-menu-navMenuStickyIC.nav-menu-withOpenSearch,.nav-menu-navMenuStickyLoggedIn.nav-menu-withOpenSearch,.nav-menu-navMenuStickyPro.nav-menu-withOpenSearch{z-index:1000}.nav-menu-navMenuSticky .nav-menu-subLinks,.nav-menu-navMenuStickyAllAccess .nav-menu-subLinks,.nav-menu-navMenuStickyIC .nav-menu-subLinks,.nav-menu-navMenuStickyLoggedIn .nav-menu-subLinks,.nav-menu-navMenuStickyPro .nav-menu-subLinks{left:6px;position:absolute;top:34px}@media (min-width:1340px){.nav-menu-navMenuSticky .nav-menu-subLinks,.nav-menu-navMenuStickyAllAccess .nav-menu-subLinks,.nav-menu-navMenuStickyIC .nav-menu-subLinks,.nav-menu-navMenuStickyLoggedIn .nav-menu-subLinks,.nav-menu-navMenuStickyPro .nav-menu-subLinks{left:15px}}.nav-menu-navMenuArticleSticky,.nav-menu-navMenuArticleStickyAllAccess,.nav-menu-navMenuArticleStickyOneAccess{background:#fff;color:#000}@media (min-width:760px){.nav-menu-navMenuArticleSticky,.nav-menu-navMenuArticleStickyAllAccess,.nav-menu-navMenuArticleStickyOneAccess{background:#0000;width:100%;z-index:999}}@media only screen and (device-width:375px) and (device-height:812px) and (-webkit-device-pixel-ratio:3){.nav-menu-navMenuArticleSticky:after,.nav-menu-navMenuArticleStickyAllAccess:after,.nav-menu-navMenuArticleStickyOneAccess:after{background:#fff}}.nav-menu-navMenuArticleSticky .nav-menu-logoStickyContainer,.nav-menu-navMenuArticleStickyAllAccess .nav-menu-logoStickyContainer,.nav-menu-navMenuArticleStickyOneAccess .nav-menu-logoStickyContainer{margin-right:5%}@media (min-width:1020px){.nav-menu-navMenuArticleSticky .nav-menu-logoStickyContainer,.nav-menu-navMenuArticleStickyAllAccess .nav-menu-logoStickyContainer,.nav-menu-navMenuArticleStickyOneAccess .nav-menu-logoStickyContainer{margin-right:0}}.nav-menu-buttonAllAccess{align-items:center;background-color:initial;border:0;color:#fff;display:flex;flex-direction:column;font-size:18px;order:2;padding:0}.nav-menu-buttonAllAccess:focus,.nav-menu-buttonAllAccess:hover{color:#cfd8e2}.nav-menu-buttonAllAccess .icon-cnbctv{font-size:26px;margin-bottom:-3px;position:relative;top:4px}.nav-menu-buttonAllAccess .icon-news{font-size:23px;position:relative;top:4px}.nav-menu-buttonAllAccess .icon-markets,.nav-menu-buttonAllAccess .icon-watchlist{font-size:18px;padding-bottom:5px;position:relative;top:7px}.nav-menu-buttonAllAccess:focus .nav-menu-buttonText{color:#fff}.nav-menu-buttonAllAccess+.nav-menu-subLinks{background:#fff;display:none;font-size:12px;left:6px;padding:0;position:absolute;top:34px}@media (min-width:1340px){.nav-menu-buttonAllAccess+.nav-menu-subLinks{left:15px}}.nav-menu-buttonAllAccess+.nav-menu-subLinks li{border-bottom:2px solid #f3f5f7;padding:0 20px;position:relative;z-index:600}.nav-menu-buttonAllAccess+.nav-menu-subLinks li:first-child{padding:5px 20px 0}.nav-menu-buttonAllAccess+.nav-menu-subLinks li:last-child{border-bottom:none;padding:0 20px 5px}.nav-menu-buttonAllAccess+.nav-menu-subLinks li:hover{background-color:#f3f5f7}.nav-menu-buttonAllAccess+.nav-menu-subLinks li:hover .nav-menu-subLink{opacity:0}.nav-menu-buttonAllAccess+.nav-menu-subLinks li:hover:first-child:before{top:9px}.nav-menu-buttonAllAccess+.nav-menu-subLinks li:hover:before{color:#002f6c;content:attr(data-text);font-weight:700;pointer-events:none;position:absolute;top:4px}.nav-menu-buttonAllAccess+.nav-menu-subLinks .nav-menu-subLink{color:#002f6c;display:inline-block;font-weight:500;line-height:9px;padding:14px 0}@media (max-width:359px){.nav-menu-buttonAllAccess{font-size:23px}}@media (min-width:760px){.nav-menu-buttonAllAccess{order:0;padding:0 6px}.nav-menu-buttonAllAccess span:first-child{display:none}}@media (min-width:1020px){.nav-menu-buttonAllAccess{padding:0 6px}}@media (min-width:1340px){.nav-menu-buttonAllAccess{padding-left:15px;padding-right:8px}}.nav-menu-buttonPro{align-items:center;background-color:initial;border:0;color:#fff;display:flex;flex-direction:column;font-size:18px;order:2;padding:0}.nav-menu-buttonPro:focus,.nav-menu-buttonPro:hover{color:#00a857}.nav-menu-buttonPro .icon-cnbctv{font-size:26px;margin-bottom:-3px;position:relative;top:4px}.nav-menu-buttonPro .icon-news{font-size:23px;position:relative;top:4px}.nav-menu-buttonPro .icon-markets,.nav-menu-buttonPro .icon-watchlist{font-size:18px;padding-bottom:5px;position:relative;top:7px}.nav-menu-buttonPro:focus .nav-menu-buttonText{color:#fff}.nav-menu-buttonPro+.nav-menu-subLinks{background:#fff;display:none;font-size:12px;left:6px;padding:0;position:absolute;top:34px}@media (min-width:1340px){.nav-menu-buttonPro+.nav-menu-subLinks{left:15px}}.nav-menu-buttonPro+.nav-menu-subLinks li{border-bottom:2px solid #f3f5f7;padding:0 20px;position:relative;z-index:600}.nav-menu-buttonPro+.nav-menu-subLinks li:first-child{padding:5px 20px 0}.nav-menu-buttonPro+.nav-menu-subLinks li:last-child{border-bottom:none;padding:0 20px 5px}.nav-menu-buttonPro+.nav-menu-subLinks li:hover{background-color:#f3f5f7}.nav-menu-buttonPro+.nav-menu-subLinks li:hover .nav-menu-subLink{opacity:0}.nav-menu-buttonPro+.nav-menu-subLinks li:hover:first-child:before{top:9px}.nav-menu-buttonPro+.nav-menu-subLinks li:hover:before{color:#002f6c;content:attr(data-text);font-weight:700;pointer-events:none;position:absolute;top:4px}.nav-menu-buttonPro+.nav-menu-subLinks .nav-menu-subLink{color:#002f6c;display:inline-block;font-weight:500;line-height:9px;padding:14px 0}@media (max-width:359px){.nav-menu-buttonPro{font-size:23px}}@media (min-width:760px){.nav-menu-buttonPro{order:0;padding:0 6px}.nav-menu-buttonPro span:first-child{display:none}}@media (min-width:1020px){.nav-menu-buttonPro{padding:0 6px}}@media (min-width:1340px){.nav-menu-buttonPro{padding-left:15px;padding-right:8px}}.nav-menu-buttonIC{align-items:center;background-color:initial;border:0;color:#fff;display:flex;flex-direction:column;font-size:18px;order:2;padding:0}.nav-menu-buttonIC:focus,.nav-menu-buttonIC:hover{color:#0496ff}.nav-menu-buttonIC .icon-cnbctv{font-size:26px;margin-bottom:-3px;position:relative;top:4px}.nav-menu-buttonIC .icon-news{font-size:23px;position:relative;top:4px}.nav-menu-buttonIC .icon-markets,.nav-menu-buttonIC .icon-watchlist{font-size:18px;padding-bottom:5px;position:relative;top:7px}.nav-menu-buttonIC:focus .nav-menu-buttonText{color:#fff}.nav-menu-buttonIC+.nav-menu-subLinks{background:#fff;display:none;font-size:12px;left:6px;padding:0;position:absolute;top:34px}@media (min-width:1340px){.nav-menu-buttonIC+.nav-menu-subLinks{left:15px}}.nav-menu-buttonIC+.nav-menu-subLinks li{border-bottom:2px solid #f3f5f7;padding:0 20px;position:relative;z-index:600}.nav-menu-buttonIC+.nav-menu-subLinks li:first-child{padding:5px 20px 0}.nav-menu-buttonIC+.nav-menu-subLinks li:last-child{border-bottom:none;padding:0 20px 5px}.nav-menu-buttonIC+.nav-menu-subLinks li:hover{background-color:#f3f5f7}.nav-menu-buttonIC+.nav-menu-subLinks li:hover .nav-menu-subLink{opacity:0}.nav-menu-buttonIC+.nav-menu-subLinks li:hover:first-child:before{top:9px}.nav-menu-buttonIC+.nav-menu-subLinks li:hover:before{color:#002f6c;content:attr(data-text);font-weight:700;pointer-events:none;position:absolute;top:4px}.nav-menu-buttonIC+.nav-menu-subLinks .nav-menu-subLink{color:#002f6c;display:inline-block;font-weight:500;line-height:9px;padding:14px 0}@media (max-width:359px){.nav-menu-buttonIC{font-size:23px}}@media (min-width:760px){.nav-menu-buttonIC{order:0;padding:0 6px}.nav-menu-buttonIC span:first-child{display:none}}@media (min-width:1020px){.nav-menu-buttonIC{padding:0 6px}}@media (min-width:1340px){.nav-menu-buttonIC{padding-left:15px;padding-right:8px}}.nav-menu-button{align-items:center;background-color:initial;border:0;color:#fff;display:flex;flex-direction:column;font-size:18px;order:2;padding:0;position:relative}.nav-menu-button .icon-cnbctv{font-size:26px;margin-bottom:-3px;position:relative;top:4px}.nav-menu-button .icon-news{font-size:23px;position:relative;top:4px}.nav-menu-button .icon-markets,.nav-menu-button .icon-watchlist{font-size:18px;padding-bottom:5px;position:relative;top:7px}.nav-menu-button:focus .nav-menu-buttonText{color:#fff}.nav-menu-button+.nav-menu-subLinks{background:#fff;display:none;font-size:12px;left:6px;padding:0;position:absolute;top:34px}@media (min-width:1340px){.nav-menu-button+.nav-menu-subLinks{left:15px}}.nav-menu-button+.nav-menu-subLinks li{border-bottom:2px solid #f3f5f7;padding:0 20px;position:relative;z-index:600}.nav-menu-button+.nav-menu-subLinks li:first-child{padding:5px 20px 0}.nav-menu-button+.nav-menu-subLinks li:last-child{border-bottom:none;padding:0 20px 5px}.nav-menu-button+.nav-menu-subLinks li:hover{background-color:#f3f5f7}.nav-menu-button+.nav-menu-subLinks li:hover .nav-menu-subLink{opacity:0}.nav-menu-button+.nav-menu-subLinks li:hover:first-child:before{top:9px}.nav-menu-button+.nav-menu-subLinks li:hover:before{color:#005594;content:attr(data-text);font-weight:700;pointer-events:none;position:absolute;top:4px}.nav-menu-button+.nav-menu-subLinks .nav-menu-subLink{color:#005594;display:inline-block;font-weight:500;line-height:9px;padding:14px 0}@media (max-width:359px){.nav-menu-button{font-size:23px}}@media (min-width:760px){.nav-menu-button{order:0;padding:0 6px}.nav-menu-button span:first-child{display:none}}@media (min-width:1020px){.nav-menu-button{padding:0 6px}}@media (min-width:1340px){.nav-menu-button{padding-left:15px;padding-right:8px}}.nav-menu-hamburgerIC{font-size:19px;position:relative;top:3px}.nav-menu-hamburgerIC:hover{color:#0496ff}.nav-menu-hamburgerIC span{font-weight:600;margin-top:3px}@media (min-width:760px){.nav-menu-hamburgerIC{top:0}}.nav-menu-hamburgerAllAccess{font-size:19px;position:relative;top:3px}.nav-menu-hamburgerAllAccess:hover{color:#cfd8e2}.nav-menu-hamburgerAllAccess span{font-weight:600;margin-top:3px}@media (min-width:760px){.nav-menu-hamburgerAllAccess{top:0}}.nav-menu-hamburgerPro{font-size:19px;position:relative;top:3px}.nav-menu-hamburgerPro:hover{color:#00a857}.nav-menu-hamburgerPro span{font-weight:600;margin-top:3px}@media (min-width:760px){.nav-menu-hamburgerPro{top:0}}.nav-menu-hamburger{font-size:19px;position:relative;top:3px}.nav-menu-hamburger:hover{color:#ffbc05}.nav-menu-hamburger span{font-weight:600;margin-top:3px}@media (min-width:760px){.nav-menu-hamburger{top:0}}.nav-menu-articleHamburger{color:#005594}.nav-menu-articleHamburgerAllAccess,.nav-menu-articleHamburgerPro{color:#002f6c}.nav-menu-desktopHamburger,.nav-menu-desktopHamburgerAllAccess,.nav-menu-desktopHamburgerIC,.nav-menu-desktopHamburgerPro{color:#fff;font-size:16px;font-weight:700;margin-right:7px;position:relative;top:4px;transition:top .25s}@media (min-width:760px){.nav-menu-desktopHamburger,.nav-menu-desktopHamburgerAllAccess,.nav-menu-desktopHamburgerIC,.nav-menu-desktopHamburgerPro{margin-right:13px;transform:none}}@media (max-width:759px){.nav-menu-desktopHamburger,.nav-menu-desktopHamburgerAllAccess,.nav-menu-desktopHamburgerIC,.nav-menu-desktopHamburgerPro{display:none}}@media (min-width:1020px){.nav-menu-desktopHamburger,.nav-menu-desktopHamburgerAllAccess,.nav-menu-desktopHamburgerIC,.nav-menu-desktopHamburgerPro{margin-right:7px}}.nav-menu-desktopHamburger span[class=icon-menu],.nav-menu-desktopHamburgerAllAccess span[class=icon-menu],.nav-menu-desktopHamburgerIC span[class=icon-menu],.nav-menu-desktopHamburgerPro span[class=icon-menu]{display:inline}.nav-menu-desktopHamburger:hover{color:#fcb700}.nav-menu-desktopHamburger:focus{color:#fff}.nav-menu-desktopHamburger.nav-menu-button{padding-right:0}@media (min-width:760px){.nav-menu-desktopHamburger{display:block;padding-left:0}.nav-menu-desktopHamburger:hover{color:#fcb700}.nav-menu-desktopHamburger:hover:after,.nav-menu-desktopHamburger:hover:before{background:#fcb700}}.nav-menu-desktopHamburgerAllAccess:hover{color:#cfd8e2}.nav-menu-desktopHamburgerAllAccess:focus{color:#fff}.nav-menu-desktopHamburgerAllAccess.nav-menu-button{padding-right:0}@media (min-width:760px){.nav-menu-desktopHamburgerAllAccess{display:block;padding-left:0}.nav-menu-desktopHamburgerAllAccess:hover{color:#cfd8e2}.nav-menu-desktopHamburgerAllAccess:hover:after,.nav-menu-desktopHamburgerAllAccess:hover:before{background:#cfd8e2}}.nav-menu-desktopHamburgerPro:hover{color:#00a857}.nav-menu-desktopHamburgerPro:focus{color:#fff}.nav-menu-desktopHamburgerPro.nav-menu-button{padding-right:0}@media (min-width:760px){.nav-menu-desktopHamburgerPro{display:block;padding-left:0}.nav-menu-desktopHamburgerPro:hover{color:#00a857}.nav-menu-desktopHamburgerPro:hover:after,.nav-menu-desktopHamburgerPro:hover:before{background:#00a857}}.nav-menu-desktopHamburgerIC:hover{color:#0496ff}.nav-menu-desktopHamburgerIC:focus{color:#fff}.nav-menu-desktopHamburgerIC.nav-menu-button{padding-right:0}@media (min-width:760px){.nav-menu-desktopHamburgerIC{display:block;padding-left:0}.nav-menu-desktopHamburgerIC:hover{color:#0496ff}.nav-menu-desktopHamburgerIC:hover:after,.nav-menu-desktopHamburgerIC:hover:before{background:#0496ff}}@media (min-width:1020px){.nav-menu-desktopHamburgerSticky{transform:translateY(7px)}}@media (min-width:1020px){.nav-menu-desktopHamburgerStickyAllAccess{transform:translateY(7px)}}@media (min-width:1020px){.nav-menu-desktopHamburgerStickyPro{transform:translateY(7px)}}@media (min-width:1020px){.nav-menu-desktopHamburgerStickyIC{transform:translateY(7px)}}.nav-menu-desktopHamburgerArticleSticky{color:#005594}.nav-menu-desktopHamburgerArticleSticky:after,.nav-menu-desktopHamburgerArticleSticky:before{background:#001e5a}.nav-menu-desktopHamburgerArticleSticky:focus{color:#005594}.nav-menu-desktopHamburgerArticleSticky:focus:after,.nav-menu-desktopHamburgerArticleSticky:focus:before{background:#001e5a}.nav-menu-desktopHamburgerArticleStickyAllAccess{color:#002f6c}.nav-menu-desktopHamburgerArticleStickyAllAccess:after,.nav-menu-desktopHamburgerArticleStickyAllAccess:before{background:#002f6c}.nav-menu-desktopHamburgerArticleStickyAllAccess:focus{color:#002f6c}.nav-menu-desktopHamburgerArticleStickyAllAccess:focus:after,.nav-menu-desktopHamburgerArticleStickyAllAccess:focus:before{background:#002f6c}.nav-menu-desktopHamburgerArticleStickyOneAccess{color:#002f6c}.nav-menu-desktopHamburgerArticleStickyOneAccess:after,.nav-menu-desktopHamburgerArticleStickyOneAccess:before{background:#002f6c}.nav-menu-desktopHamburgerArticleStickyOneAccess:focus{color:#002f6c}.nav-menu-desktopHamburgerArticleStickyOneAccess:focus:after,.nav-menu-desktopHamburgerArticleStickyOneAccess:focus:before{background:#002f6c}.nav-menu-desktopHamburgerArticleStickyIC{color:#002f6c}.nav-menu-desktopHamburgerArticleStickyIC:after,.nav-menu-desktopHamburgerArticleStickyIC:before{background:#002f6c}.nav-menu-desktopHamburgerArticleStickyIC:focus{color:#002f6c}.nav-menu-desktopHamburgerArticleStickyIC:focus:after,.nav-menu-desktopHamburgerArticleStickyIC:focus:before{background:#002f6c}.nav-menu-buttonText{color:#e8e8e8;font-size:9px;font-weight:600;letter-spacing:1px;margin-top:5px;opacity:.75;text-align:center;text-transform:uppercase}@media (min-width:760px){.nav-menu-buttonText{color:#fff;font-size:12px;font-weight:700;opacity:1}}@media (min-width:1020px){.nav-menu-buttonText{font-size:14px;font-weight:600;letter-spacing:.5px}}@media (min-width:1340px){.nav-menu-buttonText{letter-spacing:0}}.nav-menu-articleButtonText{color:#005594}.nav-menu-articleButtonTextAllAccess,.nav-menu-articleButtonTextPro{color:#002f6c}.nav-menu-articleButtonTextIC{color:#071d39}.nav-menu-logoStickyContainer{margin-right:9%}@media (min-width:760px){.nav-menu-logoStickyContainer{margin-right:0}}.nav-menu-logo{height:100%;opacity:0;overflow:hidden;width:34px}@media (min-width:760px){.nav-menu-logo{transform:translate(-100%,-100%)}}.nav-menu-logoSticky,.nav-menu-logoStickyMobilePro{height:31px;opacity:1;width:41px;z-index:1}@media (min-width:760px){.nav-menu-logoSticky,.nav-menu-logoStickyMobilePro{margin-right:20px;transform:translate(9px)}}@media (min-width:1020px){.nav-menu-logoSticky,.nav-menu-logoStickyMobilePro{transform:translate(9px,9px)}}@media (max-width:759px){.nav-menu-logoStickyMobileAllAccess,.nav-menu-logoStickyMobilePro{height:20px;width:122px}}.nav-menu-logoStickyMobileIC{width:150px}.nav-menu-mainLinks{flex:1;margin-left:-35px;margin-right:0;overflow:hidden;text-align:left;transition:all .25s;white-space:nowrap;width:100%;z-index:2}@media (min-width:760px){.nav-menu-mainLinks{align-items:center;display:flex;flex:100;flex-direction:row;height:auto;overflow:visible}}.nav-menu-mainLinksSticky{margin-left:0}@media (min-width:1020px){.nav-menu-mainLinksSticky{transform:translateY(10px)}}.nav-menu-mainLinksWrapper{position:relative}.nav-menu-mainLinksWrapper:after,.nav-menu-mainLinksWrapper:before{content:"";display:none;height:100%;position:absolute;top:0;width:44px}@media (min-width:760px){.nav-menu-mainLinksWrapper:after,.nav-menu-mainLinksWrapper:before{display:none}}.nav-menu-mainLinksWrapper:before{background:linear-gradient(270deg,#0000,#005594);opacity:1;transition:all .25s}.nav-menu-mainLinksWrapper:after{background:linear-gradient(270deg,#005594,#0000);right:0}.nav-menu-mainLinksWrapperStart{display:flex;justify-content:space-between}.nav-menu-mainLinksWrapperStart:before{opacity:0}.nav-menu-articleMainWrapper{flex:1;height:32px}@media (min-width:760px){.nav-menu-articleMainWrapper{height:auto}}.nav-menu-articleContent{align-items:center;display:flex;justify-content:flex-end;width:100%}@media (min-width:1020px){.nav-menu-articleContent{justify-content:space-between;width:calc(100% - 54px)}}@media (min-width:1340px){.nav-menu-articleContent{width:100%}}.nav-menu-articleTitle,.nav-menu-articleTitleWithoutShareComponent{display:none;font-size:14px;font-weight:700;line-height:2;text-overflow:ellipsis;transform:translateY(2px);width:70%}@media (min-width:1020px){.nav-menu-articleTitle,.nav-menu-articleTitleWithoutShareComponent{display:block;overflow:hidden;padding-right:30px}}@media (max-width:1179px){.nav-menu-articleTitle,.nav-menu-articleTitleWithoutShareComponent{width:auto}}@media (max-width:1339px){.nav-menu-articleTitle,.nav-menu-articleTitleWithoutShareComponent{width:540px}}@media (min-width:1340px){.nav-menu-articleTitle,.nav-menu-articleTitleWithoutShareComponent{padding-left:5px}}.nav-menu-articleSocial{display:contents}.nav-menu-articleTitleWithoutShareComponent{margin-bottom:15px}@media (min-width:1020px){.nav-menu-articleTitleWithoutShareComponent{width:912px}}.nav-menu-articleHidden{display:none}.nav-menu-linksSticky,.nav-menu-navLinks{display:flex;flex:1;justify-content:space-between}@media (min-width:760px){.nav-menu-linksSticky .nav-menu-button,.nav-menu-linksSticky .nav-menu-buttonAllAccess,.nav-menu-linksSticky .nav-menu-buttonPro{padding:0 5px}}@media (min-width:1020px){.nav-menu-linksSticky .nav-menu-button,.nav-menu-linksSticky .nav-menu-buttonAllAccess,.nav-menu-linksSticky .nav-menu-buttonPro{padding:0 12px}}.nav-menu-linksSticky .nav-menu-subLinks{left:12px;position:absolute;top:34px}.nav-menu-articleNavLinks{display:none}@media (min-width:760px){.nav-menu-articleNavLinks{display:flex}.nav-menu-articleNavLinks.nav-menu-linksSticky{display:none}.nav-menu-articleNavLinks.nav-menu-linksSticky .nav-menu-primaryLink{margin-bottom:0}}.nav-menu-primaryLink{display:inline-block;font-size:14px;font-weight:700;letter-spacing:.85px;margin-right:4px;position:relative;text-transform:uppercase}@media (min-width:760px){.nav-menu-primaryLink{line-height:30px}.nav-menu-primaryLink:not(.markets):not(.business_news):not(.investing):not(.tech):not(.politics):not(.cnbc_tv):not(.investing_club):not(.pro):not(.video):not(.livestream){display:none}}.nav-menu-primaryLink:not(.watchlist):not(.markets):not(.cnbc_tv):not(.hamburger):not(.video){display:none}@media (min-width:760px){.nav-menu-primaryLink{font-size:12px;margin-right:0}.nav-menu-primaryLink:not(.watchlist):not(.markets):not(.cnbc_tv):not(.hamburger):not(.video){display:block}.nav-menu-primaryLink:last-child{display:none}}.nav-menu-primaryLink.nav-menu-active{position:relative}.nav-menu-primaryLink.nav-menu-active:after{background-color:#fff;bottom:-10px;content:"";height:3px;left:0;position:absolute;width:100%}@media (min-width:1020px){.nav-menu-primaryLink:hover~.nav-menu-navUnderline,.nav-menu-primaryLink:hover~.nav-menu-navUnderlineAllAccess,.nav-menu-primaryLink:hover~.nav-menu-navUnderlineIC,.nav-menu-primaryLink:hover~.nav-menu-navUnderlinePro{opacity:1}}@media (min-width:760px){.nav-menu-progressBarContainer{display:none}}.nav-menu-logoContainer{pointer-events:none;width:34px}.nav-menu-navDropdownWrap{animation-fill-mode:forwards;background-color:#fff;box-shadow:0 1px 3px 1px #00000014;height:100px;left:0;opacity:1;pointer-events:none;position:absolute;top:4px;transform:matrix(0,0,0,0,0,0);transform-origin:0 0;z-index:-1}.nav-menu-navUnderlineAllAccess{height:1px;left:0;opacity:0;pointer-events:none;position:absolute;transform:matrix(0,0,0,0,0,0);transform-origin:left;width:100px;z-index:600}.nav-menu-navUnderlineAllAccess:after{border-bottom:4px solid #cfd8e2;content:" ";list-style:none;position:absolute;width:100%}.nav-menu-navUnderlinePro{height:1px;left:0;opacity:0;pointer-events:none;position:absolute;transform:matrix(0,0,0,0,0,0);transform-origin:left;width:100px;z-index:600}.nav-menu-navUnderlinePro:after{border-bottom:4px solid #00a857;content:" ";list-style:none;position:absolute;width:100%}.nav-menu-navUnderlineIC{height:1px;left:0;opacity:0;pointer-events:none;position:absolute;transform:matrix(0,0,0,0,0,0);transform-origin:left;width:100px;z-index:600}.nav-menu-navUnderlineIC:after{border-bottom:4px solid #0496ff;content:" ";list-style:none;position:absolute;width:100%}.nav-menu-navUnderline{height:1px;left:0;opacity:0;pointer-events:none;position:absolute;transform:matrix(0,0,0,0,0,0);transform-origin:left;width:100px;z-index:600}.nav-menu-navUnderline:after{border-bottom:4px solid #fcb700;content:" ";list-style:none;position:absolute;width:100%}.nav-menu-subLinks-enter{background-color:initial;opacity:.01!important}.nav-menu-subLinks-enter.nav-menu-subLinks-enter-active{background-color:#fff;opacity:1!important;transition:all .2s ease-in .14s}.nav-menu-investingClubLockIcon,.nav-menu-proLockIcon{background:#fff;height:11px;margin-left:-4px;margin-top:14px;mask-image:url(https://static-redesign.cnbcfm.com/dist/2510aab92bf855eb1ad7.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/2510aab92bf855eb1ad7.svg);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;width:10px}@media (max-width:759px){.nav-menu-investingClubLockIcon,.nav-menu-proLockIcon{display:none}}@media (min-width:1020px){.nav-menu-investingClubLockIcon,.nav-menu-proLockIcon{margin-top:15px}}.nav-menu-investingClubLockIcon{margin-left:0}@media (min-width:1020px){.nav-menu-investingClubLockIcon{margin-left:2px}}@media (min-width:1340px){.nav-menu-investingClubLockIcon{margin-left:0}}.nav-menu-investingClubPillIcon,.nav-menu-proPillIcon{display:inline-block;height:13px;margin-left:-14px;margin-top:0;padding:3px 4px 2px;-webkit-user-select:none;user-select:none}@media (max-width:759px){.nav-menu-investingClubPillIcon,.nav-menu-proPillIcon{display:none}}@media (max-width:1019px){.nav-menu-investingClubPillIcon,.nav-menu-proPillIcon{margin-left:-16px}}.nav-menu-investingClubPillIcon{margin-left:-13px}@media (max-width:1019px){.nav-menu-investingClubPillIcon{margin-left:-14px}.nav-menu-investingClubPillIcon>object,.nav-menu-proPillIcon>object{height:12px}}.nav-menu-mainLinksSticky .nav-menu-investingClubPillIcon,.nav-menu-mainLinksSticky .nav-menu-proPillIcon{margin-left:-19px}@media (max-width:1339px){.nav-menu-mainLinksSticky .nav-menu-investingClubPillIcon,.nav-menu-mainLinksSticky .nav-menu-proPillIcon{margin-left:-20px}}@media (max-width:1019px){.nav-menu-mainLinksSticky .nav-menu-investingClubPillIcon,.nav-menu-mainLinksSticky .nav-menu-proPillIcon{margin-left:-16px}}.nav-menu-mainLinksSticky .nav-menu-investingClubPillIcon{margin-left:-17px}@media (max-width:1339px){.nav-menu-mainLinksSticky .nav-menu-investingClubPillIcon{margin-left:-18px}}@media (max-width:1019px){.nav-menu-mainLinksSticky .nav-menu-investingClubPillIcon{margin-left:-14px}}.nav-menu-berkshireWatchLive{font-size:11px}@media (min-width:760px){.nav-menu-berkshireWatchLive{display:none}}@media (min-width:1020px){.nav-menu-berkshireWatchLive{display:flex;margin-right:12px}.nav-menu-berkshireWatchLive a{display:-webkit-flex}}@media (min-width:1340px){.nav-menu-berkshireWatchLive{margin-right:44px}}.nav-menu-berkshireWatchLive a{color:#005594;font-weight:700;letter-spacing:1.2px;text-transform:uppercase}.nav-menu-berkshireWatchLive a:hover{color:#d1bb7e}.nav-menu-berkshireWatchLive span{font-weight:600}.nav-menu-berkshireWatchLive span.nav-menu-liveText{background-color:#005594;color:#d1bb7e;letter-spacing:1.2px;margin-left:2px;padding:0 2px 0 3px;text-transform:uppercase}.nav-menu-berkshireWatchLive:before{animation:nav-menu-pulse 2s infinite;background-color:#ff5053;border-radius:100%;box-shadow:0 0 0 0 #ce2b2b;content:"";display:block;height:6px;margin:5px 6px;transform:scale(1);width:6px}.nav-menu-watchLive{font-size:11px;margin-right:25px}@media (min-width:1020px){.nav-menu-watchLive{display:flex}.nav-menu-watchLive a{display:-webkit-flex}}.nav-menu-watchLive a{color:#005594;font-weight:600;letter-spacing:1.2px;text-transform:uppercase}.nav-menu-watchLive span{font-weight:600}.nav-menu-watchLive span.nav-menu-liveText{background-color:#001e5a;color:#fff;letter-spacing:1.2px;margin-left:2px;padding:0 2px 0 3px;text-transform:uppercase}.nav-menu-watchLive span.nav-menu-showTitle{background-color:#fff;color:#071d39;letter-spacing:.4px;margin-left:8px;text-transform:none}.nav-menu-watchLive:before{animation:nav-menu-pulse 2s infinite;background-color:#ff5053;border-radius:100%;box-shadow:0 0 0 0 #ce2b2b;content:"";display:block;height:6px;margin:5px 6px;transform:scale(1);width:6px}@keyframes nav-menu-pulse{0%{box-shadow:0 0 0 1px #ce2b2b;opacity:1;transform:scale(.95)}70%{box-shadow:0 0 0 2px #ce2b2b;opacity:.9;transform:scale(1)}to{box-shadow:0 0 0 1px #ce2b2b;opacity:1;transform:scale(.95)}}.nav-menu-wrapperButton{padding-right:14px}.nav-menu-signupBtnStickyNav{background-color:#001e5a;border-radius:2px;color:#fff;display:flex;font-size:11px;font-weight:600;letter-spacing:1px;margin-left:-58px;margin-right:14px;padding:3px 10px;text-transform:uppercase}.nav-menu-signupBtnStickyNav:hover{background-color:#002f6c}@media screen and (max-width:1339px){.nav-menu-signupBtnStickyNav{margin-left:0;margin-right:-40px}.nav-menu-watchLive{margin-right:-24px}}@media screen and (max-width:759px){.nav-menu-signupBtnStickyNav{display:none}}.nav-menu-WatchLiveWithSignUpBtn{display:flex;margin-right:0}@media (min-width:1020px){.nav-menu-WatchLiveWithSignUpBtn{padding-right:1px}}@media (min-width:1340px){.nav-menu-WatchLiveWithSignUpBtn{padding-right:14px}}@media screen and (max-width:1019px){.nav-menu-signupBtnStickyNav{margin-right:24px}.nav-menu-watchLive{display:flex;margin-right:35px}}.nav-menu-menuPromotion,.nav-menu-subMenuPromotion{align-items:center;background:#e8802a;border-radius:3px;color:#fff;display:inline-flex;font-size:8px;font-weight:500;gap:10px;justify-content:center;line-height:10px;margin-left:5px;padding:3px 4px 2px;text-transform:uppercase}.nav-menu-menuPromotion{display:none;margin:13px auto auto 3px}.nav-menu-menuPromotion.nav-menu-menuPromotionNoLockIcon{margin-left:-5px}@media (min-width:760px) and (max-width:1019px){.nav-menu-menuPromotion{display:inline-flex}}@media (min-width:1340px){.nav-menu-menuPromotion{display:inline-flex}}
.SearchToggle-button,.SearchToggle-signinButton .SearchToggle-signinButtonBtn{background:inherit;border-radius:0;color:#fff;margin-top:3px;padding:6px;position:relative;z-index:0}.SearchToggle-button.SearchToggle-closeButtonText,.SearchToggle-signinButton .SearchToggle-signinButtonBtn.SearchToggle-closeButtonText{font-size:16px;font-weight:600;margin-left:-50px;right:14px;width:auto}.SearchToggle-button .icon-search,.SearchToggle-signinButton .SearchToggle-signinButtonBtn .icon-search{display:block}.SearchToggle-button .icon-search:before,.SearchToggle-signinButton .SearchToggle-signinButtonBtn .icon-search:before{font-size:24px;transition:font-size .25s}.SearchToggle-button .icon-close:before,.SearchToggle-signinButton .SearchToggle-signinButtonBtn .icon-close:before{font-size:18px}.SearchToggle-button span,.SearchToggle-signinButton .SearchToggle-signinButtonBtn span{color:#7a7a7a;color:#fff;display:none;font-size:12px;font-weight:600;left:10px;letter-spacing:.785px;opacity:1;position:absolute;top:5px;transition:opacity .25s}.SearchToggle-button.SearchToggle-searchOpen,.SearchToggle-signinButton .SearchToggle-signinButtonBtn.SearchToggle-searchOpen{background:inherit;position:absolute}@media (min-width:760px){.SearchToggle-button,.SearchToggle-signinButton .SearchToggle-signinButtonBtn{align-items:center;background:#fff;background:#ffffff21;display:flex;flex-direction:row;height:30px;justify-content:flex-end;margin-right:28px;margin-top:10px;padding:0 20px 0 15px;width:205px}.SearchToggle-button span,.SearchToggle-signinButton .SearchToggle-signinButtonBtn span{display:block;font-size:9px;left:12px;top:7px}.SearchToggle-button span.SearchToggle-megaMenuSearchToggler,.SearchToggle-button span.SearchToggle-megaMenuSearchTogglerAllAccess,.SearchToggle-button span.SearchToggle-megaMenuSearchTogglerIC,.SearchToggle-button span.SearchToggle-megaMenuSearchTogglerPro,.SearchToggle-signinButton .SearchToggle-signinButtonBtn span.SearchToggle-megaMenuSearchToggler,.SearchToggle-signinButton .SearchToggle-signinButtonBtn span.SearchToggle-megaMenuSearchTogglerAllAccess,.SearchToggle-signinButton .SearchToggle-signinButtonBtn span.SearchToggle-megaMenuSearchTogglerIC,.SearchToggle-signinButton .SearchToggle-signinButtonBtn span.SearchToggle-megaMenuSearchTogglerPro{left:30px;top:10px}.SearchToggle-button .icon-search,.SearchToggle-signinButton .SearchToggle-signinButtonBtn .icon-search{bottom:0;color:#7a7a7a;color:#fff;height:20px;margin:auto;position:absolute;right:10px;top:0}.SearchToggle-button .icon-search:before,.SearchToggle-signinButton .SearchToggle-signinButtonBtn .icon-search:before{font-size:20px}.SearchToggle-button:before,.SearchToggle-signinButton .SearchToggle-signinButtonBtn:before{background-color:#6699be80;content:"";height:calc(100% - 30px);left:0;position:absolute;top:50%;transform:translateY(-50%)}}@media (min-width:1020px){.SearchToggle-button,.SearchToggle-signinButton .SearchToggle-signinButtonBtn{align-items:center;bottom:auto;height:30px;margin-top:10px;padding-left:20px;padding-right:0;transition:transform .25s,height .25s;width:250px}.SearchToggle-button span,.SearchToggle-button span.SearchToggle-megaMenuSearchToggler,.SearchToggle-button span.SearchToggle-megaMenuSearchTogglerAllAccess,.SearchToggle-button span.SearchToggle-megaMenuSearchTogglerIC,.SearchToggle-button span.SearchToggle-megaMenuSearchTogglerPro,.SearchToggle-signinButton .SearchToggle-signinButtonBtn span,.SearchToggle-signinButton .SearchToggle-signinButtonBtn span.SearchToggle-megaMenuSearchToggler,.SearchToggle-signinButton .SearchToggle-signinButtonBtn span.SearchToggle-megaMenuSearchTogglerAllAccess,.SearchToggle-signinButton .SearchToggle-signinButtonBtn span.SearchToggle-megaMenuSearchTogglerIC,.SearchToggle-signinButton .SearchToggle-signinButtonBtn span.SearchToggle-megaMenuSearchTogglerPro{font-size:12px;left:10px;top:5px}.SearchToggle-button .icon-search,.SearchToggle-signinButton .SearchToggle-signinButtonBtn .icon-search{bottom:0;color:#7a7a7a;color:#fff;right:10px}}.SearchToggle-mega-menu
.SearchToggle-signinButton .SearchToggle-signinButtonBtn,.SearchToggle-mega-menu .SearchToggle-button{position:relative;width:auto}@media (min-width:1340px){.SearchToggle-mega-menu .SearchToggle-button,.SearchToggle-mega-menu .SearchToggle-signinButton .SearchToggle-signinButtonBtn{margin:0 75px;padding:0}}.SearchToggle-articleButton.SearchToggle-buttonSticky{background:inherit;border-left:1px solid #e8e8e8;color:#005594;padding-left:43px;width:39px;z-index:999}.SearchToggle-articleButton.SearchToggle-buttonSticky .icon-search{color:#005594!important;color:#2077b6!important}@media (min-width:760px){.SearchToggle-articleButton.SearchToggle-buttonSticky{padding-left:22px}}@media (min-width:1020px){.SearchToggle-articleButton.SearchToggle-buttonSticky{display:block;line-height:1px;padding-left:43px}.SearchToggle-articleButton.SearchToggle-buttonSticky:before{background:none;bottom:0;content:"";display:block;height:30px;left:0;position:absolute;width:1px}}.SearchToggle-buttonSticky{background:inherit;right:-47px;transform:translateY(-100%);z-index:1000}@media (max-width:759px){.SearchToggle-buttonSticky{opacity:0}}@media (min-width:760px){.SearchToggle-buttonSticky{height:26px;transform:translateY(0);transition:width 0s .25s;width:45px}.SearchToggle-buttonSticky:before{display:none}.SearchToggle-buttonSticky span{opacity:0;transition:opacity .25s}.SearchToggle-buttonSticky .icon-search{color:#fff!important;height:26px}.SearchToggle-buttonSticky .icon-search:before{font-size:26px}}@media (min-width:1020px){.SearchToggle-buttonSticky{right:-68px}.SearchToggle-buttonSticky .icon-search,.SearchToggle-buttonSticky .icon-search:before{font-size:26px}}@media (-ms-high-contrast:none),screen and (-ms-high-contrast:active){.SearchToggle-buttonSticky{height:35px}}.SearchToggle-megaMenuButton{align-items:center;background-color:#f2f2f2;display:flex;height:45px;justify-content:space-between;min-width:110px;padding:0 20px;position:relative;width:100%}@media (min-width:1020px){.SearchToggle-megaMenuButton{background-color:initial;justify-content:flex-start;padding:0}}.SearchToggle-megaMenuButton span{border-radius:3px;color:#005594;display:inline-block;font-size:14px;font-weight:600;letter-spacing:1px;margin-top:.2rem;text-transform:uppercase}@media (min-width:760px){.SearchToggle-megaMenuButton span{margin-top:.3rem}}@media (min-width:1020px){.SearchToggle-megaMenuButton span{margin-top:1px}}.SearchToggle-megaMenuButton .icon-search{color:#071d39;font-size:24px;height:30px;padding-left:10px;width:30px}.SearchToggle-megaMenuButton .icon-search:before{color:#005594;display:block;height:100%;line-height:30px}@media (min-width:1020px){.SearchToggle-megaMenuButton:hover .icon-search,.SearchToggle-megaMenuButton:hover .icon-search:before,.SearchToggle-megaMenuButton:hover span{color:#fcb700}}.SearchToggle-megaMenuButtonAllAccess{align-items:center;background-color:#f2f2f2;display:flex;height:45px;justify-content:space-between;min-width:110px;padding:0 20px;position:relative;width:100%}@media (min-width:1020px){.SearchToggle-megaMenuButtonAllAccess{background-color:initial;justify-content:flex-start;padding:0}}.SearchToggle-megaMenuButtonAllAccess span{border-radius:3px;color:#071d39;display:inline-block;font-size:14px;font-weight:600;letter-spacing:1px;margin-top:.2rem;text-transform:uppercase}@media (min-width:760px){.SearchToggle-megaMenuButtonAllAccess span{margin-top:.3rem}}@media (min-width:1020px){.SearchToggle-megaMenuButtonAllAccess span{margin-top:1px}}.SearchToggle-megaMenuButtonAllAccess .icon-search{color:#fff;font-size:24px;height:30px;padding-left:10px;width:30px}.SearchToggle-megaMenuButtonAllAccess .icon-search:before{color:#002f6c;display:block;height:100%;line-height:30px}@media (min-width:1020px){.SearchToggle-megaMenuButtonAllAccess:focus .icon-search,.SearchToggle-megaMenuButtonAllAccess:focus .icon-search:before,.SearchToggle-megaMenuButtonAllAccess:focus span,.SearchToggle-megaMenuButtonAllAccess:hover .icon-search,.SearchToggle-megaMenuButtonAllAccess:hover .icon-search:before,.SearchToggle-megaMenuButtonAllAccess:hover span{color:#002f6c}}.SearchToggle-megaMenuButtonPro{align-items:center;background-color:#f2f2f2;display:flex;height:45px;justify-content:space-between;min-width:110px;padding:0 20px;position:relative;width:100%}@media (min-width:1020px){.SearchToggle-megaMenuButtonPro{background-color:initial;justify-content:flex-start;padding:0}}.SearchToggle-megaMenuButtonPro span{border-radius:3px;color:#27313c;display:inline-block;font-size:14px;font-weight:600;letter-spacing:1px;margin-top:.2rem;text-transform:uppercase}@media (min-width:760px){.SearchToggle-megaMenuButtonPro span{margin-top:.3rem}}@media (min-width:1020px){.SearchToggle-megaMenuButtonPro span{margin-top:1px}}.SearchToggle-megaMenuButtonPro .icon-search{color:#27313c;font-size:24px;height:30px;padding-left:10px;width:30px}.SearchToggle-megaMenuButtonPro .icon-search:before{color:#27313c;display:block;height:100%;line-height:30px}@media (min-width:1020px){.SearchToggle-megaMenuButtonPro:focus .icon-search,.SearchToggle-megaMenuButtonPro:focus .icon-search:before,.SearchToggle-megaMenuButtonPro:focus span,.SearchToggle-megaMenuButtonPro:hover .icon-search,.SearchToggle-megaMenuButtonPro:hover .icon-search:before,.SearchToggle-megaMenuButtonPro:hover span{color:#00a857}}.SearchToggle-megaMenuButtonIC{align-items:center;background-color:#f2f2f2;display:flex;height:45px;justify-content:space-between;min-width:110px;padding:0 20px;position:relative;width:100%}@media (min-width:1020px){.SearchToggle-megaMenuButtonIC{background-color:initial;justify-content:flex-start;padding:0}}.SearchToggle-megaMenuButtonIC span{border-radius:3px;color:#27313c;display:inline-block;font-size:14px;font-weight:600;letter-spacing:1px;margin-top:.2rem;text-transform:uppercase}@media (min-width:760px){.SearchToggle-megaMenuButtonIC span{margin-top:.3rem}}@media (min-width:1020px){.SearchToggle-megaMenuButtonIC span{margin-top:1px}}.SearchToggle-megaMenuButtonIC .icon-search{color:#27313c;font-size:24px;height:30px;padding-left:10px;width:30px}.SearchToggle-megaMenuButtonIC .icon-search:before{color:#27313c;display:block;height:100%;line-height:30px}@media (min-width:1020px){.SearchToggle-megaMenuButtonIC:focus .icon-search,.SearchToggle-megaMenuButtonIC:focus .icon-search:before,.SearchToggle-megaMenuButtonIC:focus span,.SearchToggle-megaMenuButtonIC:hover .icon-search,.SearchToggle-megaMenuButtonIC:hover .icon-search:before,.SearchToggle-megaMenuButtonIC:hover span{color:#0496ff}}
.PageBuilder-containerFluidWidths{margin:0 auto;width:100%}@media (min-width:1020px){.PageBuilder-containerFluidWidths{max-width:960px}}@media (min-width:1340px){.PageBuilder-containerFluidWidths{max-width:1290px}}.PageBuilder-containerWidth100{width:100%}.PageBuilder-page{display:block;margin-bottom:25px;overflow:visible}@media (min-width:760px){.PageBuilder-page{margin-bottom:28px}}.PageBuilder-advertorialPage{display:block;overflow:visible}.PageBuilder-pageGrid{margin-left:auto;margin-right:auto;max-width:1290px;overflow:visible;width:100%}.PageBuilder-pageWrapper{margin:0 auto;max-width:100%}@media (min-width:760px){.PageBuilder-pageWrapper{max-width:678px}}@media (min-width:1020px){.PageBuilder-pageWrapper{max-width:960px}}@media (min-width:1340px){.PageBuilder-pageWrapper{max-width:1290px}}@media (min-width:760px){.PageBuilder-pageWrapper{max-width:100%!important}}.PageBuilder-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.PageBuilder-pageRow{padding-left:0;padding-right:0}}@media (min-width:1020px){.PageBuilder-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}}@media (min-width:1020px) and (min-width:760px){.PageBuilder-pageRow{padding-left:0;padding-right:0}}@media (max-width:1019px){.PageBuilder-pageRow{margin:0;padding:0}}@media (min-width:360px) and (max-width:759px){.PageBuilder-pageRow.PageBuilder-containerFluidWidths{padding:0 21px}}@media (min-width:760px) and (max-width:1019px){.PageBuilder-pageRow.PageBuilder-containerFluidWidths{padding:0 45px}}.PageBuilder-pageRowFlex{display:flex}.PageBuilder-rowUnderAd{margin-top:-29px}@media (min-width:1020px){.PageBuilder-rowUnderAd{margin-top:-50px}}@media (min-width:1340px){.PageBuilder-rowUnderAd{margin-top:-44px}}.PageBuilder-rowWithBackground{background:#cfd8e2;position:relative}.PageBuilder-rowWithBackground:after,.PageBuilder-rowWithBackground:before{background:#cfd8e2;content:"";display:block;height:100%;position:absolute;width:25vw}.PageBuilder-rowWithBackground:before{right:100%;top:0}.PageBuilder-rowWithBackground:after{left:100%;top:0}.PageBuilder-isAdvertorial{display:block;margin-bottom:50px!important}.PageBuilder-flipRowOrder .PageBuilder-col:first-child{order:2}@media (min-width:1020px){.PageBuilder-flipRowOrder .PageBuilder-col:first-child{order:1}}.PageBuilder-flipRowOrder .PageBuilder-col:last-child{order:1}@media (min-width:1020px){.PageBuilder-flipRowOrder .PageBuilder-col:last-child{order:2}}.PageBuilder-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.PageBuilder-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.PageBuilder-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.PageBuilder-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.PageBuilder-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.PageBuilder-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.PageBuilder-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.PageBuilder-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}.PageBuilder-containerFluidWidths .PageBuilder-col{max-width:678px!important;min-width:678px}}@media (min-width:760px){.PageBuilder-col-3{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.PageBuilder-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.PageBuilder-col-3{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.PageBuilder-col-3{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.PageBuilder-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.PageBuilder-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}.PageBuilder-col-3:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.PageBuilder-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}@media (min-width:760px){.PageBuilder-col-6{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.PageBuilder-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.PageBuilder-col-6{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.PageBuilder-col-6{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.PageBuilder-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.PageBuilder-col-6{flex-grow:0;flex-shrink:0;margin-left:0;margin-right:0;max-width:calc(44.44444% - 16.66667px);min-width:calc(44.44444% - 16.66667px)}.PageBuilder-col-6:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.PageBuilder-col-6{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(50% - 15px);min-width:calc(50% - 15px)}}.PageBuilder-col-9 .BrandBanner-container{margin-bottom:30px;z-index:99}@media (min-width:1340px){.PageBuilder-col-9 .BrandBanner-container{margin-left:calc(-50vw - -538.5px)}}@media (min-width:760px){.PageBuilder-col-9 .BrandBanner-container{margin-bottom:-100px;margin-top:50px}.PageBuilder-col-9{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.PageBuilder-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.PageBuilder-col-9{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.PageBuilder-col-9{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.PageBuilder-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.PageBuilder-col-9{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.PageBuilder-col-9:last-child{margin-right:0}}@media (min-width:1340px){.PageBuilder-col-9{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}.PageBuilder-col-9.PageBuilder-article{flex-grow:0;flex-shrink:0;margin-left:calc(8.33333% + 2.5px);max-width:calc(58.33333% - 12.5px);min-width:calc(58.33333% - 12.5px)}}@media (min-width:760px){.PageBuilder-col-12{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.PageBuilder-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.PageBuilder-col-12{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.PageBuilder-col-12{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.PageBuilder-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.PageBuilder-col-12{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.PageBuilder-col-12:last-child{margin-right:0}}@media (min-width:1340px){.PageBuilder-col-12{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}.PageBuilder-col-full{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.PageBuilder-col-full .MyComponentName-container{width:100vw}@media (min-width:1340px){.PageBuilder-col-full .MyComponentName-container{max-width:none}}.PageBuilder-col-full:last-child{margin-right:0}.PageBuilder-clear-col-padding{padding-bottom:0;padding-top:0}.PageBuilder-paddedWrapper{padding-bottom:15px;padding-top:15px}@media (min-width:1020px){.PageBuilder-paddedWrapper{padding-bottom:20px;padding-top:25px}.PageBuilder-hasBanner{margin-bottom:130px}}.PageBuilder-sidebar{flex-grow:0;flex-shrink:0;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.PageBuilder-sidebar{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.PageBuilder-sidebar{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.PageBuilder-sidebar{max-width:100%;min-width:100%}}@media (min-width:1340px){.PageBuilder-sidebar{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:360px){.PageBuilder-sidebar{min-width:100%}}@media (min-width:760px){.PageBuilder-sidebar{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}@media (min-width:1020px){.PageBuilder-sidebar{flex-grow:0;flex-shrink:0;margin-bottom:40px;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}}@media (min-width:1340px){.PageBuilder-sidebar{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}.PageBuilder-sidebarLeft{flex-grow:0;flex-shrink:0;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.PageBuilder-sidebarLeft{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.PageBuilder-sidebarLeft{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.PageBuilder-sidebarLeft{max-width:100%;min-width:100%}}@media (min-width:1340px){.PageBuilder-sidebarLeft{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:360px){.PageBuilder-sidebarLeft{min-width:100%}}@media (min-width:760px){.PageBuilder-sidebarLeft{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}@media (min-width:1020px){.PageBuilder-sidebarLeft{flex-grow:0;flex-shrink:0;margin-bottom:40px;margin-left:0;margin-right:30px;max-width:calc(22.22222% - 23.33333px);min-width:calc(22.22222% - 23.33333px);z-index:1}}@media (min-width:1340px){.PageBuilder-sidebarLeft{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}@media (min-width:1020px){.PageBuilder-sidebarLeftNav{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}}@media (min-width:1340px){.PageBuilder-sidebarLeftNav{flex-grow:0;flex-shrink:0;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}.PageBuilder-sidebarPro{margin-left:0;margin-right:30px}.PageBuilder-AdvertorialStory-ArticleHeader-1{display:hide}
.SponsorLogo-container>div>div{align-items:center;align-self:center;display:flex;justify-content:center;margin:0;width:88px}
.TopBanner-container{overflow:hidden;text-align:center;width:100%}@media (min-width:760px){.TopBanner-container{margin:15px auto 0;min-height:120px;min-width:728px;padding:15px 0}}@media (min-width:1020px){.TopBanner-container{margin-left:auto;margin-right:auto}}.TopBanner-berkshireEvent{display:none}@media (max-width:759px){.TopBanner-berkshireEvent{display:block;margin:20px auto;max-width:318px;width:100%}}
@charset "UTF-8";.Modal-modalBackground{background:#000000b3;height:100%;left:0;overflow-y:auto;position:fixed;top:0;transition:background-color .4s;width:100%;z-index:100001}.Modal-bottomModal.Modal-modal{background:#f8f8f8;border-radius:3px;bottom:0;box-shadow:5px 5px 20px #1717171a;display:inline-block;height:528px;left:0;margin-top:0!important;max-width:100%;position:fixed;top:auto;transform:none;width:100%}@media (max-width:1019px){.Modal-bottomModal.Modal-modal{height:642px}}@media (max-width:759px){.Modal-bottomModal.Modal-modal{height:100%;position:relative;top:0}}.Modal-modal{background-color:#fff;border-radius:3px;box-shadow:5px 5px 20px #1717171a;display:inline-block;left:50%;margin-top:10vh;max-width:100%;overflow:auto;position:relative;transform:translateX(-50%)}@media (max-width:759px){.Modal-modal{height:100%;left:auto;margin:0;transform:none;width:100%}}.Modal-modalContents{overflow:auto}@media (max-width:759px){.Modal-modalContents{height:100%}}.Modal-closeButton{color:#a9a9a9;cursor:pointer;position:absolute;right:12px;top:12px}.Modal-closeButton:focus-visible>svg{border:1px solid #071d39;border-radius:4px}.RecaptchaAcknowledgement-acknowledgement{color:#747474;flex:1;font-size:11px;font-weight:600;line-height:15px;margin-bottom:7px;margin-top:7px;width:100%}.RecaptchaAcknowledgement-acknowledgement a{color:#747474;font-weight:500;text-decoration:none}.RecaptchaAcknowledgement-acknowledgement a:hover{color:#747474;text-decoration:underline}.RecaptchaAcknowledgement-acknowledgement a:active{color:#747474}.RecaptchaAcknowledgement-reCaptchaPadding{margin-top:15px}.RecaptchaAcknowledgement-centerAligned{text-align:center}.RecaptchaAcknowledgement-leftAligned{text-align:left}.RecaptchaAcknowledgement-rightAligned{text-align:right}.RecaptchaAcknowledgement-allAccess{margin-top:unset;order:1}.AuthForms-container{margin:0 auto;padding:0 10px;width:458px}@media (max-width:759px){.AuthForms-container{max-width:458px;padding:20px 0 0;width:100%}.AuthForms-container.AuthForms-signInContainer{padding:0 0 12px}}.AuthForms-container .AuthForms-signupContainer{margin:0 auto;padding:0 41px;text-align:center;width:458px}@media (max-width:759px){.AuthForms-container .AuthForms-signupContainer{padding:20px 0 0;width:100%}}.AuthForms-container .AuthForms-header{color:#171717;margin-bottom:20px}.AuthForms-container .AuthForms-header.AuthForms-signInHeader{margin-bottom:40px}@media (min-width:760px){.AuthForms-container .AuthForms-header.AuthForms-signInHeader{margin-bottom:21px;padding-top:18px}}@media (min-width:1020px){.AuthForms-container .AuthForms-header.AuthForms-signInHeader{margin-bottom:27px}}.AuthForms-container .AuthForms-header.AuthForms-signInHeader .AuthForms-headerTitle{color:#424242;font-size:18px;font-weight:500;line-height:16px}.AuthForms-container .AuthForms-createAccountHeader{margin-bottom:20px;text-align:center}@media (min-width:1020px){.AuthForms-container .AuthForms-createAccountHeader{margin-bottom:30px;margin-top:50px}}.AuthForms-container .AuthForms-headerTitle{color:#071d39;font-size:20px;font-weight:700;text-align:center;width:100%}.AuthForms-container .AuthForms-signinContent{font-size:14px;font-weight:450;padding-top:20px}.AuthForms-container .AuthForms-toggleCta{color:#424242;font-size:12px;font-weight:500;text-align:right}.AuthForms-container .AuthForms-instructions{margin-bottom:60px;text-align:center}.AuthForms-container .AuthForms-instructions p{color:#171717;font-size:14px;line-height:16px}.AuthForms-container .AuthForms-instructions p a{color:#005594;text-decoration:none}.AuthForms-container .AuthForms-instructions p a:hover{color:#002f6c}.AuthForms-container .AuthForms-formInputContainer{margin:0 auto 10px;max-width:350px}.AuthForms-container .AuthForms-formInputContainer.AuthForms-withErrors{margin:0 auto 25px}.AuthForms-container .AuthForms-formInputContainer.AuthForms-signInFormInputContainer:last-of-type{margin-bottom:13px}@media (min-width:760px){.AuthForms-container .AuthForms-formInputContainer.AuthForms-signInFormInputContainer:last-of-type{margin-bottom:0}}.AuthForms-container .AuthForms-formInput{width:100%}.AuthForms-container input::-ms-clear,.AuthForms-container input::-ms-reveal{display:none}.AuthForms-container .AuthForms-loginWaitMsg{word-wrap:break-word;border-radius:3px;color:#071d39;font-size:14px;font-weight:500;margin:10px 0;padding:10px;text-align:center}.AuthForms-container .AuthForms-accountButton,.AuthForms-container .AuthForms-submitButton{align-items:center;appearance:none;background-color:#005594;border:1px solid #002f6c;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px!important;justify-content:center;letter-spacing:1px;margin:0 auto;max-width:260px!important;padding:0 20px;padding:0!important;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:100%!important}.AuthForms-container .AuthForms-accountButton>span,.AuthForms-container .AuthForms-submitButton>span{display:block;line-height:12px}.AuthForms-container .AuthForms-accountButton [class*=" icon-"],.AuthForms-container .AuthForms-accountButton [class^=icon-],.AuthForms-container .AuthForms-submitButton [class*=" icon-"],.AuthForms-container .AuthForms-submitButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-container .AuthForms-accountButton [class*=" icon-"]:before,.AuthForms-container .AuthForms-accountButton [class^=icon-]:before,.AuthForms-container .AuthForms-submitButton [class*=" icon-"]:before,.AuthForms-container .AuthForms-submitButton [class^=icon-]:before{line-height:12px}.AuthForms-container .AuthForms-accountButton:focus,.AuthForms-container .AuthForms-accountButton:hover,.AuthForms-container .AuthForms-submitButton:focus,.AuthForms-container .AuthForms-submitButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.AuthForms-container .AuthForms-accountButton[class*=touchButton]:hover,.AuthForms-container .AuthForms-submitButton[class*=touchButton]:hover{background-color:#005594;border-color:#002f6c;color:#fff}@media (hover:hover){.AuthForms-container .AuthForms-accountButton[class*=touchButton]:hover,.AuthForms-container .AuthForms-submitButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.AuthForms-container .AuthForms-accountButton,.AuthForms-container .AuthForms-submitButton{padding:0 30px;width:auto}}.AuthForms-container .AuthForms-accountButton:last-child,.AuthForms-container .AuthForms-submitButton:last-child{clear:both;margin-bottom:7px}.AuthForms-container .AuthForms-accountButton.AuthForms-disableButton,.AuthForms-container .AuthForms-submitButton.AuthForms-disableButton{background-color:#d9d9d9;border:#d9d9d9;transition:none}.AuthForms-container .AuthForms-accountButton.AuthForms-disableButton:hover,.AuthForms-container .AuthForms-submitButton.AuthForms-disableButton:hover{background-color:#d9d9d9;border:#d9d9d9}@media (min-width:760px){.AuthForms-container .AuthForms-accountButton.AuthForms-signInSubmitButton,.AuthForms-container .AuthForms-submitButton.AuthForms-signInSubmitButton{width:109px!important}}.AuthForms-container.AuthForms-disableButton{background-color:#d9d9d9;border:none}.AuthForms-container.AuthForms-disableButton:hover{background-color:#d9d9d9}.AuthForms-container .AuthForms-accountButton{border-radius:3px;cursor:pointer;height:40px!important;margin:0 auto;padding:0!important}@media (min-width:760px){.AuthForms-container .AuthForms-accountButton{width:200px!important}}.AuthForms-container .AuthForms-accountButton:last-child{clear:both;margin-bottom:7px}.AuthForms-container .AuthForms-accountButton{align-items:center;appearance:none;background-color:#fff;border:1px solid #002f6c;color:#005594;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AuthForms-container .AuthForms-accountButton>span{display:block;line-height:12px}.AuthForms-container .AuthForms-accountButton [class*=" icon-"],.AuthForms-container .AuthForms-accountButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-container .AuthForms-accountButton [class*=" icon-"]:before,.AuthForms-container .AuthForms-accountButton [class^=icon-]:before{line-height:12px}.AuthForms-container .AuthForms-accountButton:focus,.AuthForms-container .AuthForms-accountButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.AuthForms-container .AuthForms-accountButton[class*=touchButton]:hover{background-color:#fff;border-color:#002f6c;color:#005594}@media (hover:hover){.AuthForms-container .AuthForms-accountButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.AuthForms-container .AuthForms-accountButton{padding:0 30px;width:auto}}.AuthForms-container .AuthForms-ctaButton{color:#005594;font-weight:500}.AuthForms-container .AuthForms-ctaButton:hover{color:#002f6c}.AuthForms-container.AuthForms-forgotPassword{margin:20px 0 28px;padding:0 21px}@media (min-width:760px){.AuthForms-container.AuthForms-forgotPassword{padding:0 60px}}@media (max-width:1019px){.AuthForms-container.AuthForms-forgotPassword{margin-top:75px}}@media (max-width:759px){.AuthForms-container.AuthForms-forgotPassword{margin:16px auto}}.AuthForms-container.AuthForms-forgotPassword .AuthForms-formInputContainer{margin:15px 0 26px}.AuthForms-container.AuthForms-forgotPassword .AuthForms-ctaButton{font-size:16px;font-weight:600}.AuthForms-container.AuthForms-forgotPassword .AuthForms-toggleCta{color:#424242;font-size:16px;font-weight:500;margin-top:14px;text-align:center}@media (max-width:1019px){.AuthForms-container.AuthForms-forgotPassword .AuthForms-toggleCta{margin-top:20px}}.AuthForms-container.AuthForms-forgotPassword .AuthForms-headerTitle{color:#171717;font-size:20px;font-weight:700;text-align:center;width:100%}.AuthForms-container .AuthForms-forgotPwdButton{color:#005594;display:block;font-size:14px;font-weight:500;margin:20px auto 0}.AuthForms-container .AuthForms-forgotPwdButton:hover{color:#002f6c}.AuthForms-container .AuthForms-forgotPwdButton.AuthForms-signInForgotPwdButton{font-weight:600;line-height:16px}.AuthForms-container .AuthForms-createAccount{color:#424242;font-size:12px;font-weight:600;line-height:16px;text-align:center}.AuthForms-container .AuthForms-createAccount button{color:#005594;font-size:12px;font-weight:600}.AuthForms-container .AuthForms-submitButton{border:unset;border-radius:3px;cursor:pointer;font-size:14px;height:50px!important;margin-bottom:unset;max-width:unset!important;width:100%!important}.AuthForms-container .AuthForms-submitButton:last-child{margin-bottom:7px}.AuthForms-container .AuthForms-submitButton.AuthForms-resetPasswordButton:last-child{margin-bottom:7px;margin-top:0}.AuthForms-container .AuthForms-submitButton.AuthForms-disableButton,.AuthForms-container .AuthForms-submitButton.AuthForms-disableButton:hover{background-color:#d9d9d9;border:#d9d9d9}@media (min-width:760px){.AuthForms-container .AuthForms-submitButton{width:191px!important}}.AuthForms-container.AuthForms-forgotPasswordConfirmation{margin-bottom:48px}.AuthForms-container.AuthForms-forgotPasswordConfirmation .AuthForms-instructions{font-size:14px;font-weight:600;margin:36px auto;max-width:100%;text-align:center;width:100%}.AuthForms-container.AuthForms-forgotPasswordConfirmation .AuthForms-instructions p{display:inline}.AuthForms-container.AuthForms-forgotPasswordConfirmation .AuthForms-instructions p:after{content:" "}@media (min-width:760px){.AuthForms-container.AuthForms-forgotPasswordConfirmation .AuthForms-instructions{max-width:335px}}.AuthForms-formContainer{padding-bottom:26px}@media (min-width:1020px){.AuthForms-formContainer{padding-bottom:20px}}@media (min-width:760px){.AuthForms-formContainer.AuthForms-signInFormContainer{padding-bottom:20px}}.AuthForms-containerRight{margin:0;padding:0;width:500px}@media (max-width:1019px){.AuthForms-containerRight{margin-top:24px;padding:0 20px;width:100%}}@media (max-width:759px){.AuthForms-containerRight{margin-top:10px;padding:0 14px}}.AuthForms-unlockButton{align-items:center;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;box-shadow:-2px 2px 2px #17171740;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-size:22px;font-weight:600;font-weight:700;height:40px;height:50px;justify-content:center;letter-spacing:1px;letter-spacing:.2px;margin-bottom:7px;outline:.5px solid #333;padding:0 30px;text-align:center;text-transform:uppercase;text-transform:none;transition:all .15s linear;width:100%}.AuthForms-unlockButton>span{display:block;line-height:12px}.AuthForms-unlockButton [class*=" icon-"],.AuthForms-unlockButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-unlockButton [class*=" icon-"]:before,.AuthForms-unlockButton [class^=icon-]:before{line-height:12px}.AuthForms-unlockButton:focus,.AuthForms-unlockButton:hover{background-color:#008456;border-color:#008456;color:#fff}.AuthForms-unlockButton[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.AuthForms-unlockButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.AuthForms-unlockButton{padding:0 30px;width:auto;width:100%}}.AuthForms-unlockIcon{margin-right:8px}.AuthForms-plusFlow .AuthForms-submitButton{align-items:center;appearance:none;background-color:#001e5a;border:1px solid #001e5a;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AuthForms-plusFlow .AuthForms-submitButton>span{display:block;line-height:12px}.AuthForms-plusFlow .AuthForms-submitButton [class*=" icon-"],.AuthForms-plusFlow .AuthForms-submitButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-plusFlow .AuthForms-submitButton [class*=" icon-"]:before,.AuthForms-plusFlow .AuthForms-submitButton [class^=icon-]:before{line-height:12px}.AuthForms-plusFlow .AuthForms-submitButton:focus,.AuthForms-plusFlow .AuthForms-submitButton:hover{background-color:#00081a;border-color:#00081a;color:#fff}.AuthForms-plusFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#001e5a;border-color:#001e5a;color:#fff}@media (hover:hover){.AuthForms-plusFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#00081a;border-color:#00081a;color:#fff}}@media (min-width:760px){.AuthForms-plusFlow .AuthForms-submitButton{padding:0 30px;width:auto}}.AuthForms-plusFlow .AuthForms-forgotPwdButton{color:#001e5a}.AuthForms-plusFlow .AuthForms-forgotPwdButton:focus,.AuthForms-plusFlow .AuthForms-forgotPwdButton:hover{color:#005594}.AuthForms-plusFlow .AuthForms-forgotPwdButton.AuthForms-signInForgotPwdButton{color:#001e5a}.AuthForms-plusFlow .AuthForms-forgotPwdButton.AuthForms-signInForgotPwdButton:focus,.AuthForms-plusFlow .AuthForms-forgotPwdButton.AuthForms-signInForgotPwdButton:hover{color:#005594}@media (max-width:759px){.AuthForms-plusFlow .AuthForms-formInputContainer{max-width:100%;width:100%}}.AuthForms-plusFlow .AuthForms-createAccount button{color:#001e5a}.AuthForms-plusFlow .AuthForms-createAccount button:focus,.AuthForms-plusFlow .AuthForms-createAccount button:hover{color:#005594}.AuthForms-plusFlow .AuthForms-ctaButton{color:#001e5a}.AuthForms-plusFlow .AuthForms-ctaButton:focus,.AuthForms-plusFlow .AuthForms-ctaButton:hover{color:#005594}.AuthForms-plusFlow.AuthForms-disableButton,.AuthForms-plusFlow.AuthForms-disableButton:focus,.AuthForms-plusFlow.AuthForms-disableButton:hover{background-color:#d9d9d9;border:#d9d9d9}.AuthForms-plusFlow .AuthForms-loginWaitMsg{color:#001e5a}.AuthForms-proFlow .AuthForms-submitButton{align-items:center;appearance:none;background-color:#008456;border:1px solid #008456;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px!important;justify-content:center;letter-spacing:1px;margin:0 auto;padding:0 20px;padding:0!important;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AuthForms-proFlow .AuthForms-submitButton>span{display:block;line-height:12px}.AuthForms-proFlow .AuthForms-submitButton [class*=" icon-"],.AuthForms-proFlow .AuthForms-submitButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-proFlow .AuthForms-submitButton [class*=" icon-"]:before,.AuthForms-proFlow .AuthForms-submitButton [class^=icon-]:before{line-height:12px}.AuthForms-proFlow .AuthForms-submitButton:focus,.AuthForms-proFlow .AuthForms-submitButton:hover{background-color:#005034;border-color:#005034;color:#fff}.AuthForms-proFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}@media (hover:hover){.AuthForms-proFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#005034;border-color:#005034;color:#fff}}@media (min-width:760px){.AuthForms-proFlow .AuthForms-submitButton{padding:0 30px;width:auto}}.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton{align-items:center;appearance:none;background-color:#008456;border:1px solid #008456;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton>span{display:block;line-height:12px}.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton [class*=" icon-"],.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton [class*=" icon-"]:before,.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton [class^=icon-]:before{line-height:12px}.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton:focus,.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton:hover,.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}@media (hover:hover){.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.AuthForms-proFlow .AuthForms-submitButton.AuthForms-signInSubmitButton{padding:0 30px;width:auto}}.AuthForms-proFlow .AuthForms-submitButton:last-child{margin-bottom:7px}.AuthForms-proFlow .AuthForms-submitButton.AuthForms-disableButton,.AuthForms-proFlow .AuthForms-submitButton.AuthForms-disableButton:hover{background-color:#d9d9d9;border:#d9d9d9}.AuthForms-proFlow .AuthForms-ctaButton{color:#008456}.AuthForms-proFlow .AuthForms-ctaButton:hover{color:#005034}.AuthForms-proFlow .AuthForms-forgotPwdButton{color:#00a857}.AuthForms-proFlow .AuthForms-forgotPwdButton.AuthForms-signInForgotPwdButton,.AuthForms-proFlow .AuthForms-forgotPwdButton:hover{color:#008456}@media (max-width:759px){.AuthForms-proFlow .AuthForms-formInputContainer{max-width:100%;width:100%}}.AuthForms-proFlow .AuthForms-instructions a{color:#00a857}.AuthForms-proFlow .AuthForms-createAccount button,.AuthForms-proFlow .AuthForms-instructions a:hover,.AuthForms-proFlow .AuthForms-loginWaitMsg{color:#008456}.AuthForms-investingClubFlow{display:flex;flex-direction:column}.AuthForms-investingClubFlow .AuthForms-header{margin-bottom:15px}.AuthForms-investingClubFlow .AuthForms-toggleCta{color:#171717;font-size:18px;font-weight:600;margin-bottom:25px;text-align:center}.AuthForms-investingClubFlow .AuthForms-ctaButton{color:#071d39;font-size:18px;font-weight:600}.AuthForms-investingClubFlow .AuthForms-ctaButton:hover{color:#171717}.AuthForms-investingClubFlow .AuthForms-forgotPwdButton{color:#071d39;font-weight:600}.AuthForms-investingClubFlow .AuthForms-forgotPwdButton:hover{color:#002f6c}.AuthForms-investingClubFlow .AuthForms-instructions a{color:#336aa0}.AuthForms-investingClubFlow .AuthForms-instructions a:hover{color:#1896ff}.AuthForms-investingClubFlow.AuthForms-forgotPassword{align-items:center;margin:20px 0 28px;padding:0}.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-header{max-width:100%;width:100%}@media (min-width:760px){.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-header{max-width:335px}}.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-headerTitle{color:#171717;font-size:20px;font-weight:700;text-align:center;width:100%}.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-toggleCta{font-size:16px;font-weight:700;margin-bottom:7px;text-align:center;width:100%}.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-ctaButton{font-size:16px;font-weight:700}.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-instructions{font-size:14px;margin:0 0 28px;max-width:100%;text-align:center;width:100%}@media (min-width:760px){.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-instructions{max-width:335px}}.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-formInputContainer{max-width:100%;width:100%}@media (min-width:760px){.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-formInputContainer{max-width:335px}}.AuthForms-investingClubFlow .AuthForms-submitButton{align-items:center;appearance:none;background-color:#071d39;border:unset;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px!important;justify-content:center;letter-spacing:1px;margin-bottom:unset;margin-left:auto;margin-right:auto;margin-top:0;max-width:unset!important;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:100%!important}.AuthForms-investingClubFlow .AuthForms-submitButton>span{display:block;line-height:12px}.AuthForms-investingClubFlow .AuthForms-submitButton [class*=" icon-"],.AuthForms-investingClubFlow .AuthForms-submitButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-investingClubFlow .AuthForms-submitButton [class*=" icon-"]:before,.AuthForms-investingClubFlow .AuthForms-submitButton [class^=icon-]:before{line-height:12px}.AuthForms-investingClubFlow .AuthForms-submitButton:focus,.AuthForms-investingClubFlow .AuthForms-submitButton:hover{background-color:#171717;border-color:#171717;color:#fff}.AuthForms-investingClubFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#071d39;border-color:#071d39;color:#fff}@media (hover:hover){.AuthForms-investingClubFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#171717;border-color:#171717;color:#fff}}@media (min-width:760px){.AuthForms-investingClubFlow .AuthForms-submitButton{padding:0 30px;width:auto}}.AuthForms-investingClubFlow .AuthForms-submitButton:last-child{margin-bottom:7px}.AuthForms-investingClubFlow .AuthForms-submitButton.AuthForms-disableButton,.AuthForms-investingClubFlow .AuthForms-submitButton.AuthForms-disableButton:hover{background-color:#d9d9d9;border:#d9d9d9}@media (min-width:760px){.AuthForms-investingClubFlow .AuthForms-submitButton{width:168px!important}}.AuthForms-investingClubFlow.AuthForms-forgotPasswordConfirmation{margin-bottom:48px}.AuthForms-investingClubFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions{font-size:14px;font-weight:600;margin:36px auto;max-width:100%;text-align:center;width:100%}.AuthForms-investingClubFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions p{display:inline}.AuthForms-investingClubFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions p:after{content:" "}@media (min-width:760px){.AuthForms-investingClubFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions{max-width:335px}}.AuthForms-investingClubFlow .AuthForms-createAccount button{color:#071d39}.AuthForms-investingClubFlow.AuthForms-signInSubmitButton{padding:0!important}.AuthForms-allAccessFlow .AuthForms-header{margin-bottom:15px}.AuthForms-allAccessFlow .AuthForms-submitButton{background-color:red;border:1px solid red;margin:0 auto;padding:0 55px!important}.AuthForms-allAccessFlow .AuthForms-submitButton:focus,.AuthForms-allAccessFlow .AuthForms-submitButton:hover{background-color:#f30;border-color:#f30}.AuthForms-allAccessFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:red;border-color:red}@media (hover:hover){.AuthForms-allAccessFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#f30;border-color:#f30;color:#fff}}.AuthForms-allAccessFlow .AuthForms-toggleCta{color:#171717;font-size:18px;margin-bottom:25px}.AuthForms-allAccessFlow .AuthForms-ctaButton{font-size:18px;font-weight:600}.AuthForms-allAccessFlow .AuthForms-ctaButton:hover{color:#002f6c}.AuthForms-allAccessFlow .AuthForms-forgotPwdButton{font-weight:600}.AuthForms-allAccessFlow .AuthForms-forgotPwdButton:hover{color:#002f6c}.AuthForms-allAccessFlow .AuthForms-instructions a{color:#0053cf}.AuthForms-allAccessFlow .AuthForms-instructions a:hover{color:#002f6c}.AuthForms-allAccessFlow.AuthForms-forgotPassword{align-items:center;margin:20px 0 28px;padding:0}.AuthForms-allAccessFlow.AuthForms-forgotPassword .AuthForms-header{max-width:100%;width:100%}@media (min-width:760px){.AuthForms-allAccessFlow.AuthForms-forgotPassword .AuthForms-header{max-width:335px}}.AuthForms-allAccessFlow.AuthForms-forgotPassword .AuthForms-headerTitle{color:#171717;font-size:20px;font-weight:700;margin-bottom:unset;text-align:center;width:100%}.AuthForms-allAccessFlow.AuthForms-forgotPassword .AuthForms-toggleCta{font-size:16px;font-weight:600;margin-bottom:15px;order:1;text-align:center;width:100%}.AuthForms-allAccessFlow.AuthForms-forgotPassword .AuthForms-ctaButton{font-size:16px;font-weight:600}.AuthForms-allAccessFlow.AuthForms-forgotPassword .AuthForms-instructions{font-size:14px;margin:0 0 28px;max-width:100%;text-align:center;width:100%}@media (min-width:760px){.AuthForms-allAccessFlow.AuthForms-forgotPassword .AuthForms-instructions{max-width:335px}}.AuthForms-allAccessFlow.AuthForms-forgotPassword .AuthForms-formInputContainer{max-width:100%;width:100%}@media (min-width:760px){.AuthForms-allAccessFlow.AuthForms-forgotPassword .AuthForms-formInputContainer{max-width:335px}}.AuthForms-allAccessFlow.AuthForms-forgotPasswordConfirmation{margin-bottom:48px}.AuthForms-allAccessFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions{font-size:14px;font-weight:600;margin:36px auto;max-width:100%;text-align:center;width:100%}.AuthForms-allAccessFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions p{display:inline}.AuthForms-allAccessFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions p:after{content:" "}@media (min-width:760px){.AuthForms-allAccessFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions{max-width:335px}}.AuthForms-allAccessFlow .AuthForms-createAccount button{color:#0053cf}.AuthForms-resetPasswordAccountInfo{color:#424242;font-size:14px;font-weight:700;margin-bottom:20px;margin-top:20px;text-align:left}.AuthForms-resetPasswordAccountInfo span{color:#747474}.AuthForms-miscellaneousError{word-wrap:break-word;border-radius:3px;color:#f44336;font-size:14px;margin:10px 0;padding:10px;text-align:center}.AuthForms-newtocnbc{color:#171717;font-size:12px;font-weight:600;line-height:16px}.AuthForms-allAccessFlow{display:flex;flex-direction:column}.AuthForms-allAccessFlow .AuthForms-formContainer{padding-bottom:0}.AuthForms-allAccessFlow .AuthForms-toggleCta{font-family:Proxima Nova,Arial,Helvetica,sans-serif;font-size:14px;font-weight:600;letter-spacing:0;line-height:15px;margin-bottom:24px;margin-top:56px;text-align:center}@media (min-width:760px){.AuthForms-allAccessFlow .AuthForms-toggleCta{margin-bottom:20px;margin-top:28px}}.AuthForms-allAccessFlow .AuthForms-ctaButton{color:#0053cf;font-size:14px;font-weight:700;letter-spacing:0;line-height:15px}.AuthForms-allAccessFlow .AuthForms-forgotPwdButton{color:#0053cf;margin-bottom:24px}@media (min-width:760px){.AuthForms-allAccessFlow .AuthForms-forgotPwdButton{margin-bottom:20px}}.AuthForms-allAccessFlow .AuthForms-submitButton{align-items:center;appearance:none;background-color:#0053cf;border:unset;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px!important;justify-content:center;letter-spacing:1px;margin-bottom:24px;max-width:unset!important;padding:0 20px;padding:0!important;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:100%!important}.AuthForms-allAccessFlow .AuthForms-submitButton>span{display:block;line-height:12px}.AuthForms-allAccessFlow .AuthForms-submitButton [class*=" icon-"],.AuthForms-allAccessFlow .AuthForms-submitButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-allAccessFlow .AuthForms-submitButton [class*=" icon-"]:before,.AuthForms-allAccessFlow .AuthForms-submitButton [class^=icon-]:before{line-height:12px}.AuthForms-allAccessFlow .AuthForms-submitButton:focus,.AuthForms-allAccessFlow .AuthForms-submitButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.AuthForms-allAccessFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#0053cf;border-color:#002f6c;color:#fff}@media (hover:hover){.AuthForms-allAccessFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.AuthForms-allAccessFlow .AuthForms-submitButton{padding:0 30px;width:auto}}.AuthForms-allAccessFlow .AuthForms-submitButton:last-child{margin-bottom:7px}.AuthForms-allAccessFlow .AuthForms-submitButton.AuthForms-disableButton,.AuthForms-allAccessFlow .AuthForms-submitButton.AuthForms-disableButton:hover{background-color:#d9d9d9;border:#d9d9d9}@media (min-width:760px){.AuthForms-allAccessFlow .AuthForms-submitButton{width:168px!important}}.AuthForms-alreadyHaveAccountContainer{display:flex;margin:0 auto;white-space:pre-wrap;width:max-content}.AuthForms-alreadyHaveAccountContainer button{color:#005594;font-weight:600;line-height:16px}.AuthForms-signUpHeaderTitle{color:#424242;font-size:16px;font-weight:600;line-height:16px}.AuthForms-retryButton{color:inherit;font-weight:700;margin:0 5px;text-decoration:underline}@media (max-width:759px){.AuthForms-containerNewLogo{padding:0}}.Checkboxes-checkboxContainer.Checkboxes-checkboxes{padding:0}.Checkboxes-errorText{color:#ce2b2b;font-size:11px;height:12px;margin:0 auto 5px;overflow:visible;text-align:left}.Checkboxes-checkboxLabel{cursor:pointer;display:block;overflow:hidden;padding-left:16px;position:relative;-webkit-user-select:none;user-select:none}.Checkboxes-checkboxLabel input{cursor:pointer;height:0;opacity:0;position:absolute;right:0;width:0}.Checkboxes-checkmark{border:1px solid #424242;border-radius:3px;height:13px;left:0;position:absolute;top:3px;width:13px}.Checkboxes-checkmark:focus,.Checkboxes-checkmark:hover{border:1px solid #171717}.Checkboxes-checkmark.Checkboxes-checkmarkError{border:1px solid #ce2b2b}.Checkboxes-checkboxLabel input:checked~.Checkboxes-checkmark{background-color:#171717}.Checkboxes-checkmark:after{content:"";display:none;position:absolute}.Checkboxes-checkboxLabel input:checked~.Checkboxes-checkmark:after{display:block}.Checkboxes-checkboxLabel .Checkboxes-checkmark:after{border:solid #fff;border-width:0 2px 2px 0;height:6px;left:3px;top:0;transform:rotate(45deg);width:3px}.Checkboxes-checkboxDP{margin-bottom:0!important;padding-bottom:10px}.Checkboxes-checkboxLabelText,.Checkboxes-checkboxLabelTextBold,.Checkboxes-checkboxLabelTextBoldPlus,.Checkboxes-checkboxLabelTextBoldPro{color:#424242;flex:1;font-size:11px;margin:0 0 24px 6px}.Checkboxes-checkboxLabelText.Checkboxes-staySignedIn,.Checkboxes-staySignedIn.Checkboxes-checkboxLabelTextBold,.Checkboxes-staySignedIn.Checkboxes-checkboxLabelTextBoldPlus,.Checkboxes-staySignedIn.Checkboxes-checkboxLabelTextBoldPro{font-size:14px;margin-top:2px}@media (max-width:759px){.Checkboxes-checkboxLabelText,.Checkboxes-checkboxLabelTextBold,.Checkboxes-checkboxLabelTextBoldPlus,.Checkboxes-checkboxLabelTextBoldPro{margin:0 0 20px 6px}}.Checkboxes-checkboxLabelText a,.Checkboxes-checkboxLabelTextBold a,.Checkboxes-checkboxLabelTextBoldPlus a,.Checkboxes-checkboxLabelTextBoldPro a{color:#171717;text-decoration:none}.Checkboxes-checkboxLabelText a:hover,.Checkboxes-checkboxLabelTextBold a:hover,.Checkboxes-checkboxLabelTextBoldPlus a:hover,.Checkboxes-checkboxLabelTextBoldPro a:hover{color:#171717;text-decoration:underline}.Checkboxes-checkboxLabelText p,.Checkboxes-checkboxLabelTextBold p,.Checkboxes-checkboxLabelTextBoldPlus p,.Checkboxes-checkboxLabelTextBoldPro p{color:#424242;margin-bottom:0}.Checkboxes-checkboxLabelTextBold,.Checkboxes-checkboxLabelTextBoldPlus,.Checkboxes-checkboxLabelTextBoldPro{color:#747474;font-weight:600;line-height:16px;margin:-2px 0 26px 6px;text-align:start;text-transform:uppercase}.Checkboxes-allAccessCheckboxLabelTextBold a{color:#0053cf!important}.Checkboxes-allAccessCheckboxLabelTextBold a:hover{color:#002f6c!important}.Checkboxes-investingClubCheckboxLabelTextBold a,.Checkboxes-investingClubCheckboxLabelTextBold a:hover{color:#071d39!important}.Checkboxes-checkboxLink{color:#005594!important}.Checkboxes-cnbcOnlyCheckboxLabelText{color:#747474;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:11px;font-weight:700;line-height:15px;text-transform:uppercase}.Checkboxes-cnbcOnlyCheckboxLabelText a{color:#005594!important}.Checkboxes-cnbcOnlyCheckboxLabelText p{color:#747474}.Checkboxes-checkboxLabelTextBoldPro a{color:#008456}.Checkboxes-checkboxLabelTextBoldPro a:hover{color:#005034;text-decoration:underline}.Checkboxes-checkboxLabelTextBoldPlus a{color:#001e5a}.Checkboxes-checkboxLabelTextBoldPlus a:hover{color:#001e5a;text-decoration:underline}.AreYouSure-container{color:#171717;font-size:18px;font-weight:700;margin-bottom:40px;padding-top:5px;text-align:center}@media (max-width:759px){.AreYouSure-container{width:100%}}.AreYouSure-header{font-size:18px;font-weight:700;height:20px;margin-bottom:12px;margin-top:15px}.AreYouSure-subText{font-size:14px;font-weight:600;height:16px;margin-bottom:33px}.AreYouSure-buttons{padding:0 32px 7px}@media (min-width:760px){.AreYouSure-buttons{align-items:stretch;display:flex}}@media (max-width:759px){.AreYouSure-buttons{padding:0}}.AreYouSure-primaryButton{margin:0}.AreYouSure-secondaryButton{margin:0 24px 0 0}@media (max-width:759px){.AreYouSure-secondaryButton{margin:0 0 28px}}.AreYouSure-primaryButton,.AreYouSure-secondaryButton{border-radius:3px;flex:1;font-size:16px;height:50px;padding:0;width:185px}@media (max-width:759px){.AreYouSure-primaryButton,.AreYouSure-secondaryButton{width:100%}}.AreYouSure-investingClubFlow .AreYouSure-header{font-weight:600}.AreYouSure-investingClubFlow .AreYouSure-subText{font-weight:500}.AreYouSure-investingClubFlow .AreYouSure-primaryButton{align-items:center;appearance:none;background-color:#071d39;border:1px solid #071d39;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-investingClubFlow .AreYouSure-primaryButton>span{display:block;line-height:12px}.AreYouSure-investingClubFlow .AreYouSure-primaryButton [class*=" icon-"],.AreYouSure-investingClubFlow .AreYouSure-primaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-investingClubFlow .AreYouSure-primaryButton [class*=" icon-"]:before,.AreYouSure-investingClubFlow .AreYouSure-primaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-investingClubFlow .AreYouSure-primaryButton:focus,.AreYouSure-investingClubFlow .AreYouSure-primaryButton:hover{background-color:#171717;border-color:#171717;color:#fff}.AreYouSure-investingClubFlow .AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#071d39;border-color:#071d39;color:#fff}@media (hover:hover){.AreYouSure-investingClubFlow .AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#171717;border-color:#171717;color:#fff}}@media (min-width:760px){.AreYouSure-investingClubFlow .AreYouSure-primaryButton{padding:0 30px;width:auto}}.AreYouSure-investingClubFlow .AreYouSure-secondaryButton{align-items:center;appearance:none;background-color:#fff;border:1px solid #071d39;color:#071d39;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-investingClubFlow .AreYouSure-secondaryButton>span{display:block;line-height:12px}.AreYouSure-investingClubFlow .AreYouSure-secondaryButton [class*=" icon-"],.AreYouSure-investingClubFlow .AreYouSure-secondaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-investingClubFlow .AreYouSure-secondaryButton [class*=" icon-"]:before,.AreYouSure-investingClubFlow .AreYouSure-secondaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-investingClubFlow .AreYouSure-secondaryButton:focus,.AreYouSure-investingClubFlow .AreYouSure-secondaryButton:hover{background-color:#fff;border-color:#171717;color:#171717}.AreYouSure-investingClubFlow .AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#071d39;color:#071d39}@media (hover:hover){.AreYouSure-investingClubFlow .AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#171717;color:#171717}}@media (min-width:760px){.AreYouSure-investingClubFlow .AreYouSure-secondaryButton{padding:0 30px;width:auto}}.AreYouSure-investingClubFlow .AreYouSure-primaryButton,.AreYouSure-investingClubFlow .AreYouSure-secondaryButton{border-radius:3px;flex:1;font-size:16px;height:50px;line-height:12px;padding:0;width:185px}@media (max-width:759px){.AreYouSure-investingClubFlow .AreYouSure-primaryButton,.AreYouSure-investingClubFlow .AreYouSure-secondaryButton{width:100%}}.AreYouSure-plusFlow .AreYouSure-header{font-weight:600}.AreYouSure-plusFlow .AreYouSure-subText{font-weight:500}.AreYouSure-plusFlow .AreYouSure-secondaryButton{align-items:center;appearance:none;background-color:#fff;border:1px solid #001e5a;color:#001e5a;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-plusFlow .AreYouSure-secondaryButton>span{display:block;line-height:12px}.AreYouSure-plusFlow .AreYouSure-secondaryButton [class*=" icon-"],.AreYouSure-plusFlow .AreYouSure-secondaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-plusFlow .AreYouSure-secondaryButton [class*=" icon-"]:before,.AreYouSure-plusFlow .AreYouSure-secondaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-plusFlow .AreYouSure-secondaryButton:focus,.AreYouSure-plusFlow .AreYouSure-secondaryButton:hover{background-color:#fff;border-color:#00081a;color:#005594}.AreYouSure-plusFlow .AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#001e5a;color:#001e5a}@media (hover:hover){.AreYouSure-plusFlow .AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#00081a;color:#005594}}@media (min-width:760px){.AreYouSure-plusFlow .AreYouSure-secondaryButton{padding:0 30px;width:auto}}.AreYouSure-plusFlow .AreYouSure-primaryButton{align-items:center;appearance:none;background-color:#001e5a;border:1px solid #001e5a;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-plusFlow .AreYouSure-primaryButton>span{display:block;line-height:12px}.AreYouSure-plusFlow .AreYouSure-primaryButton [class*=" icon-"],.AreYouSure-plusFlow .AreYouSure-primaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-plusFlow .AreYouSure-primaryButton [class*=" icon-"]:before,.AreYouSure-plusFlow .AreYouSure-primaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-plusFlow .AreYouSure-primaryButton:focus,.AreYouSure-plusFlow .AreYouSure-primaryButton:hover{background-color:#00081a;border-color:#00081a;color:#fff}.AreYouSure-plusFlow .AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#001e5a;border-color:#001e5a;color:#fff}@media (hover:hover){.AreYouSure-plusFlow .AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#00081a;border-color:#00081a;color:#fff}}@media (min-width:760px){.AreYouSure-plusFlow .AreYouSure-primaryButton{padding:0 30px;width:auto}}.AreYouSure-plusFlow .AreYouSure-primaryButton,.AreYouSure-plusFlow .AreYouSure-secondaryButton{border-radius:3px;flex:1;font-size:16px;height:50px;line-height:12px;padding:0;width:185px}@media (max-width:759px){.AreYouSure-plusFlow .AreYouSure-primaryButton,.AreYouSure-plusFlow .AreYouSure-secondaryButton{width:100%}}.AreYouSure-allAccessFlow .AreYouSure-header{font-weight:600}.AreYouSure-allAccessFlow .AreYouSure-subText{font-weight:500}.AreYouSure-allAccessFlow .AreYouSure-secondaryButton{align-items:center;appearance:none;background-color:#fff;border:1px solid #0053cf;color:#0053cf;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-allAccessFlow .AreYouSure-secondaryButton>span{display:block;line-height:12px}.AreYouSure-allAccessFlow .AreYouSure-secondaryButton [class*=" icon-"],.AreYouSure-allAccessFlow .AreYouSure-secondaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-allAccessFlow .AreYouSure-secondaryButton [class*=" icon-"]:before,.AreYouSure-allAccessFlow .AreYouSure-secondaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-allAccessFlow .AreYouSure-secondaryButton:focus,.AreYouSure-allAccessFlow .AreYouSure-secondaryButton:hover{background-color:#fff;border-color:#002f6c;color:#002f6c}.AreYouSure-allAccessFlow .AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#0053cf;color:#0053cf}@media (hover:hover){.AreYouSure-allAccessFlow .AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#002f6c;color:#002f6c}}@media (min-width:760px){.AreYouSure-allAccessFlow .AreYouSure-secondaryButton{padding:0 30px;width:auto}}.AreYouSure-allAccessFlow .AreYouSure-primaryButton{align-items:center;appearance:none;background-color:#0053cf;border:1px solid #0053cf;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-allAccessFlow .AreYouSure-primaryButton>span{display:block;line-height:12px}.AreYouSure-allAccessFlow .AreYouSure-primaryButton [class*=" icon-"],.AreYouSure-allAccessFlow .AreYouSure-primaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-allAccessFlow .AreYouSure-primaryButton [class*=" icon-"]:before,.AreYouSure-allAccessFlow .AreYouSure-primaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-allAccessFlow .AreYouSure-primaryButton:focus,.AreYouSure-allAccessFlow .AreYouSure-primaryButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.AreYouSure-allAccessFlow .AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#0053cf;border-color:#0053cf;color:#fff}@media (hover:hover){.AreYouSure-allAccessFlow .AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.AreYouSure-allAccessFlow .AreYouSure-primaryButton{padding:0 30px;width:auto}}.AreYouSure-allAccessFlow .AreYouSure-primaryButton,.AreYouSure-allAccessFlow .AreYouSure-secondaryButton{border-radius:3px;flex:1;font-size:16px;height:50px;line-height:12px;padding:0;width:185px}@media (max-width:759px){.AreYouSure-allAccessFlow .AreYouSure-primaryButton,.AreYouSure-allAccessFlow .AreYouSure-secondaryButton{width:100%}}.AreYouSure-proFlow .AreYouSure-primaryButton{align-items:center;appearance:none;background-color:#008456;border:1px solid #008456;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-proFlow .AreYouSure-primaryButton>span{display:block;line-height:12px}.AreYouSure-proFlow .AreYouSure-primaryButton [class*=" icon-"],.AreYouSure-proFlow .AreYouSure-primaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-proFlow .AreYouSure-primaryButton [class*=" icon-"]:before,.AreYouSure-proFlow .AreYouSure-primaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-proFlow .AreYouSure-primaryButton:focus,.AreYouSure-proFlow .AreYouSure-primaryButton:hover{background-color:#005034;border-color:#005034;color:#fff}.AreYouSure-proFlow .AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}@media (hover:hover){.AreYouSure-proFlow .AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#005034;border-color:#005034;color:#fff}}@media (min-width:760px){.AreYouSure-proFlow .AreYouSure-primaryButton{padding:0 30px;width:auto}}.AreYouSure-proFlow .AreYouSure-secondaryButton{align-items:center;appearance:none;background-color:#fff;border:1px solid #008456;color:#008456;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-proFlow .AreYouSure-secondaryButton>span{display:block;line-height:12px}.AreYouSure-proFlow .AreYouSure-secondaryButton [class*=" icon-"],.AreYouSure-proFlow .AreYouSure-secondaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-proFlow .AreYouSure-secondaryButton [class*=" icon-"]:before,.AreYouSure-proFlow .AreYouSure-secondaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-proFlow .AreYouSure-secondaryButton:focus,.AreYouSure-proFlow .AreYouSure-secondaryButton:hover{background-color:#fff;border-color:#005034;color:#005034}.AreYouSure-proFlow .AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#008456;color:#008456}@media (hover:hover){.AreYouSure-proFlow .AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#005034;color:#005034}}@media (min-width:760px){.AreYouSure-proFlow .AreYouSure-secondaryButton{padding:0 30px;width:auto}}.AreYouSure-proFlow .AreYouSure-primaryButton,.AreYouSure-proFlow .AreYouSure-secondaryButton{border-radius:3px;flex:1;font-size:16px;height:50px;line-height:12px;padding:0;width:185px}@media (max-width:759px){.AreYouSure-proFlow .AreYouSure-primaryButton,.AreYouSure-proFlow .AreYouSure-secondaryButton{width:100%}}.LogoHeader-header{margin-bottom:40px;margin-top:15px;text-align:center}.LogoHeader-defaultLogo,.LogoHeader-logo{display:inline}.LogoHeader-defaultLogo{height:19px}.LogoHeader-investingClubHeader{display:flex;justify-content:center;margin-bottom:40px;margin-top:11px}.LogoHeader-investingClubHeader .LogoHeader-defaultLogo,.LogoHeader-investingClubHeader .LogoHeader-logo{fill:#071d39;stroke:#071d39;max-width:255px}.NewLogoHeader-logoContainerFree{margin-bottom:0;margin-top:40px;text-align:center}@media (max-width:759px){.NewLogoHeader-logoContainerFree{margin-bottom:40px}}.NewLogoHeader-plusContainer{margin-bottom:20px}.NewLogoHeader-logo,.NewLogoHeader-logoFreeStyles{display:inline}.NewLogoHeader-logoFreeStyles{height:23px}@media (max-width:759px){.NewLogoHeader-logoFreeStyles{height:25px}}.NewLogoHeader-logoContainerSubscription{align-items:center;display:flex;height:100px;justify-content:space-between;width:100%}.NewLogoHeader-logoContainerSubscription .NewLogoHeader-rectangle{flex:1;height:54px}@media (max-width:1019px){.NewLogoHeader-logoContainerSubscription .NewLogoHeader-rectangle{height:45px}}.NewLogoHeader-logoContainerSubscription .NewLogoHeader-allAccess{background-color:#001e5a}.NewLogoHeader-logoContainerSubscription .NewLogoHeader-pro{background-color:#047e2e}.NewLogoHeader-logoContainerSubscription .NewLogoHeader-investingClub{background-color:#0053cf}.NewLogoHeader-logoContainerSubscription .NewLogoHeader-rectangle:first-of-type{margin-left:-21px;margin-right:3px}.NewLogoHeader-logoContainerSubscription .NewLogoHeader-rectangle:last-of-type{margin-left:-1px;margin-right:-21px}@media (max-width:1019px){.NewLogoHeader-logoContainerSubscription .NewLogoHeader-noBackgroundColor{background-color:initial!important}}.NewLogoHeader-logoContainerSubscription .NewLogoHeader-brandLogo img{height:54px}@media (max-width:1019px){.NewLogoHeader-logoContainerSubscription .NewLogoHeader-brandLogo img{height:45px}}.NewLogoHeader-plusAndICContainer{display:flex;gap:28px;justify-content:center}.NewLogoHeader-logoPill{height:35px;width:110px}.SignedIn-container{color:#171717;font-size:18px;font-weight:700;text-align:center;width:400px}@media (max-width:759px){.SignedIn-container{width:100%}}.SignedIn-container .SignedIn-messageConfirmation{font-size:18px;font-weight:600;line-height:18px;text-align:center}.SignedIn-okayButton{align-items:center;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:0 auto 15px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:200px}.SignedIn-okayButton>span{display:block;line-height:12px}.SignedIn-okayButton [class*=" icon-"],.SignedIn-okayButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.SignedIn-okayButton [class*=" icon-"]:before,.SignedIn-okayButton [class^=icon-]:before{line-height:12px}.SignedIn-okayButton:focus,.SignedIn-okayButton:hover{background-color:#008456;border-color:#008456;color:#fff}.SignedIn-okayButton[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.SignedIn-okayButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.SignedIn-okayButton{padding:0 30px;width:auto}}.SignedIn-logosContainer{display:flex;justify-content:center;margin-bottom:16px}.SignedIn-logosContainer :last-child,.SignedIn-logosContainer>:first-child{align-self:baseline;height:20px;text-align:center;top:10px;width:100px}.SignedIn-logosContainer>:nth-child(2){height:40px;width:100px}.SignedIn-proPill{height:22px}.SignedIn-checkmarkContainer{align-items:center;height:40px;margin-bottom:30px;margin-top:30px}.SignedIn-checkmarkContainer .SignedIn-checkMark,.SignedIn-checkmarkContainer .SignedIn-checkMarkAllAccess,.SignedIn-checkmarkContainer .SignedIn-checkmarkCNBC,.SignedIn-checkmarkContainer .SignedIn-checkmarkDefault,.SignedIn-checkmarkContainer .SignedIn-checkmarkInvestingClub,.SignedIn-checkmarkContainer .SignedIn-checkmarkPlus,.SignedIn-checkmarkContainer .SignedIn-checkmarkPro{height:40px;margin:0 30px;width:40px}.SignedIn-checkmarkCNBC circle{fill:#005594;opacity:.25}.SignedIn-checkmarkCNBC path{fill:#005594}.SignedIn-checkmarkPro circle{fill:#00a857;opacity:1}.SignedIn-checkmarkPro path{fill:#fff}.SignedIn-checkmarkDefault circle{fill:#005594;opacity:1}.SignedIn-checkmarkDefault path{fill:#fff}.SignedIn-checkMarkAllAccess circle{fill:#0053cf;opacity:1}.SignedIn-checkMarkAllAccess path{fill:#fff}.SignedIn-checkmarkInvestingClub circle{fill:#0496ff;opacity:1}.SignedIn-checkmarkInvestingClub path{fill:#fff}.SignedIn-checkmarkPlus circle{fill:#001e5a;opacity:1}.SignedIn-checkmarkPlus path{fill:#fff}.Confirmation-copy{color:#171717;margin-bottom:24px}.Confirmation-copy p.Confirmation-header{font-size:18px;font-weight:700;line-height:22px;margin:0 auto 30px}.Confirmation-copy p{font-size:14px;font-weight:600;line-height:16px}.Confirmation-email{color:#747474}.Confirmation-checkMark,.Confirmation-checkmarkAllAccess,.Confirmation-checkmarkDefault,.Confirmation-checkmarkInvestingClub,.Confirmation-checkmarkPlus,.Confirmation-checkmarkPro{height:40px;margin:auto auto 30px;width:40px}.Confirmation-checkmarkDefault circle{fill:#005594;opacity:1}.Confirmation-checkmarkDefault path{fill:#fff}.Confirmation-checkmarkPro circle{fill:#00a857;opacity:1}.Confirmation-checkmarkPro path{fill:#fff}.Confirmation-checkmarkAllAccess circle{fill:#0053cf;opacity:1}.Confirmation-checkmarkAllAccess path{fill:#fff}.Confirmation-confirmation{color:#424242;font-size:14px;font-weight:600;margin-bottom:24px;margin-top:0;text-align:center}.Confirmation-checkmarkInvestingClub circle{fill:#0496ff;opacity:1}.Confirmation-checkmarkInvestingClub path{fill:#fff}.Confirmation-checkmarkPlus circle{fill:#001e5a;opacity:1}.Confirmation-checkmarkPlus path{fill:#fff}.Confirmation-plusFlow .Confirmation-submitButton{background-color:#001e5a}.Confirmation-confirmationCode{color:#747474;font-weight:600}.Confirmation-confirmationText{margin-bottom:30px;margin-top:0}.Confirmation-investingClubFlow .Confirmation-submitButton{background-color:#071d39}.Confirmation-proFlow .Confirmation-submitButton{background-color:#00a857}.Confirmation-allAccessFlow p.Confirmation-header{font-weight:500;width:320px}.Confirmation-allAccessFlow .Confirmation-submitButton{background-color:#0053cf}.Confirmation-confirmationContainer{margin:auto;max-width:458px;min-height:400px;padding:0;text-align:center}@media (min-width:760px){.Confirmation-confirmationContainer{padding:0 40px}}.Confirmation-confirmationContainer .Confirmation-email{color:#747474;font-size:14px;font-weight:600;line-height:16px;margin:30px auto 20px;overflow:hidden;text-overflow:ellipsis}.Confirmation-confirmationContainer .Confirmation-text{color:#171717;font-size:18px;font-weight:600;line-height:18px;margin:0 auto}.Confirmation-confirmationContainer .Confirmation-text.Confirmation-slightlyBold{font-size:14px;width:370px}.Confirmation-confirmationContainer .Confirmation-buttonContainer{margin:30px 0}.Confirmation-confirmationContainer .Confirmation-watchlistButton{align-items:center;appearance:none;background-color:#fff;background:#005594;border:1px solid #005594;border-radius:3px;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:52px;justify-content:center;letter-spacing:1px;margin:auto;max-width:260px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.Confirmation-confirmationContainer .Confirmation-watchlistButton>span{display:block;line-height:12px}.Confirmation-confirmationContainer .Confirmation-watchlistButton [class*=" icon-"],.Confirmation-confirmationContainer .Confirmation-watchlistButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.Confirmation-confirmationContainer .Confirmation-watchlistButton [class*=" icon-"]:before,.Confirmation-confirmationContainer .Confirmation-watchlistButton [class^=icon-]:before{line-height:12px}.Confirmation-confirmationContainer .Confirmation-watchlistButton:focus,.Confirmation-confirmationContainer .Confirmation-watchlistButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.Confirmation-confirmationContainer .Confirmation-watchlistButton[class*=touchButton]:hover{background-color:#fff;border-color:#005594;color:#fff}@media (hover:hover){.Confirmation-confirmationContainer .Confirmation-watchlistButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.Confirmation-confirmationContainer .Confirmation-watchlistButton{padding:0 30px;width:auto}}.Confirmation-confirmationContainer .Confirmation-doneButton{color:#005594;font-size:14px;font-weight:600;letter-spacing:1.091px;line-height:16px;text-transform:uppercase}.Confirmation-confirmationContainer .Confirmation-doneButton:hover{color:#fcb700}.ErrorModal-confirmation{align-items:center;color:#424242;font-size:14px;font-weight:600;margin:20px 0 30px;padding:0;text-align:center}.ErrorModal-upperBlock{color:#171717}.ErrorModal-upperBlock .ErrorModal-header{font-size:18px;font-weight:600;line-height:16px;margin:30px 0}.ErrorModal-upperBlock .ErrorModal-paymentAlert{font-size:14px;font-weight:600;line-height:16px;margin-left:auto;margin-right:auto;max-width:80%}.ErrorModal-upperBlock .ErrorModal-email{color:#747474;font-size:14px;font-weight:500;margin-bottom:0}.ErrorModal-lowerBlock .ErrorModal-confirmationText{color:#424242;font-size:14px;font-weight:700;line-height:16px;margin-top:20px}.ErrorModal-lowerBlock .ErrorModal-confirmationText .ErrorModal-confirmationCode{color:#747474;font-weight:500}.ErrorModal-lowerBlock .ErrorModal-helpDesk{color:#171717;font-weight:600;margin:20px 0 30px}.ErrorModal-lowerBlock .ErrorModal-helpDesk a{color:#005594}.ErrorModal-lowerBlock .ErrorModal-helpDesk a:hover{color:#fcb813}.ErrorModal-checkMark{height:40px;margin:15px 0 10px;width:40px}.ErrorModal-checkMark circle{opacity:1!important}.ErrorModal-checkMark path{fill:#fff!important}.NotAvailableModal-contentWrapper{padding:40px;text-align:center}.NotAvailableModal-contentWrapper img{margin:auto}.tp-backdrop{background:#000000b3!important;transition:none!important}.tp-modal .tp-close{background:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 1.611 14.389 0 8 6.389 1.611 0 0 1.611 6.389 8 0 14.389 1.611 16 8 9.611 14.389 16 16 14.389 9.611 8 16 1.611Z' fill='%23747474'/%3E%3C/svg%3E") 50% no-repeat!important;border-radius:0!important;height:16px!important;right:12px!important;top:12px!important;transform:none!important;width:16px!important}.tp-modal .tp-close,.tp-modal .tp-close:focus,.tp-modal .tp-close:hover{box-shadow:none!important}.tp-iframe-wrapper{background-color:#f8f8f8!important;border-radius:4px;box-shadow:5px 5px 20px #1717171a!important;margin:0 auto!important;overflow:hidden;position:relative!important}@media (min-width:651px){.tp-iframe-wrapper{margin:100px auto!important}}.tp-modal{height:auto!important}.ContactCustomerCare-container{color:#171717;font-size:18px;font-weight:600;margin:30px 0;text-align:center;width:400px}@media (max-width:759px){.ContactCustomerCare-container{width:100%}}.ContactCustomerCare-container a{color:#005594}.ContactCustomerCare-container .ContactCustomerCare-message{margin:0 auto;max-width:300px}.PasswordAssistiveText-assistiveText{background-color:#f8f8f8;border:1px solid #d9d9d9;border-radius:0 0 6px 6px;border-top:0;padding:10px 5px 5px;position:absolute;width:100%;z-index:2}.PasswordAssistiveText-assistiveTextItem{color:#bababa;font-size:12px;font-weight:500;line-height:16px;margin-bottom:5px;text-align:left}.PasswordAssistiveText-assistiveTextItemComplete{color:#171717}.PasswordAssistiveText-checkMark{visibility:hidden}.PasswordAssistiveText-checkMarkDisplay{height:10px;margin-right:5px;visibility:visible}.AuthPasswordInput-assistiveTextContainer{position:relative;width:100%}.AccountHasEmailError-signIn{color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:inherit;font-weight:600;line-height:16px;margin-left:3px}.UserCreateAndSubmit-container{margin:0 auto;text-align:center;width:100%}@media (min-width:760px){.UserCreateAndSubmit-container{width:340px}}.UserCreateAndSubmit-loggedInAccount{color:#747474;font-size:14px;font-weight:700;margin-bottom:20px;margin-top:20px}.UserCreateAndSubmit-loggedInAccountEmail{color:#424242;font-weight:700}.UserCreateAndSubmit-continueButton{align-items:center;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-size:16px;font-weight:600;font-weight:700;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:0 auto 24px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:190px}.UserCreateAndSubmit-continueButton>span{display:block;line-height:12px}.UserCreateAndSubmit-continueButton [class*=" icon-"],.UserCreateAndSubmit-continueButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.UserCreateAndSubmit-continueButton [class*=" icon-"]:before,.UserCreateAndSubmit-continueButton [class^=icon-]:before{line-height:12px}.UserCreateAndSubmit-continueButton:focus,.UserCreateAndSubmit-continueButton:hover{background-color:#008456;border-color:#008456;color:#fff}.UserCreateAndSubmit-continueButton[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.UserCreateAndSubmit-continueButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.UserCreateAndSubmit-continueButton{padding:0 30px;width:auto}}@media (max-width:759px){.UserCreateAndSubmit-continueButton{width:100%}}.UserCreateAndSubmit-cta{color:#424242;font-size:16px;font-weight:500;line-height:16px;margin-bottom:30px;text-align:center}.UserCreateAndSubmit-formInputContainer{margin:0 auto 30px}@media (min-width:760px){.UserCreateAndSubmit-formInputContainer{width:340px}}.UserCreateAndSubmit-formInput{width:100%}input::-ms-clear,input::-ms-reveal{display:none}.UserCreateAndSubmit-infoText{color:#424242;flex:1;font-size:11px;line-height:13px;margin:0 0 12px 12px;text-align:center}.UserCreateAndSubmit-infoText a{color:#171717;font-weight:500;text-decoration:none}.UserCreateAndSubmit-infoText p{margin-bottom:0}.UserCreateAndSubmit-questionAndCta{color:#171717;font-size:12px;font-weight:600!important;line-height:16px;margin-bottom:20px}.UserCreateAndSubmit-questionAndCta button{font-weight:600}.UserCreateAndSubmit-miscellaneousError{word-wrap:break-word;border-radius:3px;color:#f44336;font-size:12px;margin:0 auto 15px;padding:10px;width:340px}.UserCreateAndSubmit-signedInMessage{color:#424242;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-weight:700;line-height:20px;margin-top:20px}@media (min-width:1020px){.UserCreateAndSubmit-investingClubContainer{width:322px}}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton{align-items:center;appearance:none;background-color:#071d39;border:1px solid #071d39;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-size:16px;font-weight:600;font-weight:700;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:0 auto 24px;padding:16px 0;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:190px}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton>span{display:block;line-height:12px}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton [class*=" icon-"],.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton [class*=" icon-"]:before,.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton [class^=icon-]:before{line-height:12px}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton:focus,.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton[class*=touchButton]:hover{background-color:#071d39;border-color:#071d39;color:#fff}@media (hover:hover){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton{padding:0 30px;width:auto}}@media (min-width:1020px){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton{width:auto}}@media (max-width:759px){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton{width:100%}}@media (min-width:1020px){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-formInputContainer{width:322px}}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-formInput{margin:0 auto}@media (min-width:760px) and (max-width:1019px){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-formInput{width:100%}}@media (min-width:1020px){.UserCreateAndSubmit-investingClubContainerLoggedIn .UserCreateAndSubmit-continueButton{transform:none}}.UserCreateAndSubmit-investingClubContainerLoggedIn .UserCreateAndSubmit-questionAndCta{color:#424242;font-size:12px;font-weight:700;margin-bottom:20px}.UserCreateAndSubmit-investingClubContainerLoggedIn .UserCreateAndSubmit-questionAndCta button{font-size:12px}.UserCreateAndSubmit-allAccessFlow .UserCreateAndSubmit-cta{color:#424242;font-size:16px;font-style:normal;font-weight:600;line-height:16px;margin-bottom:30px}@media (min-width:1020px){.UserCreateAndSubmit-allAccessFlow .UserCreateAndSubmit-cta{margin-bottom:37px}}.UserCreateAndSubmit-allAccessFlow .UserCreateAndSubmit-continueButton{background-color:#0053cf;border:none;font-size:14px;font-weight:700;letter-spacing:1px;line-height:16px}.UserCreateAndSubmit-allAccessFlow .UserCreateAndSubmit-continueButton:hover{background-color:#0053cf}.UserCreateAndSubmit-allAccessFlow .UserCreateAndSubmit-allAccessContinueButton:hover{background-color:#002f6c}@media (min-width:1020px){.UserCreateAndSubmit-plusFlow{width:322px}}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton{align-items:center;appearance:none;background-color:#001e5a;border:1px solid #001e5a;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-weight:600;font-weight:500;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:0 auto 24px;padding:16px 0;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:190px}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton>span{display:block;line-height:12px}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton [class*=" icon-"],.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton [class*=" icon-"]:before,.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton [class^=icon-]:before{line-height:12px}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton:focus,.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton:hover{background-color:#00081a;border-color:#00081a;color:#fff}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton[class*=touchButton]:hover{background-color:#001e5a;border-color:#001e5a;color:#fff}@media (hover:hover){.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton[class*=touchButton]:hover{background-color:#00081a;border-color:#00081a;color:#fff}}@media (min-width:760px){.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton{padding:0 30px;width:auto}}@media (min-width:1020px){.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton{width:190px}}@media (max-width:759px){.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-continueButton{width:100%}}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-ctaSignInOut{color:#001e5a}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-ctaSignInOut:focus,.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-ctaSignInOut:hover{color:#005594}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-formInputContainer{margin:0 auto 10px}@media (min-width:1020px){.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-formInputContainer{width:322px}}.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-formInput{margin:0 auto}@media (min-width:760px) and (max-width:1019px){.UserCreateAndSubmit-plusFlow .UserCreateAndSubmit-formInput{width:100%}}.ProgressIndicator-stepsLine{background-color:#d9d9d9;flex:1;height:1px;margin-top:9px;width:100%}.ProgressIndicator-steps{display:flex;margin:0 auto;padding-bottom:40px;position:relative;width:115px}.ProgressIndicator-step{flex:0;position:relative}.ProgressIndicator-stepIcon{box-shadow:5px 5px 20px #1717171a}.ProgressIndicator-stepTitle{color:#747474;font-size:11px;font-weight:500;left:-42px;position:absolute;text-align:center;width:100px}.ProgressIndicator-stepTitleActive,.ProgressIndicator-stepTitleCurrent{color:#424242}.CreateAccount-container{width:min-content}@media (min-width:760px) and (max-width:1019px){.CreateAccount-container{width:558px}}@media (max-width:759px){.CreateAccount-container{width:100%}}.CreateAccount-signUpContainer{display:flex;margin:0 auto;width:min-content}@media (min-width:1020px){.CreateAccount-signUpContainer{padding:0 47px}}@media (max-width:1020px){.CreateAccount-signUpContainer{display:block;padding-top:0;width:auto}}.CreateAccount-createAccountContainerLoggedIn{display:block}.CreateAccount-createAccountContainerLoggedIn .CreateAccount-perksList{width:100%}@media (min-width:760px){.CreateAccount-createAccountContainerLoggedIn .CreateAccount-perksList{margin:30px;width:auto}}.CreateAccount-ctaSecondary{color:#424242;font-size:16px;font-weight:500;margin-bottom:10px;text-align:center}.CreateAccount-signedInMessage{background:#f1f1f1;border:1px solid #d9d9d9;border-radius:5px;color:#424242;font-size:14px;font-weight:600;line-height:20px;margin:10px auto;padding:5px;text-align:center;width:250px}.CreateAccount-perks{font-size:12px;line-height:14px;margin:0 10px 10px}.CreateAccount-perksContainer{height:100%;margin:10px auto;text-align:center;width:-moz-fit-content;width:fit-content}@media (min-width:760px){.CreateAccount-perksContainer{align-items:stretch;margin:20px auto 29px;max-width:465px;min-width:280px}}.CreateAccount-perk{display:flex;margin-bottom:8px}.CreateAccount-perkBullet{margin-top:4px}.CreateAccount-perkText{flex:1;line-height:18px;padding-left:8px;text-align:left}.CreateAccount-perksList{height:100%;margin:10px 0 27px;text-align:center;width:100%}@media (min-width:760px){.CreateAccount-perksList{align-items:stretch;margin:40px 19px 20px auto}}.CreateAccount-perksList .CreateAccount-ctaPrimary{color:#171717;font-size:20px;font-weight:600;line-height:24px;margin-bottom:1em;text-align:left;width:100%}@media (max-width:759px){.CreateAccount-perksList .CreateAccount-ctaPrimary{font-size:18px}}@media (max-width:1019px){.CreateAccount-perksList .CreateAccount-ctaPrimary{text-align:center}}.CreateAccount-perksList .CreateAccount-perk{margin-bottom:25px}.CreateAccount-perksList .CreateAccount-perkText{color:#071d39;font-size:18px;font-weight:500}@media (min-width:360px) and (max-width:759px){.CreateAccount-perksList .CreateAccount-perkText{font-size:16px}}.CreateAccount-continueButton{align-items:center;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-size:16px;font-weight:600;font-weight:700;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:0 auto 24px;padding:16px 0;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:190px}.CreateAccount-continueButton>span{display:block;line-height:12px}.CreateAccount-continueButton [class*=" icon-"],.CreateAccount-continueButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.CreateAccount-continueButton [class*=" icon-"]:before,.CreateAccount-continueButton [class^=icon-]:before{line-height:12px}.CreateAccount-continueButton:focus,.CreateAccount-continueButton:hover{background-color:#008456;border-color:#008456;color:#fff}.CreateAccount-continueButton[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.CreateAccount-continueButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.CreateAccount-continueButton{padding:0 30px;width:auto;width:190px}}@media (max-width:759px){.CreateAccount-continueButton{width:100%}}.SubscribeModal-modalContents{background-color:#fff;background-position:right -360px top 50px;background-repeat:no-repeat;background-size:900px;height:100%;padding:21px}.SubscribeModal-modalContents.SubscribeModal-investingclub{background-image:url(https://static-redesign.cnbcfm.com/dist/a3707990138080672bc2.svg)}.SubscribeModal-modalContents.SubscribeModal-pro{background-image:url(https://static-redesign.cnbcfm.com/dist/58666b98ea866f6cdb1b.svg)}.SubscribeModal-modalContents.SubscribeModal-allAccess{background-image:url(https://static-redesign.cnbcfm.com/dist/a888429ebce514cff229.svg)}.SubscribeModal-modalContents.SubscribeModal-plus{background-image:url(https://static-redesign.cnbcfm.com/dist/44944463efaf14fd092f.svg)}.SubscribeModal-createAccContainer{width:670px}@media (min-width:760px) and (max-width:1019px){.SubscribeModal-createAccContainer{width:558px}}@media (max-width:759px){.SubscribeModal-createAccContainer{width:100%}}.SubscribeModal-createAccContainer .SubscribeModal-ctaPrimary{color:#171717;font-size:20px;font-weight:600;margin-bottom:5px;text-align:center}@media (max-width:759px){.SubscribeModal-createAccContainer .SubscribeModal-ctaPrimary{font-size:18px}}.SignInOrSignUpModal-modalContents{background-image:url(https://static-redesign.cnbcfm.com/dist/44944463efaf14fd092f.svg);background-position:right -360px top 50px;background-repeat:no-repeat;background-size:900px;height:100%;padding:21px}@media (min-width:760px){.SignInOrSignUpModal-modalContents{background-position:right -360px bottom 10px}}.UnlockConfirmation-modalContents{padding:40px 71px 71px}@media (max-width:759px){.UnlockConfirmation-modalContents{padding:40px 51px 51px}}.UnlockConfirmation-logoHeader{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:28px;font-weight:700;line-height:1.05;padding-bottom:24px;text-align:center}@media (max-width:1019px){.UnlockConfirmation-logoHeader{font-size:28px;margin-bottom:12px}}@media (max-width:759px){.UnlockConfirmation-logoHeader{font-size:22px}}.UnlockConfirmation-logoProImg{display:inline-block;margin:0;padding:0;vertical-align:middle;width:204px}@media (max-width:1019px){.UnlockConfirmation-logoProImg{width:194px}}@media (max-width:759px){.UnlockConfirmation-logoProImg{width:164px}}.UnlockConfirmation-modalUnlockContainer{margin-left:auto;margin-right:auto;max-width:500px;padding:10px;text-align:center}@media (max-width:1019px){.UnlockConfirmation-modalUnlockContainer{width:100%}}.UnlockConfirmation-unlockText{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-weight:600;line-height:32px;padding-bottom:25px}@media (max-width:1019px){.UnlockConfirmation-unlockText{font-size:24px;line-height:26px;width:100%}}@media (max-width:759px){.UnlockConfirmation-unlockText{font-size:24px;line-height:22px}}.UnlockConfirmation-proText{color:#00a857}.UnlockConfirmation-unlockButton{align-items:center;background:#00a8573d;border-radius:50%;display:flex;height:40px;justify-content:center;margin-left:calc(50% - 20px);width:40px}.UnlockConfirmation-unlockIcon{height:25px;width:25px}.SignInOrSignUpConfirmationModal-modalContents{padding:21px}.LoggedInModal-modalContents{padding:40px 71px 71px}@media (max-width:759px){.LoggedInModal-modalContents{padding:40px 51px 51px}}.LoggedInModal-breaker{border:none;margin:0 -71px 24px;outline:.5px solid #cfd8e2}.LoggedInModal-logoHeader{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:28px;font-weight:700;line-height:1.05;padding-bottom:24px;text-align:center}@media (max-width:1019px){.LoggedInModal-logoHeader{font-size:28px;margin-bottom:12px}}@media (max-width:759px){.LoggedInModal-logoHeader{font-size:22px}}.LoggedInModal-logoProImg{display:inline-block;margin:0;padding:0;vertical-align:middle;width:204px}@media (max-width:1019px){.LoggedInModal-logoProImg{width:194px}}@media (max-width:759px){.LoggedInModal-logoProImg{width:164px}}.LoggedInModal-modalUnlockContainer{margin-left:auto;margin-right:auto;max-width:500px;padding:10px;text-align:center}@media (max-width:1019px){.LoggedInModal-modalUnlockContainer{width:100%}}.LoggedInModal-unlockText{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-weight:600;line-height:32px;padding-bottom:25px}@media (max-width:1019px){.LoggedInModal-unlockText{font-size:24px;line-height:26px;width:100%}}@media (max-width:759px){.LoggedInModal-unlockText{font-size:24px;line-height:22px}}.LoggedInModal-headerTitle{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:28px;font-weight:700;line-height:1.05;padding-bottom:20px}@media (max-width:1019px){.LoggedInModal-headerTitle{font-size:28px}}@media (max-width:759px){.LoggedInModal-headerTitle{font-size:24px;line-height:25px;padding-bottom:14px}}.LoggedInModal-proText{color:#00a857}.LoggedInModal-unlockButton{align-items:center;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;box-shadow:-2px 2px 2px #17171740;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-size:22px;font-weight:600;height:40px;height:60px;justify-content:center;letter-spacing:1px;margin:0 auto;max-width:300px;outline:.5px solid #333;padding:0 20px;text-align:center;text-transform:uppercase;text-transform:none;transition:all .15s linear;width:100%;width:80%}.LoggedInModal-unlockButton>span{display:block;line-height:12px}.LoggedInModal-unlockButton [class*=" icon-"],.LoggedInModal-unlockButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.LoggedInModal-unlockButton [class*=" icon-"]:before,.LoggedInModal-unlockButton [class^=icon-]:before{line-height:12px}.LoggedInModal-unlockButton:focus,.LoggedInModal-unlockButton:hover{background-color:#008456;border-color:#008456;color:#fff}.LoggedInModal-unlockButton[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.LoggedInModal-unlockButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.LoggedInModal-unlockButton{padding:0 30px;width:auto;width:100%}}.LoggedInModal-unlockIcon{margin-right:8px}.DynamicPaywallSignUpModal-modalContents{max-height:calc(100% - 1px);padding-top:21px}.DynamicPaywallSignUpModal-logoHeader{align-items:center;border-bottom:1px solid #cfd8e2;color:#333;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:48px;font-weight:700;justify-content:center;line-height:1.05;margin-bottom:24px;padding-bottom:20px;text-align:center}@media (max-width:1019px){.DynamicPaywallSignUpModal-logoHeader{font-size:36px;margin-bottom:0}}@media (max-width:759px){.DynamicPaywallSignUpModal-logoHeader{font-size:22px}}.DynamicPaywallSignUpModal-modalSignUpContainer{margin-left:auto;margin-right:auto;max-width:911px;padding:10px}@media (max-width:1019px){.DynamicPaywallSignUpModal-modalSignUpContainer{width:100%}}.DynamicPaywallSignUpModal-signUpContainer{display:flex;flex-direction:row;justify-content:space-between}@media (max-width:1019px){.DynamicPaywallSignUpModal-signUpContainer{display:block}}.DynamicPaywallSignUpModal-signUpContainer>:last-child{margin-top:0}.DynamicPaywallSignUpModal-signUpContainer>:last-child form>:first-child,.DynamicPaywallSignUpModal-signUpContainer>:last-child form>:nth-child(2){margin-bottom:20px}.DynamicPaywallSignUpModal-previewContainer{padding-right:10px;position:relative}@media (max-width:1019px){.DynamicPaywallSignUpModal-previewContainer{padding:0 20px 20px;width:100%}}@media (max-width:759px){.DynamicPaywallSignUpModal-previewContainer{padding:15px}}.DynamicPaywallSignUpModal-signupText{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-weight:600;line-height:32px;padding-bottom:25px}@media (max-width:1019px){.DynamicPaywallSignUpModal-signupText{font-size:19px;line-height:26px;padding-bottom:15px;width:100%}}@media (max-width:759px){.DynamicPaywallSignUpModal-signupText{font-size:16px;line-height:22px}}.DynamicPaywallSignUpModal-signUpPerks{list-style-type:unset;margin-top:7px}.DynamicPaywallSignUpModal-signUpPerks li{font-size:22px;font-weight:500;list-style-position:inside;list-style-type:unset}@media (max-width:759px){.DynamicPaywallSignUpModal-signUpPerks li{font-size:16px}}.DynamicPaywallSignUpModal-headerTitle{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:34px;font-weight:700;line-height:1.05;padding-bottom:20px}@media (max-width:1019px){.DynamicPaywallSignUpModal-headerTitle{font-size:36px;padding-bottom:10px}}@media (max-width:759px){.DynamicPaywallSignUpModal-headerTitle{font-size:24px;line-height:25px;padding-bottom:14px}}.DynamicPaywallSignUpModal-proText{color:#00a857}.DynamicPaywallSignUpModal-ctaText{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:20px;font-weight:600}@media (max-width:1019px){.DynamicPaywallSignUpModal-ctaText{font-size:17px}}@media (max-width:759px){.DynamicPaywallSignUpModal-ctaText{font-size:14px}}.DynamicPaywallSignUpModal-ctaButton{color:#00a857;cursor:pointer;font-size:20px;font-weight:600}@media (max-width:1019px){.DynamicPaywallSignUpModal-ctaButton{font-size:17px}}@media (max-width:759px){.DynamicPaywallSignUpModal-ctaButton{font-size:14px}}.ResetPasswordModal-modalContents{padding:20px}@media (min-width:760px){.ResetPasswordModal-modalContents{width:500px}}.ResetPasswordModal-container{color:#171717;font-weight:700;padding:20px 50px;text-align:center;width:500px}.ResetPasswordModal-boundedContainer{max-width:350px}.ResetPasswordModal-confirmationHeader{font-size:18px;margin-top:10px}.ResetPasswordModal-email{color:#9e9e9e}.ResetPasswordModal-checkmark{height:50px;width:50px}.ResetPasswordModal-okayButton{align-items:center;appearance:none;background-color:#002f6c;border:1px solid #002f6c;border-radius:3px;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:20px auto 15px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:200px}.ResetPasswordModal-okayButton>span{display:block;line-height:12px}.ResetPasswordModal-okayButton [class*=" icon-"],.ResetPasswordModal-okayButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.ResetPasswordModal-okayButton [class*=" icon-"]:before,.ResetPasswordModal-okayButton [class^=icon-]:before{line-height:12px}.ResetPasswordModal-okayButton:focus,.ResetPasswordModal-okayButton:hover,.ResetPasswordModal-okayButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}@media (hover:hover){.ResetPasswordModal-okayButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.ResetPasswordModal-okayButton{padding:0 30px;width:auto}}.ResetPasswordModal-okayButtonPro{align-items:center;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:20px auto 15px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:200px}.ResetPasswordModal-okayButtonPro>span{display:block;line-height:12px}.ResetPasswordModal-okayButtonPro [class*=" icon-"],.ResetPasswordModal-okayButtonPro [class^=icon-]{height:12px;margin-left:5px;position:relative}.ResetPasswordModal-okayButtonPro [class*=" icon-"]:before,.ResetPasswordModal-okayButtonPro [class^=icon-]:before{line-height:12px}.ResetPasswordModal-okayButtonPro:focus,.ResetPasswordModal-okayButtonPro:hover{background-color:#008456;border-color:#008456;color:#fff}.ResetPasswordModal-okayButtonPro[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.ResetPasswordModal-okayButtonPro[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.ResetPasswordModal-okayButtonPro{padding:0 30px;width:auto}.ResetPasswordModal-okayButton{width:200px}}.AddCardForm-addCardFormContainer{display:flex;flex-direction:column}.AddCardForm-hostedPaymentPagesContainer>iframe{border:none;min-height:340px;width:100%}.AddCardForm-backButton{align-self:flex-end;color:#0053cf;font-size:12px;font-weight:600;letter-spacing:.5px;line-height:14.62px}.CardList-cardListHeader{display:flex;flex-direction:row;justify-content:space-between;margin:20px 0}.CardList-headline{font-size:16px;font-weight:500;letter-spacing:.5px;line-height:19.49px;margin:0}.CardList-addCardButton{color:#0053cf;font-size:12px;font-weight:600;letter-spacing:.5px;line-height:14.62px}.CardList-listItem{align-items:center;border-top:1px solid #bababa;display:flex;flex-direction:row;gap:10px;padding:5px 10px}.CardList-cardList{border-bottom:1px solid #bababa}.CardList-selectCol input{cursor:pointer}.CardList-cardCol{font-size:12px;font-weight:600;letter-spacing:.5px;line-height:28px;text-align:left}.CardList-capitalized{text-transform:capitalize}.CardList-expCol{color:#747474;font-size:12px;font-weight:500;letter-spacing:.5px;line-height:14.62px;margin-left:auto}.Card-cardContainer,.SavedCards-savedCardsContainer{display:block}.PayPalButton-loading{align-items:center;cursor:default;display:flex;height:48px;justify-content:center;opacity:.8;pointer-events:none;width:100%}.PayPalButton-loading:after{animation:PayPalButton-spin 1s linear infinite;border:8px solid #b9b9b9;border-radius:50%;border-top-color:#fff;content:"";height:20px;position:absolute;width:20px;z-index:3}@keyframes PayPalButton-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.PayPalList-cardListHeader{display:flex;flex-direction:row;justify-content:space-between;margin:20px 0}.PayPalList-headline{font-size:16px;font-weight:500;letter-spacing:.5px;line-height:19.49px;margin:0}.PayPalList-listItem{align-items:center;border-top:1px solid #bababa;display:flex;flex-direction:row;gap:10px;padding:5px 0}.PayPalList-cardList{border-bottom:1px solid #bababa}.PayPalList-selectCol input{cursor:pointer}.PayPalList-cardCol{font-size:12px;font-weight:600;letter-spacing:.5px;line-height:28px;text-align:left}.SavedAccounts-savedPaypalAccountsContainer{display:block;margin-bottom:15px}.PayPal-payPalContainer{display:block;margin-top:20px}.PayPal-description,.PayPal-newAccountDescription{color:#424242;font-size:12px;font-weight:600;line-height:16px;margin-bottom:15px}.PayPal-newAccountDescription{margin-top:15px}.ApplePay-applePayContainer{display:block}.ApplePay-headline{font-size:16px;font-weight:500;letter-spacing:.5px;line-height:19.49px;margin-bottom:10px}.FormattedPrice-decimal{font-size:12px;position:relative;top:-5px}.PlanSelector-planSelectorContainer{margin-bottom:10px}.PlanSelector-headline{font-size:16px;font-weight:500;line-height:16px;margin:10px 0}.PlanSelector-planOptions{display:flex;flex-wrap:wrap;gap:10px;justify-content:space-between;min-height:100px;padding:0 10px}.PlanSelector-planButton{align-items:center;background-color:#fff;border:1px solid #0053cf;border-radius:25px;border-top:7px solid #0053cf;box-shadow:0 4px 6px 0 #0000001a;cursor:pointer;display:flex;flex:1;flex-direction:row;gap:10px;justify-content:center;max-height:81px;max-width:152px;padding:0;position:relative;text-align:center;transition:background-color .3s,border-color .3s}@media (min-width:760px){.PlanSelector-planButton{max-width:167px}}.PlanSelector-planButton:hover{background-color:#f7f7f7}.PlanSelector-planButton.PlanSelector-selected{border-color:#0053cf}.PlanSelector-planButton .PlanSelector-specialOffer{text-wrap:nowrap;background-color:#fcb700;border-radius:10px;color:#171717;display:block;font-size:12px;font-style:normal;font-weight:700;height:25px;left:50%;letter-spacing:1px;margin-top:-15px;padding:5px 10px;position:absolute;text-align:center;text-transform:uppercase;top:0;transform:translateX(-50%);width:-moz-fit-content;width:fit-content}.PlanSelector-radioButton{accent-color:#0053cf;cursor:pointer;height:20px;width:20px}.PlanSelector-planContent{align-items:flex-start;display:flex;flex-direction:column}.PlanSelector-planName{font-size:15px;font-weight:600;letter-spacing:1.5px;line-height:28px;text-transform:uppercase}.PlanSelector-planPrice{font-size:22px;font-weight:500;letter-spacing:.029px;line-height:28px}.InputField-inputFieldContainer{width:100%}.InputField-inputField{border:1px solid #ddd;border-radius:5px;padding:10px;width:100%}.InputField-inputField:-webkit-autofill,.InputField-inputField:-webkit-autofill:active,.InputField-inputField:-webkit-autofill:focus,.InputField-inputField:-webkit-autofill:hover{background-color:#fff!important;-webkit-box-shadow:inset 0 0 0 30px #fff!important}.InputField-inputError{color:#ce2b2b;font-size:12px;height:20px;min-height:20px;padding-left:5px}.SelectField-selectFieldContainer{position:relative;width:100%}.SelectField-selectField{appearance:none;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3E%3C/svg%3E");background-position:right 4px center;background-repeat:no-repeat;background-size:16px 12px;border:1px solid #ddd;border-radius:5px;overflow:hidden!important;padding:10px;text-overflow:ellipsis;white-space:nowrap;width:100%}.SelectField-selectError{color:#ce2b2b;font-size:12px;min-height:13px}.UserDetails-userDetailsContainer{margin-bottom:10px;max-width:315px}@media (min-width:760px){.UserDetails-userDetailsContainer{max-width:380px}}.UserDetails-headline{font-size:16px;font-weight:500;line-height:16px;margin:10px 0}.UserDetails-userDetailsForm{column-gap:5px;display:grid;grid-template-columns:repeat(8,35px)}@media (min-width:760px){.UserDetails-userDetailsForm{grid-template-columns:repeat(8,43px)}}.UserDetails-row{position:relative}.UserDetails-row:first-child{column-gap:5px;grid-column:1/span 4;grid-row:1}.UserDetails-row:nth-child(2){column-gap:5px;grid-column:5/span 4;grid-row:1}.UserDetails-row:nth-child(3){grid-column:1/span 8;grid-row:2}.UserDetails-row:nth-child(4){grid-column:1/span 5;grid-row:3}.UserDetails-row:nth-child(5){grid-column:6/span 3;grid-row:3}.UserDetails-row:nth-child(6){grid-column:1/span 3;grid-row:4}.UserDetails-row:nth-child(7){grid-column:4/span 5;grid-row:4}@media (min-width:760px){.UserDetails-row:nth-child(3){grid-column:1/span 5;grid-row:2}.UserDetails-row:nth-child(4){grid-column:6/span 3;grid-row:2}.UserDetails-row:nth-child(5){grid-column:1/span 2;grid-row:3}.UserDetails-row:nth-child(6){grid-column:3/span 2;grid-row:3}.UserDetails-row:nth-child(7){grid-column:5/span 4;grid-row:3}}.PaymentMethodLogo-paymentLogo{min-width:78px}.PaymentSelector-paymentSelectorContainer{margin-bottom:10px}.PaymentSelector-headline{font-size:16px;font-weight:500;line-height:16px;margin:10px 0}.PaymentSelector-paymentOptions{display:flex;flex-wrap:nowrap;gap:10px;justify-content:space-evenly}.PaymentSelector-paymentButton{background-color:#fff;border:1px solid #9e9e9e;border-radius:5px;cursor:pointer;flex-grow:1;min-width:30%;padding:10px;transition:background-color .3s,border-color .3s}.PaymentSelector-paymentButton:hover{background-color:#f7f7f7;border-color:#0053cf}.PaymentSelector-paymentButton.PaymentSelector-selected{border-color:#0053cf}.Payments-paymentMethodsContainer{display:block}@media (min-width:760px){.Payments-paymentMethodsContainer{min-height:300px}}.AccountInfo-accountInfoContainer{align-items:center;display:flex;flex-direction:column;gap:10px;justify-content:center}.AccountInfo-email{color:#424242;font-size:14px;font-weight:600;letter-spacing:.5px;line-height:17.05px;text-align:left}.AccountInfo-email .AccountInfo-label{padding-right:5px}.AccountInfo-email .AccountInfo-value{color:#9e9e9e}.AccountInfo-signOut{color:#424242;font-size:12px;font-weight:600;line-height:14.62px;text-align:left}.AccountInfo-signOut .AccountInfo-label{padding-right:5px}.AccountInfo-signOut a.AccountInfo-link{color:#0053cf;font-size:12px;font-weight:500;letter-spacing:1px;line-height:12px;margin:auto 0;text-align:left}.AccountInfo-signOut a.AccountInfo-link:focus,.AccountInfo-signOut a.AccountInfo-link:hover{color:#fcb700}.Description-descriptionContainer{align-self:flex-start;color:#747474;font-size:12px;font-weight:600;line-height:16px;margin-bottom:10px;text-align:left}.Disclaimer-disclaimerContainer{font-size:11px;font-weight:600;line-height:13px;text-align:left;text-transform:uppercase}a.Disclaimer-link{color:#0053cf;margin:auto 0}a.Disclaimer-link:focus,a.Disclaimer-link:hover{color:#fcb700;text-decoration:underline}.OrderPreview-orderPreviewContainer{align-items:center;border-radius:5px;color:#171717;display:flex;flex-direction:column;padding:20px}.OrderPreview-logoContainerDesktop{display:none}@media (min-width:760px){.OrderPreview-logoContainerDesktop{display:block;margin-bottom:20px;padding-top:20px}}.OrderPreview-headline{align-self:flex-start;font-size:18px;font-weight:600;line-height:16px;margin-bottom:10px;margin-top:0;text-align:left}.OrderPreview-details{font-size:1em;margin-bottom:10px;width:100%}.OrderPreview-row{display:flex;gap:10px;justify-content:space-between;padding:8px 0}.OrderPreview-borderBottom{border-bottom:1px solid #f1f1f1}.OrderPreview-label,.OrderPreview-value{color:#171717;font-size:1.2em;font-size:16px;font-weight:600;line-height:20px}.OrderPreview-subscribeButton{background-color:#0053cf;border:none;border-radius:5px;color:#fff;cursor:pointer;font-size:14px;font-weight:600;height:44px;letter-spacing:1.09px;line-height:16px;margin:20px auto;padding:10px 20px;text-align:center;text-transform:uppercase;transition:background-color .3s;width:100%}.OrderPreview-subscribeButton:disabled{background-color:#d9d9d9;color:#424242;cursor:not-allowed}.SubscriptionCheckoutModal-subscriptionModalContainer{display:flex;flex-direction:column;height:-moz-fit-content;height:fit-content;position:relative;width:inherit}@media (min-width:760px){.SubscriptionCheckoutModal-subscriptionModalContainer{flex-direction:row}}.SubscriptionCheckoutModal-error{color:#d0021b;font-size:20px;font-weight:500;height:600px;width:790px}.SubscriptionCheckoutModal-error,.SubscriptionCheckoutModal-loading{align-items:center;cursor:default;display:flex;justify-content:center;opacity:.8;pointer-events:none}.SubscriptionCheckoutModal-loading:before{background:#999;content:"";height:100%;left:0;position:absolute;top:0;width:100%;z-index:999}.SubscriptionCheckoutModal-loading:after{animation:SubscriptionCheckoutModal-spin 1s linear infinite;border:8px solid #b9b9b9;border-radius:50%;border-top-color:#fff;content:"";height:50px;position:absolute;width:50px;z-index:999}@keyframes SubscriptionCheckoutModal-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.SubscriptionCheckoutModal-logoContainerMobile{display:block;padding:20px 0;text-align:center}@media (min-width:760px){.SubscriptionCheckoutModal-logoContainerMobile{display:none}}.SubscriptionCheckoutModal-leftPane{background:#fff;flex:1}@media (min-width:760px){.SubscriptionCheckoutModal-leftPane{padding:0 15px}}.SubscriptionCheckoutModal-rightPane{background-color:#f8f8f8;flex:1;width:auto}.SubscriptionCheckoutModal-leftPaneContent{display:flex;flex-direction:column;height:100%;max-width:-moz-fit-content;max-width:fit-content;padding:20px 30px}@media (min-width:760px){.SubscriptionCheckoutModal-leftPaneContent{max-width:470px}}.SubscriptionCheckoutModal-rightPaneContent{flex-direction:column;height:100%;justify-content:space-around;max-width:-moz-fit-content;max-width:fit-content;padding:0 20px}@media (min-width:760px){.SubscriptionCheckoutModal-rightPaneContent{max-width:350px}}.SubscriptionCheckoutModal-accountInfoDesktop{display:none}@media (min-width:760px){.SubscriptionCheckoutModal-accountInfoDesktop{display:block;margin-top:20px}}.SubscriptionCheckoutModal-accountInfoMobile{display:block;margin:20px auto 50px}@media (min-width:760px){.SubscriptionCheckoutModal-accountInfoMobile{display:none}}.SubscriptionCheckoutContainer-container{display:block;height:-moz-fit-content;height:fit-content}.NotificationProvider-backdrop{background-color:#fff;box-shadow:0 4px 4px 0 #00000040;height:100%;padding:30px 30px 20px;position:fixed;right:0;top:0;width:605px;z-index:9999}@media (max-width:1019px){.NotificationProvider-backdrop{width:524px}}@media (max-width:759px){.NotificationProvider-backdrop{padding:20px;width:100%}}.NotificationProvider-notificationWrapper{display:flex;flex-direction:column;height:calc(100% - 100px);overflow-y:auto;overscroll-behavior:contain}@media (max-width:759px){.NotificationProvider-notificationWrapper{height:calc(100% - 80px)}}.NotificationProvider-closeButton{float:right}.NotificationProvider-closeButton:focus-visible>span>svg{border:1px solid #071d39;border-radius:4px}.NotificationProvider-headingContainer{display:flex;flex-direction:row;justify-content:space-between;margin-bottom:30px}@media (max-width:759px){.NotificationProvider-headingContainer{margin-bottom:15px}}.NotificationProvider-notificationsPanelTitle{color:#000;font-size:28px;font-weight:400;letter-spacing:.28px;line-height:28px}@media (max-width:759px){.NotificationProvider-notificationsPanelTitle{font-size:24px}}.NotificationProvider-liveEventContainerWrapper{margin-bottom:30px}@media (max-width:759px){.NotificationProvider-liveEventContainerWrapper{margin-bottom:25px}}.NotificationProvider-liveEventContainer{display:flex;flex-direction:column}.NotificationProvider-smallSpan{background-color:#0477c9;display:block;height:6px;width:110px}.NotificationProvider-smallSpanNotificationsOff{background-color:#747474}.NotificationProvider-border{background-color:#747474;display:block;height:1px;width:100%}.NotificationProvider-notificationsHeading{color:#000;font-size:20px;font-weight:700;letter-spacing:.01em;line-height:24px;margin-bottom:10px;margin-top:7px;text-transform:uppercase}@media (max-width:759px){.NotificationProvider-notificationsHeading{font-size:18px;margin-top:5px}}.NotificationProvider-focusTrapContainer{height:100%;overflow:auto}.NotificationProvider-watchlistAlertsContainer{display:flex;flex-direction:column}.NotificationProvider-toggleContainer{align-items:center;bottom:20px;display:flex;flex-direction:row;float:right;gap:10px;position:fixed;right:30px}.NotificationProvider-toggleText{color:#000;font-size:15px;font-weight:500}.NotificationProvider-switch{display:inline-block;height:19px;position:relative;width:40px}.NotificationProvider-switch:focus-within>.NotificationProvider-slider{border:1px solid #000}.NotificationProvider-switch input{height:0;opacity:0;width:0}.NotificationProvider-slider{background-color:#ccc;border:1px solid #ccc;border-radius:34px;bottom:0;cursor:pointer;left:0;position:absolute;right:0;top:0;transition:.4s}.NotificationProvider-slider:before{background-color:#fff;border-radius:50%;bottom:3px;content:"";height:12px;left:2px;position:absolute;transition:.4s;width:12px}input:checked+.NotificationProvider-slider{background-color:#0477c9;border:1px solid #0477c9}input:checked+.NotificationProvider-slider:before{left:-2px;transform:translateX(26px)}.NotificationProvider-notificationPanelOffText{margin-top:30px}.NotificationProvider-yrhiind{color:#008456;font-weight:700}.NotificationProvider-yrloind{color:#b40909;font-weight:700}.NotificationProvider-notificationsHeadingContainer{align-items:center;display:flex;justify-content:space-between}.NotificationProvider-dropdownButton{align-items:center;border:1px solid #0000;border-radius:4px;color:#fff;display:flex}.NotificationProvider-dropdownButton:active{-webkit-tap-highlight-color:transparent}.NotificationProvider-dropdownButton:focus-visible{border:1px solid #4699d6;border-radius:4px}@media (min-width:760px){.NotificationProvider-dropdownButton{margin-right:10px}}.NotificationProvider-dropdownButton .NotificationProvider-dropdownArrow,.NotificationProvider-dropdownButton .NotificationProvider-dropdownUpArrow{background:#4699d6;height:13px;width:21px}.NotificationProvider-dropdownButton .NotificationProvider-dropdownArrow,.NotificationProvider-dropdownButton .NotificationProvider-dropdownUpArrow{mask-image:url(https://static-redesign.cnbcfm.com/dist/a09d43acfa362f012895.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/a09d43acfa362f012895.svg)}.NotificationProvider-dropdownButton .NotificationProvider-dropdownUpArrow{transform:scaleY(-1)}.NotificationProvider-collapseLiveEventContainer,.NotificationProvider-noLiveEventTextCollapse{display:none}.WatchlistAlertNotifications-watchlistAlertsHeading{color:#000;font-size:20px;font-weight:700;letter-spacing:.01em;line-height:24px;margin-bottom:10px;margin-top:7px;text-transform:uppercase}@media (max-width:759px){.WatchlistAlertNotifications-watchlistAlertsHeading{font-size:18px;margin-top:5px}}.WatchlistAlertNotifications-watchlistAlertItemLink:focus-visible .WatchlistAlertNotifications-watchlistAlertItem{background-color:#f1f1f1}.WatchlistAlertNotifications-watchlistAlertItem{align-items:center;background-color:#f8f8f8;border-bottom:1px solid #dedede;display:flex;gap:10px;margin-bottom:1px;padding:15px 10px}.WatchlistAlertNotifications-watchlistAlertItem:hover{background-color:#f1f1f1}@media (max-width:759px){.WatchlistAlertNotifications-watchlistAlertItem{min-height:50px;padding:10px}}.WatchlistAlertNotifications-watchlistAlertIcon>img{height:23.33px;width:25px}@media (max-width:759px){.WatchlistAlertNotifications-watchlistAlertIcon>img{height:16px;width:16px}}.WatchlistAlertNotifications-watchlistAlertTitle{align-items:center;color:#171717;display:flex;font-size:12px;font-weight:500;gap:5px;line-height:14.62px}@media (max-width:1019px){.WatchlistAlertNotifications-watchlistAlertTitle{align-items:baseline;flex-direction:column}}@media (max-width:759px){.WatchlistAlertNotifications-watchlistAlertTitle{font-size:14px}}.WatchlistAlertNotifications-watchlistSymbol{font-weight:700}.WatchlistAlertNotifications-notificationsQuoteData{align-items:center;background-color:#fff;border:1px solid #9e9e9e;border-radius:8px;display:flex;font-size:12px;font-weight:800;height:29px;justify-content:center;padding:0 5px;white-space:nowrap}.WatchlistAlertNotifications-notificationsQuoteData .WatchlistAlertNotifications-symbolDecline,.WatchlistAlertNotifications-notificationsQuoteData .WatchlistAlertNotifications-symbolGain{color:#071d39}.WatchlistAlertNotifications-notificationsQuoteData .WatchlistAlertNotifications-quoteGain{color:#008456}.WatchlistAlertNotifications-notificationsQuoteData .WatchlistAlertNotifications-quoteDecline{color:#ce2b2b}.WatchlistAlertNotifications-notificationsQuoteData .WatchlistAlertNotifications-quoteDecline span:nth-child(2),.WatchlistAlertNotifications-notificationsQuoteData .WatchlistAlertNotifications-quoteGain span:nth-child(2){margin-left:4px}.WatchlistAlertNotifications-quoteSeperator{color:#747474;margin-left:4px;margin-right:4px}.NewsAlertNotifications-liveEventItemLink:focus-visible,.NewsAlertNotifications-liveEventItemLink:focus-visible .NewsAlertNotifications-liveEventItemWithBackground{background-color:#f1f1f1}.NewsAlertNotifications-liveEventItem{align-items:center;border-bottom:1px solid #dedede;display:flex;gap:10px;padding:15px 10px}@media (max-width:759px){.NewsAlertNotifications-liveEventItem{min-height:50px;padding:10px}}.NewsAlertNotifications-liveEventTitle{color:#171717;font-size:12px;font-weight:500;line-height:14px}@media (max-width:759px){.NewsAlertNotifications-liveEventTitle{font-size:14px}}.NewsAlertNotifications-clubPill{color:#0496ff}.NewsAlertNotifications-clubPill,.NewsAlertNotifications-proPill{font-size:10px;font-weight:700;letter-spacing:1.5px;line-height:10px}.NewsAlertNotifications-proPill{color:#00a857}.NewsAlertNotifications-lockIcon{position:relative}.NewsAlertNotifications-lockIcon span{display:none}.NewsAlertNotifications-lockIcon:hover span{bottom:20px;display:block;position:absolute;right:-8px;white-space:nowrap}.NewsAlertNotifications-tooltipArrow{background-color:#fff!important;border-left:11px solid #0000;border-right:11px solid #0000;left:-6px;top:-14px}.NewsAlertNotifications-tooltip{border-radius:4px;color:#fff;font-size:12px;font-weight:600;height:21px;letter-spacing:1px;line-height:7px;padding:7px 4px 7px 8px;text-align:left}.NewsAlertNotifications-clubTooltipArrow{border-top:8px solid #0496ff}.NewsAlertNotifications-proTooltipArrow{border-top:8px solid #008456}.NewsAlertNotifications-proTooltip{background-color:#008456}.NewsAlertNotifications-clubTooltip{background-color:#0496ff}.NewsAlertNotifications-liveEventIcon>img{height:23.33px;width:25px}@media (max-width:759px){.NewsAlertNotifications-liveEventIcon>img{height:16px;width:16px}}.NewsAlertNotifications-liveEventPill{align-items:flex-end;display:flex;flex-direction:column;gap:3px;margin-left:auto}.NewsAlertNotifications-timestamp{color:#424242;font-size:10px;font-weight:600;letter-spacing:1.5px;line-height:10px;text-transform:uppercase;white-space:nowrap}.NewsAlertNotifications-liveEventItemWithBackground{background-color:#f8f8f8}.NewsAlertNotifications-liveEventItemWithBackground:hover{background-color:#f1f1f1}.NewsAlertNotifications-tradeAlertsTitle{color:#005594;font-size:12px;font-weight:700}.CreateOrEditWatchlist-watchlistContainer{display:flex;flex-direction:column;gap:50px;overflow:hidden}@media (max-width:759px){.CreateOrEditWatchlist-watchlistContainer{gap:30px}}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-watchlistCreateOrEditContainer{display:flex;flex-direction:column;gap:15px}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-editWatchlistText{color:#000;font-size:20px;font-weight:400;letter-spacing:.2px;line-height:24px}@media (max-width:759px){.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-editWatchlistText{font-size:14px;line-height:16.8px}}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-editWatchlistLink{color:#005594;display:flex;font-size:20px;font-style:normal;font-weight:500;gap:7px;height:20px;letter-spacing:1.091px;line-height:16px;text-align:center;-webkit-text-decoration-line:underline;text-decoration-line:underline}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-editWatchlistLink>img{height:16px;position:relative;top:3px;width:16px}@media (max-width:759px){.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-editWatchlistLink>img{height:12px;width:12px}}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-editWatchlistLink:hover{color:#005594}@media (max-width:759px){.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-editWatchlistLink{font-size:14px;line-height:16px}}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-createWatchlistText{color:#000;font-size:32px;font-weight:400;letter-spacing:.03px;line-height:40px;text-align:center}@media (min-width:760px){.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-createWatchlistText{margin-top:30px}}@media (max-width:759px){.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-createWatchlistText{font-size:24px;line-height:29.23px;margin-top:10px}}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-createWatchlistContainer{display:flex;flex-direction:column;gap:50px}@media (max-width:759px){.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-createWatchlistContainer{gap:30px}}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-createWatchlistButton{align-items:center;background-color:#005594;color:#fff;cursor:pointer;display:flex;font-size:16px;font-weight:600;height:50px;justify-content:center;letter-spacing:1.091px;line-height:16px;margin:auto;text-align:center;text-transform:uppercase;white-space:nowrap;width:236px}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-createWatchlistButton:hover{color:#fff}@media (max-width:759px){.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-createWatchlistButton{font-size:14px;height:46px;margin-bottom:20px;width:208px}}.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-watchlistImg{background-image:url(https://static-redesign.cnbcfm.com/dist/aaef357fd7f6d3bbf46a.png);background-repeat:no-repeat;background-size:423px 184px;height:184px;margin:35px auto auto;width:423px}@media (max-width:759px){.CreateOrEditWatchlist-watchlistContainer .CreateOrEditWatchlist-watchlistImg{background-image:url(https://static-redesign.cnbcfm.com/dist/6f13373a0304d88f6030.png);background-size:257px 168px;height:168px;margin-top:15px;width:257px}}.SplitStats-splitStats{margin:15px 0 0}@media (min-width:760px){.SplitStats-splitStats{display:none}}.SplitStats-splitStats .SplitStats-title{color:#002f6c;font-size:18px;font-weight:800;text-transform:uppercase}.SplitStats-splitStats .SplitStats-list,.SplitStats-splitStats .SplitStats-listSingle{grid-gap:0 15px;display:grid;grid-template-columns:1fr 1fr;list-style:none;margin:0;padding:0}.SplitStats-splitStats .SplitStats-flowColumn{grid-auto-flow:column;grid-template-rows:repeat(4,auto)}.SplitStats-splitStats .SplitStats-listSingle{grid-auto-flow:row;grid-template-columns:1fr;grid-template-rows:none}.SplitStats-splitStats .SplitStats-listSingle .SplitStats-item{border-bottom:0;font-size:16px;margin:0;padding:5px 2px}.SplitStats-splitStats .SplitStats-listSingle .SplitStats-item:nth-child(odd){background:#f8f8f8}.SplitStats-splitStats .SplitStats-listSingle .SplitStats-name{color:#171717;font-weight:400}.SplitStats-splitStats .SplitStats-item{align-items:center;border-bottom:1px solid #d9d9d9;box-sizing:border-box;display:flex;font-family:Proxima Nova,sans-serif;font-size:11px;font-weight:800;justify-content:space-between;margin:0 0 5px;padding:0 0 5px}.SplitStats-splitStats .SplitStats-name{color:#747474}.SplitStats-splitStats .SplitStats-price{color:#171717}.ProPill-proPillLink{display:inline-block;padding-right:4px}.ProPill-proPill{bottom:0;display:inline-block;position:relative;vertical-align:initial;width:auto}.PieChart-chart{border-radius:50%;box-shadow:0 4px 4px #00000040;padding:0;pointer-events:all}.PieChart-chart,.PieChart-inner{height:var(--diameter);width:var(--diameter)}.PieChart-inner{display:grid;place-items:center;pointer-events:none;position:absolute;text-align:center}.PieChart-overlay{border-radius:50%;box-shadow:calc(var(--shadowOffset)*-1) var(--shadowOffset) 5px 1px #00000040;display:flex;flex-direction:column;font-family:Proxima Nova,Helvetica,Arial,sans-serif;height:calc(var(--diameter) - var(--strokeWidth)*2);justify-content:center;width:calc(var(--diameter) - var(--strokeWidth)*2)}.PieChart-total{font-size:20px;font-weight:600;line-height:20px}.PieChart-ratings{font-size:10px;font-weight:500;line-height:12px}.PieChart-consensus{word-wrap:break-word;font-size:16px;font-weight:600;hyphens:auto;line-height:16px;padding:4px}.AnalystConsensus-container{background:#fff;border:1px solid #d9d9d9;border-radius:10px;box-shadow:0 4px 4px #00000040;color:#000;display:grid;font-family:Proxima Nova,Helvetica,Arial,sans-serif;grid-template-columns:2fr 3fr;grid-template-rows:42px 199px;height:241px;overflow:hidden}.AnalystConsensus-containerWebservice{margin-bottom:30px}.AnalystConsensus-header{align-items:center;border-bottom:3px solid #00a857;display:flex;grid-column:1/3;grid-row:1/2;justify-content:space-between;padding:4px 20px 0 16px}.AnalystConsensus-proPill{height:20px}.AnalystConsensus-stockInfo{align-items:center;color:#005594;display:flex;line-height:19px;min-height:22px}.AnalystConsensus-companyName{font-size:20px;font-weight:700;line-height:20px;margin-right:8px}.AnalystConsensus-stockSymbol{border-left:2px solid #005594;color:#005594!important;font-size:18px;font-style:normal;font-weight:500;line-height:20px;padding-left:8px;text-decoration:none!important}.AnalystConsensus-stockSymbol:hover{color:#fcb700!important}.AnalystConsensus-leftPanel{column-gap:10px;display:grid;grid-column:1/2;grid-row:2/3;grid-template-columns:1fr 1fr;grid-template-rows:auto 46px;padding:22px;row-gap:20px}.AnalystConsensus-negativeUpside{color:#b40909}.AnalystConsensus-averagePriceTarget,.AnalystConsensus-currentPrice,.AnalystConsensus-highPriceTarget{border-bottom:1px dashed #747474}.AnalystConsensus-headerQuotePage{justify-content:flex-end}.AnalystConsensus-title{font-size:16px;font-weight:600;grid-column:1/3;grid-row:2/3;letter-spacing:1px;line-height:19px;text-align:center}.AnalystConsensus-pieChart{align-items:center;display:flex;flex-direction:column;grid-column:1/2;grid-row:1/2;justify-self:right;width:-moz-fit-content;width:fit-content}.AnalystConsensus-buy,.AnalystConsensus-hold,.AnalystConsensus-sell,.AnalystConsensus-strongBuy,.AnalystConsensus-underperform{align-items:center;display:flex;font-size:12px;font-weight:600;line-height:15px}.AnalystConsensus-buy .AnalystConsensus-box,.AnalystConsensus-hold .AnalystConsensus-box,.AnalystConsensus-sell .AnalystConsensus-box,.AnalystConsensus-strongBuy .AnalystConsensus-box,.AnalystConsensus-underperform .AnalystConsensus-box{height:14px;margin-left:10px;margin-right:10px;width:14px}.AnalystConsensus-buy{color:#00a857}.AnalystConsensus-buy .AnalystConsensus-box{background-color:#00a857}.AnalystConsensus-hold{color:#747474}.AnalystConsensus-hold .AnalystConsensus-box{background-color:#747474}.AnalystConsensus-sell{color:#002f6c}.AnalystConsensus-sell .AnalystConsensus-box{background-color:#002f6c}.AnalystConsensus-underperform{color:#336aa0}.AnalystConsensus-underperform .AnalystConsensus-box{background-color:#336aa0}.AnalystConsensus-strongBuy{color:#145c42}.AnalystConsensus-strongBuy .AnalystConsensus-box{background-color:#145c42}.AnalystConsensus-legend{background:#f8f8f8;border:.2px solid #d8d8d8;border-radius:6px;box-shadow:0 1px 4px #00000040;display:flex;flex-direction:column;height:108px;justify-content:space-around;padding:3px 8px 3px 0;width:-moz-fit-content;width:fit-content}.AnalystConsensus-rightPanel{border-left:1px solid #0003;display:flex;flex-direction:column;grid-column:2/3;grid-row:2/3;justify-content:space-between}.AnalystConsensus-stats{display:flex;flex-direction:column;justify-content:space-around;padding:15px 25px}.AnalystConsensus-averagePriceTarget,.AnalystConsensus-currentPrice,.AnalystConsensus-highPriceTarget,.AnalystConsensus-lowPriceTarget{align-items:center;display:flex;font-size:16px;font-weight:500;height:54px;line-height:19px}.AnalystConsensus-value{font-size:16px;line-height:19px;margin-left:auto}.AnalystConsensus-highPriceTarget .AnalystConsensus-value{color:#145c42}.AnalystConsensus-averagePriceTarget .AnalystConsensus-value{color:#424242;display:flex;flex-direction:column;font-size:14px;text-align:right}.AnalystConsensus-averagePriceTarget .AnalystConsensus-value .AnalystConsensus-upside{color:default}.AnalystConsensus-lowPriceTarget .AnalystConsensus-value{color:#002f6c}@media (max-width:760px){.AnalystConsensus-container{border-radius:2px;display:grid;grid-template-columns:303px;grid-template-rows:auto 195px 190px;height:auto;width:303px}.AnalystConsensus-header{grid-column:1/2;grid-row:1/2;padding:6px 20px}.AnalystConsensus-header .AnalystConsensus-proPill{height:13px}.AnalystConsensus-header .AnalystConsensus-stockInfo .AnalystConsensus-companyName{font-size:14px;font-weight:700;height:auto;line-height:16px;margin-right:5px;max-width:10rem}.AnalystConsensus-header .AnalystConsensus-stockInfo .AnalystConsensus-stockSymbol{border-left:1px solid #005594;font-size:12px;font-weight:500;line-height:16px;padding-left:5px}.AnalystConsensus-leftPanel{border-bottom:1px solid #d9d9d9;display:grid;grid-column:1/2;grid-row:2/3;grid-template-columns:1fr 1fr;padding:0 20px}.AnalystConsensus-leftPanel .AnalystConsensus-pieChart{justify-self:right;margin-right:14px;margin-top:20px}.AnalystConsensus-leftPanel .AnalystConsensus-legend{margin-top:20px}.AnalystConsensus-rightPanel{border-left:none;grid-column:1/2;grid-row:3/4}.AnalystConsensus-rightPanel .AnalystConsensus-stats{padding:0 20px}.AnalystConsensus-rightPanel .AnalystConsensus-stats .AnalystConsensus-averagePriceTarget,.AnalystConsensus-rightPanel .AnalystConsensus-stats .AnalystConsensus-currentPrice,.AnalystConsensus-rightPanel .AnalystConsensus-stats .AnalystConsensus-highPriceTarget,.AnalystConsensus-rightPanel .AnalystConsensus-stats .AnalystConsensus-lowPriceTarget{font-size:14px;height:64px;line-height:17px}}.AnalystConsensus-containerArticlePage{height:421px;margin-bottom:30px}.AnalystConsensus-currentPrice{display:flex;justify-content:space-between}.AnalystConsensus-currentPrice .AnalystConsensus-value{display:flex;justify-content:flex-end}.AnalystConsensus-lastUpdated{color:#424242;display:flex;font-size:8px;font-style:normal;font-weight:600;line-height:10px}.AnalystConsensus-changePct{align-items:center;color:#008456;display:flex;font-size:10px;font-style:normal;font-weight:600;line-height:12px}.AnalystConsensus-changePctNegative{color:#b40909}.AnalystConsensus-unchanged{color:#424858}@media (min-width:360px){.AnalystConsensus-rightPanel .AnalystConsensus-statsArticlePage .AnalystConsensus-averagePriceTarget,.AnalystConsensus-rightPanel .AnalystConsensus-statsArticlePage .AnalystConsensus-currentPrice,.AnalystConsensus-rightPanel .AnalystConsensus-statsArticlePage .AnalystConsensus-highPriceTarget,.AnalystConsensus-rightPanel .AnalystConsensus-statsArticlePage .AnalystConsensus-lowPriceTarget{height:46px}}@media (min-width:760px){.AnalystConsensus-containerArticlePage{height:241px}.AnalystConsensus-rightPanel .AnalystConsensus-statsArticlePage .AnalystConsensus-averagePriceTarget,.AnalystConsensus-rightPanel .AnalystConsensus-statsArticlePage .AnalystConsensus-currentPrice,.AnalystConsensus-rightPanel .AnalystConsensus-statsArticlePage .AnalystConsensus-highPriceTarget,.AnalystConsensus-rightPanel .AnalystConsensus-statsArticlePage .AnalystConsensus-lowPriceTarget{height:44px}}@media (min-width:1340px){.AnalystConsensus-containerQuotePage{grid-template-rows:40px 191px;height:231px;width:966px}.AnalystConsensus-containerQuotePage .AnalystConsensus-leftPanel{column-gap:44px}.AnalystConsensus-containerQuotePage .AnalystConsensus-rightPanel .AnalystConsensus-stats{padding-left:40px;padding-right:40px}}.AnalystConsensus-gateContainer{border-radius:10px;box-shadow:0 4px 4px #00000040;width:100%}.AnalystConsensus-gateContainer div[style],.AnalystConsensus-gateContainer iframe[style]{border-radius:10px}@media (max-width:760px){.AnalystConsensus-gateContainer{box-shadow:none;display:flex;justify-content:center}.AnalystConsensus-gateContainer div[style],.AnalystConsensus-gateContainer iframe[style]{border-radius:2px;box-shadow:0 4px 4px #00000040;width:303px!important}}.AnalystConsensus-error .AnalystConsensus-legend{flex-direction:row}.AnalystConsensus-error .AnalystConsensus-legend .AnalystConsensus-boxContainer{display:flex;flex-direction:column;justify-content:space-around}.AnalystConsensus-error .AnalystConsensus-legend .AnalystConsensus-errorMessage{color:#ce2b2b;display:grid;font-size:12px;font-weight:500;line-height:12px;place-items:center;text-align:center}.BadgeGroup-badgeGroup{display:flex;justify-content:center;margin:24px 0 0;width:100%}@media (max-width:1019px){.BadgeGroup-badgeGroup{margin:24px 0 -6px}}@media (max-width:759px){.BadgeGroup-badgeGroup{margin:0}}.BadgeGroup-badge{margin:0 10px;max-height:60px;max-width:120px}.Loading-wrapper{background:none;height:100%}.Loading-nightModeWrapper{background:#000;height:100%}.Loading-loadingImage{height:295px;max-width:900px;width:100%}.ErrorChartBoundary-errorWrapper{background:grey;border:1px solid silver;color:#fff;height:352px}.ErrorChartBoundary-errorWrapper .ErrorChartBoundary-msg{position:relative;text-align:center;top:35%}.ErrorChartBoundary-errorWrapper .ErrorChartBoundary-msg span{background:#fff;border-radius:3px;color:#000;font-family:inherit;font-size:12px;line-height:inherit;margin:0;padding:2px}.PhoenixChartWrapper-rendererApp,.PhoenixChartWrapper-rendererWeb{min-height:380px;position:relative}.PhoenixChartWrapper-rendererWeb{margin-top:20px}.PhoenixChartWrapper-rendererApp{height:100%;margin:0}.PhoenixChartWrapper-loadingWrapper{background:#fff;bottom:0;left:0;position:absolute;right:0;top:0;z-index:10}.MiniQuoteData-container{display:block;height:162px;line-height:22px;padding:0 30px;text-indent:0}@media (min-width:1020px){.MiniQuoteData-container{height:144px;padding:0 8px}}@media (max-width:759px){.MiniQuoteData-container{height:154px;min-width:320px;padding:0 15px}}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-container{height:274px;min-width:560px}}.MiniQuoteData-chickletContainer{display:block;height:144px;line-height:22px;padding:0 8px;text-indent:0}@media (min-width:1020px){.MiniQuoteData-chickletContainer{height:144px;padding:0 8px}}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-chickletContainer .MiniQuoteData-companyName,.MiniQuoteData-chickletContainer .MiniQuoteData-link{font-size:14px;margin-bottom:0;margin-top:12px}.MiniQuoteData-chickletContainer .MiniQuoteData-last{font-size:24px;margin-right:12px}}.MiniQuoteData-chickletContainer .MiniQuoteData-link{font-size:11px!important}.MiniQuoteData-chickletContainer .MiniQuoteData-quote,.MiniQuoteData-chickletContainer .MiniQuoteData-quoteDown,.MiniQuoteData-chickletContainer .MiniQuoteData-quoteUp{font-size:12px!important}.MiniQuoteData-chickletContainer .MiniQuoteData-halfDetail{color:#747474;display:flex;font-size:10px;font-weight:700;justify-content:space-between;margin:0}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-chickletContainer .MiniQuoteData-halfDetail{font-size:10px;line-height:inherit;margin:0}.MiniQuoteData-chickletContainer .MiniQuoteData-section{margin-bottom:0}}.MiniQuoteData-section{display:block;padding-bottom:0;padding-left:0;padding-top:0}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-section{margin-bottom:10px}}.MiniQuoteData-companyName{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.MiniQuoteData-companyName,.MiniQuoteData-last{font-weight:700}.MiniQuoteData-companyName,.MiniQuoteData-link{font-size:14px;margin-top:12px}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-companyName,.MiniQuoteData-link{font-size:24px;margin-bottom:14px;margin-top:14px}}.MiniQuoteData-last,.MiniQuoteData-quote,.MiniQuoteData-quoteDown,.MiniQuoteData-quoteUp{display:block;margin:4px 0}.MiniQuoteData-header{align-items:center;display:flex}.MiniQuoteData-last{font-size:24px;margin-right:12px}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-last{font-size:34px}}.MiniQuoteData-link{font-size:11px;font-weight:600}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-link{font-size:16px}}.MiniQuoteData-link a{color:#005594;text-decoration:underline}.MiniQuoteData-cnbcLink{color:#2077b6;text-decoration:underline}.MiniQuoteData-quote,.MiniQuoteData-quoteDown,.MiniQuoteData-quoteUp{color:#747474;font-family:Proxima Nova,sans-serif;font-size:12px;font-weight:700;line-height:12px}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-quote,.MiniQuoteData-quoteDown,.MiniQuoteData-quoteUp{font-size:20px}}.MiniQuoteData-quoteUp{color:#008456}.MiniQuoteData-quoteUp:before{content:"▾";display:inline-block;margin-right:4px;transform:rotate(-180deg)}.MiniQuoteData-quoteDown{color:#d0021b}.MiniQuoteData-quoteDown:before{content:"▾";margin-right:4px}.MiniQuoteData-details{grid-column-gap:4%;display:grid;grid-template-columns:1fr 1fr}.MiniQuoteData-container,.MiniQuoteData-withTopBorder{border-bottom:.5px solid #747474}.MiniQuoteData-halfDetail{color:#747474;display:flex;font-size:10px;font-weight:700;justify-content:space-between;margin:0}.MiniQuoteData-halfDetail :nth-child(2n){color:#171717}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-halfDetail{font-size:18px;line-height:40px;margin:0 0 20px}}.MiniQuoteData-halfDetail:nth-of-type(odd){grid-column:1/2}.MiniQuoteData-halfDetail:nth-of-type(2n){grid-column:2/3}.DynamicLoadingIndicator-spinnerParent{display:block;padding:10px}.DynamicLoadingIndicator-spinner{animation:DynamicLoadingIndicator-spin 2s linear infinite;border:3px solid #f3f3f3;border-radius:50%;border-top-color:#666;display:block;margin:0 auto}@keyframes DynamicLoadingIndicator-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.AddToWatchlistDropdown-container{align-content:center;align-items:center;background-color:#fff;display:flex;flex-direction:column;font-family:Proxima Nova,Helvetica,Arial,sans-serif;justify-content:center;padding:20px 0;position:fixed;z-index:1001}.AddToWatchlistDropdown-container.AddToWatchlistDropdown-withWatchlists{align-items:normal;justify-content:normal}@media (max-width:1019px){.AddToWatchlistDropdown-container{bottom:0;left:0;right:0;top:0;z-index:9999}}@media (min-width:1020px){.AddToWatchlistDropdown-container{border:.5px solid #9e9e9e;border-top:0;box-shadow:0 1px 6px #00000040,0 -3px 0 #002f6c;display:block;left:0;padding:0;position:absolute;width:auto}.AddToWatchlistDropdown-container.AddToWatchlistDropdown-mini{left:0;right:auto}}.AddToWatchlistDropdown-container .AddToWatchlistDropdown-miniQuoteDataContainer{align-items:center;border-bottom:.5px solid #747474;display:flex;justify-content:center;min-height:156px}@media (min-width:1020px){.AddToWatchlistDropdown-container .AddToWatchlistDropdown-miniQuoteDataContainer{min-height:156px}}@media (max-width:759px){.AddToWatchlistDropdown-container .AddToWatchlistDropdown-miniQuoteDataContainer{min-height:156px;min-width:320px}}@media (min-width:760px) and (max-width:1019px){.AddToWatchlistDropdown-container .AddToWatchlistDropdown-miniQuoteDataContainer{min-height:274px;min-width:560px}}.AddToWatchlistDropdown-container .AddToWatchlistDropdown-signInMessage,.AddToWatchlistDropdown-container .AddToWatchlistDropdown-simpleText{display:block;font-size:12px;line-height:12px;text-align:center}.AddToWatchlistDropdown-container .AddToWatchlistDropdown-signInMessage{color:#000;font-weight:700;margin-bottom:-10px;margin-top:20px}.AddToWatchlistDropdown-container .AddToWatchlistDropdown-simpleText{font-weight:500}.AddToWatchlistDropdown-container .AddToWatchlistDropdown-simpleText:last-child{margin-bottom:20px}.AddToWatchlistDropdown-chicletContainer{align-content:center;align-items:center;background-color:#fff;border:.5px solid #9e9e9e;border-top:0;box-shadow:0 1px 6px #00000040,0 -3px 0 #002f6c;display:block;flex-direction:column;font-family:Proxima Nova,Helvetica,Arial,sans-serif;justify-content:center;left:0;padding:0;position:absolute;top:27px!important;width:auto;z-index:1001}.AddToWatchlistDropdown-chicletContainer.AddToWatchlistDropdown-withWatchlists{align-items:normal;justify-content:normal}.AddToWatchlistDropdown-chicletContainer.AddToWatchlistDropdown-mini{left:0;right:auto}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-miniQuoteDataContainer{align-items:center;border-bottom:.5px solid #747474;display:flex;justify-content:center;min-height:156px}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-closeButton{display:none}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-signInMessage,.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-simpleText{display:block;font-size:12px;line-height:12px;text-align:center}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-signInMessage{color:#000;font-weight:700;margin-bottom:-10px;margin-top:20px}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-simpleText{font-weight:500}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-simpleText:last-child{margin-bottom:20px}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-headerForWatchlistTag{align-items:center;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:11px;height:32px;margin:0 0 0 8px}@media (max-width:1019px){.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-headerForWatchlistTag{font-size:11px!important;height:32px!important;line-height:inherit!important;margin-left:8px!important;padding:0!important}}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-watchlistScrollContainer{max-height:100px}@media (max-width:1019px){.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-watchlistScrollContainer:before{bottom:32px}}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-footer{bottom:0}@media (max-width:1019px){.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink:first-child{margin-bottom:12px;margin-top:12px}.AddToWatchlistDropdown-chicletContainer .AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink{font-size:11px;margin-left:10px}}.AddToWatchlistDropdown-chicletGhostDropdownCloser{display:block!important}.AddToWatchlistDropdown-wrapper{max-height:calc(100vh - 158px);overflow:auto}@media (min-width:1020px){.AddToWatchlistDropdown-wrapper{max-height:118px}}.AddToWatchlistDropdown-watchlistContainer{border:.5px solid #cfd8e2;box-shadow:0 -3px 0 #002f6c;padding:unset;right:-1px;top:27px;width:calc(100% + 2px)}@media (max-width:1019px){.AddToWatchlistDropdown-watchlistContainer{top:0}}.AddToWatchlistDropdown-container.AddToWatchlistDropdown-isFetching{padding-top:0}.AddToWatchlistDropdown-closeButton{display:block;font-size:12px;position:absolute;right:15px;top:20px}@media (min-width:1020px){.AddToWatchlistDropdown-closeButton{display:none}}.AddToWatchlistDropdown-closeButton.AddToWatchlistDropdown-closeButtonForSymbolTag{font-size:15px;top:27px}.AddToWatchlistDropdown-header{color:#9e9e9e;font-size:12px;font-weight:600;letter-spacing:.01em;line-height:12px;margin:20px 30px;text-indent:0}.AddToWatchlistDropdown-header.AddToWatchlistDropdown-headerForWatchlistTag{align-items:center;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:11px;height:32px;margin:0 0 0 8px}@media (max-width:1019px){.AddToWatchlistDropdown-header.AddToWatchlistDropdown-headerForWatchlistTag{font-size:18px;height:68px;line-height:normal;margin-left:30px;padding:8px 0}}.AddToWatchlistDropdown-footer{display:block;padding:15px 15px 20px;position:relative;width:100%;z-index:1}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-footerLink,.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink{color:#005594;display:block;font-size:11px;font-weight:600;line-height:13px;padding-left:10px;padding-top:10px;text-indent:0}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-footerLink.AddToWatchlistDropdown-signIn,.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink.AddToWatchlistDropdown-signIn{background-color:#005594;border:none;bottom:0;color:#fff;position:static}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink{line-height:11px;margin-left:10px;padding:unset;text-decoration:underline}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink:first-child{margin-bottom:12px;margin-top:12px}@media (max-width:1019px){.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink:first-child{margin-bottom:30px;margin-top:48px}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink{font-size:18px;margin-left:30px}}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink:hover{color:#005594}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-footerLink{border:1px solid #071d39;color:#071d39;line-height:12px;padding:15px;text-align:center;width:100%}@media (max-width:1019px){.AddToWatchlistDropdown-footer{bottom:20px;position:absolute}}.AddToWatchlistDropdown-watchlistTagFooter{padding:unset;position:relative}.AddToWatchlistDropdown-signInContainer{bottom:0;min-width:240px;position:relative;width:50%}.AddToWatchlistDropdown-createWatchlistContainer{bottom:0;padding-bottom:10px;position:relative}@media (max-width:1019px){.AddToWatchlistDropdown-createWatchlistContainer{text-align:center;top:20px;width:50%}}.AddToWatchlistDropdown-message{color:#e8802a;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;line-height:100%;padding:15px 15px 0;text-align:center}@media (max-width:1019px){.AddToWatchlistDropdown-message{font-size:18px;font-weight:600;line-height:18px}}.AddToWatchlistDropdown-message.AddToWatchlistDropdown-watchListEmptyMsg{color:#171717}.AddToWatchlistDropdown-symbolIssueError{border-bottom:1px solid #bababa;color:#ce2b2b;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;line-height:18px;padding:35px 20px;text-align:center;white-space:normal}.AddToWatchlistDropdown-ghostDropdownCloser{bottom:0;display:none;left:0;position:fixed;right:0;top:0;z-index:98}@media (min-width:1020px){.AddToWatchlistDropdown-ghostDropdownCloser{display:block}}.AddToWatchlistDropdown-watchlistContainerAddTag{left:-1px;min-width:300px;top:27px;width:calc(100% + 2px)}@media (max-width:1019px){.AddToWatchlistDropdown-watchlistContainerAddTag{top:0}}.AddToWatchlistDropdown-watchlistContainerAddTag .AddToWatchlistDropdown-message{font-size:11px;font-weight:700;letter-spacing:-.004em;line-height:13px;padding-left:8px;padding-right:8px;text-align:center}@media (max-width:1019px){.AddToWatchlistDropdown-watchlistContainerAddTag .AddToWatchlistDropdown-message{align-items:center;display:flex;font-size:18px;font-weight:700;letter-spacing:-.002em;line-height:18px;text-align:center}}.AddToWatchlistDropdown-loggedOutAddTag{padding:unset}.AddToWatchlistDropdown-loggedOutAddTag .AddToWatchlistDropdown-signInContainer .AddToWatchlistDropdown-watchlistTagFooterLink{position:relative;right:9px;top:8px}@media (max-width:1019px){.AddToWatchlistDropdown-loggedOutAddTag .AddToWatchlistDropdown-signInContainer .AddToWatchlistDropdown-watchlistTagFooterLink{font-size:14px;margin-left:unset;padding-top:50px;right:0;text-align:center;top:0}}.AddToWatchlistDropdown-loggedOutAddTag .AddToWatchlistDropdown-createWatchlistContainer .AddToWatchlistDropdown-watchlistTagFooterLink{padding-bottom:8px;position:relative}@media (max-width:1019px){.AddToWatchlistDropdown-loggedOutAddTag .AddToWatchlistDropdown-createWatchlistContainer .AddToWatchlistDropdown-watchlistTagFooterLink{font-size:14px;margin-left:unset;padding-top:50px}}.AddToWatchlistDropdown-signInContainerAddTag{display:block;margin:0 10%;padding:8px}@media (min-width:1020px){.AddToWatchlistDropdown-signInContainerAddTag{min-width:unset;width:unset}}.AddToWatchlistDropdown-buttonLink{border:1px solid #005594;color:#005594;display:block;font-size:10px;font-weight:600;line-height:12px;padding:8px;text-align:center;width:100%}.AddToWatchlistDropdown-buttonLink.AddToWatchlistDropdown-signIn{background-color:#005594;border:none;bottom:0;color:#fff;margin-top:20px;position:static}.AddToWatchlistDropdown-buttonLink.AddToWatchlistDropdown-createWatchlist{background-color:#005594;border:none;bottom:0;color:#fff;margin:auto;max-width:100%;min-width:120px;padding:15px;position:static;text-decoration:none;width:90%}.AddToWatchlistDropdown-buttonLink.AddToWatchlistDropdown-createWatchlist:hover{color:#fff}@media (max-width:1019px){.AddToWatchlistDropdown-buttonLink.AddToWatchlistDropdown-createWatchlist{min-width:200px}.AddToWatchlistDropdown-buttonLink{font-size:14px;font-weight:700}}.AddToWatchlistDropdown-signInButtonAddTag{align-items:center;font-size:10px;font-weight:700;letter-spacing:.5px;line-height:12px;padding:8px;text-align:center}.AddToWatchlistDropdown-signInButtonAddTag.AddToWatchlistDropdown-signIn{background-color:#005594}.AddToWatchlistDropdown-signInButtonAddTag.AddToWatchlistDropdown-signIn:hover{background-color:#002f6c}.AddToWatchlistDropdown-signInButtonAddTag.AddToWatchlistDropdown-createWatchlist{background-color:#005594;color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;padding:8px;text-decoration:none}.AddToWatchlistDropdown-signInButtonAddTag.AddToWatchlistDropdown-createWatchlist:hover{background-color:#002f6c;color:#fff}@media (max-width:1019px){.AddToWatchlistDropdown-signInButtonAddTag.AddToWatchlistDropdown-createWatchlist{padding:12px}.AddToWatchlistDropdown-buttonLink{font-size:14px;letter-spacing:1.1px;line-height:16px;margin:auto;max-width:260px;padding:12px}}.AddToWatchlistDropdown-watchlistScrollContainer{display:block;max-height:100px;overflow-y:scroll}.AddToWatchlistDropdown-watchlistScrollContainer:before{bottom:32px;content:"";display:block;height:40px;pointer-events:none;position:absolute;width:100%;z-index:1}@media (max-width:1019px){.AddToWatchlistDropdown-watchlistScrollContainer:before{bottom:100px}}.AddToWatchlistDropdown-watchlistScrollContainer.AddToWatchlistDropdown-fade:before{background:linear-gradient(180deg,#fff0,25%,#fff)}@media (max-width:1019px){.AddToWatchlistDropdown-watchlistScrollContainer{max-height:70%}}@keyframes WatchlistNotification-showAndFadeOut{0%{opacity:0;transform:translateY(5px)}5%{opacity:1;transform:translateY(0)}80%{opacity:1}to{opacity:0}}.WatchlistNotification-notificationContainer{display:flex;justify-content:center;position:absolute;width:100%}.WatchlistNotification-notificationContainer .WatchlistNotification-notification{animation:WatchlistNotification-showAndFadeOut 3s linear;font-family:Proxima Nova,Helvetica,Arial,sans-serif;opacity:0;text-align:center;z-index:4000}.AddToWatchlistDropdownCheckbox-container{border-top:1px solid #bababa;display:block}.AddToWatchlistDropdownCheckbox-container:last-of-type{border-bottom:1px solid #bababa}@media (max-width:1019px){.AddToWatchlistDropdownCheckbox-chicletWatchlist.AddToWatchlistDropdownCheckbox-watchlistForSymbolTag{font-size:11px!important;height:32px!important;padding-left:8px!important}}.AddToWatchlistDropdownCheckbox-watchlist{align-items:center;color:#071d39;display:flex;font-size:14px;font-weight:700;padding:8px 29px;width:100%}.AddToWatchlistDropdownCheckbox-watchlist:first-child{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.AddToWatchlistDropdownCheckbox-watchlist.AddToWatchlistDropdownCheckbox-watchlistForSymbolTag{color:#002f6c;font-size:11px;font-weight:600;height:32px;padding-left:8px}@media (max-width:1019px){.AddToWatchlistDropdownCheckbox-watchlist.AddToWatchlistDropdownCheckbox-watchlistForSymbolTag{font-size:18px;height:50px;padding-left:30px}}.AddToWatchlistDropdownCheckbox-checkbox{border:1px solid #bababa;border-radius:2px;flex-shrink:0;height:14px;margin-right:12px;position:relative;width:14px}.AddToWatchlistDropdownCheckbox-watchlistNameForSymbolTag{line-height:normal;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.AddToWatchlistDropdownCheckbox-hasSymbols .AddToWatchlistDropdownCheckbox-checkbox:after{border-color:#071d39;border-style:solid;border-width:0 2px 2px 0;content:"";display:block;height:12px;left:5px;position:absolute;top:-4px;transform:rotate(45deg);width:5px}.AddToWatchlistDropdownCheckbox-hasSymbols .AddToWatchlistDropdownCheckbox-checkboxForSymbolTag{background:#2077b6;border:none}.AddToWatchlistDropdownCheckbox-hasSymbols .AddToWatchlistDropdownCheckbox-checkboxForSymbolTag:after{border-color:#fff;height:7px;left:5px;top:1px;width:3px}.AddToWatchlistDropdownCheckbox-isLoading{cursor:wait}.AddToWatchlistDropdownCheckbox-isLoading>*{opacity:.5}.AddToWatchlistDropdownCheckbox-error{color:#ce2b2b;display:block;font-size:12px;font-weight:600;padding:0 10px 8px 56px}.AddToWatchlistDropdownCheckboxes-notificationContainer{font-size:11px;line-height:18px;padding:2px 6px 0;top:150px}.AddToWatchlistDropdownCheckboxes-notificationContainer .AddToWatchlistDropdownCheckboxes-notification{background-color:#2077b6;border-radius:3px;box-shadow:0 1px 3px 1px #00000014;color:#fff;font-weight:700;line-height:16px;padding:10px;white-space:nowrap;width:224px}.AddToWatchlistDropdownCheckboxes-notificationContainer .AddToWatchlistDropdownCheckboxes-notification.AddToWatchlistDropdownCheckboxes-error{background-color:#ce2b2b;width:204px}@media (max-width:1019px){.AddToWatchlistDropdownCheckboxes-notificationContainer{top:165px}}.AddToWatchlistButton-container{display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;position:relative}.AddToWatchlistButton-watchlistContainer{display:inline-block}.AddToWatchlistButton-button{align-items:center;border:1px solid #002f6c;box-sizing:border-box;color:#002f6c;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;justify-content:center;line-height:12px;padding:8px}@media (min-width:1020px){.AddToWatchlistButton-button{padding:14px 15px}}.AddToWatchlistButton-button .AddToWatchlistButton-mobileText{font-size:26px;font-weight:600;line-height:12px}.AddToWatchlistButton-button .AddToWatchlistButton-desktopText{display:none}@media (min-width:1020px){.AddToWatchlistButton-button .AddToWatchlistButton-desktopText{display:initial;margin:0 10px 0 0}}.AddToWatchlistButton-button .AddToWatchlistButton-embeddedText{letter-spacing:1px;margin-right:10px}.AddToWatchlistButton-watchlistFromTagItem{border:.5px solid #cfd8e2;border-radius:7px;display:flex;position:relative}.AddToWatchlistButton-watchlistFromTagItem:hover{border:.5px solid #747474}.AddToWatchlistButton-watchlistFromTagItem.AddToWatchlistButton-dropdownVisible{border:.5px solid #cfd8e2}.AddToWatchlistButton-addWatchListFromTag{background-image:url(https://static-redesign.cnbcfm.com/dist/3d3257ad9e8a242b5362.svg);background-repeat:no-repeat;height:12px;width:12px}.AddToWatchlistButton-watchlistButton{align-items:center;color:#002f6c;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;line-height:12px;padding:8px 8px 8px 4px}.AddToWatchlistButton-watchlistButton.AddToWatchlistButton-dropdownOpen .AddToWatchlistButton-addWatchListFromTag,.AddToWatchlistButton-watchlistButton:focus .AddToWatchlistButton-addWatchListFromTag,.AddToWatchlistButton-watchlistButton:hover .AddToWatchlistButton-addWatchListFromTag{background-image:url(https://static-redesign.cnbcfm.com/dist/8eafdf125d3d82d5a92f.svg)}.QuoteStrip-container{font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin-top:-7px}@media (min-width:760px){.QuoteStrip-container{margin-top:0}}.QuoteStrip-changeDown{color:#424858;color:#ce2b2b;font-size:18px;font-weight:700;white-space:nowrap}@media (min-width:760px){.QuoteStrip-changeDown{font-size:25px;line-height:28px}}@media (min-width:1020px){.QuoteStrip-changeDown{font-size:20px;line-height:23px}}@media (min-width:1340px){.QuoteStrip-changeDown{font-size:32px;line-height:36px}}.QuoteStrip-changeUp{color:#424858;color:#008456;font-size:18px;font-weight:700;white-space:nowrap}@media (min-width:760px){.QuoteStrip-changeUp{font-size:25px;line-height:28px}}@media (min-width:1020px){.QuoteStrip-changeUp{font-size:20px;line-height:23px}}@media (min-width:1340px){.QuoteStrip-changeUp{font-size:32px;line-height:36px}}.QuoteStrip-changeIcon{display:inline;margin-right:10px}@media (min-width:1340px){.QuoteStrip-changeIcon{height:22px;margin-top:3px;width:22px}}.QuoteStrip-afterHoursIcon{display:inline;padding-right:10px}.QuoteStrip-unchanged{color:#424858;font-size:18px;font-size:22px;font-weight:700;white-space:nowrap}@media (min-width:760px){.QuoteStrip-unchanged{font-size:25px;line-height:28px}}@media (min-width:1020px){.QuoteStrip-unchanged{font-size:20px;line-height:23px}}@media (min-width:1340px){.QuoteStrip-unchanged{font-size:32px;line-height:36px}}.QuoteStrip-companyName{color:#002f6c;display:flex;font-size:24px;font-weight:700;justify-content:space-between;line-height:27px}.QuoteStrip-companyName .QuoteStrip-quoteTitle{font-size:inherit;margin:0}.QuoteStrip-companyName .QuoteStrip-quoteTitleLink{color:#002f6c;font-size:inherit;padding:0}.QuoteStrip-companyName .QuoteStrip-quoteTitleLink :hover{color:#005594}.QuoteStrip-companyName .QuoteStrip-name{display:table;padding:0 0 1px}.QuoteStrip-companyName .QuoteStrip-rightSideButtonsWrappers{display:flex;margin:10px 0 15px}.QuoteStrip-companyName a{padding:3px}@media (min-width:760px){.QuoteStrip-companyName{font-size:28px;line-height:30px}}@media (min-width:0px) and (max-width:759px){.QuoteStrip-companyName.QuoteStrip-companyName_quoteStripEnabled{flex-direction:column}}@media (min-width:1020px) and (max-width:1339px){.QuoteStrip-companyName.QuoteStrip-companyName_quoteStripEnabled{flex-direction:column}}.QuoteStrip-addToWatchlistButton{height:42px;min-width:42px}.QuoteStrip-symbolAndExchange{color:#747474;display:table;font-size:18px;font-weight:500;padding-bottom:2px}@media (min-width:760px){.QuoteStrip-symbolAndExchange{font-size:20px}}.QuoteStrip-quoteStripSubHeader{color:#bababa;font-size:14px;font-weight:600;line-height:18px}.QuoteStrip-extendedLastTradeTime,.QuoteStrip-lastTradeTime{color:#171717;font-size:16px;font-weight:600;line-height:18px}@media (min-width:760px){.QuoteStrip-extendedLastTradeTime,.QuoteStrip-lastTradeTime{padding-bottom:10px}}@media (min-width:1020px){.QuoteStrip-lastTradeTime{padding-bottom:15px}}.QuoteStrip-dataContainer{align-items:center;display:flex;flex-direction:row;justify-content:space-between;padding-top:5px}@media (min-width:760px){.QuoteStrip-dataContainer{padding-top:25px}}.QuoteStrip-extendedHours{border-top:1px solid #bababa;padding-top:10px}@media (min-width:1020px){.QuoteStrip-extendedHours{padding-top:5px}.QuoteStrip-extendedHours .QuoteStrip-lastTimeAndPriceContainer{width:58%}}@media (min-width:1340px){.QuoteStrip-extendedHours .QuoteStrip-lastTimeAndPriceContainer{width:66%}}@media (min-width:1020px){.QuoteStrip-extendedHours .QuoteStrip-lastTimeAndPriceSideDrawerContainer{width:58%}}@media (min-width:1340px){.QuoteStrip-extendedHours .QuoteStrip-lastTimeAndPriceSideDrawerContainer{width:50%}}.QuoteStrip-extendedHours .QuoteStrip-lastPrice{font-size:32px}@media (min-width:760px){.QuoteStrip-extendedHours .QuoteStrip-lastPrice{font-size:40px;line-height:45px;padding-right:40px}}@media (min-width:1020px){.QuoteStrip-extendedHours .QuoteStrip-lastPrice{font-size:25px;line-height:28px;padding-right:25px}}@media (min-width:1340px){.QuoteStrip-extendedHours .QuoteStrip-lastPrice{font-size:46px;line-height:52px;padding-right:30px}}@media (min-width:760px){.QuoteStrip-extendedHours .QuoteStrip-lastTradeTime{padding-bottom:0}}@media (min-width:1020px){.QuoteStrip-extendedHours .QuoteStrip-lastTradeTime{padding-bottom:10px}}@media (min-width:1340px){.QuoteStrip-extendedHours .QuoteStrip-lastTradeTime{padding-bottom:0}}.QuoteStrip-extendedHours .QuoteStrip-changeDown,.QuoteStrip-extendedHours .QuoteStrip-changeUp,.QuoteStrip-extendedHours .QuoteStrip-unchanged{font-size:18px;line-height:20px}@media (min-width:760px){.QuoteStrip-extendedHours .QuoteStrip-changeDown,.QuoteStrip-extendedHours .QuoteStrip-changeUp,.QuoteStrip-extendedHours .QuoteStrip-unchanged{font-size:20px;line-height:23px}}@media (min-width:1340px){.QuoteStrip-extendedHours .QuoteStrip-changeDown,.QuoteStrip-extendedHours .QuoteStrip-changeUp,.QuoteStrip-extendedHours .QuoteStrip-unchanged{font-size:25px;line-height:28px}}.QuoteStrip-extendedHours .QuoteStrip-fiftyTwoWeekRange,.QuoteStrip-extendedHours .QuoteStrip-volume{font-size:16px}@media (min-width:1020px){.QuoteStrip-extendedHours .QuoteStrip-fiftyTwoWeekRange,.QuoteStrip-extendedHours .QuoteStrip-volume{font-size:18px}}@media (min-width:1340px){.QuoteStrip-extendedHours .QuoteStrip-fiftyTwoWeekRange,.QuoteStrip-extendedHours .QuoteStrip-volume{font-size:16px}.QuoteStrip-extendedHours .QuoteStrip-changeIcon{height:21px;width:21px}}@media (min-width:760px){.QuoteStrip-extendedDataContainer{max-width:496px;padding-top:20px}}@media (min-width:1020px){.QuoteStrip-extendedDataContainer{max-width:460px;padding-bottom:8px}}@media (min-width:1340px){.QuoteStrip-extendedDataContainer{max-width:760px}}.QuoteStrip-extendedDataContainer .QuoteStrip-lastTimeAndPriceContainer{width:100%}.QuoteStrip-extendedDataContainer .QuoteStrip-volume{font-size:18px}@media (min-width:760px){.QuoteStrip-extendedDataContainer .QuoteStrip-volume{font-size:16px}}@media (min-width:1020px){.QuoteStrip-extendedDataContainer .QuoteStrip-volume{font-size:18px}}.QuoteStrip-extendedDataContainer .QuoteStrip-volumeContainer{padding-top:25px}@media (min-width:1020px){.QuoteStrip-extendedDataContainer .QuoteStrip-volumeContainer{padding-top:15px}}.QuoteStrip-dataLabel{color:#747474;font-size:18px;font-weight:600;padding-bottom:10px}.QuoteStrip-extendedLabel{color:#e8802a}.QuoteStrip-lastPriceStripContainer{align-items:center;display:flex;flex-wrap:wrap}.QuoteStrip-lastPrice{color:#171717;font-size:40px;font-weight:700;padding-right:20px;pointer-events:none}.QuoteStrip-lastPrice a{color:#171717;text-decoration:none}@media (min-width:760px){.QuoteStrip-lastPrice{font-size:46px;line-height:52px}}@media (min-width:1020px){.QuoteStrip-lastPrice{font-size:32px;line-height:36px}}@media (min-width:1340px){.QuoteStrip-lastPrice{font-size:51px;line-height:42px}}.QuoteStrip-lastTimeAndPriceContainer{width:100%}@media (min-width:760px){.QuoteStrip-lastTimeAndPriceContainer{width:53%}}@media (min-width:1020px){.QuoteStrip-lastTimeAndPriceContainer{width:51%}}@media (min-width:1340px){.QuoteStrip-lastTimeAndPriceContainer{width:67%}}.QuoteStrip-lastTimeAndPriceSideDrawerContainer{width:100%}@media (min-width:760px){.QuoteStrip-lastTimeAndPriceSideDrawerContainer{width:53%}}@media (min-width:1020px){.QuoteStrip-lastTimeAndPriceSideDrawerContainer{width:51%}}@media (min-width:1340px){.QuoteStrip-lastTimeAndPriceSideDrawerContainer{width:50%}}.QuoteStrip-fiftyTwoWeek,.QuoteStrip-volumeContainer{display:none}@media (min-width:760px){.QuoteStrip-fiftyTwoWeek,.QuoteStrip-volumeContainer{display:block;padding-top:10px}}.QuoteStrip-fiftyTwoWeekRange,.QuoteStrip-volume{font-size:18px;font-weight:600;line-height:20px}.QuoteStrip-watchLiveBtn{align-items:center;background:none;border:1px solid #002f6c;border-radius:0;color:#002f6c;display:flex;font-weight:600;height:42px;line-height:12px;margin:0 0 0 18px;padding:14px 5px}.QuoteStrip-watchLiveBtn,.QuoteStrip-watchLiveLogo{-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:100%;box-sizing:border-box;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px}.QuoteStrip-watchLiveLogo{color:#fff!important;cursor:pointer;display:block;font-weight:700;width:18px}.QuoteStrip-watchLiveLink{-webkit-text-size-adjust:100%;background:#ce2b2b;color:#fff!important;cursor:pointer;display:flex!important;font-weight:700;height:30px;justify-content:space-evenly!important;margin-right:.5rem;padding:6px 4px;text-decoration:none;width:4rem}.QuoteStrip-watchLiveBtnV2,.QuoteStrip-watchLiveLink{-webkit-font-smoothing:antialiased;align-items:center;box-sizing:border-box;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px}.QuoteStrip-watchLiveBtnV2{-webkit-text-size-adjust:100%;background:linear-gradient(#fff,#fff) padding-box,linear-gradient(to bottom right,#fccc12,#ff7112,#ef1541,#6e55dc,#069de0,#05ac3f) border-box;border:1px solid #0000;border-radius:4px;bottom:4px;color:#002f6c;display:flex;font-weight:600;height:48px;line-height:12px;margin:0 0 0 18px;padding:4px;position:relative}@media (max-width:759px){.QuoteStrip-watchLiveBtnV2{width:100%}}.QuoteStrip-watchLiveLinkV2{-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:100%;align-items:center;background:#0053cf;border-radius:2px;box-sizing:border-box;color:#fff!important;cursor:pointer;display:flex!important;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-weight:700;height:40px;justify-content:center!important;line-height:17.05px;margin-right:.5rem;padding:12px!important;text-decoration:none;width:127px}.QuoteStrip-watchLiveLinkV2:hover{background:#002f6c}.QuoteStrip-livePlayIcon{animation:QuoteStrip-pulse 1.5s infinite;animation-timing-function:ease-in-out;background-color:#fff;border-radius:100%;box-shadow:0 0 0 0 #fff;display:inline-block;height:8px;margin-right:7px;position:relative;transform:scale(1);width:8px}@keyframes QuoteStrip-pulse{0%{box-shadow:0 0 0 1px #0053cf;opacity:1}70%{border:1px solid #0053cf;box-shadow:0 0 0 1px #fff;opacity:.9;padding:2px;transform:scale(1.2)}to{box-shadow:0 0 0 1px #fff;opacity:1;transform:scale(1)}}.QuoteStrip-liveShowTitleV2{color:#002f6c;font-size:14px;font-weight:800;line-height:18px;text-transform:none}@media (prefers-color-scheme:dark){.webview .QuoteStrip-extendedLastTradeTime,.webview .QuoteStrip-lastPrice,.webview .QuoteStrip-lastTradeTime{color:#dce0e4}}.DownloadChartPopup-wrapper{background-color:#16161680;display:block;height:100%;left:0;position:absolute;top:0;visibility:visible;width:100%}.DownloadChartPopup-wrapper input{font-size:26px}.DownloadChartPopup-wrapper .DownloadChartPopup-message{font-family:Proxima Nova Semi Bold,Helvetica,Arial,sans-serif;font-size:22px;width:710px}.DownloadChartPopup-wrapper .DownloadChartPopup-closeBtnWrapper{float:right;margin:0 0 10px}.DownloadChartPopup-wrapper .DownloadChartPopup-closeBtnWrapper .DownloadChartPopup-closeBtn{background:#fff;color:#9b9b9b;cursor:pointer;font-size:24px;font-weight:700;left:10px;line-height:15px;position:relative;text-align:center}.DownloadChartPopup-wrapper .DownloadChartPopup-downloadChartModal{background:#fff;border-radius:5px;box-shadow:0 0 10px #0006;margin:0 auto;padding:10px 30px 10px 20px;position:relative;top:10%;width:748px;z-index:41}.DownloadChartPopup-wrapper .DownloadChartPopup-downloadChartModal .DownloadChartPopup-hiddenCanvas{display:none}.DownloadChartPopup-wrapper .DownloadChartPopup-downloadChartModal .DownloadChartPopup-visibleCanvas{display:block}.DownloadChartPopup-wrapper .DownloadChartPopup-downloadChartModal .DownloadChartPopup-downloadButton{float:right}.DownloadChartPopup-wrapper .DownloadChartPopup-downloadChartModal .DownloadChartPopup-downloadButton a{background:#3da7f1;border:none;border-radius:4px;font:14px Proxima Nova Semi Bold,Helvetica,Arial,sans-serif;font-weight:800;height:30px;padding:8px;position:relative;text-transform:uppercase;top:-55px}.DownloadChartPopup-wrapper .DownloadChartPopup-downloadChartModal .DownloadChartPopup-downloadButton a:hover{color:#000}.DownloadChartButton-button{align-items:center;border:1px solid #002f6c;box-sizing:border-box;color:#002f6c;display:none;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;height:42px;line-height:12px;margin:0 18px 0 0;padding:14px 15px}@media (min-width:1020px){.DownloadChartButton-button{display:flex}}.DownloadChartButton-button .DownloadChartButton-icon{margin:0 0 0 10px;width:12px}.Summary-container{margin:0 auto 32px;width:960px}@media (max-width:1339px){.Summary-container{width:630px}}@media (max-width:1019px){.Summary-container{width:678px}}@media (max-width:759px){.Summary-container{margin:0 auto 30px;min-width:318px;width:100%}}.Summary-sideDrawerContainer{width:auto!important}.Summary-adContainer{display:block;height:250px}.Summary-adContainer+.Summary-subsection{margin-top:30px}@media (max-width:759px){.Summary-adContainer{padding-top:0}.Summary-adContainer+.Summary-subsection{margin-top:32px}}@media (min-width:1020px){.Summary-adContainer{display:none}}.Summary-subsection{margin-top:32px;width:100%}@media (max-width:759px){.Summary-subsection{margin-top:24px}}.Summary-title{color:#002f6c;font-size:18px;font-weight:700;height:30px;line-height:22px;margin:0;text-transform:uppercase}.Summary-label,.Summary-title{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-style:normal}.Summary-label{color:#747474;font-size:16px;font-weight:600;line-height:18px;text-transform:capitalize}@media (max-width:759px){.Summary-label{color:#171717}}.Summary-value{color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-style:normal;font-weight:700;line-height:18px;margin-left:8px;pointer-events:none}.Summary-value a{color:#171717;text-decoration:none}.Summary-data{grid-column-gap:30px;display:grid;width:100%}.Summary-stat{align-items:center;border-bottom:1px solid #d9d9d9;display:flex;font-size:14px;font-weight:600;justify-content:space-between}@media (max-width:759px){.Summary-stat{border-bottom:none}.Summary-stat:nth-child(odd){background-color:#f8f8f8}}.Summary-exchangeTradedFund,.Summary-stock{grid-auto-flow:column;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(5,1fr);height:200px}@media (max-width:1339px){.Summary-exchangeTradedFund,.Summary-stock{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(8,1fr);height:320px}}@media (max-width:1019px){.Summary-exchangeTradedFund,.Summary-stock{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(5,1fr);height:240px}}@media (max-width:759px){.Summary-exchangeTradedFund,.Summary-stock{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(15,1fr);height:480px}}@media (min-width:1340px){.Summary-exchangeTradedFund .Summary-_10DayAverageVolume,.Summary-stock .Summary-_10DayAverageVolume{grid-column:1/2;grid-row:5/6}}@media (min-width:760px) and (max-width:1019px){.Summary-exchangeTradedFund .Summary-_10DayAverageVolume,.Summary-stock .Summary-_10DayAverageVolume{grid-column:1/2;grid-row:5/6}}@media (min-width:1340px){.Summary-exchangeTradedFund .Summary-beta,.Summary-stock .Summary-beta{grid-column:2/3;grid-row:5/6}}@media (min-width:760px) and (max-width:1019px){.Summary-exchangeTradedFund .Summary-beta,.Summary-stock .Summary-beta{grid-column:2/3;grid-row:5/6}}@media (min-width:1020px) and (max-width:1179px){.Summary-exchangeTradedFund .Summary-_10DayAverageVolume{grid-column:2/3;grid-row:5/6}}@media (min-width:1180px) and (max-width:1339px){.Summary-exchangeTradedFund .Summary-_10DayAverageVolume{grid-column:2/3;grid-row:5/6}}.Summary-ratios{grid-auto-flow:column;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(3,1fr);height:120px}@media (max-width:1339px){.Summary-ratios{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(5,1fr);height:200px}}@media (max-width:1019px){.Summary-ratios{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(3,1fr);height:144px}}@media (max-width:759px){.Summary-ratios{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(9,1fr);height:288px}}@media (min-width:1340px){.Summary-ratios .Summary-revenue{grid-column:2/3;grid-row:1/2}}@media (min-width:760px) and (max-width:1019px){.Summary-ratios .Summary-revenue{grid-column:2/3;grid-row:1/2}}@media (min-width:1340px){.Summary-ratios .Summary-roe{grid-column:2/3;grid-row:2/3}}@media (min-width:760px) and (max-width:1019px){.Summary-ratios .Summary-roe{grid-column:2/3;grid-row:2/3}}.Summary-events-stock{grid-auto-flow:row;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(2,1fr);height:80px}@media (max-width:1339px){.Summary-events-stock{grid-auto-flow:column;grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(3,1fr);height:120px}}@media (max-width:1019px){.Summary-events-stock{grid-auto-flow:row;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(2,1fr);height:96px}}@media (max-width:759px){.Summary-events-stock{grid-auto-flow:column;grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(5,1fr);height:160px}}.Summary-events-exchangeTradedFund{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(2,1fr);height:80px}@media (max-width:1339px){.Summary-events-exchangeTradedFund{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(2,1fr);height:80px}}@media (max-width:1019px){.Summary-events-exchangeTradedFund{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(2,1fr);height:96px}}@media (max-width:759px){.Summary-events-exchangeTradedFund{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(4,1fr);height:128px}}.Summary-mutualFund{grid-auto-flow:column;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(5,1fr);height:200px}@media (max-width:1339px){.Summary-mutualFund{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(7,1fr);height:280px}}@media (max-width:1019px){.Summary-mutualFund{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(5,1fr);height:240px}}@media (max-width:759px){.Summary-mutualFund{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(14,1fr);height:448px}}.Summary-index{grid-auto-flow:column;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(4,1fr);height:160px}@media (max-width:1339px){.Summary-index{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(5,1fr);height:200px}}@media (max-width:1019px){.Summary-index{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(4,1fr);height:192px}}@media (max-width:759px){.Summary-index{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(10,1fr);height:320px}}@media (min-width:1020px) and (max-width:1179px){.Summary-index .Summary-ytdPercChange{grid-column:1/2;grid-row:5/6}}@media (min-width:1180px) and (max-width:1339px){.Summary-index .Summary-ytdPercChange{grid-column:1/2;grid-row:5/6}}.Summary-ftse{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(1,1fr);height:40px}@media (max-width:1339px){.Summary-ftse{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(1,1fr);height:40px}}@media (max-width:1019px){.Summary-ftse{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(1,1fr);height:48px}}@media (max-width:759px){.Summary-ftse{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(2,1fr);height:64px}}.Summary-governmentBond{grid-auto-flow:column;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(4,1fr);height:160px}@media (max-width:1339px){.Summary-governmentBond{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(6,1fr);height:240px}}@media (max-width:1019px){.Summary-governmentBond{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(4,1fr);height:192px}}@media (max-width:759px){.Summary-governmentBond{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(12,1fr);height:384px}}@media (min-width:1180px) and (max-width:1339px){.Summary-governmentBond .Summary-coupon{grid-column:1/2;grid-row:5/6}}@media (min-width:1020px) and (max-width:1179px){.Summary-governmentBond .Summary-coupon{grid-column:1/2;grid-row:5/6}}@media (min-width:1180px) and (max-width:1339px){.Summary-governmentBond .Summary-maturity{grid-column:1/2;grid-row:6/7}}@media (min-width:1020px) and (max-width:1179px){.Summary-governmentBond .Summary-maturity{grid-column:1/2;grid-row:6/7}}.Summary-cnbcSynthetic,.Summary-forex{grid-auto-flow:row;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(2,1fr);height:80px}@media (max-width:1339px){.Summary-cnbcSynthetic,.Summary-forex{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(2,1fr);height:80px}}@media (max-width:1019px){.Summary-cnbcSynthetic,.Summary-forex{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(2,1fr);height:96px}}@media (max-width:759px){.Summary-cnbcSynthetic,.Summary-forex{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(4,1fr);height:128px}}@media (min-width:760px){.Summary-cnbcSynthetic .Summary-prevClose,.Summary-forex .Summary-prevClose{grid-column:1/2;grid-row:2/3}}.Summary-future{grid-auto-flow:column;grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(3,1fr);height:120px}@media (max-width:1339px){.Summary-future{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(5,1fr);height:200px}}@media (max-width:1019px){.Summary-future{grid-template-columns:repeat(3,1fr);grid-template-rows:repeat(3,1fr);height:144px}}@media (max-width:759px){.Summary-future{grid-template-columns:repeat(1,1fr);grid-template-rows:repeat(9,1fr);height:288px}}@media (min-width:1180px) and (max-width:1339px){.Summary-future .Summary-_10DayAverageVolume{grid-column:2/3;grid-row:2/3}}@media (min-width:1020px) and (max-width:1179px){.Summary-future .Summary-_10DayAverageVolume{grid-column:2/3;grid-row:2/3}}.Summary-analystConsensusContainer{margin-top:30px}@media (min-width:760px) and (max-width:1019px){.Summary-_52WeekHighDate .Summary-label,.Summary-_52WeekLowDate .Summary-label{max-width:90px}}.ErrorHandler-container{background:#ff5053;height:100%;position:relative;width:100%;word-break:break-word}.CharitableTrustHeader-sectionDivider{margin-top:16px}.CharitableTrustHeader-sectionDivider .CharitableTrustHeader-headerWrap{display:flex;margin-bottom:20px;margin-top:20px}.CharitableTrustHeader-sectionDivider .CharitableTrustHeader-headerWrap .CharitableTrustHeader-tableHeader{color:#002f6c;font-size:24px;font-weight:900;letter-spacing:.25px;line-height:24px}@media (max-width:759px){.CharitableTrustHeader-sectionDivider .CharitableTrustHeader-headerWrap .CharitableTrustHeader-tableHeader{font-size:20px;line-height:20px}}.CharitableTrustHeader-sectionDivider .CharitableTrustHeader-smallSpan{background-color:#071d39;display:block;height:6px;width:110px}@media (max-width:360px){.CharitableTrustHeader-sectionDivider .CharitableTrustHeader-smallSpan{width:88px}}.CharitableTrustHeader-sectionDivider .CharitableTrustHeader-border{background-color:#747474;display:block;height:1px;width:100%}.TrustActivityTable-trustActivityTable{display:flex;flex-wrap:wrap;max-width:1000px}.TrustActivityTable-activityTable{max-height:170px;max-width:1000px;overflow-x:hidden;overflow-y:auto;transition:max-height .3s ease-out;width:100%}@media (max-width:320px){.TrustActivityTable-activityTable{overflow-x:auto}}.TrustActivityTable-activityTable.TrustActivityTable-noActivity{align-items:center;display:flex;overflow-y:hidden;padding-right:20px;width:50%}@media (max-width:550px){.TrustActivityTable-activityTable.TrustActivityTable-noActivity{width:100%}}.TrustActivityTable-activityTable::-webkit-scrollbar{height:3px;width:3px}.TrustActivityTable-activityTable::-webkit-scrollbar-track{background:#d9d9d9;border-radius:3px}.TrustActivityTable-activityTable::-webkit-scrollbar-thumb{background:#9e9e9e}.TrustActivityTable-activityRow{align-items:center;background-color:#cfd8e240;border-left:3px solid #0496ff;border-radius:3px;display:flex;height:36px;margin-bottom:4px;margin-right:8px;min-width:310px;position:relative}.TrustActivityTable-activityRow:last-child{margin-bottom:0}.TrustActivityTable-activityLogo{align-items:center;display:flex;justify-content:center;min-width:48px;width:48px}@media (max-width:550px){.TrustActivityTable-activityLogo{min-width:40px;width:40px}}.TrustActivityTable-activityLogo span{background-color:#071d39;height:16px;width:16px}.TrustActivityTable-activityLogo .TrustActivityTable-tradeAlertIcon{mask-image:url(https://static-redesign.cnbcfm.com/dist/aad91182e297b128069c.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/aad91182e297b128069c.svg)}.TrustActivityTable-activityLogo .TrustActivityTable-earningsIcon{mask-image:url(https://static-redesign.cnbcfm.com/dist/3f94109d9f51677fee8d.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/3f94109d9f51677fee8d.svg)}.TrustActivityTable-activityLogo .TrustActivityTable-dividendIcon{mask-image:url(https://static-redesign.cnbcfm.com/dist/3635286e4568e237edcf.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/3635286e4568e237edcf.svg)}.TrustActivityTable-activityLogo .TrustActivityTable-highIcon{mask-image:url(https://static-redesign.cnbcfm.com/dist/4ecf1f23053f2b129fc4.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/4ecf1f23053f2b129fc4.svg)}.TrustActivityTable-activityLogo .TrustActivityTable-lowIcon{mask-image:url(https://static-redesign.cnbcfm.com/dist/68d05358c2f6a94bf78a.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/68d05358c2f6a94bf78a.svg)}.TrustActivityTable-activityType{color:#071d39;font-size:16px;font-weight:600;min-width:25%;padding:0 5px;white-space:nowrap}@media (max-width:760px){.TrustActivityTable-activityType{flex-grow:1;font-size:14px;margin-right:15px;min-width:25%}}@media (max-width:550px){.TrustActivityTable-activityType{margin-right:0;min-width:50%;padding:0}}.TrustActivityTable-quoteWrapper{max-width:20%}@media (max-width:760px){.TrustActivityTable-quoteWrapper{max-width:25%}}@media (max-width:759px){.TrustActivityTable-quoteWrapper{width:unset}}.TrustActivityTable-activityQuoteData{border:1px solid #9e9e9e;border-radius:8px;display:flex;font-size:12px;font-weight:800;justify-content:center;padding:8px;white-space:nowrap;width:130px}@media (max-width:550px){.TrustActivityTable-activityQuoteData{width:47px}}.TrustActivityTable-activityQuoteData:hover{background-color:#071d39}.TrustActivityTable-activityQuoteData:hover .TrustActivityTable-quoteGain{color:#34d07a}.TrustActivityTable-activityQuoteData:hover .TrustActivityTable-quoteDecline{color:#e64d55}.TrustActivityTable-activityQuoteData .TrustActivityTable-symbolDecline,.TrustActivityTable-activityQuoteData .TrustActivityTable-symbolGain{color:#071d39;margin-right:8px}.TrustActivityTable-activityQuoteData:hover .TrustActivityTable-symbolDecline,.TrustActivityTable-activityQuoteData:hover .TrustActivityTable-symbolGain{color:#fff}@media (max-width:550px){.TrustActivityTable-activityQuoteData:hover .TrustActivityTable-symbolDecline{color:#e64d55}.TrustActivityTable-activityQuoteData:hover .TrustActivityTable-symbolGain{color:#34d07a}.TrustActivityTable-activityQuoteData .TrustActivityTable-symbolGain{color:#008456;margin-right:0}.TrustActivityTable-activityQuoteData .TrustActivityTable-symbolDecline{color:#ce2b2b;margin-right:0}}.TrustActivityTable-activityQuoteData .TrustActivityTable-quoteGain{color:#008456}.TrustActivityTable-activityQuoteData .TrustActivityTable-quoteDecline{color:#ce2b2b}.TrustActivityTable-activityQuoteData .TrustActivityTable-quoteDecline span:nth-child(2),.TrustActivityTable-activityQuoteData .TrustActivityTable-quoteGain span:nth-child(2){margin-left:4px}@media (max-width:550px){.TrustActivityTable-activityQuoteData .TrustActivityTable-quoteDecline,.TrustActivityTable-activityQuoteData .TrustActivityTable-quoteGain{display:none}}.TrustActivityTable-descriptionWrap{max-width:calc(75% - 98px)}@media (min-width:550px){.TrustActivityTable-descriptionWrapWithQuote{width:calc(65% - 98px)}}@media (max-width:550px){.TrustActivityTable-descriptionWrapWithQuote{max-width:25%}}@media (min-width:1020px){.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription{margin-left:64px!important}}@media (max-width:1020px){.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription{margin-left:0;width:calc(65% - 98px)}}@media (max-width:760px){.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription{display:none}}@media (min-width:760px) and (max-width:1019px){.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription{text-align:center}}.TrustActivityTable-descriptionWrap{min-width:0}.TrustActivityTable-descriptionWrap,.TrustActivityTable-descriptionWrapWithQuote{display:flex;font-size:16px;justify-content:space-between;line-height:28px}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityLink,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityLink{font-family:Lyon Text;max-width:100%}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityDescription,.TrustActivityTable-descriptionWrap .TrustActivityTable-activityLink a,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityLink a{display:block;flex:1 2 auto;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityDescription,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription{color:#071d39;font-family:Proxima Nova}@media (max-width:760px){.TrustActivityTable-descriptionWrap .TrustActivityTable-activityDescription,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription{text-align:center}}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityLink a,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityLink a{color:#2077b6;position:relative}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityDescription a,.TrustActivityTable-descriptionWrap .TrustActivityTable-activityLink a,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription a,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityLink a{text-decoration:underline;-webkit-text-decoration-color:#2077b6;text-decoration-color:#2077b6}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityDescription a:hover,.TrustActivityTable-descriptionWrap .TrustActivityTable-activityLink a:hover,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription a:hover,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityLink a:hover{color:#fcb700;-webkit-text-decoration-color:#fcb700;text-decoration-color:#fcb700}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityLink a:before,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityLink a:before{bottom:5px;content:"";display:inline-block;left:0;position:absolute;width:99.5%}.TrustActivityTable-closeButton{align-items:center;display:flex;justify-content:flex-end;padding-left:20px;padding-right:14px;width:100%}@media (max-width:550px){.TrustActivityTable-closeButton{padding-left:0}}.TrustActivityTable-closeButton .TrustActivityTable-closeIcon{background-color:#071d39;height:16px;mask-image:url(https://static-redesign.cnbcfm.com/dist/ca2bb28892b3278d0e95.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/ca2bb28892b3278d0e95.svg);width:16px}@media (max-width:550px){.TrustActivityTable-closeButton .TrustActivityTable-closeIcon{margin-left:10px}}.TrustActivityTable-activityFooter{align-items:center;display:flex;flex:1;font-size:16px;justify-content:flex-end;line-height:28px;margin-top:16px;max-width:1000px;overflow-y:hidden;padding-right:1%;text-align:right;transition:max-height .3s ease-out;width:100%}.TrustActivityTable-activityFooter .TrustActivityTable-recentAlertMessage{color:#2077b6;font-family:Lyon Text;text-decoration:underline}.TrustActivityTable-noActivity+.TrustActivityTable-activityFooter{flex:unset;line-height:36px;margin-top:0;width:max-content}.TrustActivityTable-noActivityMessage{color:#071d39;font-size:16px;font-weight:600;line-height:24px}.TrustActivityTable-hiddenRowLink{height:36px;position:absolute;right:50px;top:0;width:calc(100% - 50px);z-index:0}@media (min-width:760px){.TrustActivityTable-hiddenRowLink{display:none}}.TrustActivityTable-closeButtonWrap{flex-grow:1}@media (max-width:759px){.TrustActivityTable-closeButtonWrap{display:flex;justify-content:flex-end}}@media (max-width:760px){.TrustActivityTable-activityDescription,.TrustActivityTable-viewQuote{display:none!important}}.HistoricalTrustActivity-historicalTrustActivity{margin-bottom:50px;margin-top:40px}.HistoricalTrustActivity-filterButtonWrap{overflow-x:auto;white-space:nowrap}.HistoricalTrustActivity-filterButtonWrap::-webkit-scrollbar{height:0;width:0}.HistoricalTrustActivity-filterButtonWrap::-webkit-scrollbar-track{background:#0000}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButton,.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButtonActive{border:1px solid #002f6c;border-radius:20px;height:28px;margin-left:12px}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButton:first-child,.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButtonActive:first-child{margin-left:0}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButton span,.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButtonActive span{color:#002f6c;display:block;font-size:12px;font-weight:600;letter-spacing:.79px;line-height:12px;margin:5px 10px;position:none;text-transform:uppercase}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButton{background-color:#fff}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButton span{color:#002f6c}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButtonActive{background-color:#002f6c}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButtonActive span{color:#fff}.HistoricalTrustActivity-date{color:#071d39;font-family:Proxima Nova;font-size:16px;font-weight:600;line-height:20px;margin-bottom:20px;margin-top:28px}.HistoricalTrustActivity-loadMoreWrap{display:flex;justify-content:flex-end;margin-top:20px;max-width:1000px;width:100%}.HistoricalTrustActivity-loadMoreWrap>a{margin-right:8px}.TodaysTrustActivity-trustActivity{margin-bottom:50px;margin-top:20px;max-width:100%;overflow:hidden}.TodaysTrustActivity-dropdownButton{align-items:center;color:#fff;display:flex}.TodaysTrustActivity-dropdownButton:active{-webkit-tap-highlight-color:transparent}.TodaysTrustActivity-dropdownButton .TodaysTrustActivity-dropdownArrow,.TodaysTrustActivity-dropdownButton .TodaysTrustActivity-dropdownUpArrow{background:#071d39;height:11px;margin-left:20px;width:19px}.TodaysTrustActivity-dropdownButton .TodaysTrustActivity-dropdownArrow,.TodaysTrustActivity-dropdownButton .TodaysTrustActivity-dropdownUpArrow{mask-image:url(https://static-redesign.cnbcfm.com/dist/b6891ac795b61eeb366b.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/b6891ac795b61eeb366b.svg)}.TodaysTrustActivity-dropdownButton .TodaysTrustActivity-dropdownUpArrow{transform:scaleY(-1)}.LivePill-watchLivePill{bottom:0;position:relative;vertical-align:initial;width:auto!important}.InvestingClubPill-investingClubPillLink,.LivePill-watchLivePill{display:inline-block;padding-right:4px}.InvestingClubPill-investingClubPill{bottom:0;display:inline-block;position:relative;vertical-align:initial;width:auto}.LatestNews-header{border-top:5px solid #002f6c}.LatestNews-header h2{color:#002f6c;font-size:24px;font-weight:900;letter-spacing:.5px;margin:12px 0 16px;text-transform:uppercase}@media (max-width:359px){.LatestNews-header h2{font-size:18px}}.LatestNews-item{border-bottom:1px solid #dedede;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin:0 0 12px;padding:0 0 10px}.LatestNews-item:last-child{margin:0 0 30px}.LatestNews-item:before{background:#fcb700;border-radius:100%;content:"";display:block;flex-shrink:0;height:8px;margin:7px 12px 0 0;width:8px}.LatestNews-item.LatestNews-iconCleared:before{background:none}.LatestNews-container{display:flex;flex-direction:column;margin:0 12px 0 0}.LatestNews-headline{color:#171717;font-size:16px;font-weight:700;line-height:18px;margin:0 10px 0 0}.LatestNews-videoIcon{display:inline;margin:0 0 -3px 5px;width:16px}.LatestNews-wrapper{white-space:nowrap}@media (min-width:360px) and (max-width:759px){.LatestNews-wrapper{display:block}}.LatestNews-source,.LatestNews-timestamp{color:#747474;display:inline-flex;font-size:12px;font-weight:700;letter-spacing:.2px;text-transform:uppercase}.LatestNews-investingClubPill,.LatestNews-proPill,.LatestNews-watchLivePill{margin-right:4px;padding:0!important;transform:translateY(2px)}.LatestNews-source:before{content:"-";display:block;margin:0 5px}@media (max-width:1019px){.LatestNews-isHomePage{background:#f7f7f7;padding:1px 16px 16px}}@media (min-width:1020px){.LatestNews-isHomePage{border-bottom:5px solid #002f6c}.LatestNews-isHomePage:after{background:linear-gradient(#fff0,#fff);bottom:5px;content:"";display:block;height:100px;pointer-events:none;position:absolute;width:96%}}.LatestNews-isHomePage.LatestNews-hideGradient:after{display:none}.LatestNews-isHomePage .LatestNews-header{border-top:none}@media (min-width:1020px){.LatestNews-isHomePage .LatestNews-header{border-top:1px solid #747474}.LatestNews-isHomePage .LatestNews-header:before{border-top:6px solid #0089d0;content:"";display:block;margin:-6px 0 0;width:110px}.LatestNews-isHomePage .LatestNews-header h2{font-size:18px;margin:10px 0}}.LatestNews-isHomePage .LatestNews-headline{font-weight:600;order:2}.LatestNews-isHomePage .LatestNews-headline:hover{color:#171717;text-decoration:underline}@media (min-width:1020px){.LatestNews-isHomePage .LatestNews-list{max-height:238px;overflow-y:auto;position:relative}}@media (min-width:1340px){.LatestNews-isHomePage .LatestNews-list{max-height:352px}}.LatestNews-isHomePage .LatestNews-item:last-child{border-bottom:none;margin:0 0 5px;padding:0 0 5px}.LatestNews-isHomePage .LatestNews-headlineWrapper{order:2}.LatestNews-isHomePage .LatestNews-wrapper{display:block;order:1}.LatestNews-isHomePage .LatestNews-visitedIcon{margin:2px 0 0}.LatestNews-isHomePage .LatestNews-source,.LatestNews-isHomePage .LatestNews-timestamp{letter-spacing:1.2px}@media (min-width:1020px){.LatestNews-isHomePage .LatestNews-buttonContainer{display:none}div.LatestNews-isIntlHomepage .LatestNews-list{max-height:378px}}@media (min-width:1340px){div.LatestNews-isIntlHomepage .LatestNews-list{max-height:472px}}@media (min-width:1020px){.LatestNews-noWatchLiveAbove .LatestNews-list{max-height:380px}}@media (min-width:1340px){.LatestNews-noWatchLiveAbove .LatestNews-list{max-height:472px}}.LatestNews-button,.LatestNews-newsTabButton{align-items:center;background:#fff;border:1px solid #002f6c;color:#002f6c;display:flex;font-family:Proxima Nova,sans-serif;font-size:14px;font-weight:600;justify-content:center;letter-spacing:1.09px;margin:15px 0;padding:10px;text-transform:uppercase;transition:background .15s,color .15s;width:100%}.LatestNews-button:after,.LatestNews-newsTabButton:after{border-bottom:2px solid #002f6c;border-right:2px solid #002f6c;content:"";display:block;height:7px;margin:-5px 0 0 7px;transform:rotate(45deg);transition:border .15s;width:7px}.LatestNews-button:hover,.LatestNews-newsTabButton:hover{background:#002f6c;color:#fff}.LatestNews-button:hover:after,.LatestNews-newsTabButton:hover:after{border-bottom-color:#fff;border-right-color:#fff}@media (min-width:760px){.LatestNews-button,.LatestNews-newsTabButton{margin:15px auto;padding:10px 30px;width:auto}}@media (min-width:1020px){.LatestNews-button,.LatestNews-newsTabButton{display:none}}.LatestNews-newsTabButton{display:none;margin:0 auto 30px}@media (min-width:760px){.LatestNews-newsTabButton{display:flex}}.LatestNews-tradeAlertLabel{background-color:#fff;border:.5px solid #071d39;border-radius:4px;color:#071d39;display:inline-block;font-family:Proxima Nova,sans-serif;font-size:11px;font-style:normal;font-weight:600;line-height:10px;margin-right:4px;margin-top:2px;padding:2.5px 4px;vertical-align:top}.QuoteNewsWithFilters-filterButtonWrap{margin:16px 0;overflow-x:auto;white-space:nowrap}.QuoteNewsWithFilters-filterButtonWrap::-webkit-scrollbar{height:0;width:0}.QuoteNewsWithFilters-filterButtonWrap::-webkit-scrollbar-track{background:#0000}.QuoteNewsWithFilters-filterButtonWrap .QuoteNewsWithFilters-filterButton{background-color:#fff;border:1px solid #002f6c;border-radius:20px;height:28px;margin-left:12px}.QuoteNewsWithFilters-filterButtonWrap .QuoteNewsWithFilters-filterButton:first-child{margin-left:0}.QuoteNewsWithFilters-filterButtonWrap .QuoteNewsWithFilters-filterButton span{color:#002f6c;display:block;font-size:12px;font-weight:600;letter-spacing:.79px;line-height:12px;margin:5px 10px;pointer-events:none;position:none;text-transform:uppercase}.QuoteNewsWithFilters-filterButtonWrap .QuoteNewsWithFilters-filterButtonActive{background-color:#002f6c}.QuoteNewsWithFilters-filterButtonWrap .QuoteNewsWithFilters-filterButtonActive span{color:#fff}.TableHeaderContent-headerRow .TableHeaderContent-headerCell,.TableHeaderContent-headerRow .TableHeaderContent-headerCellRight{background:#27313c;border-right:1px solid #fff;color:#f1f1f1;font-weight:500;line-height:1;padding:16px 8px;text-transform:uppercase}.TableHeaderContent-headerRow .TableHeaderContent-headerSortLabel{color:#f1f1f1!important;width:100%}.TableHeaderContent-headerRow .TableHeaderContent-headerSortLabel .TableHeaderContent-active,.TableHeaderContent-headerRow .TableHeaderContent-headerSortLabel svg{color:#f1f1f1!important;margin-left:auto;margin-right:0}.TableHeaderContent-headerRow .TableHeaderContent-headerSortLabel:hover svg{background:#fff;border-radius:50%;color:#27313c!important;height:16px;margin-left:auto;margin-right:0;opacity:1;width:16px}.TableHeaderContent-headerRow .TableHeaderContent-headerCellRight{text-align:right}.TableHeaderContent-headerRow .TableHeaderContent-headerCellRight .TableHeaderContent-headerSortLabel{flex-direction:row-reverse}.TableHeaderContent-headerRow .TableHeaderContent-headerCellRight .TableHeaderContent-headerSortLabel .TableHeaderContent-active,.TableHeaderContent-headerRow .TableHeaderContent-headerCellRight .TableHeaderContent-headerSortLabel svg,.TableHeaderContent-headerRow .TableHeaderContent-headerCellRight .TableHeaderContent-headerSortLabel:hover svg{margin-left:0;margin-right:auto}.TableBodyContent-contentCell{border:none!important;color:#424242}.TableBodyContent-symbol{max-width:100px;min-width:100px;width:100px}.TableBodyContent-symbol:after{box-shadow:6px 0 4px -4px #82828226;content:"";height:100%;position:absolute;right:0;top:0;width:100%;z-index:-1}.TableBodyContent-company{color:#005594}.TableBodyContent-company,.TableBodyContent-industry,.TableBodyContent-sector{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.TableBodyContent-index{white-space:nowrap}.NumberRenderer-positive{color:#0a6630}.NumberRenderer-negativeCellValue{color:#ce2b2b}.PercentRenderer-positive{color:#0a6630}.PercentRenderer-negativeCellValue{color:#ce2b2b}.NumberUnitConversionRenderer-positive{color:#0a6630}.NumberUnitConversionRenderer-negativeCellValue{color:#ce2b2b}.ConsensusRatingRenderer-strongBuy{color:#145c42}.ConsensusRatingRenderer-buy{color:#0a6630}.ConsensusRatingRenderer-neutral{color:#747474}.ConsensusRatingRenderer-sell,.ConsensusRatingRenderer-strongSell{color:#002f6c}.CompanyRenderer-companyName{color:#0053cf;cursor:pointer}.CompanyRenderer-companyName:focus,.CompanyRenderer-companyName:hover{color:#001e5a}.SymbolRenderer-symbolName{align-items:center;display:flex;justify-content:space-between}.SymbolRenderer-buttonStyles{margin-right:7px;padding:0}@media (max-width:1019px){.SymbolRenderer-dropdownStyles{transform:none!important;width:100%!important}}.InvestorSentimentRenderer-veryPositive{color:#145c42}.InvestorSentimentRenderer-positive{color:#0a6630}.InvestorSentimentRenderer-neutral{color:#747474}.InvestorSentimentRenderer-negative,.InvestorSentimentRenderer-veryNegative{color:#ce2b2b}.SignalRenderer-positive{color:#0a6630}.SignalRenderer-neutral{color:#747474}.SignalRenderer-negative{color:#ce2b2b}.TableLoadingPlaceholder-tableRow:nth-child(odd){background:#fff!important}.TableLoadingPlaceholder-tableRow:nth-child(2n){background:#f8f8f8!important}.TableLoadingPlaceholder-tableCell{border-bottom:0!important;height:53px}.TableLoadingPlaceholder-tableCell .TableLoadingPlaceholder-tableCellLoadingPill{background:#0000000a;border-radius:5px;height:12px;width:auto}.TableWarningErrorPlaceholder-container{flex-grow:0;flex-shrink:0;height:calc(100vh - 500px);min-height:170px;overflow:auto;overscroll-behavior:none;position:relative}@media (min-width:1020px){.TableWarningErrorPlaceholder-container{height:auto}}@media screen and (min-width:1020px) and (hover:hover) and (pointer:fine){.TableWarningErrorPlaceholder-container{overscroll-behavior:auto}}.TableWarningErrorPlaceholder-container tfoot{position:relative!important}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-tableBody{position:relative}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-tableBody tr:nth-child(odd){background:#fff!important}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-tableBody tr:nth-child(2n){background:#f8f8f8!important}.TableWarningErrorPlaceholder-container table{border-collapse:collapse;border-spacing:0;width:100%}.TableWarningErrorPlaceholder-container td,.TableWarningErrorPlaceholder-container th{padding:8px;text-align:left;text-transform:capitalize}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-headerRow{height:53px}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-headerRow .TableWarningErrorPlaceholder-headerCell{background:#27313c;border-right:1px solid #fff;color:#f1f1f1;font-weight:500;line-height:1;padding:16px 8px;text-transform:uppercase}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-headerRow .TableWarningErrorPlaceholder-headerSortLabel{color:#f1f1f1!important;width:100%}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-headerRow .TableWarningErrorPlaceholder-headerSortLabel .TableWarningErrorPlaceholder-active,.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-headerRow .TableWarningErrorPlaceholder-headerSortLabel svg{color:#f1f1f1!important;margin-left:auto;margin-right:0}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-headerRow .TableWarningErrorPlaceholder-headerSortLabel:active svg,.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-headerRow .TableWarningErrorPlaceholder-headerSortLabel:focus svg,.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-headerRow .TableWarningErrorPlaceholder-headerSortLabel:hover svg{background:#fff;border-radius:50%;color:#27313c!important;height:16px;margin-left:auto;margin-right:0;opacity:1;width:16px}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-tableCell{border-bottom:0;height:53px}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-tableCell .TableWarningErrorPlaceholder-tableCellLoadingPill{background:#0000000a;border-radius:5px;height:12px;width:auto}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer{left:0;position:absolute;text-align:center;top:37%;width:100%}@media screen and (min-width:480px) and (orientation:portrait){.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer{top:40%}}@media (min-width:760px){.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer{top:40%}}@media screen and (min-width:760px) and (orientation:landscape){.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer{top:30%}}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer .TableWarningErrorPlaceholder-warningLabel{color:#424242;font-size:12px;font-weight:500}@media screen and (min-width:480px) and (orientation:portrait){.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer .TableWarningErrorPlaceholder-warningLabel{color:#424242;font-size:16px;font-weight:600;margin-top:20px}}@media (min-width:760px){.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer .TableWarningErrorPlaceholder-warningLabel{color:#424242;font-size:16px;font-weight:600;margin-top:20px}}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer .TableWarningErrorPlaceholder-icon{height:23px;width:23px}@media screen and (min-width:480px) and (orientation:portrait){.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer .TableWarningErrorPlaceholder-icon{height:48px;margin-bottom:20px;width:48px}}@media (min-width:760px){.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer .TableWarningErrorPlaceholder-icon{height:48px;margin-bottom:20px;width:48px}}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer .TableWarningErrorPlaceholder-icon.TableWarningErrorPlaceholder-warningIcon{color:#fcb700}.TableWarningErrorPlaceholder-container .TableWarningErrorPlaceholder-warningContainer .TableWarningErrorPlaceholder-icon.TableWarningErrorPlaceholder-errorIcon{color:#ce2b2b}.CustomColumnsTable-container table{border-collapse:initial;border-spacing:0;width:100%}.CustomColumnsTable-container tfoot{position:relative!important}.CustomColumnsTable-container thead{top:-1px!important}.CustomColumnsTable-container td,.CustomColumnsTable-container th{font-size:14px;padding:8px;text-transform:capitalize}@media (max-width:1019px){.CustomColumnsTable-fixedHeightContainer{height:calc(100vh - 394px);min-height:250px}}@media (min-width:1020px){.CustomColumnsTable-fixedHeightContainer{flex-grow:0;flex-shrink:0;overflow-x:auto}}.CustomColumnsTable-fixedHeightContainer .CustomColumnsTable-tableContainer{height:calc(100vh - 410px)!important;min-height:250px;overscroll-behavior:none}@media (min-width:1020px){.CustomColumnsTable-fixedHeightContainer .CustomColumnsTable-tableContainer{height:calc(100vh - 330px)!important}}@media screen and (min-width:1020px) and (hover:hover) and (pointer:fine){.CustomColumnsTable-fixedHeightContainer .CustomColumnsTable-tableContainer{overscroll-behavior:auto}}.CustomColumnsTable-container:not(.CustomColumnsTable-fixedHeightContainer) div[data-viewport-type=element]{position:relative!important}.PortfolioCalendarEventFields-eventLabel{color:#171717;font-size:20px;font-weight:500;padding:20px 0;text-transform:capitalize}.PortfolioCalendarEventFields-fieldRow{border-bottom:1px dotted #d9d9d9;clear:both;height:19px;line-height:19px;margin-bottom:20px}.PortfolioCalendarEventFields-fieldText{background-color:#fff;color:#171717;display:inline-block;font-size:14px}.PortfolioCalendarEventFields-fieldText:first-child{font-weight:400;padding-right:5px}.PortfolioCalendarEventFields-fieldText:last-child{float:right;font-weight:500;padding-left:5px}.PortfolioCalendarEventDetails-container{padding-bottom:5px}.PortfolioCalendarEventDetails-header{color:#171717;font-size:24px;font-weight:500;padding:40px 0;text-transform:capitalize}.PortfolioCalendarEventDetails-tableHeader{color:#171717;font-size:20px;font-weight:500;padding:20px 0;text-transform:capitalize}.PortfolioCalendarEventDetails-spacer{height:15px}.DrawerBuilder-container{margin:0 22px 40px;max-width:100%}@media (min-width:760px){.DrawerBuilder-container{margin:0 40px 40px}}.DrawerBuilder-safariContainer{margin:0 40px 100px}@media (max-width:759px){.DrawerBuilder-safariContainer{margin:0 22px 100px}}.DrawerBuilder-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.DrawerBuilder-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.DrawerBuilder-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.DrawerBuilder-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.DrawerBuilder-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.DrawerBuilder-col:last-child{margin-right:0}.DrawerBuilder-mainContent{margin:42px 0 15px}.DrawerBuilder-mainContent .DrawerBuilder-QuoteNewsFilterContainer{margin-top:40px}@media (min-width:760px){.DrawerBuilder-sidebar{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.DrawerBuilder-sidebar{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.DrawerBuilder-sidebar{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.DrawerBuilder-sidebar{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.DrawerBuilder-sidebar{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.DrawerBuilder-sidebar{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}}@media (min-width:1340px){.DrawerBuilder-sidebar{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}.DrawerBuilder-button,.DrawerBuilder-buttonActive{align-items:center;background:#fff;border:1px solid #002f6c;color:#002f6c;display:flex;font-family:Proxima Nova,sans-serif;font-size:12px;font-weight:700;justify-content:center;letter-spacing:1.09px;margin:15px 0 30px;padding:15px 20px;text-transform:uppercase;width:100%}.DrawerBuilder-button:after,.DrawerBuilder-buttonActive:after{border-bottom:2px solid #002f6c;border-right:2px solid #002f6c;content:"";display:block;height:7px;margin:-4px 0 0 5px;transform:rotate(45deg);width:7px}.DrawerBuilder-buttonActive:after{margin:5px 0 0 5px;transform:rotate(225deg)}.DrawerBuilder-showOnDesktop{display:none}@media (min-width:760px){.DrawerBuilder-showOnDesktop{display:initial}}.DrawerBuilder-showOnMobile{display:initial;margin-bottom:10px}@media (min-width:760px){.DrawerBuilder-showOnMobile{display:none}}@media (max-width:759px){.DrawerBuilder-hideOnMobile{display:none}}.DrawerBuilder-analystConsensusContainer{display:flex;justify-content:center;margin-bottom:25px;margin-top:30px}.DrawerBuilder-quoteDetailsLink{color:#002f6c;font-size:14px;font-weight:600;position:absolute;right:45px;text-decoration:underline;-webkit-text-decoration-color:#002f6c;text-decoration-color:#002f6c;top:10px}.DrawerBuilder-quoteDetailsLink:focus,.DrawerBuilder-quoteDetailsLink:hover{color:#005594;-webkit-text-decoration-color:#005594;text-decoration-color:#005594}.DrawerBuilder-quoteDetailsLink:hover .DrawerBuilder-arrowIcon:before{color:#005594}.DrawerBuilder-arrowIcon{display:inline-block;line-height:14px;margin-left:5px;vertical-align:middle}.DrawerBuilder-arrowIcon:before{color:#002f6c;font-size:12px}@media (min-width:760px){.DrawerBuilder-quoteDetailsLink{font-size:16px}}.cq-dialogs{position:absolute;z-index:2001}.cq-color-picker[cq-active]{z-index:2002}.ciq-window{z-index:2002!important}@keyframes DrawerLoader-pulsating{0%{background-color:#d9d9d9}50%{background-color:#f1f1f1}to{background-color:#d9d9d9}}.DrawerLoader-container{margin:0 22px 40px;max-width:100%}@media (min-width:760px){.DrawerLoader-container{margin:0 40px 40px}}.DrawerLoader-titleLoading{animation:DrawerLoader-pulsating 2s infinite;height:50px;margin:63px 0 54px;width:123px}@media (min-width:760px){.DrawerLoader-titleLoading{height:54px;margin:63px 0 78px;width:151px}}.DrawerLoader-graphLoading{animation:DrawerLoader-pulsating 2s infinite;height:251px;margin-bottom:90px;width:320px}@media (min-width:760px){.DrawerLoader-graphLoading{height:400px;margin-bottom:118px;width:680px}}.DrawerLoader-newsLoading{animation:DrawerLoader-pulsating 2s infinite;height:26px;margin-bottom:20px}@media (min-width:760px){.DrawerLoader-newsLoading{height:28px}}.DrawerLoader-newsLoading:nth-child(2n){margin-bottom:40px}.DrawerLoader-newsBarMedium{width:258px}@media (min-width:760px){.DrawerLoader-newsBarMedium{width:524px}}.DrawerLoader-newsBarExtraLong{width:318px}@media (min-width:760px){.DrawerLoader-newsBarExtraLong{width:682px}}.DrawerLoader-newsBarLong{width:318px}@media (min-width:760px){.DrawerLoader-newsBarLong{width:609px}}.DrawerLoader-newsBarShort{width:318px}@media (min-width:760px){.DrawerLoader-newsBarShort{width:435px}}.SideDrawerBackground-sideDrawerBackground{background:#000000b3;height:100%;left:0;overflow-y:auto;position:fixed;top:0;transition:background-color .5s;width:100%;z-index:2000}.SideDrawerProvider-sideDrawer{background:#fff;bottom:0;box-shadow:5px 5px 20px #1717171a;display:inline-block;height:100vh;margin-top:0!important;max-width:100%;overflow:scroll;overscroll-behavior:contain;position:fixed;right:0;top:0;transform:none;width:100vw;z-index:2001}@media (min-width:1020px){.SideDrawerProvider-sideDrawer{width:760px}}.SideDrawerProvider-closeButton{color:#a9a9a9;cursor:pointer;position:absolute;right:12px;top:12px}.Help-container{color:#6f6f6f;font-size:12px;font-weight:300;letter-spacing:.78px;line-height:14.62px;padding:5px 0 15px;text-align:left}.Help-container a.Help-helpLink{color:#0053cf}.Help-container a.Help-helpLink:focus,.Help-container a.Help-helpLink:hover{color:#fcb700}.LabelLink-container{border-top:1px solid #d9d9d9;display:flex;flex-direction:row;justify-content:space-between}.LabelLink-container .LabelLink-label{color:#767575;font-size:16px;font-weight:600;letter-spacing:.5px;line-height:19.49px;margin:18px 0;text-align:left;text-transform:uppercase}@media (min-width:760px){.LabelLink-container .LabelLink-label{font-size:18px;line-height:21.92px}}.LabelLink-container a.LabelLink-link{color:#0053cf;font-size:12px;font-weight:500;letter-spacing:1px;line-height:12px;margin:auto 0;text-align:left}.LabelLink-container a.LabelLink-link:focus,.LabelLink-container a.LabelLink-link:hover{color:#fcb700}.Account-container{display:block}.Subscriptions-container{padding:0 10px 10px}.Subscriptions-headline{color:#696868;font-size:12px;font-weight:500;letter-spacing:1px;line-height:14.62px;margin-bottom:10px;margin-top:0;text-align:left;text-transform:uppercase}.Subscriptions-noContent{color:#484848;font-size:12px;font-weight:300;letter-spacing:.5px;line-height:18px;text-align:left}.Subscriptions-included{color:#484848;font-size:12px;font-weight:300;line-height:14.62px}.Subscription-dateContainer,.Subscription-logoContainer,.Subscription-top{align-items:center;display:flex}.Subscription-logoContainer{flex-direction:column}.Subscription-top{justify-content:space-between;margin:15px 0 10px}.Subscription-bottom{align-items:center;display:flex;justify-content:flex-start}.Subscription-date,.Subscription-dateLabel{color:#424242;font-size:12px;font-weight:400;letter-spacing:.009em;line-height:12px}.Subscription-dateLabel{padding-right:5px}.Subscription-date{font-weight:600}.Subscription-secondaryLogo{height:16px;width:53px}.Divider-divider{font-size:12px;font-weight:600;margin:auto 5px}.IncludedWith-included{color:#484848;font-size:12px;font-weight:300;line-height:14.62px}.SubscriptionInfo-containerLogoAndMessage{display:flex}.SubscriptionInfo-appStoreMsg{color:#424242;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:400;letter-spacing:.009em;line-height:14px;margin-left:auto;max-width:234px;text-align:right}.SubscriptionInfo-helpCenterLink{color:#0053cf}.SubscriptionInfo-helpCenterLink :hover{color:#171717;text-decoration:underline}.Product-promoBanner{align-items:center;background-color:#ffbc05;border-radius:7px 7px 0 0;display:flex;font-size:14px;font-weight:600;height:37px;justify-content:center;letter-spacing:1.1px;line-height:17.05px;margin:7px 0 -16px;padding-bottom:5px;position:relative;text-transform:uppercase}.Product-container{background:#f8f8f8;background-image:url(https://static-redesign.cnbcfm.com/dist/44944463efaf14fd092f.svg);background-position:right top -10px;background-repeat:no-repeat;background-size:500px;border:1px solid #e3e3e380;border-radius:6px;box-shadow:0 4px 4px 0 #00000040;display:block;margin:10px auto;padding:10px;position:relative}@media (min-width:760px){.Product-container{padding-bottom:17px}}.Product-container .Product-body,.Product-container .Product-head{align-items:flex-start;display:flex;justify-content:space-between;margin-top:5px}.Product-container .Product-left,.Product-container .Product-right{display:block}.Product-container .Product-head .Product-left{align-self:center}@media (min-width:760px){.Product-container .Product-head .Product-left{align-self:flex-start}}.Product-container .Product-head .Product-left svg{max-height:26px;max-width:128px}.Product-container .Product-feature{align-items:center;display:flex;padding:5px 0}@media (min-width:760px){.Product-container .Product-feature{padding:0}}.Product-container .Product-feature svg{margin-left:5px}.Product-container .Product-featureText{color:#4b4f54;font-size:12px;font-weight:500;line-height:14px;margin-left:10px;text-align:left;width:153px}@media (min-width:760px){.Product-container .Product-featureText{font-size:14px;line-height:26px;width:auto}}.Product-container .Product-featureText.Product-all-access{line-height:14px;margin-left:5px;max-width:235px;width:235px}@media (min-width:760px){.Product-container .Product-featureText.Product-all-access{line-height:17px;max-width:275px;width:275px}}.Product-container .Product-subscribeButton{align-items:center;appearance:none;background-color:#005594;border:1px solid #002f6c;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.Product-container .Product-subscribeButton.Product-defaultButton.Product-all-access,.Product-container .Product-subscribeButton.Product-defaultButton.Product-investing-club,.Product-container .Product-subscribeButton.Product-defaultButton.Product-pro{border-radius:3px;height:44px;letter-spacing:.5px;padding:7px 15px}@media (min-width:760px){.Product-container .Product-subscribeButton.Product-defaultButton.Product-all-access,.Product-container .Product-subscribeButton.Product-defaultButton.Product-investing-club,.Product-container .Product-subscribeButton.Product-defaultButton.Product-pro{height:31px}}.Product-container .Product-subscribeButton>span{display:block;line-height:12px}.Product-container .Product-subscribeButton [class*=" icon-"],.Product-container .Product-subscribeButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.Product-container .Product-subscribeButton [class*=" icon-"]:before,.Product-container .Product-subscribeButton [class^=icon-]:before{line-height:12px}.Product-container .Product-subscribeButton:focus,.Product-container .Product-subscribeButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.Product-container .Product-subscribeButton[class*=touchButton]:hover{background-color:#005594;border-color:#002f6c;color:#fff}@media (hover:hover){.Product-container .Product-subscribeButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.Product-container .Product-subscribeButton{padding:0 30px;width:auto}}.Product-container .Product-subscribeButton.Product-pro{align-items:center;appearance:none;background-color:#047e2e;border:1px solid #047e2e;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.Product-container .Product-subscribeButton.Product-pro>span{display:block;line-height:12px}.Product-container .Product-subscribeButton.Product-pro [class*=" icon-"],.Product-container .Product-subscribeButton.Product-pro [class^=icon-]{height:12px;margin-left:5px;position:relative}.Product-container .Product-subscribeButton.Product-pro [class*=" icon-"]:before,.Product-container .Product-subscribeButton.Product-pro [class^=icon-]:before{line-height:12px}.Product-container .Product-subscribeButton.Product-pro:focus,.Product-container .Product-subscribeButton.Product-pro:hover{background-color:#005034;border-color:#005034;color:#fff}.Product-container .Product-subscribeButton.Product-pro[class*=touchButton]:hover{background-color:#047e2e;border-color:#047e2e;color:#fff}@media (hover:hover){.Product-container .Product-subscribeButton.Product-pro[class*=touchButton]:hover{background-color:#005034;border-color:#005034;color:#fff}}@media (min-width:760px){.Product-container .Product-subscribeButton.Product-pro{padding:0 30px;width:auto}}.Product-container .Product-subscribeButton.Product-investing-club{align-items:center;appearance:none;background-color:#0053cf;border:1px solid #0053cf;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.Product-container .Product-subscribeButton.Product-investing-club>span{display:block;line-height:12px}.Product-container .Product-subscribeButton.Product-investing-club [class*=" icon-"],.Product-container .Product-subscribeButton.Product-investing-club [class^=icon-]{height:12px;margin-left:5px;position:relative}.Product-container .Product-subscribeButton.Product-investing-club [class*=" icon-"]:before,.Product-container .Product-subscribeButton.Product-investing-club [class^=icon-]:before{line-height:12px}.Product-container .Product-subscribeButton.Product-investing-club:focus,.Product-container .Product-subscribeButton.Product-investing-club:hover{background-color:#171717;border-color:#171717;color:#fff}.Product-container .Product-subscribeButton.Product-investing-club[class*=touchButton]:hover{background-color:#0053cf;border-color:#0053cf;color:#fff}@media (hover:hover){.Product-container .Product-subscribeButton.Product-investing-club[class*=touchButton]:hover{background-color:#171717;border-color:#171717;color:#fff}}@media (min-width:760px){.Product-container .Product-subscribeButton.Product-investing-club{padding:0 30px;width:auto}}.Product-container .Product-subscribeButton.Product-all-access{align-items:center;appearance:none;background-color:#001e5a;border:1px solid #001e5a;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.Product-container .Product-subscribeButton.Product-all-access>span{display:block;line-height:12px}.Product-container .Product-subscribeButton.Product-all-access [class*=" icon-"],.Product-container .Product-subscribeButton.Product-all-access [class^=icon-]{height:12px;margin-left:5px;position:relative}.Product-container .Product-subscribeButton.Product-all-access [class*=" icon-"]:before,.Product-container .Product-subscribeButton.Product-all-access [class^=icon-]:before{line-height:12px}.Product-container .Product-subscribeButton.Product-all-access:focus,.Product-container .Product-subscribeButton.Product-all-access:hover{background-color:#171717;border-color:#171717;color:#fff}.Product-container .Product-subscribeButton.Product-all-access[class*=touchButton]:hover{background-color:#001e5a;border-color:#001e5a;color:#fff}@media (hover:hover){.Product-container .Product-subscribeButton.Product-all-access[class*=touchButton]:hover{background-color:#171717;border-color:#171717;color:#fff}}@media (min-width:760px){.Product-container .Product-subscribeButton.Product-all-access{padding:0 30px;width:auto}}.Product-container a.Product-learnMoreLink{align-items:center;color:#0053cf;display:flex;font-size:14px;font-weight:600;height:44px;line-height:17.05px;text-align:left}@media (min-width:760px){.Product-container a.Product-learnMoreLink{height:31px}}.Product-container .Product-footer{align-items:center;display:flex;justify-content:flex-start;margin-top:10px;padding-left:5px}.Product-container .Product-secondaryLogo{height:16px;width:53px}.Products-container{margin-bottom:20px}.Products-title{border-top:1px dashed #d9d9d9;color:#696868;font-size:12px;font-weight:500;letter-spacing:1px;line-height:14.62px;margin:0 10px;padding:15px 0 5px;text-align:left;text-transform:uppercase}.AccountSideDrawer-container{background-color:#fff;box-shadow:0 4px 4px 0 #00000040;display:flex;flex-direction:column;height:100%;padding:25px 15px 15px;position:fixed;right:0;top:0;width:100%;z-index:9999}@media (min-width:760px){.AccountSideDrawer-container{padding:25px 25px 15px;width:468px}}.AccountSideDrawer-backdrop{background:#000000b3;height:100%;left:0;overflow-y:auto;position:fixed;top:0;transition:background-color .5s;width:100%;z-index:2000}.AccountSideDrawer-greeting{font-size:18px;letter-spacing:.78px;line-height:21.92px;margin:0;text-align:left}@media (min-width:760px){.AccountSideDrawer-greeting{font-size:20px;font-weight:600;line-height:24.36px}}.AccountSideDrawer-head{align-items:flex-end;display:flex;flex-direction:column;justify-content:flex-end}.AccountSideDrawer-body{-ms-overflow-style:none;display:block;overflow:auto;scrollbar-width:none}.AccountSideDrawer-body::-webkit-scrollbar{display:none}.AccountSideDrawer-signout{align-items:flex-start;border-top:1px solid #d9d9d9;display:flex;flex-direction:column;justify-content:flex-start;margin:5px 0 25px;padding:15px 0 0}.AccountSideDrawer-signout .AccountSideDrawer-signOutLink{color:#0053cf;font-size:16px;font-weight:600;letter-spacing:.5px;line-height:19.49px;text-align:left;text-transform:uppercase}@media (min-width:760px){.AccountSideDrawer-signout .AccountSideDrawer-signOutLink{font-size:18px;line-height:21.92px}}.AccountSideDrawer-signout .AccountSideDrawer-signOutLink:focus,.AccountSideDrawer-signout .AccountSideDrawer-signOutLink:hover{color:#fcb700}.AccountSideDrawer-closeButton svg path{fill:#171717}.UniversalVideoPlayer-videoContainer{opacity:1;position:absolute;z-index:10}.hfsf{z-index:100}.hfsf .ot-sdk-show-settings.US{background-image:url(https://static-redesign.cnbcfm.com/dist/17269f1b6083fd5f61be.svg);background-position-y:2px;background-repeat:no-repeat;background-size:24px;padding:0 0 0 30px}.NavSpacer-navSpacer{display:block;height:45px}.NavSpacer-navSpacer.NavSpacer-navSpacerCountDownClock,.NavSpacer-navSpacer.NavSpacer-navSpacerFiveThings{height:112px}@media (min-width:760px){.NavSpacer-navSpacer{height:70px}.NavSpacer-navSpacer.NavSpacer-navSpacerCountDownClock,.NavSpacer-navSpacer.NavSpacer-navSpacerFiveThings{height:112px}}.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert{height:85px}.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerLiveAlert{height:125px}.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerCountDownClock,.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerFiveThings{height:192px}@media (min-width:760px){.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert{height:110px}.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerLiveAlert{height:150px}.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerCountDownClock{height:152px}.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerFiveThings{height:185px}}.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert{height:85px}@media (min-width:360px){.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert{height:125px}.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert.NavSpacer-NavSpacer-navSpacerFiveThings{height:162px}}@media (min-width:760px){.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert{height:150px}}@media (min-width:1020px){.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert{height:150px}}@media (min-width:1340px){.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert{height:150px}}.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerFiveThings{height:185px}.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerCountDownClock{height:192px}.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerCountDownClock,.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerFiveThings{height:152px}@media (min-width:760px){.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert{height:110px}}.SelectHFSNav-container{height:60px;margin-bottom:-20px;position:sticky;top:0;z-index:9999}@media screen and (min-width:759px){.SelectHFSNav-container{height:80px}}.SelectHFSNav-container #hfs-header{position:fixed;width:100%}@supports (-webkit-overflow-scrolling:touch){.hfsh .menu .inner:after{display:none!important}}.hfsh .ot-sdk-show-settings.US{background-image:url(https://static-redesign.cnbcfm.com/dist/17269f1b6083fd5f61be.svg);background-position-y:4px;background-repeat:no-repeat;background-size:24px;padding:0 0 0 28px}@supports (-webkit-overflow-scrolling:touch){.menu-select__copyright:after{content:"";display:block;height:88px;width:100%}}nav.hfsh{pointer-events:auto!important}.MobileAdhesion-container{display:none;margin:10px auto;overflow:hidden;text-align:center}.JumpLink-container{margin:0 auto;position:relative;width:100%;z-index:1000}@media (min-width:1020px){.JumpLink-container{margin:0 auto;max-width:100%}}@media (min-width:1020px) and (min-width:760px){.JumpLink-container{max-width:678px}}@media (min-width:1020px) and (min-width:1020px){.JumpLink-container{max-width:960px}}@media (min-width:1020px) and (min-width:1340px){.JumpLink-container{max-width:1290px}}.JumpLink-link{align-items:center;background-color:#e8e8e8;color:#002f6c;display:flex;font-size:14px;font-weight:700;height:1px;left:-10000px;line-height:1;overflow:hidden;padding:0 14px;position:absolute;text-transform:uppercase;top:0;width:1px}.JumpLink-link:focus-visible{height:40px;left:0;width:auto}.SidebarArticle-sidebar{position:relative}@media (min-width:1020px){.SidebarArticle-sticky{margin-bottom:20px;position:sticky}}.SidebarArticle-noSticky{position:static!important}.SidebarArticle-noSticky .SidebarArticle-sticky{position:sticky}.LazyLoaderPlaceholder-articleBody{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.LazyLoaderPlaceholder-articleBody{padding-left:0;padding-right:0}}.LazyLoaderPlaceholder-bodyText{color:#2e2e2e;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:18px;line-height:1.66;margin-bottom:30px}@media (min-width:760px){.LazyLoaderPlaceholder-bodyText{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){.LazyLoaderPlaceholder-bodyText{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){.LazyLoaderPlaceholder-bodyText{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){.LazyLoaderPlaceholder-bodyText{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){.LazyLoaderPlaceholder-bodyText{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){.LazyLoaderPlaceholder-bodyText{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){.LazyLoaderPlaceholder-bodyText{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){.LazyLoaderPlaceholder-bodyText{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){.LazyLoaderPlaceholder-bodyText{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){.LazyLoaderPlaceholder-bodyText{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){.LazyLoaderPlaceholder-bodyText{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){.LazyLoaderPlaceholder-bodyText{margin-left:14.28571%}}@media (min-width:760px){.LazyLoaderPlaceholder-listWrapper{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){.LazyLoaderPlaceholder-listWrapper{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){.LazyLoaderPlaceholder-listWrapper{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){.LazyLoaderPlaceholder-listWrapper{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){.LazyLoaderPlaceholder-listWrapper{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){.LazyLoaderPlaceholder-listWrapper{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){.LazyLoaderPlaceholder-listWrapper{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){.LazyLoaderPlaceholder-listWrapper{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){.LazyLoaderPlaceholder-listWrapper{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){.LazyLoaderPlaceholder-listWrapper{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){.LazyLoaderPlaceholder-listWrapper{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){.LazyLoaderPlaceholder-listWrapper{margin-left:14.28571%}}.LazyLoaderPlaceholder-listTitle{font-size:24px;font-weight:700;margin-bottom:15px}.LazyLoaderPlaceholder-gridContainer{grid-gap:30px;display:grid;font-size:18px;font-weight:600;grid-template-columns:auto auto auto;line-height:22px;padding:10px}@media (min-width:360px) and (max-width:759px){.LazyLoaderPlaceholder-gridContainer{display:block;padding-left:0}}.LazyLoaderPlaceholder-gridItem{border-bottom:1px dashed #8b8b8b80}.LazyLoaderPlaceholder-gridItem .LazyLoaderPlaceholder-author,.LazyLoaderPlaceholder-gridItem .LazyLoaderPlaceholder-headline,.LazyLoaderPlaceholder-gridItem .LazyLoaderPlaceholder-section{color:#000;display:block;margin-bottom:12px;margin-top:12px}.LazyLoaderPlaceholder-gridItem .LazyLoaderPlaceholder-headline:hover{text-decoration:underline}.LazyLoaderPlaceholder-gridItem .LazyLoaderPlaceholder-author,.LazyLoaderPlaceholder-gridItem .LazyLoaderPlaceholder-section{font-size:12px;line-height:12px;overflow-y:hidden}@media (min-width:360px) and (max-width:759px){.LazyLoaderPlaceholder-headline{word-break:break-word}}.LazyLoaderPlaceholder-moduleTitle{color:#000;display:block;font-size:32px;font-weight:800;line-height:37px;padding:10px}.LazyLoaderPlaceholder-moduleTitle:hover{color:#2077b6}@media (min-width:360px) and (max-width:759px){.LazyLoaderPlaceholder-moduleTitle{padding-left:0}}.AdvertorialFooter-advertorialFooter{background-color:#e1e1e1;color:#737373;font-size:14px;text-align:center;width:100%}.AdvertorialFooter-advertorialFooter .AdvertorialFooter-innerText{font-family:Proxima Nova,450,normal,sans-serif;font-weight:450;margin:0 auto;padding:15px 0;text-align:center}@media (min-width:360px){.AdvertorialFooter-advertorialFooter .AdvertorialFooter-innerText{width:85%}}@media (min-width:760px){.AdvertorialFooter-advertorialFooter .AdvertorialFooter-innerText{width:500px}}*{box-sizing:border-box}li,ol,ul{list-style:none;margin:0;padding:0}a{color:#fff;cursor:pointer;text-decoration:none}a:focus,a:hover{color:#fcb700}button{background:none;border:none;cursor:pointer;padding:0}table{border-collapse:collapse}td,th{padding:8px 15px 8px 0;text-align:left}img{display:block}html{-ms-overflow-style:-ms-autohiding-scrollbar}body{-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:100%;border:0;font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin:0;padding:0}body:after{content:"mobile";display:none}@media (min-width:760px){body:after{content:"tablet"}}@media (min-width:1020px){body:after{content:"small_desktop"}}@media (min-width:1180px){body:after{content:"medium_desktop"}}@media (min-width:1340px){body:after{content:"large_desktop"}}:focus{outline:none}button{border-radius:0;font-family:Proxima Nova,Helvetica,Arial,sans-serif}button::-moz-focus-inner{border:0}.openNav{position:fixed;width:100%}@media (min-width:1020px){.openNav{overflow-y:scroll}}.App-articleBody{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.App-articleBody{padding-left:0;padding-right:0}}.group{font-family:Lyon,Helvetica,Arial,sans-serif;font-size:18px;line-height:1.66;margin-bottom:30px}@media (min-width:760px){.group{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){.group{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){.group{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){.group{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){.group{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){.group{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){.group{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){.group{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){.group{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){.group{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){.group{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){.group{margin-left:14.28571%}}@media (max-width:759px){.hideOnMobile{display:none}}.App-bodyText{color:#2e2e2e;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:18px;line-height:1.66;margin-bottom:30px}@media (min-width:760px){.App-bodyText{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){.App-bodyText{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){.App-bodyText{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){.App-bodyText{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){.App-bodyText{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){.App-bodyText{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){.App-bodyText{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){.App-bodyText{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){.App-bodyText{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){.App-bodyText{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){.App-bodyText{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){.App-bodyText{margin-left:14.28571%}}@media (min-width:760px){.App-listWrapper{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){.App-listWrapper{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){.App-listWrapper{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){.App-listWrapper{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){.App-listWrapper{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){.App-listWrapper{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){.App-listWrapper{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){.App-listWrapper{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){.App-listWrapper{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){.App-listWrapper{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){.App-listWrapper{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){.App-listWrapper{margin-left:14.28571%}}@media (min-width:760px){#taboolaContainer{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){#taboolaContainer{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){#taboolaContainer{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){#taboolaContainer{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){#taboolaContainer{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){#taboolaContainer{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){#taboolaContainer{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){#taboolaContainer{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){#taboolaContainer{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){#taboolaContainer{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){#taboolaContainer{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){#taboolaContainer{margin-left:14.28571%}}@media (min-width:760px){#taboolaContainer{flex:none}}@media (min-width:1020px){#taboolaContainer{flex-grow:0;flex-shrink:0;flex:none;margin-left:calc(16.66667% + 5px);max-width:calc(83.33333% - 5px);min-width:calc(83.33333% - 5px)}}@media (min-width:1340px){#taboolaContainer{flex-grow:0;flex-shrink:0;flex:none;margin-left:calc(14.28571% + 4.28571px);max-width:calc(85.71429% - 4.28571px);min-width:calc(85.71429% - 4.28571px)}}.App-listTitle{font-size:24px;font-weight:700;margin-bottom:15px}.numeric{text-align:right}@media (prefers-color-scheme:dark){.webview,.webview #taboola-below-article-thumbnails-Bento-Feed,.webview #taboola-below-article-thumbnails-Bento-Feed .video-title,.webview .trc_rbox_header_span{background-color:#000;color:#dce0e4}.webview #taboola-below-article-thumbnails-Bento-Feed .video-title a,.webview #taboola-below-article-thumbnails-Bento-Feed a,.webview .trc_rbox_header_span a,.webview a{color:#dce0e4}}.grecaptcha-badge{display:none}@font-face{font-display:block;font-family:icomoon;font-style:normal;font-weight:400;src:url(https://static-redesign.cnbcfm.com/dist/icomoon.woff2) format("woff2")}[class*=" icon-"],[class^=icon-]{speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:icomoon!important;font-style:normal;font-variant:normal;font-weight:400;line-height:1;text-transform:none}.icon-social_apple_news:before{content:"\e900"}.icon-close-2:before{content:"\e901"}.icon-thumbs-up:before{content:"\e902"}.icon-chat-bubble:before{content:"\e903"}.icon-chat-bubble-hover:before{content:"\e904"}.icon-thumbs-down:before{content:"\e905"}.icon-buffett-pause:before{content:"\e906"}.icon-buffett-timeline:before{content:"\e907"}.icon-buffett-backtotop:before{content:"\e908"}.icon-buffett-sync:before{content:"\e909"}.icon-buffett-arrow-right-long:before{content:"\e90a"}.icon-buffett-arrow-left-long:before{content:"\e90b"}.icon-buffett-diamond:before{content:"\e90c"}.icon-check:before{content:"\e90d"}.icon-search:before{content:"\e90e"}.icon-hamburger:before{content:"\e90f"}.icon-close:before{content:"\e910"}.icon-social_facebook:before{content:"\e911"}.icon-social_instagram:before{content:"\e912"}.icon-social_linkedin:before{content:"\e913"}.icon-social_rss:before{content:"\e914"}.icon-social_twitter:before{content:"\e915"}.icon-social_youtube:before{content:"\e916"}.icon-tumblr:before{content:"\e917"}.icon-stumbleupon:before{content:"\e918"}.icon-reddit:before{content:"\e919"}.icon-quote-mark:before{content:"\e91a"}.icon-probug:before{content:"\e91b"}.icon-play-triangle:before{content:"\e91c"}.icon-pinterest:before{content:"\e91d"}.icon-more-dots:before{content:"\e91e"}.icon-pause:before{content:"\e906"}.icon-play:before{content:"\e91f"}.icon-email:before{content:"\e920"}.icon-digg:before{content:"\e921"}.icon-arrow-left:before{content:"\e922"}.icon-arrow-right:before{content:"\e923"}.icon-arrow-down-readmore:before{content:"\e924"}.icon-arrow-transporter-down:before{content:"\e925"}.icon-calendar:before{content:"\e926"}.icon-livebug:before{content:"\e927"}.icon-lock:before{content:"\e928"}.icon-sort:before{content:"\e929"}.icon-cnbctv:before{content:"\e92a"}.icon-markets:before{content:"\e92b"}.icon-menu:before{content:"\e92c"}.icon-news:before{content:"\e92d"}.icon-offsite-arrow:before{content:"\e92e"}.icon-short-arrow-left:before{content:"\e92f"}.icon-short-arrow-right:before{content:"\e930"}.icon-live:before{content:"\e931"}.icon-newsletter:before{content:"\e932"}.icon-caret-left:before{content:"\e933"}.icon-triangle-down:before{content:"\e934"}.icon-triangle-up:before{content:"\e935"}.icon-caret-right:before{content:"\e936"}.icon-buffett-arrow-left:before{content:"\e937"}.icon-buffett-arrow-right:before{content:"\e938"}.icon-buffett-chevron-down:before{content:"\e939"}.icon-buffett-chevron-left:before{content:"\e93a"}.icon-buffett-chevron-right:before{content:"\e93b"}.icon-buffett-chevron-up:before{content:"\e93c"}.icon-buffett-playlist:before{content:"\e93d"}.icon-buffett-slideshow:before{content:"\e93e"}.icon-buffett-video-fullscreen:before{content:"\e93f"}.icon-buffett-video-mute:before{content:"\e940"}.icon-buffett-video-volume:before{content:"\e941"}.icon-buffett-video:before{content:"\e91C"}.PlayButton-buffett .icon-buffett-video:before{content:"\e942"}.icon-video_back_to_top:before{content:"\e943"}.icon-video_close:before{content:"\e944"}.icon-logo-cnbc:before{content:"\e945"}.icon-minus:before{content:"\e946"}.icon-plus:before{content:"\e947"}.icon-watchlist:before{content:"\e948"}.icon-replay:before{content:"\e965"}.icon-full-screen-alt:before{content:"\e98b"}.icon-full-screen-close-alt:before{content:"\e98c"}@font-face{font-display:block;font-family:makeit-icons;font-style:normal;font-weight:400;src:url(https://static-redesign.cnbcfm.com/dist/makeit-icons.woff2) format("woff2")}[class*=" icon-makeit-"]:before,[class^=icon-makeit-]:before{display:inline-block;font-family:makeit-icons!important}.icon-makeit-arrow-down:before{content:"\e900"}.icon-makeit-arrow-left:before{content:"\e901"}.icon-makeit-arrow-right:before{content:"\e902"}.icon-makeit-arrow-up:before{content:"\e903"}.icon-makeit-backtotop:before{content:"\e904"}.icon-makeit-check:before{content:"\e905"}.icon-makeit-close:before{content:"\e906"}.icon-makeit-externallink:before{content:"\e907"}.icon-makeit-filter-closed:before{content:"\e908"}.icon-makeit-filter-open:before{content:"\e909"}.icon-makeit-fullscreen:before{content:"\e90a"}.icon-makeit-hamburger:before{content:"\e90b"}.icon-makeit-logo-cnbc:before{content:"\e919"}.icon-makeit-mail:before{content:"\e90d"}.icon-makeit-mute:before{content:"\e90e"}.icon-makeit-pause:before{content:"\e90f"}.icon-makeit-play:before{content:"\e910"}.icon-makeit-questionnaire:before{content:"\e911"}.icon-makeit-quote:before{content:"\e912"}.icon-makeit-search:before{border-top:1px solid #0000;content:"\e913"}.icon-makeit-trending-bug:before{content:"\e914"}.icon-makeit-unmute:before{content:"\e915"}.icon-makeit-plus:before{content:"\e916"}.icon-makeit-minus:before{content:"\e917"}.icon-makeit-newsletter:before{content:"\e918"}@font-face{font-display:swap;font-family:social-icons;font-style:normal;font-weight:400;src:url(https://static-redesign.cnbcfm.com/dist/social-icons.woff2) format("woff2")}[class*=" gig-button-container-"],[class^=gig-button-container-]{speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:social-icons!important;font-style:normal;font-variant:normal;font-weight:400;line-height:1;text-transform:none}.gig-button-container-facebook .icon-social:before{content:"\e911"}.gig-button-container-instagram .icon-social:before{content:"\e912"}.gig-button-container-linkedin .icon-social:before{content:"\e913"}.gig-button-container-rss .icon-social:before{content:"\e914"}.gig-button-container-twitter .icon-social:before{content:"\e915"}.gig-button-container-youtube .icon-social:before{content:"\e916"}.gig-button-container-tumblr .icon-social:before{content:"\e917"}.gig-button-container-stumbleupon .icon-social:before{content:"\e918"}.gig-button-container-reddit .icon-social:before{content:"\e919"}.gig-button-container-pinterest .icon-social:before{content:"\e91d"}.gig-button-container-share .icon-social:before{content:"\e91e"}.gig-button-container-email .icon-social:before{content:"\e920"}.gig-button-container-digg .icon-social:before{content:"\e921"}.transition-fade-enter{opacity:.01!important}.transition-fade-appear{opacity:.01}.transition-fade-appear.transition-fade-appear-active{opacity:1!important;transition:opacity .5s ease-in}.transition-fade-enter.transition-fade-enter-active{opacity:1!important;transition:opacity .3s ease-in}.transition-transform-y-appear{transform:translateY(20%);transition:transform .5s ease-in}.transition-transform-y-appear.transition-transform-y-appear-active{transform:translateY(0);transition:transform .5s ease-in}.transition-top-enter{transform:translateY(-100%)}.transition-search-fade-enter{opacity:.01!important}.transition-search-fade-enter.transition-search-fade-enter-active{opacity:1!important;transition:opacity .5s ease-in}.transition-top-enter.transition-top-enter-active{transform:translateY(0);transition:transform .5s}.transition-bottom-enter{transform:translateY(100%)}.transition-bottom-enter.transition-bottom-enter-active{transform:translateY(0);transition:transform .5s}.mega-menu-enter{opacity:.01!important}.mega-menu-enter .mega-menu-megaMenu{transform:translate3d(0,-100%,0)!important}.mega-menu-enter.mega-menu-enter-active{opacity:1!important;transition:opacity .3s ease-in}.mega-menu-enter.mega-menu-enter-active .mega-menu-megaMenu{transform:translateZ(0)!important;transition:transform .3s cubic-bezier(.645,.045,.355,1)}.mega-menu-exit{opacity:1!important}.mega-menu-exit .mega-menu-megaMenu{transform:translateZ(0)!important}.mega-menu-exit.mega-menu-exit-active{opacity:.01!important;transition:opacity .15s ease-in}.mega-menu-exit.mega-menu-exit-active .mega-menu-megaMenu{transform:translate3d(0,-100%,0)!important;transition:transform .15s cubic-bezier(.645,.045,.355,1)}.App-contentWrapper{margin-top:45px}@media (min-width:760px){.App-contentWrapper{margin-top:70px}}.App-contentWrapperClock{margin-top:112px}.App-containerClick a:focus,.App-containerClick button:focus,.App-containerClick input:focus,.App-containerClick textarea:focus{outline:none}.App-proContentRecommendation{bottom:0;position:fixed;width:100%;z-index:9999}@media (max-width:759px){.App-proContentRecommendation{bottom:55px}}.App-makeit.App-buttonContainer{margin-bottom:20px;position:relative;text-align:center;width:auto}@media (min-width:760px){.App-makeit.App-buttonContainer{margin-bottom:50px}}.App-makeit .App-buttonLink{background:#fff;border:3px solid #68ebca;color:#3e4855;display:inline-block;font-size:14px;font-weight:600;height:42px;letter-spacing:3px;line-height:12px;padding:12px 75px;text-transform:uppercase;width:auto}.App-makeit .App-buttonLink:hover{background-color:#68ebca}body .makeitBrand{font-family:Averta,Helvetica,Arial,sans-serif}body .makeitBrand #faceteddata div>a{color:#000}.HalfAndHalfBreaker-halfAndHalfBreaker{margin-left:-20px;margin-right:-20px;width:auto}@media (min-width:760px){.HalfAndHalfBreaker-halfAndHalfBreaker{margin:0}}@media (min-width:1020px){.HalfAndHalfBreaker-halfAndHalfBreaker{padding-left:0;padding-right:0}}.HalfAndHalfBreaker-container{margin:0 auto;max-width:100%;width:100%}@media (min-width:760px){.HalfAndHalfBreaker-container{max-width:678px}}@media (min-width:1020px){.HalfAndHalfBreaker-container{max-width:960px}}@media (min-width:1340px){.HalfAndHalfBreaker-container{max-width:1290px}}@media (min-width:1020px){.HalfAndHalfBreaker-container{display:flex;max-width:none}}.HalfAndHalfBreaker-wrapper{position:relative}.HalfAndHalfBreaker-section{background-position:50%;background-size:cover;padding:30px 20px;position:relative;width:100%}.HalfAndHalfBreaker-section:last-child{border-top:1px solid #fff}@media (min-width:760px){.HalfAndHalfBreaker-section{display:flex;padding-left:0;padding-right:0}}@media (min-width:1020px){.HalfAndHalfBreaker-section{flex-direction:column;height:auto;max-width:50%;min-width:50%;padding:30px}.HalfAndHalfBreaker-section:first-child{padding-left:0}.HalfAndHalfBreaker-section:last-child{border-left:1px solid #fff;border-top:none;padding-right:0}}.HalfAndHalfBreaker-newsletterIcon{display:flex;margin-right:15px}.HalfAndHalfBreaker-newsletterIcon .icon-newsletter:before{font-size:38px;line-height:.73;position:relative;top:4px}@media (min-width:760px){.HalfAndHalfBreaker-newsletterIcon .icon-newsletter:before{font-size:44px;top:-2px}}@media (min-width:1020px){.HalfAndHalfBreaker-newsletterIcon .icon-newsletter:before{top:4px}}@media (min-width:1340px){.HalfAndHalfBreaker-newsletterIcon .icon-newsletter:before{font-size:45px;top:3px}}.HalfAndHalfBreaker-logo{display:block;height:auto;margin-right:15px;width:160px}@media (min-width:760px){.HalfAndHalfBreaker-logo{width:265px}}@media (min-width:1020px){.HalfAndHalfBreaker-logo{width:265px}}.HalfAndHalfBreaker-title{align-items:center;color:#fff;display:flex;font-size:24px;font-weight:700;letter-spacing:-.16em;line-height:32px;margin-bottom:10px;max-width:100%;position:relative;z-index:2}@media (min-width:760px){.HalfAndHalfBreaker-title{align-items:flex-start;font-size:26px;line-height:30px;padding-right:30px;width:51%}}@media (min-width:1020px){.HalfAndHalfBreaker-title{align-items:center;font-size:32px;line-height:31px;min-height:40px;padding-right:20px;width:100%}}.HalfAndHalfBreaker-titleImage{display:block;margin-bottom:10px;max-width:100%;padding-right:20px;position:relative;z-index:2}@media (min-width:760px){.HalfAndHalfBreaker-titleImage{max-height:40px;padding-right:30px;width:51%}}@media (min-width:1020px){.HalfAndHalfBreaker-titleImage{padding-right:20px;width:100%}}.HalfAndHalfBreaker-content{max-width:100%;position:relative;z-index:2}@media (min-width:760px){.HalfAndHalfBreaker-content{float:left;width:60%}}@media (min-width:1020px){.HalfAndHalfBreaker-content{align-items:flex-start;display:flex;flex-direction:column;flex-grow:1;float:none;width:auto}}@media (min-width:1340px){.HalfAndHalfBreaker-content{display:flex;flex-direction:row;justify-content:space-between;width:100%}}.HalfAndHalfBreaker-description{color:#fff;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:16px;font-weight:500;line-height:24px;margin:0 0 20px;max-width:100%;position:relative;z-index:2}@media (min-width:760px){.HalfAndHalfBreaker-description{margin-top:0}}@media (min-width:1020px){.HalfAndHalfBreaker-description{margin-top:15px;padding-right:20px}}@media (min-width:1340px){.HalfAndHalfBreaker-description{margin-bottom:0;max-width:none;padding-right:40px}}.HalfAndHalfBreaker-button{background:#0000;border:1px solid #fff;color:#fff;display:inline-block;font-size:12px;font-weight:600;height:40px;letter-spacing:1.09px;line-height:40px;position:relative;text-align:center;text-transform:uppercase;white-space:nowrap;width:100%;z-index:2}.HalfAndHalfBreaker-button:hover{background-color:#fcb700;border-color:#fcb700;color:#071d39}@media (min-width:760px){.HalfAndHalfBreaker-button{padding:0 20px;width:auto}}@media (min-width:1020px){.HalfAndHalfBreaker-button{margin-top:auto}}@media (min-width:1340px){.HalfAndHalfBreaker-button{margin:20px 0 0 auto}}.HalfAndHalfBreaker-background1{background-position:50%;background-size:cover;border:none;height:100%;left:0;position:absolute;top:0;width:100%}@media (min-width:760px){.HalfAndHalfBreaker-background1{width:100%}}@media (min-width:1020px){.HalfAndHalfBreaker-background1{left:0;margin-left:calc(-50vw - -480px);width:50vw}}@media (min-width:1180px){.HalfAndHalfBreaker-background1{margin-left:calc(-50vw - -538.5px)}}@media (min-width:1340px){.HalfAndHalfBreaker-background1{margin-left:calc(-50vw - -645px)}}.HalfAndHalfBreaker-background1:after{background:linear-gradient(90deg,#071d39e6,#39bb7ae6);content:"";height:100%;left:0;position:absolute;top:0;width:100%;z-index:1}@media (min-width:1020px){.HalfAndHalfBreaker-background2{margin-left:0}}.HalfAndHalfBreaker-background2:after{background:linear-gradient(90deg,#071d39e6,#005594e6);content:"";height:100%;left:0;position:absolute;top:0;width:100%;z-index:1}.HalfAndHalfBreaker-proBackground:after{background:#2e2e2e linear-gradient(180deg,#2e2e2e 40%,#39bb7ae6)}@media (min-width:1020px){.HalfAndHalfBreaker-proBackground:after{background:#2e2e2e linear-gradient(90deg,#2e2e2e 40%,#39bb7ae6)}}.HalfAndHalfBreaker-watchlistBackground:after{background:linear-gradient(270deg,#071d39e6 10%,#005594)}@media (min-width:760px){.HalfAndHalfBreaker-watchlistBackground:after{background:linear-gradient(90deg,#2e2e2ee6 40%,#005594)}}.HalfAndHalfBreaker-newsletterBackground:after{background:linear-gradient(180deg,#2e2e2e80,#071d39)}@media (min-width:1020px){.HalfAndHalfBreaker-newsletterBackground:after{background:linear-gradient(90deg,#2e2e2ecc 40%,#071d39e6)}}.WatchlistPage-container{max-width:100%;min-height:500px;position:relative}@media (min-width:360px){.WatchlistPage-container{margin-bottom:0}}@media (min-width:760px){.WatchlistPage-container{margin:0 auto;max-width:678px}}@media (min-width:1020px){.WatchlistPage-container{margin-bottom:15px;max-width:960px}}@media (min-width:1340px){.WatchlistPage-container{margin-bottom:25px;max-width:1290px}}.WatchlistPage-header{display:flex;justify-content:space-between;margin-top:30px}.WatchlistPage-header h2{margin:0}.WatchlistPage-header button{border:1px solid #002f6c;color:#002f6c;padding:10px}.StickyProductMarketingPage-pnHeader{background-color:#fff;box-shadow:0 4px 4px #00000040;display:flex;height:80px;justify-content:center;position:fixed;top:0;width:100%;z-index:99}.StickyProductMarketingPage-staticHeader{align-items:center;display:flex;flex-direction:row;gap:24px;height:104px;justify-content:space-between;margin:auto;max-width:1290px;padding-bottom:20px;position:fixed;top:0;width:100%}.StickyProductMarketingPage-cnbcLogo{margin-left:25px}.StickyProductMarketingPage-cnbcLogo>img{height:23px;width:135px}.StickyProductMarketingPage-headerSubscribe{color:#000;font-size:20px;font-weight:600;letter-spacing:1.09091px;line-height:16px;margin-right:25px;text-align:center}.StickyProductMarketingPage-allAccessButtonHeader,.StickyProductMarketingPage-buttonHeaderBaseStyle,.StickyProductMarketingPage-freeAccountButtonHeader,.StickyProductMarketingPage-investingClubButtonHeader,.StickyProductMarketingPage-plusButtonHeader,.StickyProductMarketingPage-proButtonHeader{background:#ffbc05;border:0;border-radius:3px;color:#fff;font-size:14px;font-weight:600;height:46px;letter-spacing:1.09091px;line-height:16px;margin-left:12px;text-align:center;text-transform:uppercase;width:199px}.StickyProductMarketingPage-allAccessButtonHeader:hover,.StickyProductMarketingPage-buttonHeaderBaseStyle:hover,.StickyProductMarketingPage-freeAccountButtonHeader:hover,.StickyProductMarketingPage-investingClubButtonHeader:hover,.StickyProductMarketingPage-plusButtonHeader:hover,.StickyProductMarketingPage-proButtonHeader:hover{background:#0477c9}.StickyProductMarketingPage-plusButtonHeader{background:#001e5a;width:116px}.StickyProductMarketingPage-plusButtonHeader:hover{background:#002f6c}.StickyProductMarketingPage-allAccessButtonHeader{background:#0053cf}.StickyProductMarketingPage-allAccessButtonHeader:hover{background:#0477c9}.StickyProductMarketingPage-proButtonHeader{background:#008456;width:140px}.StickyProductMarketingPage-proButtonHeader:hover{background:#005034}.StickyProductMarketingPage-investingClubButtonHeader{background:#071d39}.StickyProductMarketingPage-investingClubButtonHeader:hover{background:#1896ff}.StickyProductMarketingPage-freeAccountButtonHeader{background:#336aa0}.StickyProductMarketingPage-freeAccountButtonHeader:hover{background:#002f6c}@media (max-width:759px){.StickyProductMarketingPage-pnHeader{height:52px}.StickyProductMarketingPage-staticHeader{gap:unset;height:72px;width:100%}.StickyProductMarketingPage-cnbcLogo{margin-left:10px}.StickyProductMarketingPage-cnbcLogo>img{height:15px;width:83px}.StickyProductMarketingPage-headerSubscribe{align-items:center;display:flex;font-size:12px;font-weight:600;letter-spacing:.09px;line-height:16px;margin-right:20px}.StickyProductMarketingPage-allAccessButtonHeader,.StickyProductMarketingPage-buttonHeaderBaseStyleMobileTablet,.StickyProductMarketingPage-freeAccountButtonHeader,.StickyProductMarketingPage-investingClubButtonHeader,.StickyProductMarketingPage-plusButtonHeader,.StickyProductMarketingPage-proButtonHeader{font-size:10px;font-weight:600;height:28px;letter-spacing:1.09091px;line-height:10px;margin-left:5px;text-transform:uppercase;width:120px}.StickyProductMarketingPage-plusButtonHeader{width:55px}.StickyProductMarketingPage-proButtonHeader{width:120px}}.SiteMapHeader-container{display:flex;flex-direction:row;flex-wrap:wrap;padding:0;width:100%}@media (min-width:760px){.SiteMapHeader-container{padding-left:0;padding-right:0}}.SiteMapHeader-heading{border-top:1px solid #747474;color:#002f6c;font-size:30px;font-weight:800;letter-spacing:.5px;line-height:37px;margin-bottom:20px;margin-top:0;padding-top:10px;position:relative;text-transform:uppercase;width:100%}@media (min-width:760px){.SiteMapHeader-heading{margin-bottom:30px}}@media (min-width:1020px){.SiteMapHeader-heading{font-size:32px;line-height:40px}}.SiteMapHeader-heading:before{background-color:#2077b6;content:"";height:6px;left:0;position:absolute;top:-6px;width:110px}.SiteMapSubMenuItems-sitemapSubMenuItem{color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.03em;line-height:22px;text-align:left}.SiteMapSubMenuItems-sitemapSubMenuItem:hover{text-decoration:underline}.SiteMapMenuItem-menuItemColumn{margin-bottom:20px;width:100%}@media (min-width:760px){.SiteMapMenuItem-menuItemColumn{margin-bottom:30px;width:33.33333%}}.SiteMapMenuItem-sitemapMenuItemLabel{color:#002f6c;display:inline-block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.06em;text-align:left;text-transform:uppercase}.SiteMapMenuItem-sitemapMenuItemLabel:hover{color:#fcb700}.SiteMapMenu-container{position:relative}.SiteMapMenu-sitemapMenuWrapper{display:flex;flex-wrap:wrap}.SiteMapBreadCrumb-container{border-bottom:1px dotted #747474;padding-bottom:4px}.SiteMapBreadCrumb-container li{color:#005594;display:inline;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:500;letter-spacing:.06em;line-height:1.375;list-style-type:none;padding-bottom:12px;padding-right:10px;position:relative;text-transform:uppercase}.SiteMapBreadCrumb-container li:after{color:#ffbc05;content:">";display:inline;font-size:16px;padding-left:10px}.SiteMapBreadCrumb-container li:last-child{font-weight:700}.SiteMapBreadCrumb-container li:last-child:after{content:""}.SiteMapBreadCrumb-container .SiteMapBreadCrumb-link{word-break:break-word}.SiteMapBreadCrumb-container a{color:#005594}.SiteMapBreadCrumb-container a:hover{color:#ffbc05}@media (max-width:759px){.SiteMapBreadCrumb-container li:nth-child(4):before{content:"\A";white-space:pre}}.SiteMapMonth-container{margin-bottom:30px;width:100%}.SiteMapMonth-container h3{color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:700;letter-spacing:.06em;margin-bottom:6px;padding-bottom:8px;text-transform:uppercase}.SiteMapMonth-monthData ul{display:flex;flex-direction:column;flex-wrap:wrap;height:300px}@media (max-width:759px){.SiteMapMonth-monthData ul{display:table}}.SiteMapMonth-monthData li{color:#2e2e2e;cursor:pointer;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.03em;line-height:1.375;list-style-type:none;padding-bottom:12px;padding-right:10px;position:relative}.SiteMapMonth-monthData .SiteMapMonth-link{word-break:break-word}.SiteMapMonth-monthData a{color:#2e2e2e}.SiteMapMonth-monthData a:hover{color:#2e2e2e;text-decoration:underline}.SiteMapDay-container{margin:0 0 30px;width:100%}.SiteMapDay-container h3{color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:700;letter-spacing:.06em;margin-bottom:6px;padding-bottom:8px;text-transform:uppercase}.SiteMapDay-fullDate ul{display:flex;flex-direction:column;flex-wrap:wrap;height:375px}@media (max-width:759px){.SiteMapDay-fullDate ul{display:table}}.SiteMapDay-fullDate li{color:#2e2e2e;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.03em;line-height:1.375;list-style-type:none;margin:0 10px 12px 0;position:relative}.SiteMapDay-fullDate .SiteMapDay-link{word-break:break-word}.SiteMapDay-fullDate a{color:#2e2e2e}.SiteMapDay-fullDate a:hover{color:#2e2e2e;text-decoration:underline}.SiteMapArticleList-container{display:flex;flex-direction:row;flex-wrap:wrap;padding:0;width:100%}@media (min-width:760px){.SiteMapArticleList-container{padding-left:0;padding-right:0}}.SiteMapArticleList-content{width:100%}.SiteMapArticleList-content h3{color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:700;letter-spacing:.06em;margin-bottom:6px;padding-bottom:8px;text-transform:uppercase}.SiteMapArticleList-articleData li,.SiteMapArticleList-emptyPage{color:#2e2e2e;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.03em}.SiteMapArticleList-articleData li{line-height:1.3;list-style-type:none;padding-bottom:14px;padding-right:10px;position:relative}.SiteMapArticleList-articleData li .SiteMapArticleList-link{word-break:break-word}.SiteMapArticleList-articleData li a{color:#2e2e2e}.SiteMapArticleList-articleData li a:hover{color:#2e2e2e;text-decoration:underline}.SiteMapYear-container{margin-bottom:30px;width:100%}.SiteMapYear-container h3{border-bottom:1px dotted #005594;color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.06em;margin-bottom:10px;text-transform:uppercase}.SiteMapYear-yearData{padding-top:15px}.SiteMapYear-yearData ul{column-count:3;column-gap:0}@media (max-width:759px){.SiteMapYear-yearData ul{display:table}}.SiteMapYear-yearData li{color:#005594;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.03em;line-height:1.375;list-style-type:none;padding-bottom:12px;padding-right:10px;position:relative}.SiteMapYear-yearData .SiteMapYear-link{word-break:break-word}.SiteMapYear-yearData a{color:#005594}.SiteMapYear-yearData a:hover{color:#ffbc05}.SiteMap-container{margin:0 22px;max-width:100%;padding-top:5px}@media (min-width:360px){.SiteMap-container{margin-bottom:0}}@media (min-width:760px){.SiteMap-container{margin:0 auto;max-width:678px}}@media (min-width:1020px){.SiteMap-container{margin-bottom:15px;max-width:960px}}@media (min-width:1340px){.SiteMap-container{margin-bottom:25px;max-width:1290px}}.SiteMap-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.SiteMap-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.SiteMap-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.SiteMap-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.SiteMap-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.SiteMap-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.SiteMap-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.SiteMap-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}.SiteMap-col-9{padding-top:30px}.SiteMap-col-9 .BrandBanner-container{margin-bottom:30px;z-index:99}@media (min-width:1340px){.SiteMap-col-9 .BrandBanner-container{margin-left:calc(-50vw - -538.5px)}}@media (min-width:760px){.SiteMap-col-9 .BrandBanner-container{margin-bottom:-100px;margin-top:50px}.SiteMap-col-9{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.SiteMap-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.SiteMap-col-9{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.SiteMap-col-9{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.SiteMap-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.SiteMap-col-9{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.SiteMap-col-9:last-child{margin-right:0}}@media (min-width:1340px){.SiteMap-col-9{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}}.ExclusiveContentBucket-exclusiveContentBucket{font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin-bottom:40px;margin-top:40px}@media (min-width:760px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-29.16667%;max-width:677px}}@media (min-width:760px) and (min-width:760px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-29.16667%}}@media (min-width:760px) and (min-width:1020px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-29.16667%}}@media (min-width:760px) and (min-width:1340px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-29.16667%}}@media (min-width:1020px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-20.83333%;width:630px}}@media (min-width:1020px) and (min-width:760px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-20.83333%}}@media (min-width:1020px) and (min-width:1020px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-20.83333%}}@media (min-width:1020px) and (min-width:1340px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-20.83333%}}@media (min-width:1340px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-16.66667%}}@media (min-width:1340px) and (min-width:760px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-16.66667%}}@media (min-width:1340px) and (min-width:1020px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-16.66667%}}@media (min-width:1340px) and (min-width:1340px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-16.66667%}}.ExclusiveContentBucket-exclusiveContentBucket .ExclusiveContentBucket-exclusiveContentHeading{color:#002f6c;font-size:20px;font-weight:900;letter-spacing:.25px;line-height:24px;text-transform:uppercase}.ExclusiveContentBucket-smallSpan{background-color:#002f6c;display:block;height:6px;width:88px}.ExclusiveContentBucket-border{background-color:#747474;display:block;height:1px;width:100%}.ExclusiveContentBucket-contentContainer{display:flex;flex-direction:column;justify-content:space-between;overflow-x:scroll}@media (min-width:760px){.ExclusiveContentBucket-contentContainer{overflow-x:unset}}@media (prefers-color-scheme:dark){.webview .ExclusiveContentBucket-exclusiveContentBucket .ExclusiveContentBucket-exclusiveContentHeading{color:#dce0e4}.webview .ExclusiveContentBucket-smallSpan{background-color:#dce0e4}.webview .ExclusiveContentBucket-border{background-color:#f8f8f8}}.BucketItemByline-author{display:none;font-family:Lyon,Helvetica,Arial,sans-serif;font-weight:600;letter-spacing:.5px;line-height:16px;margin-right:10px}@media (min-width:760px){.BucketItemByline-author{display:inline}}.BucketItemByline-author a{color:#002f6c!important;font-size:12px;margin-right:8px;text-decoration:none!important}@media (prefers-color-scheme:dark){.webview .BucketItemByline-author a{font-size:12px}}.BucketItem-bucketItem{border-bottom:1px dashed #9e9e9e;display:flex;padding-bottom:10px;padding-top:20px}.BucketItem-bucketItem .BucketItem-title{font-size:18px;font-weight:600;line-height:22px;margin-bottom:16px}.BucketItem-bucketItem .BucketItem-title a{color:#171717;text-decoration:none!important}@media (max-width:759px){.BucketItem-bucketItem .BucketItem-title{font-size:16px;font-weight:500;line-height:20px;margin-bottom:0}}.BucketItem-bucketItem .BucketItem-publishTime{color:#747474;display:inline;font-size:12px;font-weight:600;letter-spacing:1.5px;line-height:16px;margin-top:9px;text-transform:uppercase}.BucketItem-bucketItem .BucketItem-textContainer{display:flex;flex-direction:column;justify-content:space-between;margin-left:-20px}@media (max-width:759px){.BucketItem-bucketItem .BucketItem-textContainer{margin-left:-25px}}.BucketItem-bucketItem .BucketItem-bylineContainer{display:flex;margin-top:10px}@media (max-width:759px){.BucketItem-bucketItem .BucketItem-bylineContainer{margin-top:0}}.BucketItem-bucketItem .BucketItem-icTextContainer{margin-left:-25px}.BucketItem-bucketImage{height:95px;object-fit:cover;width:190px}@media (max-width:759px){.BucketItem-bucketImage{height:75px;width:100px}}.BucketItem-bucketImageContainer{display:flex}.BucketItem-proPill{height:30px}.BucketItem-proPillContainer{position:relative;right:40px}@media (max-width:759px){.BucketItem-proPillContainer{right:40px}}.BucketItem-investingClubPill{height:25px}.BucketItem-investingClubPillContainer{position:relative;right:45px}@media (max-width:759px){.BucketItem-investingClubPillContainer{right:40px}}.BucketItem-investingClubItem{border-bottom-left-radius:15px;border-bottom-right-radius:15px}.BucketItem-proItem{border-bottom-right-radius:15px;border-top-left-radius:15px}@media (prefers-color-scheme:dark){.webview .BucketItem-bucketItem .BucketItem-textContainer .BucketItem-title a{color:#dce0e4}}.PlayerLoadingIndicator-loadingContainer{margin-bottom:30px;padding-bottom:56.25%;position:relative;text-align:center}.PlayerLoadingIndicator-loadingOverlay{align-items:center;background-color:#000;display:flex;height:100%;justify-content:center;left:0;position:absolute;top:0;width:100%}.LiveStreamPlayer-container.LiveStreamPlayer-isNotLoaded{display:block;max-width:100%;padding-bottom:57%}.LiveStreamPlayer-languageContainer{align-items:center;display:flex;font-size:14px;margin:13px 0}.LiveStreamPlayer-bold,.LiveStreamPlayer-toggle{margin-right:12px}.LiveStreamPlayer-bold{font-weight:800}.LiveStreamPlayer-toggle{margin-right:12px}.LiveStreamPlayer-toggle:hover{cursor:pointer}.jw-settings-audioTracks{display:none!important}.AudioButton-container{border-top:6px solid #0496ff;height:100%;left:0;position:absolute;top:0;width:100%;z-index:1}.AudioButton-base{align-items:center;background-color:#0496ff;color:#fff;display:flex;font-size:12px;height:50px;justify-content:center;position:absolute;right:0;top:-5px;transition:all .15s linear;width:50px;z-index:1}@media (min-width:760px){.AudioButton-base{font-size:22px;height:80px;width:80px}}.AudioButton-audioIcon{align-items:center;background-image:url(https://static-redesign.cnbcfm.com/dist/3416c1156c67ef487325.svg);border:2px solid #0496ff;display:flex;height:40px;justify-content:center;transition:border .15s linear;width:40px;z-index:2}.AudioButton-base:hover .AudioButton-audioIcon,.AudioButton-container:focus .AudioButton-audioIcon,.AudioButton-container:hover .AudioButton-audioIcon,a:focus .AudioButton-audioIcon,a:hover .AudioButton-audioIcon,button:focus .AudioButton-audioIcon,button:hover .AudioButton-audioIcon{border:2px solid #fff}@media (min-width:760px){.AudioButton-audioIcon{height:60px;width:60px}}.AudioButton-flyout{align-items:center;background-color:#0496ff;color:#fff;display:flex;font-size:9px;font-weight:800;height:100%;justify-content:center;letter-spacing:1px;line-height:1;position:absolute;right:35px;text-align:left;text-transform:uppercase;top:0;transform:scaleX(0);transform-origin:center right;transition:color .15s linear,transform .15s linear .15s;width:90px;z-index:1}.AudioButton-base:hover .AudioButton-flyout,.AudioButton-container:focus .AudioButton-flyout,.AudioButton-container:hover .AudioButton-flyout,a:focus .AudioButton-flyout,a:hover .AudioButton-flyout,button:focus .AudioButton-flyout,button:hover .AudioButton-flyout{color:#fff;transform:scaleX(1);transition:color .15s linear .15s,transform .15s linear}@media (min-width:760px){.AudioButton-flyout{font-size:20px;letter-spacing:2.2px;right:80px;text-align:center;width:200px}}@media (max-width:1019px){.AudioButton-base:hover .AudioButton-flyout.AudioButton-suppressFlyout,a:focus .AudioButton-flyout.AudioButton-suppressFlyout,a:hover .AudioButton-flyout.AudioButton-suppressFlyout,button:focus .AudioButton-flyout.AudioButton-suppressFlyout,button:hover .AudioButton-flyout.AudioButton-suppressFlyout{transform:scaleX(0)}}.Timer-progress{stroke:#fcb700;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%) rotate(-90deg)}.Timer-progress circle{stroke-dasharray:302;stroke-dashoffset:302;animation:Timer-dash 5s linear}.Timer-sticky .Timer-progress circle{stroke-dasharray:151;stroke-dashoffset:151;animation:Timer-sticky-dash 5s linear}@keyframes Timer-dash{0%{stroke-dashoffset:302}to{stroke-dashoffset:0}}@keyframes Timer-sticky-dash{0%{stroke-dashoffset:151}to{stroke-dashoffset:0}}.Timer-buttonWrapper{align-items:center;border:1px solid #cfd8e266;color:#fff;display:flex;height:40px;justify-content:center;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);width:40px}.Timer-buttonWrapper span{display:flex}.Timer-buttonWrapperEnded{border-radius:50%;box-shadow:inset 0 0 2px 0 #cfd8e2,0 0 2px 0 #cfd8e2;font-size:24px;height:66px;width:66px}@media (min-width:360px){.Timer-buttonWrapperEnded{font-size:36px;height:96px;width:96px}}.Timer-sticky .Timer-buttonWrapperEnded{font-size:18px;height:48px;width:48px}.Timer-buttonWrapperEnded:hover{color:#fcb700}.Timer-buttonWrapperEnded .icon-buffett-video{margin-left:5px}.Recommend-sticky .Recommend-buttonWrapperEnded .icon-buffett-video{margin-left:3px}.ScaledTimer-cancel{color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;left:50%;letter-spacing:.06em;position:absolute;text-transform:uppercase;top:calc(50% + 60px);transform:translateX(-50%)}.ScaledTimer-cancel:hover{color:#fcb700}.Recommend-endCardWrapper{background-color:#002f6ccc;background-image:url(https://static-redesign.cnbcfm.com/dist/8e3639eed7df32fad761.jpg);background-size:cover;cursor:pointer;height:0;padding-bottom:56.25%;position:relative;width:100%}.Recommend-endCardWrapper .Recommend-title{color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:18px;font-weight:600;line-height:1.1em}.Recommend-replay .Recommend-endCardWrapper .Recommend-title{font-size:16px}@media (min-width:1020px){.Recommend-endCardWrapper .Recommend-title{font-size:18px;letter-spacing:.17px}}@media (min-width:1340px){.Recommend-endCardWrapper .Recommend-title{font-size:24px}}.Recommend-endCardWrapper:before{background:linear-gradient(#0000,#002f6c);bottom:0;content:"";height:100%;left:0;position:absolute;width:100%}@media (min-width:760px){.Buffett-wrapper{max-width:100%}}.Recommend-buttons{display:flex;justify-content:space-between;left:15px;position:absolute;text-align:right;top:15px;width:calc(100% - 30px)}.Recommend-buttons span{color:#fff;font-size:15px}.Recommend-buttons span:hover{color:#fcb700}.Recommend-content{bottom:15px;left:15px;padding-right:55px;position:absolute}.Recommend-eyebrow,.Recommend-eyebrow.Recommend-compact,.Recommend-mobile .Recommend-compact{color:#fcb700;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;letter-spacing:2px;line-height:15px;margin-bottom:3px;text-transform:uppercase}.Recommend-replay
.Recommend-eyebrow.Recommend-compact,.Recommend-replay
.Recommend-mobile .Recommend-compact,.Recommend-replay .Recommend-eyebrow{font-size:10px}.Recommend-mobile .Recommend-replay .Recommend-eyebrow,.Recommend-mobile .Recommend-replay .Recommend-title,.Recommend-replay .Recommend-compact{display:none}.Recommend-mobile .Recommend-replay .Recommend-compact{color:#fff;display:initial}.Recommend-mobile .Recommend-replay .Recommend-eyebrow.Recommend-compact{padding-left:4px}.Recommend-endCardWrapper.Recommend-sticky .Recommend-eyebrow{font-size:10px;letter-spacing:.83px}.Recommend-endCardWrapper.Recommend-sticky .Recommend-title{font-size:12px;font-weight:700;letter-spacing:.5px;line-height:1.25}.Recommend-titleDark{color:#fff}.Recommend-slideshowItem .Recommend-titleDark{font-size:16px;letter-spacing:.15px;margin-top:5px}@media (min-width:760px){.Recommend-slideshowItem .Recommend-titleDark{font-size:24px;letter-spacing:.22px}}.PlaceHolder-buffettLongFormWrapper .Buffett-endCardWrapper{padding-bottom:calc(50% + 10px)}@media (min-width:760px){.PlaceHolder-buffettLongFormWrapper .Buffett-endCardWrapper{padding-bottom:calc(50% + 20px)}}@media (min-width:1020px){.PlaceHolder-buffettLongFormWrapper .Buffett-endCardWrapper{padding-bottom:680.625px}}.Recommend-content.Recommend-replay{bottom:auto;top:15px}.Recommend-sticky{padding-bottom:0;position:fixed;top:auto}.Recommend-endCardWrapper .icon-close{display:none}.Recommend-endCardWrapper.Recommend-sticky .icon-close{align-items:center;background:#fcb700;color:#fff;display:flex;font-size:15px;font-weight:900;height:28px;justify-content:center;left:0;position:relative;top:-28px;width:28px}.Recommend-endCardWrapper.Recommend-sticky .Recommend-cancel{display:none}.LiveEventDescription-container{margin-bottom:58px}.LiveEventDescription-container.LiveEventDescription-berkshireHathaway{margin-bottom:42px}.LiveEventDescription-container.LiveEventDescription-berkshireHathaway .group{max-width:unset}.LiveEventDescription-container.LiveEventDescription-berkshireHathaway .group p{font-family:Lyon,Helvetica,Arial,sans-serif;font-weight:400}.LiveEventDescription-container.LiveEventDescription-berkshireHathaway.LiveEventDescription-homepage p{font-family:Proxima Nova,Helvetica,Arial,sans-serif}@media (max-width:1019px){.LiveEventDescription-container.LiveEventDescription-berkshireHathaway{margin-bottom:30px}}@media (max-width:759px){.LiveEventDescription-container.LiveEventDescription-berkshireHathaway{margin-bottom:16px}}.LiveEventDescription-tagContainer{display:flex;flex-direction:row;margin:0 0 16px}.LiveEventDescription-title{color:#000;display:block;font-family:Proxima Nova,sans-serif;font-size:14px;font-weight:600;line-height:18px;margin:0;padding-right:18px;white-space:nowrap}@media (max-width:759px){.LiveEventDescription-title{display:none}}.LiveEventDescription-description{display:block}.LiveEventDescription-headline{color:#000;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:22px;font-weight:700;letter-spacing:.03px;line-height:26px;margin-bottom:16px;text-align:left}.LiveEventDescription-details{color:#000;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:18px;font-weight:400;letter-spacing:.4444px;line-height:26px}.LiveEventDescription-timestamp{color:#747474;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;letter-spacing:1.5px;line-height:16px;margin-top:16px;text-transform:uppercase}.LiveEventDescription-description .group{font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin-left:0}.LiveEventDescription-description .group a{color:#2077b6;text-decoration:underline}.LiveEventDescription-description .group a:hover{color:#fcb700}.LiveEventDescription-description .group ol,.LiveEventDescription-description .group ol li,.LiveEventDescription-description .group ul,.LiveEventDescription-description .group ul li{list-style:revert;margin-left:10px}.CreateFreeAccountButton-buttonContainer{background:#002f6c;border-radius:2px;color:#fff;height:100%;padding:10px;width:100%}.CreateFreeAccountButton-buttonContainer:hover{color:#ffe895}@media (min-width:760px){.CreateFreeAccountButton-buttonContainer{max-height:50px;order:2;width:180px}}.CreateFreeAccountButton-buttonContainer .CreateFreeAccountButton-buttonText{align-items:center;display:flex;font-size:11px;font-weight:400;justify-content:center}@media (min-width:760px){.CreateFreeAccountButton-buttonContainer .CreateFreeAccountButton-buttonText{flex-direction:column}}.CreateFreeAccountButton-buttonContainer .CreateFreeAccountButton-buttonText .CreateFreeAccountButton-buttonTextBold{font-size:12px;font-weight:800;letter-spacing:.5px;margin-left:8px}@media (min-width:760px){.CreateFreeAccountButton-buttonContainer .CreateFreeAccountButton-buttonText .CreateFreeAccountButton-buttonTextBold{font-size:11px;margin-left:0}}.QuoteItem-item{border:.5px solid #cfd8e2;border-radius:7px;display:flex;margin:0 15px 10px 0;position:relative}.QuoteItem-item:before{content:"";display:none}.QuoteItem-item:hover{border:.5px solid #747474}.QuoteItem-item.QuoteItem-hideHoverBorder{border:.5px solid #cfd8e2}.QuoteItem-link{align-items:center;display:flex;padding:8px;text-decoration:none!important;white-space:nowrap}.QuoteItem-link.QuoteItem-extHours{padding:7px 8px}.QuoteItem-link.QuoteItem-updated{border-color:#002f6c;transition:border-color .25s}.QuoteItem-symbol{color:#171717;font-family:Proxima Nova,sans-serif;font-size:12px;font-weight:700;line-height:12px;margin:0}@media (prefers-color-scheme:dark){.webview .QuoteItem-symbol{color:#fff}}.QuoteItem-quote,.QuoteItem-quoteDown,.QuoteItem-quoteUp{color:#747474;font-family:Proxima Nova,sans-serif;font-size:12px;font-weight:700;line-height:12px;margin:0 0 0 5px}.QuoteItem-quoteUp{color:#008456}.QuoteItem-quoteDown{color:#d0021b}.QuoteItem-afterHoursIcon{display:inline;height:14px;margin-left:8px}.RelatedQuotes-relatedQuotes{display:flex;flex-direction:column;margin:0 0 28px}@media (max-width:1019px){.RelatedQuotes-relatedQuotes{overflow-x:hidden}}@media (min-width:760px){.RelatedQuotes-relatedQuotes{align-items:center;display:grid;grid-template-columns:auto 1fr}}.RelatedQuotes-relatedQuotes .RelatedQuotes-titleAndTime{align-items:center;display:flex;margin:0 15px 10px 0}.RelatedQuotes-relatedQuotes .RelatedQuotes-subtext,.RelatedQuotes-relatedQuotes .RelatedQuotes-text{color:#171717;font-family:Proxima Nova,sans-serif;font-size:12px;font-weight:700;line-height:16px;margin:0;padding:0;white-space:nowrap}.RelatedQuotes-relatedQuotes .RelatedQuotes-subtext{color:#747474;font-size:9px;font-weight:700;margin:0;text-transform:uppercase}.RelatedQuotes-relatedQuotes .RelatedQuotes-list{-webkit-overflow-scrolling:touch;display:flex;line-height:0;margin:0;padding:0;text-indent:0;width:100%}@media (min-width:760px){.RelatedQuotes-relatedQuotes .RelatedQuotes-list{flex-wrap:wrap}}@media (max-width:759px){.RelatedQuotes-relatedQuotes .RelatedQuotes-list{overflow-x:scroll}}.RelatedQuotes-relatedQuotes .RelatedQuotes-list.RelatedQuotes-isMobileWebview{flex-wrap:wrap}.RelatedQuotes-relatedQuotes .RelatedQuotes-list:before{content:"";display:none}.RelatedQuotes-relatedQuotes .RelatedQuotes-list::-webkit-scrollbar{display:none}.RelatedQuotes-relatedQuotes .RelatedQuotes-quotesContainer{order:2}@media (min-width:760px){.RelatedQuotes-relatedQuotes .RelatedQuotes-quotesContainer{flex-wrap:wrap;order:1}}.RelatedQuotes-relatedQuotes .RelatedQuotes-cfaButtonContainer{margin-bottom:12px;order:1}@media (min-width:760px){.RelatedQuotes-relatedQuotes .RelatedQuotes-cfaButtonContainer{align-items:center;display:flex;margin-bottom:0;margin-left:auto;order:2}}@media (max-width:759px){.RelatedQuotes-listDropdownVisible{overflow-x:unset!important}}@media (prefers-color-scheme:dark){.RelatedQuotes-relatedQuotes .webview .RelatedQuotes-subtext,.webview .RelatedQuotes-relatedQuotes .RelatedQuotes-subtext,.webview .RelatedQuotes-text{color:#fff}.webview .RelatedQuotes-subtext{color:#9a9fa7!important}}.LiveEventSlate-container .LiveEventSlate-liveEventSlate{background-repeat:no-repeat;background-size:contain;display:block;margin-bottom:30px;max-width:100%;padding-bottom:57%}.LiveEventSlate-container .LiveEventSlate-error{background-image:url(https://static-redesign.cnbcfm.com/dist/54f3d8c60727fdd092ad.png)}.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-investingClub{background-image:url(https://static-redesign.cnbcfm.com/dist/261db0afca7926c9c4d5.png)}@media (max-width:759px){.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-investingClub{background-image:url(https://static-redesign.cnbcfm.com/dist/635637529f397c6b0b99.png)}}.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/c4b2ab67f20d4702a761.png)}@media (max-width:759px){.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-morningMeeting{height:300px}}@media (min-width:760px){.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/05644c6301c29d5f98e1.png)}}@media (min-width:1020px){.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/0907dbcaa9e6b98f1590.png)}}@media (min-width:1340px){.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/4c02522e1899983c236e.png)}}.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-pro{background-image:url(https://static-redesign.cnbcfm.com/dist/603bc0c9eee2fffcf418.png)}.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-berkshireHathawayMeeting,.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-free{background-image:url(https://static-redesign.cnbcfm.com/dist/aa7e1174aeed08b7bd0f.png)}.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-etfEdge{background-image:url(https://static-redesign.cnbcfm.com/dist/fe6c30a870e27a7c6358.png)}.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-berkshireHathawayMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/5c142c155da6b42bf23b.png)}@media (max-width:759px){.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-berkshireHathawayMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/acff13a99fc3cb2c8406.png)}}.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-investingClub{background-image:url(https://static-redesign.cnbcfm.com/dist/9b60e1df4c50583b02fa.png)}@media (max-width:759px){.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-investingClub{background-image:url(https://static-redesign.cnbcfm.com/dist/00e4560338770d5246e7.png)}}.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/189c780e2af6e2b69066.png)}@media (max-width:759px){.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-morningMeeting{height:300px}}@media (min-width:760px){.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/b055b5b9f509671e0d77.png)}}@media (min-width:1020px){.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/00daf039d9d82c7296e8.png)}}@media (min-width:1340px){.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/b6108ecbb43ceecfdd4b.png)}}.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-pro{background-image:url(https://static-redesign.cnbcfm.com/dist/351cbae0bbe7fd326046.png)}.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-free{background-image:url(https://static-redesign.cnbcfm.com/dist/fe3c67caf861a2022cf7.png)}.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-etfEdge{background-image:url(https://static-redesign.cnbcfm.com/dist/64b2b9ef1609dc7d850a.png)}.StandaloneLiveEventPlayerWrapper-standaloneContainer{font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin-top:20px}.StandaloneLiveEventPlayerWrapper-eventState{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:20px;font-weight:600}.StandaloneLiveEventPlayerWrapper-webview{display:flex;justify-content:center;padding:15px 0}@media (max-width:359px){.StandaloneLiveEventPlayerWrapper-webview img{width:100%}}.QuoteInBody-quoteNameContainer{white-space:nowrap}.QuoteInBody-inlineButton{margin-right:-6px;position:relative}.QuoteInBody-dropdownInBody{border-radius:unset;color:#000;left:0;top:22px;width:200px}@media (max-width:1019px){.QuoteInBody-dropdownInBody{top:0;width:100%}}.CollapsibleContainer-collapsibleContainer,.CollapsibleContainer-collapsibleContent{position:relative}.CollapsibleContainer-collapsibleContent{height:auto;overflow:hidden;transition:max-height .2s ease}.CollapsibleContainer-collapsed .CollapsibleContainer-collapsibleContent{max-height:300px}@media (min-width:760px){.CollapsibleContainer-collapsed .CollapsibleContainer-collapsibleContent{max-height:140px}}.CollapsibleContainer-collapsed .CollapsibleContainer-fadingGradient{background-image:linear-gradient(180deg,#fff0,#fff 49.23%);background-image:linear-gradient(180deg,#fff0,#ffffffe6);content:"";height:80px;height:300px;left:0;position:absolute;right:0;top:calc(100% - 80px);top:0}@media (min-width:760px){.CollapsibleContainer-collapsed .CollapsibleContainer-fadingGradient{max-height:140px}}.CollapsibleContainer-expanded .CollapsibleContainer-collapsibleContent{max-height:4000px}@media (min-width:1020px){.CollapsibleContainer-expanded .CollapsibleContainer-collapsibleContent{max-height:3000px}}.CollapsibleContainer-toggleContainer{align-items:center;border-top:1px solid #d9d9d9;display:flex;height:42px;justify-content:center;position:relative;text-align:center}.CollapsibleContainer-toggle{align-items:center;color:#0477c9;cursor:pointer;display:flex;font-family:Lato,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:900;line-height:20px;transition:all .2s ease}.CollapsibleContainer-webview-normal .CollapsibleContainer-toggle{font-size:14px}.CollapsibleContainer-webview-large .CollapsibleContainer-toggle{font-size:17.5px;line-height:normal}.CollapsibleContainer-webview-larger .CollapsibleContainer-toggle{font-size:21px;line-height:normal}.CollapsibleContainer-webview-xlarge .CollapsibleContainer-toggle{font-size:24.5px;line-height:normal}.CollapsibleContainer-webview-xxlarge .CollapsibleContainer-toggle{font-size:28px;line-height:normal}.CollapsibleContainer-webview-xxxlarge .CollapsibleContainer-toggle{font-size:31.5px;line-height:normal}.CollapsibleContainer-toggle span{display:inline-block;line-height:1}.CollapsibleContainer-toggle:active,.CollapsibleContainer-toggle:focus,.CollapsibleContainer-toggle:hover,.CollapsibleContainer-toggle:link{color:#0477c9}.CollapsibleContainer-toggle .icon-arrow-down-readmore:before{font-size:13px;font-weight:400;margin-left:8px}.CollapsibleContainer-expanded .icon-arrow-down-readmore:before{display:inline-block;transform:rotate(180deg)}.Collapsible-proliveCollapsableContainer{align-items:center;border:1px solid #d9d9d9;border-top-left-radius:4px;border-top-right-radius:4px;display:flex;height:40px}.Collapsible-proliveCollapsableContainer path{fill:#747474}.Collapsible-proliveCollapsedContainer{border-radius:4px}.Collapsible-proLivePlayerCloseOrExpand{cursor:pointer;margin-left:auto;position:relative;right:20px;transition:all .1s linear}.Collapsible-dismissButton{height:16px;pointer-events:none;width:16px}.Collapsible-stockChartIcon{height:55%;margin-left:15px}.InteractiveChart-caption{color:#171717;font-size:12px;font-weight:600;line-height:1.5;margin-bottom:5px}.InteractiveChart-addToWatchlistButton{height:42px;min-width:42px;padding:8px 12px}@media (max-width:450px){.InteractiveChart-addToWatchlistButton{height:30px;min-width:30px;padding:8px}}.InteractiveChart-quoteDetailsButton{align-items:center;background:#002f6c;border:1px solid #002f6c;box-sizing:border-box;color:#fff;display:flex;font-size:12px;font-weight:600;height:42px;justify-content:center;letter-spacing:1px;line-height:12px;padding:8px 12px;text-transform:uppercase}@media (max-width:450px){.InteractiveChart-quoteDetailsButton{height:30px}}.InteractiveChart-quoteDetailsLink{text-decoration:none}.InteractiveChart-container{padding:15px 30px}.InteractiveChart-headerColumns{align-items:center;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;gap:8px;margin-bottom:10px}.InteractiveChart-headerColumn1{display:flex;flex-direction:column;flex-grow:1}.InteractiveChart-companyName{color:#000;font-size:24px;font-weight:800;line-height:32px}.InteractiveChart-quoteStripSubHeader{color:#747474;font-size:10px;font-weight:700;line-height:16px}.InteractiveChart-lastPriceStripContainer{align-items:center;display:flex;font-size:12px;font-weight:700;letter-spacing:-.1px;line-height:18px;margin-top:10px}.InteractiveChart-extendedHoursStripContainer{font-size:20px;font-weight:700;letter-spacing:-.1px}.InteractiveChart-lastPrice{color:#000;font-size:24px;font-weight:800;line-height:28px;margin-right:10px}.InteractiveChart-changeDown{color:#ce2b2b}.InteractiveChart-changeUp{color:#008456}.InteractiveChart-changeIcon{display:inline;height:8px;margin-right:4px;width:10px}.InteractiveChart-lastTradeTime{color:#424242;font-size:10px;font-weight:800;line-height:16px}.InteractiveChart-mobileButtonRow{align-items:center;display:flex;gap:10px;margin-top:10px}@media (max-width:450px){.InteractiveChart-showRange div{padding:0 8px!important}}.InteractiveChart-watchlistDropdown{border-radius:unset;color:#000;left:-4px;top:44px;width:250px}@media (max-width:1019px){.InteractiveChart-watchlistDropdown{top:0;width:100%}}@media (prefers-color-scheme:dark){.webview .InteractiveChart-caption,.webview .InteractiveChart-companyName,.webview .InteractiveChart-lastPrice,.webview .InteractiveChart-lastTradeTime{color:#dce0e4}}.Slide-name{-webkit-box-orient:vertical;-webkit-line-clamp:3;color:#171717;display:-webkit-box;font-size:14px;font-weight:800;margin:0 0 5px;overflow:hidden}.Slide-lastTime{align-items:flex-start;color:#424242;display:flex;font-size:11px;font-weight:700}.Slide-last,.Slide-lastRegMktPrice{color:#171717;display:block;font-size:20px;font-weight:800}.Slide-lastRegMkt{align-items:center;display:flex;gap:5px;margin:8px 0 0}.Slide-lastRegMktPrice{font-size:14px}.Slide-changeRegMkt{font-size:8px}.Slide-change{align-items:center;color:#171717;display:flex;font-size:10px;font-weight:800}.Slide-changeIndicator{margin:0 2px 0 0;width:10px}.Slide-changeUp{color:#008456}.Slide-changeDown{color:#ce2b2b}.Slide-changeUnchanged{color:#424858}.Slide-afterHours{color:#e8802a;margin:0 5px 0 0}.Carousel-carousel{align-items:center;display:flex;gap:10px;margin:0 0 20px}@media (max-width:759px){.Carousel-carousel{position:relative}.Carousel-carousel:before{background:linear-gradient(90deg,#0000,#fff);content:"";height:120px;position:absolute;right:0;top:0;width:30px}}.Carousel-list{display:flex;gap:10px;overflow-x:hidden;scroll-behavior:smooth;scroll-snap-type:x mandatory;scrollbar-width:none;width:100%}@media not all and (min-resolution:0.001dpcm){@supports (-webkit-appearance:none){.Carousel-list{overflow-x:auto}}}.Carousel-list::-webkit-scrollbar{height:0}@media (max-width:759px){.Carousel-list{overflow-x:auto}}.Carousel-slideWrapper{background:#f8f8f8;display:grid;grid-template-rows:1fr auto;min-width:calc(33.33333% - 6.66667px);padding:8px 10px;scroll-snap-align:start}@media (max-width:759px){.Carousel-slideWrapper{min-width:70%}}@media (min-width:760px){.Carousel-slideWrapperTwo{min-width:calc(50% - 5px)}}.Carousel-arrow{border-right:7px solid #0477c9;border-top:7px solid #0477c9;box-sizing:border-box;cursor:pointer;padding:8px;rotate:45deg}@media (max-width:759px){.Carousel-arrow{display:none}}.Carousel-arrowBack{rotate:-135deg}.Carousel-arrowDisabled{border-right-color:#cfd8e2;border-top-color:#cfd8e2;cursor:auto}.LiveBlogTimestamp-liveBlogTimeStamp>div,.LiveBlogTimestamp-time,.LiveBlogTimestamp-timeHidden{color:#747474;font-size:10px;font-weight:600;letter-spacing:1.2px;margin-bottom:10px;margin-right:4px;text-transform:uppercase;white-space:normal}.LiveBlogTimestamp-liveBlogTimeStamp>div time,.LiveBlogTimestamp-time time,.LiveBlogTimestamp-timeHidden time{white-space:nowrap}@media (min-width:760px){.LiveBlogTimestamp-liveBlogTimeStamp>div,.LiveBlogTimestamp-time,.LiveBlogTimestamp-timeHidden{font-size:12px;margin-bottom:16px}}.LiveBlogTimestamp-timeHidden{opacity:1}.LiveBlogTimestamp-liveBlogTimeStamp{align-items:center;display:flex;margin-top:0}.LiveBlogTimestamp-datetimeDivider:before{content:"•";display:inline-block;padding:0 3px}.NavigationArrows-styles-select-arrow--A1aiV{align-items:center;color:#0477c9;display:flex;font-size:48px;height:30px;line-height:30px}.NavigationArrows-styles-select-arrow--A1aiV:first-child{margin:0 30px 0 0}.NavigationArrows-styles-select-controller--qImJR>.NavigationArrows-styles-select-arrow--A1aiV:focus-visible{outline:3px solid #57ad57;outline-offset:1px}.NavigationArrows-styles-select-arrowInactive--U0brL{cursor:default;opacity:.3;-webkit-user-select:none;user-select:none}.NavigationArrows-styles-select-controller--qImJR{align-items:center;display:flex;justify-content:flex-end}.Pill-styles-select-pill--u1O5c{border-radius:3px;font-size:10px;height:-moz-fit-content;height:fit-content;min-height:14px;padding:1px 3px 1px 4px;width:-moz-fit-content;width:fit-content}.Pill-styles-select-pillDefault--rov0j{background-color:#a3cd39;color:#000}.Title-styles-select-title--VMqTu{color:#3e4855;font-family:Lato,Helvetica,Arial,sans-serif;font-size:24px;font-weight:900;line-height:normal}.Disclaimer-styles-select-disclaimer--D2JJf,.Title-styles-select-title--VMqTu{width:-moz-fit-content;width:fit-content}.Disclaimer-styles-select-disclaimerDefault--U71Mv{color:#3e4855;font-family:Lato,Helvetica,Arial,sans-serif;font-size:12px;font-weight:400;line-height:normal}.Tooltip-styles-select-tooltipContainer--UHEZW{position:relative}.Tooltip-styles-select-inline--GmIPe{display:inline-block}.Tooltip-styles-select-tooltipBody--vrNp6{background:#fff;border-radius:5px;bottom:24px;box-shadow:0 0 4px 0 #00000040;color:#757575;font-size:12px;font-weight:400;max-width:200px;padding:10px;position:absolute;transform:translate(-50%);transition:opacity .2s ease;width:max-content;z-index:999}.Tooltip-styles-select-mobileShiftRight--gtWUW{left:-90px;transform:unset}.Tooltip-styles-select-mobileShiftLeft--Hs2Fx{right:-20px;transform:unset}.Tooltip-styles-select-tooltipArrow--_4zoC{border-left:10px solid #0000;border-right:10px solid #0000;border-top:10px solid #fff;bottom:20px;content:"";height:0;left:-3px;position:absolute;width:0;z-index:999}.Tooltip-styles-select-tooltipIcon--a_uq0{fill:#757575;stroke:#757575;cursor:pointer}.Tooltip-styles-select-tooltipIcon--a_uq0:hover{fill:#005594;stroke:#005594}.Tooltip-styles-select-tooltipIcon--a_uq0:focus-visible{outline:3px solid #57ad57}.Tooltip-styles-select-iconActive--P0wah{fill:#0477c9;fill-opacity:.5;stroke:#0477c9;stroke-opacity:.5}.LearnMore-styles-select-container--dNiRG{align-items:center;color:#757575;display:flex;flex-basis:30%;flex-direction:column;font-family:Lato,Helvetica,Arial,sans-serif;font-weight:400;gap:8px}.LearnMore-styles-select-container--dNiRG>.LearnMore-styles-select-learnMoreButton--YCW2h{text-decoration:none}.LearnMore-styles-select-learnMoreButton--YCW2h{align-items:center;background-color:#1277ba;border-radius:24px;color:#fff!important;display:flex;font-family:Lato,Helvetica,Arial,sans-serif;font-size:14px;font-weight:700;height:28px;justify-content:center;letter-spacing:1.4px;position:relative;text-align:center;text-transform:uppercase;width:150px}.LearnMore-styles-select-learnMoreButton--YCW2h:hover{background-color:#005594;color:#fff;cursor:pointer}.LearnMore-styles-select-learnMoreButton--YCW2h:focus-visible:before{content:"";inset:-1px;outline:3px solid #57ad57;position:absolute}.LearnMore-styles-select-termsTextTop--kLmHQ{display:inline-block;font-size:12px;text-align:center}.LearnMore-styles-select-termsTextTop--kLmHQ .LearnMore-styles-select-icon--U2rIM{margin-right:4px;position:relative;top:2px}.LearnMore-styles-select-termsTextTop--kLmHQ a{text-decoration:underline;-webkit-text-decoration-color:#757575;text-decoration-color:#757575}.LearnMore-styles-select-termsTextTop--kLmHQ .LearnMore-styles-select-sourceText--VWYO5>p{background-color:initial;font-size:var(--pop-font-size)}.LearnMore-styles-select-container--dNiRG .LearnMore-styles-select-termsTextBottom--_t3TD{color:#171717;font-size:var(--pop-font-size)}.LearnMore-styles-select-container--dNiRG .LearnMore-styles-select-termsTextBottom--_t3TD>p{background-color:initial;font-size:var(--pop-font-size)}.LearnMore-styles-select-container--dNiRG .LearnMore-styles-select-termsTextBottom--_t3TD>p>a{color:#0477c9;text-decoration:none}.ProductDataGridItem-styles-select-item--SJoD3{display:flex;flex-direction:column;gap:8px;padding:10px;text-align:left;width:100%}.ProductDataGridItem-styles-select-item--SJoD3:first-child{border:none;border-right:1px solid #e4f0f9}.ProductDataGridItem-styles-select-item--SJoD3:nth-child(2){border-left:none}.ProductDataGridItem-styles-select-headingContainer--eqm00{display:flex;gap:4px}.ProductDataGridItem-styles-select-heading--c2XsX{color:#3e4855;font-weight:400;margin:0}.ProductDataGridItem-styles-select-item--SJoD3>.ProductDataGridItem-styles-select-contentContainer--KbRmj>.ProductDataGridItem-styles-select-content--wwq_l{background-color:initial;font-size:var(--pop-font-size)}.ProductDataGridItem-styles-select-content--wwq_l{color:#171717;font-weight:700;margin:0}.ProductDataGridItem-styles-select-item--SJoD3 .ProductDataGridItem-styles-select-content--wwq_l>p{background-color:initial;font-size:var(--pop-font-size)}div.CreditHistoryGridItem-styles-select-content--yZuwr{align-items:center;display:flex;flex-direction:column;width:max-content}div.CreditHistoryGridItem-styles-select-content--yZuwr>p{background-color:initial;display:block;font-size:var(--pop-font-size);margin-bottom:8px!important}.ProductDataGrid-styles-select-container--nV33Z{border:1px solid #e4f0f9;border-radius:5px;display:grid;font-family:Lato,Helvetica,Arial,sans-serif;font-size:var(--pop-font-size);font-style:normal;grid-template-columns:repeat(2,1fr);height:-moz-fit-content;height:fit-content;justify-content:space-evenly;line-height:normal;max-width:535px;min-width:261px;width:100%}.ProductDataGrid-styles-select-singleItem--CmmEU{grid-template-columns:repeat(1,1fr)}.PartnerOfferCard-headingContainer{align-items:center;display:flex;margin-bottom:10px}.PartnerOfferCard-headingContainer>.PartnerOfferCard-titleLink{text-decoration:none}.PartnerOfferCard-partnerOfferCard{background:#fff;border-radius:5px;box-shadow:0 0 2px 1px #ddd;display:flex;padding:12px;width:280px}.PartnerOfferCard-partnerOfferCard.PartnerOfferCard-fullWidth{width:100%}.PartnerOfferCard-outerImage{display:none}.PartnerOfferCard-fullWidth .PartnerOfferCard-learnMore{justify-content:center;margin:0 0 0 20px}@media (min-width:1340px){.PartnerOfferCard-fullWidth .PartnerOfferCard-outerImage{display:block}.PartnerOfferCard-fullWidth .PartnerOfferCard-innerImage{display:none}}@media (min-width:760px){.PartnerOfferCard-fullWidth .PartnerOfferCard-learnMoreAndHeadingContainer{flex-direction:row}}.PartnerOfferCard-title{color:#000;font-family:Lato,Helvetica,Arial,sans-serif;font-size:14px;font-weight:700;line-height:normal}.PartnerOfferCard-title:hover{color:#005594}.PartnerOfferCard-image{height:60px;margin-right:12px;object-fit:contain;width:118px}.PartnerOfferCard-partnerOfferGrid{margin-bottom:12px}@media (max-width:759px){.PartnerOfferCard-partnerOfferGrid{max-width:100%}}.PartnerOfferCard-headingAndGridContainer,.PartnerOfferCard-learnMoreAndHeadingContainer{--pop-font-size:12px;display:flex;flex-direction:column;width:100%}@media (min-width:760px){.PartnerOfferCard-learnMore{text-align:center}.PartnerOfferCard-learnMore a{margin:0}}.PartnerOffers-container{background:#f8f8f8;border-left:3px solid #0477c9;margin:24px 0}@media (min-width:760px){.PartnerOffers-container{margin-right:118px}}@media (min-width:1020px){.PartnerOffers-container{margin-left:calc(11.11111% + 3.33333px);margin-right:0;max-width:unset}}@media (min-width:1340px){.PartnerOffers-container{margin-left:calc(8.33333% + 32.5px)}}.PartnerOffers-sponsored{background:#ebf5fc}.PartnerOffers-topSection{display:flex;flex-direction:column;gap:8px;padding:12px 12px 0}.PartnerOffers-bottomSection{color:#000;padding:16px 12px}.PartnerOffers-bottomSection p{color:inherit!important;display:inline;margin:0!important}@media (max-width:759px){.PartnerOffers-topController{display:none}}.PartnerOffers-bottomController{align-items:center;display:flex;flex-direction:column;padding-bottom:16px}@media (min-width:760px){.PartnerOffers-bottomController{display:none}}.PartnerOffers-headlineRow{display:flex;justify-content:space-between}.PartnerOffers-disclosures{align-items:center;display:flex;gap:4px}.PartnerOffers-disclosures p{margin:0!important}.PartnerOffers-shiftLastTooltip [class*=tooltipBody]{right:-20px;transform:unset}.Carousel-styles-select-carousel--aEtWQ{overflow:hidden;width:100%}.Carousel-styles-select-carouselSlide--WUqSd{-webkit-overflow-scrolling:touch;display:flex;gap:12px;overflow-x:auto;scroll-snap-type:x mandatory;scrollbar-width:none;transition:transform .5s}.Carousel-styles-select-carouselSlide--WUqSd::-webkit-scrollbar{display:none}.Carousel-styles-select-carouselCard--OzvLG{display:flex;flex:0 0 auto;justify-content:center;min-width:280px;scroll-snap-align:start;width:50%}.Carousel-styles-select-carouselCard--OzvLG.Carousel-styles-select-oneCard--kZasP{max-width:100%;width:100%}.Carousel-styles-select-carouselCard--OzvLG.Carousel-styles-select-twoCards--kayn6{max-width:unset;width:calc(50% - 6px)}.Carousel-styles-select-carouselCard--OzvLG.Carousel-styles-select-threePlusCards--uqbMy{max-width:280px;width:280px}@media (min-width:760px){.Carousel-styles-select-carouselCard--OzvLG.Carousel-styles-select-threePlusCards--uqbMy{width:280px}}@media (min-width:1020px){.Carousel-styles-select-carouselCard--OzvLG.Carousel-styles-select-threePlusCards--uqbMy{width:330px}}@media (min-width:1340px){.Carousel-styles-select-carouselCard--OzvLG.Carousel-styles-select-threePlusCards--uqbMy{width:320px}}.OneTrustLoadingPlaceholder-container{align-items:center;background:#fff;display:flex;justify-content:center}.OneTrustBlockedPlaceholder-container{align-items:center;background-color:#d1d9dc;background-image:url(https://static-redesign.cnbcfm.com/dist/1eaf28c48f6e504fb498.svg);background-repeat:no-repeat;background-size:auto 100%;display:flex;justify-content:center}.OneTrustBlockedPlaceholder-innerCopy{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:18px;font-weight:800;padding:20px;text-align:center}@media (prefers-color-scheme:dark){.OneTrustBlockedPlaceholder-innerCopy{color:#111}}.OneTrustBlockedPlaceholder-link{color:#1876b8;cursor:pointer}a.OneTrustBlockedPlaceholder-onetrustSettingsDeepLink{text-decoration:none!important}.withOneTrustPlaceholder-placeholderDimensions{width:100%}@media (max-width:759px){.withOneTrustPlaceholder-placeholderDimensions{height:196px}}@media (min-width:760px){.withOneTrustPlaceholder-placeholderDimensions{height:235px}}body .videoResponsive{height:0;margin-bottom:18px;overflow:hidden;padding-bottom:56.25%;position:relative}body .videoResponsive iframe{border:0;height:100%;left:0;position:absolute;top:0;width:100%}body .postContainer iframe{display:flex;left:0;position:absolute;top:0}body .postContainer [src*=post]{position:relative;width:335px}body .postContainer [src*=video]{position:relative;width:100%}body .instagram-media iframe{width:99%}body .instagramWrapper iframe,body .tiktokWrapper iframe{left:0;right:0;width:99%}.WebService-wrapper{margin-top:20px;max-width:630px;min-height:auto;position:relative;text-align:center}@media (min-width:760px){.WebService-wrapper{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){.WebService-wrapper{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){.WebService-wrapper{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){.WebService-wrapper{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){.WebService-wrapper{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){.WebService-wrapper{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){.WebService-wrapper{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){.WebService-wrapper{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){.WebService-wrapper{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){.WebService-wrapper{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){.WebService-wrapper{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){.WebService-wrapper{margin-left:14.28571%}}@media (max-width:759px){.WebService-wrapper{margin-bottom:20px}}@media (min-width:1020px){.WebService-wrapper{margin-left:calc(16.66667% + 5px);min-width:auto}}@media (min-width:1340px){.WebService-wrapper{margin-bottom:20px;margin-left:calc(14.28571% + 4.28571px);min-width:auto}}.WebService-wsod_stock_screener.WebService-wrapper{margin-left:0;max-width:100%}.WebService-giphy{text-align:start}@media (min-width:360px){body .giphyContainer iframe{width:100%}}@media (min-width:760px){body .postContainer [src*=post]{width:395px}body .giphyContainer iframe{height:none;min-height:0;min-width:0;width:none}}@media (min-width:1020px){body .postContainer iframe{left:0;position:absolute;top:0}}@media (min-width:1180px){body .postContainer{padding-bottom:0}body .postContainer [src*=video]{display:flex}body .postContainer [src*=post]{display:flex;width:560px}}.ArticleNode-anchorWrapper{pointer-events:none;position:relative}.ArticleNode-anchorWrapper .ArticleNode-anchor{left:0;position:absolute;top:-230px;visibility:hidden}.QuoteKeyPoints-keyPointsHeader{align-items:center;color:#071d39;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:18px;font-style:normal;font-weight:900;line-height:22px;text-transform:uppercase}.QuoteKeyPoints-keyPointsContainer{margin:12px 0}.QuoteKeyPoints-keyPointsContainer .group{margin-bottom:0;margin-left:0;max-width:unset;min-width:unset}.QuoteKeyPoints-keyPointsContainer ul{padding-left:16px}.QuoteKeyPoints-keyPointsContainer ul li{color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:500;letter-spacing:.029999999329447746px;line-height:20px;list-style:disc;margin:12px 0;text-align:left}.QuoteKeyPoints-keyPointsContainer a{color:#2077b6;text-decoration:underline}.QuoteKeyPoints-keyPointsContainer a:hover{color:#fcb700}.ICBanner-icBannerContainer{display:flex;flex-direction:column}.ICBanner-icBannerComponent{align-items:center;background:#071d39;border-radius:3px;display:flex;flex:none;flex-direction:row;flex-grow:0;gap:16px;height:44px;margin-bottom:40px;order:0;padding:0;position:relative;width:100%}@media (max-width:759px){.ICBanner-icBannerComponent{gap:8px}}.ICBanner-icBannerComponentExpanded{margin-bottom:12px}@media (max-width:759px){.ICBanner-icBannerComponentExpanded{margin-bottom:4px}}.ICBanner-icBannerContainerExpanded{border-bottom:5px solid #071d39;margin-bottom:40px;padding-bottom:5px}.ICBanner-investingClubPill{height:24px;margin-left:10px;top:1px;width:49.71px!important}@media (max-width:759px){.ICBanner-investingClubPill{height:20px}}.ICBanner-portfolioLink{align-items:center;color:#005594;cursor:pointer;display:flex;float:right;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:18px;font-weight:400;letter-spacing:.444444px;line-height:28px}@media (max-width:759px){.ICBanner-portfolioLink{text-decoration:underline}}.ICBanner-icBannerHeader,.ICBanner-signInLink,.ICBanner-signInText,.ICBanner-signedOutHeader{align-items:center;color:#fff;display:flex;flex:none;flex-grow:0;font-size:12px;font-weight:700;letter-spacing:1.5px;line-height:16px;order:1;text-transform:uppercase}.ICBanner-dropdownButton{align-items:center;color:#fff;display:flex;flex:none;float:right;order:2;position:absolute;right:16px}.ICBanner-dropdownButton:active{-webkit-tap-highlight-color:transparent}.ICBanner-dropdownButton .ICBanner-dropdownArrow,.ICBanner-dropdownButton .ICBanner-dropdownUpArrow{background:#fff;height:11px;margin-left:32px;width:12px}@media (max-width:1019px){.ICBanner-dropdownButton .ICBanner-dropdownArrow,.ICBanner-dropdownButton .ICBanner-dropdownUpArrow{margin-left:78px}}@media (max-width:759px){.ICBanner-dropdownButton .ICBanner-dropdownArrow,.ICBanner-dropdownButton .ICBanner-dropdownUpArrow{margin-bottom:4px;margin-left:10px}}.ICBanner-dropdownButton .ICBanner-dropdownArrow{margin-bottom:6px;mask-image:url(https://static-redesign.cnbcfm.com/dist/95a89411c4cb62dc5920.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/95a89411c4cb62dc5920.svg)}@media (max-width:759px){.ICBanner-dropdownButton .ICBanner-dropdownArrow{margin-bottom:4px}}.ICBanner-dropdownButton .ICBanner-dropdownUpArrow{margin-bottom:0;mask-image:url(https://static-redesign.cnbcfm.com/dist/24f214b19a613fd9a0e2.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/24f214b19a613fd9a0e2.svg)}@media (max-width:759px){.ICBanner-dropdownButton .ICBanner-dropdownUpArrow{margin-top:2px}}.ICBanner-expandedComponent{display:flex;flex-direction:column}.ICBanner-expandedComponentRow{border-bottom:2px solid #e5e5e5;display:flex;flex-direction:row;margin-bottom:10px;padding-bottom:10px;width:100%}.ICBanner-rowComponent{display:flex;flex-direction:row;justify-content:space-between;width:50%}.ICBanner-heading{color:#747474;font-size:18px;font-weight:600;line-height:22px}.ICBanner-rowValue{float:right;position:relative;right:14px}.ICBanner-firstRow,.ICBanner-rowValue{color:#171717;font-size:18px;font-weight:600;line-height:22px}.ICBanner-firstRow{width:100px}@media (min-width:1340px){.ICBanner-firstRow{width:220px}}.ICBanner-mobileExpandedComponent{display:flex;flex-direction:column}.ICBanner-mobileExpandedComponentRow{border-bottom:2px solid #e5e5e5;display:flex;flex-direction:row;justify-content:space-between;margin-bottom:10px;padding-bottom:10px}.ICBanner-mobileHeading{color:#747474;font-size:18px;font-weight:700;line-height:22px;margin-left:10px}.ICBanner-mobileRowValue{color:#171717;font-size:18px;font-weight:700;line-height:22px;margin-right:10px}.ICBanner-icBannerComponentSignedOut{align-items:center;background:#071d39;border-radius:3px;color:#fff;display:flex;height:56px;margin-bottom:40px;position:relative;text-transform:uppercase;width:100%}.ICBanner-icBannerComponentSignedOut .ICBanner-investingClubPillLink{margin-top:2px}.ICBanner-icBannerComponentSignedOutMobile{height:44px}.ICBanner-signInLink,.ICBanner-signedOutHeader{order:unset}.ICBanner-clubMemberButton{border:1px solid #fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:600;height:40px;letter-spacing:1.09px;line-height:40px;text-align:center;text-transform:uppercase;width:191px}.ICBanner-signInLink{margin-right:6px;text-decoration:underline}.ICBanner-signInLink a:focus,.ICBanner-signInLink a:hover{color:#fff}.ICBanner-signInText{margin-left:10px;order:unset}.ICBanner-memberButtonContainer{margin-left:auto;margin-right:16px}.ICBanner-memberButtonContainer:focus,.ICBanner-memberButtonContainer:hover{color:#fff}.ICBanner-mobileSubscribeButton{margin-left:6px;text-decoration:underline}.QuotePageBuilder-container{margin:0 22px;max-width:100%;padding-top:15px}@media (min-width:360px){.QuotePageBuilder-container{margin-bottom:0}}@media (min-width:760px){.QuotePageBuilder-container{margin:0 auto;max-width:678px}}@media (min-width:1020px){.QuotePageBuilder-container{margin-bottom:15px;max-width:960px}}@media (min-width:1340px){.QuotePageBuilder-container{margin-bottom:25px;max-width:1290px}}@media (min-width:760px){.QuotePageBuilder-row{margin-bottom:20px;padding-top:30px}}@media (min-width:1020px){.QuotePageBuilder-row{display:flex}}.QuotePageBuilder-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.QuotePageBuilder-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.QuotePageBuilder-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.QuotePageBuilder-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.QuotePageBuilder-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.QuotePageBuilder-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.QuotePageBuilder-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.QuotePageBuilder-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}.QuotePageBuilder-mainContent{padding-top:15px}@media (min-width:1020px){.QuotePageBuilder-mainContent{padding-top:30px}}.QuotePageBuilder-mainContent .BrandBanner-container{margin-bottom:30px;z-index:99}@media (min-width:1340px){.QuotePageBuilder-mainContent .BrandBanner-container{margin-left:calc(-50vw - -538.5px)}}@media (min-width:760px){.QuotePageBuilder-mainContent .BrandBanner-container{margin-bottom:-100px;margin-top:50px}.QuotePageBuilder-mainContent{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px);padding-top:0}}@media (min-width:760px) and (min-width:760px){.QuotePageBuilder-mainContent{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.QuotePageBuilder-mainContent{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.QuotePageBuilder-mainContent{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.QuotePageBuilder-mainContent{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.QuotePageBuilder-mainContent{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.QuotePageBuilder-mainContent:last-child{margin-right:0}}@media (min-width:1340px){.QuotePageBuilder-mainContent{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}}@media (min-width:760px){.QuotePageBuilder-sidebar{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.QuotePageBuilder-sidebar{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.QuotePageBuilder-sidebar{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.QuotePageBuilder-sidebar{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.QuotePageBuilder-sidebar{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.QuotePageBuilder-sidebar{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}}@media (min-width:1340px){.QuotePageBuilder-sidebar{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}.QuotePageBuilder-button,.QuotePageBuilder-buttonActive{align-items:center;background:#fff;border:1px solid #002f6c;color:#002f6c;display:flex;font-family:Proxima Nova,sans-serif;font-size:12px;font-weight:700;justify-content:center;letter-spacing:1.09px;margin:15px 0 30px;padding:15px 20px;text-transform:uppercase;width:100%}.QuotePageBuilder-button:after,.QuotePageBuilder-buttonActive:after{border-bottom:2px solid #002f6c;border-right:2px solid #002f6c;content:"";display:block;height:7px;margin:-4px 0 0 5px;transform:rotate(45deg);width:7px}.QuotePageBuilder-buttonActive:after{margin:5px 0 0 5px;transform:rotate(225deg)}.QuotePageBuilder-showOnDesktop{display:none}@media (min-width:760px){.QuotePageBuilder-showOnDesktop{display:initial}}.QuotePageBuilder-showOnMobile{display:initial;margin-bottom:10px}@media (min-width:760px){.QuotePageBuilder-showOnMobile{display:none}}.QuotePageBuilder-analystConsensusContainer{display:flex;justify-content:center;margin-bottom:25px;margin-top:30px}.LiveTVScheduleHeader-header{color:#071d39;font-style:normal;position:relative;width:100%}.LiveTVScheduleHeader-header .LiveTVScheduleHeader-heading{font-size:40px;font-weight:800;line-height:42px;padding:36px 8px 0;text-align:center}@media (max-width:759px){.LiveTVScheduleHeader-header .LiveTVScheduleHeader-heading{font-size:36px}}@media (max-width:359px){.LiveTVScheduleHeader-header .LiveTVScheduleHeader-heading{font-size:24px}}.LiveTVScheduleHeader-header .LiveTVScheduleHeader-headerUnderline{background:#fcb700;height:7px;margin-bottom:40px;width:100%}.LiveTVDatePicker-container{margin:0 auto 38px;max-width:1145px;width:90%}.LiveTVDatePicker-modal{bottom:0;height:100%;left:0;position:absolute;right:0;top:0;width:100%;z-index:99}.LiveTVDatePicker-tveDropdown{background:#aeaeae;border-radius:3px;color:#171717;display:block;height:34px;padding:1px;position:relative;width:272px}.LiveTVDatePicker-head{background:linear-gradient(#e7e7e7,#fff);background-image:linear-gradient(#f6f6f6,#fafafa);border-radius:3px;cursor:pointer;text-shadow:0 1px 0 #fff;width:100%}.LiveTVDatePicker-arrowWrap,.LiveTVDatePicker-head{border-top:1px solid #fff;display:inline-block;height:32px}.LiveTVDatePicker-arrowWrap{background-image:-o-linear-gradient(top,#dbdbdb 0,#fcfcfc 100%);border-left:1px solid #fff;border-radius:0 3px 3px 0;box-shadow:-1px 0 0 0 #c9c9c9;float:right;position:absolute;right:1px;top:1px;width:31px}.LiveTVDatePicker-arrow{background-image:url(https://static-redesign.cnbcfm.com/dist/3f3502c997d472bd03be.png);background-repeat:no-repeat;border:none;box-shadow:none;height:25px;left:-10%;margin:-15px 0 0;position:absolute;top:50%;width:29px}.LiveTVDatePicker-openArrow{border-color:#171717 #0000 #0000;border-style:solid;border-width:7px 7px 0;box-shadow:0 -1px 0 0 #171717;height:0;margin-left:10px;margin-top:-2px;width:0}.LiveTVDatePicker-close{background:none;background-image:none;border-color:#0000;border-radius:0;box-shadow:none}.LiveTVDatePicker-today{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-style:normal;font-weight:800;line-height:28px;text-transform:uppercase}.LiveTVDatePicker-datesContainer{float:left}.LiveTVDatePicker-dates{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-style:normal;font-weight:500;line-height:28px;margin-left:6px}.LiveTVDatePicker-selectDateContainer{text-align:left}.LiveTVDatePicker-selectDate{font-size:18px;font-style:normal;font-weight:500;line-height:28px;margin-left:6px}.LiveTVDatePicker-menu{background:#fff;border:1px solid #c3c3c3;border-radius:3px;height:200px;overflow:scroll;padding:6px 0 6px 7px;position:absolute;width:272px;z-index:100}.LiveTVDatePicker-menu button{border-radius:3px;display:block;font-family:Proxima Nova Semi Bold,Helvetica,Arial,sans-serif;font-size:16px;line-height:23px;margin-right:6px;padding:5px 12px 4px 8px;position:relative;text-align:initial;text-overflow:ellipsis;white-space:nowrap;width:100%}.LiveTVDatePicker-menu button:hover{color:#fff}.LiveTVDatePicker-menu li:hover{background-color:#2077b6;border-radius:3px;cursor:pointer;width:254px}.LiveTVDatePicker-filterDayWeek{display:inline-block;text-align:left;width:87px}.LiveTVDatePicker-filterMonth{display:inline-block;width:40px}.LiveTVDatePicker-hide{display:none}.LiveTVCurrentShow-container{border:4px solid #002f6c;color:#002f6c;margin:0 auto 41px;max-width:1145px;padding:8px 16px;position:relative;width:90%}.LiveTVCurrentShow-liveScheduleContainer{align-items:center;display:flex;justify-content:space-between;margin:0 22px}@media (max-width:1019px){.LiveTVCurrentShow-liveScheduleContainer{display:block}}.LiveTVCurrentShow-link,.LiveTVCurrentShow-link:hover{color:#002f6c}.LiveTVCurrentShow-onNow{align-items:center;background:#fff;display:flex;font-size:14px;font-style:normal;font-weight:700;justify-content:center;line-height:20px;position:absolute;text-align:center;top:-11px;width:114px}.LiveTVCurrentShow-onNow:before{animation:LiveTVCurrentShow-pulse 2s infinite;background-color:#ff5053;border-radius:100%;box-shadow:0 0 0 0 #ce2b2b;content:"";display:block;height:6px;margin:6px 8px;transform:scale(1);width:6px}@keyframes LiveTVCurrentShow-pulse{0%{box-shadow:0 0 0 1px #ce2b2b;opacity:1;transform:scale(.95)}70%{box-shadow:0 0 0 2px #ce2b2b;opacity:.9;transform:scale(1)}to{box-shadow:0 0 0 1px #ce2b2b;opacity:1;transform:scale(.95)}}.LiveTVCurrentShow-currShow{font-size:28px;font-style:normal;font-weight:400;line-height:18px;padding:16px 0}@media (max-width:759px){.LiveTVCurrentShow-currShow{font-size:24px}}@media (max-width:479px){.LiveTVCurrentShow-currShow{font-size:18px}}.LiveTVCurrentShow-currShow .LiveTVCurrentShow-onNowTitle{font-weight:800}.LiveTVCurrentShow-currShow .LiveTVCurrentShow-separator{font-weight:700}.LiveTVCurrentShow-nextShow{font-size:20px;font-style:normal;font-weight:400;line-height:14px;padding:16px 0}@media (max-width:479px){.LiveTVCurrentShow-nextShow{display:none}}@media (max-width:759px){.LiveTVCurrentShow-nextShow{font-size:16px}}.LiveTVCurrentShow-nextShow .LiveTVCurrentShow-nextTitle{font-weight:800}.LiveTVSchedule-container{margin:auto;max-width:1145px;width:100%}.MobileAppChart-container{max-width:100%}.WelcomeMessage-container{font-family:Proxima Nova,Arial,Helvetica,sans-serif;font-size:16px;font-style:normal;font-weight:500;letter-spacing:.03px;line-height:20px;margin-bottom:10px;padding:0 20px}.WelcomeMessage-container a{color:#005594}@media (min-width:1020px){.WelcomeMessage-container{margin:0 40px 15px}}@media (min-width:1340px){.WelcomeMessage-container{margin:0 275px 15px}}.WelcomeMessage-blockText{display:block}.NewslettersHeader-container{display:flex;flex-direction:column;margin:0 auto;max-width:100%;padding:30px 0;text-align:center}@media (min-width:760px){.NewslettersHeader-container{max-width:678px}}@media (min-width:1020px){.NewslettersHeader-container{max-width:960px}}@media (min-width:1340px){.NewslettersHeader-container{max-width:1290px}}@media (min-width:760px){.NewslettersHeader-container{padding:20px 0}}@media (min-width:1020px){.NewslettersHeader-container{padding:30px 0}}.NewslettersHeader-header{color:#002f6c;font-family:Proxima Nova,Arial,Helvetica,sans-serif;font-size:28px;font-weight:700;letter-spacing:-.5px;line-height:32px;margin-bottom:10px;margin-top:0;padding:0 20px}@media (min-width:760px){.NewslettersHeader-header{font-size:40px;line-height:42px;padding:0}}@media (min-width:1020px){.NewslettersHeader-header{font-size:54px;line-height:60px;margin-bottom:20px}}.NewslettersHeader-paragraph{font-family:Proxima Nova,Arial,Helvetica,sans-serif;font-size:16px;font-style:normal;font-weight:500;letter-spacing:.03px;line-height:20px;margin-bottom:10px;padding:0 20px}@media (min-width:1020px){.NewslettersHeader-paragraph{margin:0 40px 15px;padding:0}}@media (min-width:1340px){.NewslettersHeader-paragraph{margin:0 275px 15px}}.NewslettersHeader-email{color:#747474}.NewslettersHeader-signInContainer{align-items:center;display:flex;flex-direction:row;font-family:Proxima Nova,Arial,Helvetica,sans-serif;font-size:14px;font-style:normal;font-weight:500;justify-content:center;letter-spacing:.03px;line-height:16px;padding:0 20px}.NewslettersHeader-signInContainer .NewslettersHeader-question{color:#000}.NewslettersHeader-signInContainer .NewslettersHeader-question:after{content:" ";white-space:pre}.NewslettersHeader-signInContainer .NewslettersHeader-signIn a{color:#005594}.NewslettersHeader-signInContainer .NewslettersHeader-signIn a:hover{color:#fcb700}.ExclusivePill-baseExclusiveStyles,.ExclusivePill-icExclusive,.ExclusivePill-proExclusive{background-color:#fffc;border-radius:4px;bottom:10px;font-size:12px;font-weight:600;left:10px;padding:2px 5px;position:absolute}.ExclusivePill-proExclusive{color:#008456}.ExclusivePill-icExclusive{color:#005594}.BecomeAPaidUserPill-icLink,.BecomeAPaidUserPill-proLink{color:#005594;display:block;font-size:11px;font-weight:500;margin:10px 0;width:-moz-fit-content;width:fit-content}.BecomeAPaidUserPill-proLink{color:#008456}.AuthenticatedSubscriptionButton-subscriptionButton{background-color:#fff;border:1px solid #002f6c;border-radius:100%;color:#fff;display:block;font-size:16px;height:18px;line-height:1;position:absolute;right:10px;text-align:center;top:1px;width:18px}.AuthenticatedSubscriptionButton-unchecked{background-color:#fff;border:1px solid #002f6c;color:#002f6c}@media (min-width:1020px){.AuthenticatedSubscriptionButton-unchecked:focus-visible,.AuthenticatedSubscriptionButton-unchecked:hover{background-color:#002f6c;border:1px solid #002f6c;color:#fff}}.AuthenticatedSubscriptionButton-checked{background-color:#002f6c;border:1px solid #002f6c;color:#fff}@media (min-width:1020px){.AuthenticatedSubscriptionButton-checked:focus-visible:before,.AuthenticatedSubscriptionButton-checked:hover:before{align-items:center;background-color:#002f6c;border:1px solid #002f6c;border-radius:9px;color:#fff;content:"Unsubscribe";display:flex;font-size:10px;font-weight:300;height:17px;justify-content:center;margin-right:-1px;margin-top:-1px;position:absolute;right:0;top:0;width:70px;z-index:1}}.AuthenticatedSubscriptionButton-checkmarkIcon{background-color:#002f6c;border:1px solid #002f6c;border-radius:100%;color:#fff;height:18px;position:absolute;right:-1px;top:-1px;width:18px}.AuthenticatedSubscriptionButton-checkmarkIcon circle{fill:#002f6c;opacity:1}.AuthenticatedSubscriptionButton-checkmarkIcon path{fill:#fff}.AuthenticatedSubscriptionButton-wide{border-radius:9px;font-size:10px;font-weight:300;width:72px}.AuthenticatedSubscriptionButton-subscribed{background-color:#002f6c;border:1px solid #002f6c;color:#fff}.AuthenticatedSubscriptionButton-subscribed span{left:4px;position:absolute;top:3px}.AuthenticatedSubscriptionButton-subscribed .AuthenticatedSubscriptionButton-checkmarkIcon{border-radius:100%;color:#fff;height:18px;position:absolute;right:0;top:-1px;width:17px}.AuthenticatedSubscriptionButton-unsubscribed{background-color:#fff;border:1px solid #002f6c;color:#002f6c}.AuthenticatedSubscriptionButton-loading{background-color:#d9d9d9;border:#d9d9d9;color:#0000;cursor:default;pointer-events:none}.AuthenticatedSubscriptionButton-loading span{background-image:url(https://static-redesign.cnbcfm.com/dist/994bcb47d39748c1b663.gif);background-position:50%;background-repeat:no-repeat;background-size:contain;border-radius:100%;display:inline-block;height:18px;margin:auto;width:18px}.AddNewsletter-selectedToggle{background-color:#9e9e9e;border:1px solid #9e9e9e;color:#fff!important}.AddNewsletter-selectedToggle:before{color:#424242;content:"Remove";font-size:10px;font-weight:300;line-height:14px;position:absolute;right:calc(100% + 5px);text-align:right}.AddNewsletter-selectedToggle:after{content:"﹣";display:inline}.AddNewsletter-selectedToggle:focus-visible,.AddNewsletter-selectedToggle:hover{background-color:#424242;border:1px solid #424242}.AddNewsletter-deselectedToggle,.AddNewsletter-selectedToggle{border-radius:100%;display:block;font-size:16px;height:18px;line-height:1;position:absolute;right:10px;text-align:center;top:1px;width:18px}.AddNewsletter-deselectedToggle{background-color:#fff;border:1px solid #002f6c;color:#002f6c!important}.AddNewsletter-deselectedToggle:after{content:"+";display:inline}.AddNewsletter-deselectedToggle:focus-visible,.AddNewsletter-deselectedToggle:hover{background-color:#002f6c;border:1px solid #002f6c;color:#fff!important}.NewslettersCard-container{background-color:#fff;border:1px solid #f8f8f8;box-shadow:0 1px 4px 0 #00000040;display:inline-block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;height:294px;position:relative;vertical-align:top;width:165px}@media (min-width:1020px){.NewslettersCard-container:focus,.NewslettersCard-container:hover{transform:scale3d(1.1,1.1,1);transition:transform .3s}}@media (max-width:759px){.NewslettersCard-container{width:100%}}.NewslettersCard-thumbnailWrapper{background-color:#f8f8f8;height:120px;left:-1px;overflow:hidden;position:relative;top:-1px;width:calc(100% + 2px)}.NewslettersCard-thumbnail{height:100%;object-fit:cover;width:100%}.NewslettersCard-body{padding:10px}.NewslettersCard-title{-webkit-box-orient:vertical;-webkit-line-clamp:2;display:-webkit-box;font-size:16px;font-weight:500;line-height:1.1;overflow:hidden}@media (max-width:759px){.NewslettersCard-title{font-size:12px}}.NewslettersCard-description{-webkit-box-orient:vertical;-webkit-line-clamp:2;display:-webkit-box;font-size:11px;font-weight:300;margin:10px 0;overflow:hidden}.NewslettersCard-sampleLink{color:#005594;display:block;font-size:11px;font-weight:500;margin:10px 0;width:-moz-fit-content;width:fit-content}.NewslettersCard-bottomRow{background-image:url(https://static-redesign.cnbcfm.com/dist/757f1cf1b09912b51cd0.png);background-position:10px 1px;background-repeat:no-repeat;background-size:15px;bottom:0;left:0;padding:0 10px 10px 30px;position:absolute;width:100%}.NewslettersCard-cadence{font-size:11px;font-weight:500;line-height:18px}.NewslettersCard-cadenceSelected{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:60px}.NewslettersCard-errorContainer{background:#fff;bottom:0;height:calc(100% - 120px);left:0;opacity:.97;position:absolute;width:100%;z-index:2}.NewslettersCard-errorMessage{color:#ce2b2b;font-size:16px;font-weight:600;line-height:19.49px;margin-top:40px;padding:10px;text-align:left}.NewslettersCard-errorPill{background:#b40909;border-radius:9px;bottom:10px;color:#fff;font-size:10px;font-weight:500;height:18px;line-height:12.18px;padding:3px;position:absolute;right:10px;text-align:center;width:46px}.NewslettersCategory-smallSpan{background-color:#0477c9;display:block;height:6px;margin-top:10px;width:110px}@media (max-width:360px){.NewslettersCategory-smallSpan{width:88px}}@media (min-width:760px){.NewslettersCategory-smallSpan{margin-top:20px}}.NewslettersCategory-smallSpanPro{background-color:#008456}.NewslettersCategory-smallSpanInvestingClub{background-color:#0496ff}.NewslettersCategory-border{background-color:#747474;display:block;height:1px;width:100%}.NewslettersCategory-categoryTitle{font-size:20px;font-weight:700;letter-spacing:-.5px;line-height:32px;margin-bottom:0;margin-top:0;text-transform:uppercase}@media (min-width:760px){.NewslettersCategory-categoryTitle{font-size:28px}}.NewslettersCategory-categoryTopContainer{align-items:center;display:flex;justify-content:space-between;margin-bottom:10px;margin-top:5px}@media (min-width:760px){.NewslettersCategory-categoryTopContainer{margin-top:11px}}.NewslettersCategory-checkboxAndCollapseButtonContainer{color:#336aa0;display:flex;font-family:Proxima Nova,Arial,Helvetica,sans-serif;font-size:13px;font-style:normal;font-weight:600;gap:10px;line-height:normal;text-transform:uppercase}.NewslettersCategory-selectAllCheckbox{cursor:pointer;height:0;opacity:0;position:absolute;right:0;width:0}.NewslettersCategory-checkmark{border:2px solid #336aa0;border-radius:3px;display:block;height:18px;position:relative;width:18px}.NewslettersCategory-dropdownArrow{border:1px solid #0000}.NewslettersCategory-dropdownArrow:focus-visible{border:1px solid #336aa0}.NewslettersCategory-subCategoriesContainer{display:flex;flex-wrap:wrap;gap:20px;justify-content:space-between;max-width:100%;padding-bottom:30px}@media (min-width:760px){.NewslettersCategory-subCategoriesContainer{justify-content:flex-start;padding-bottom:50px}}@media (min-width:1020px){.NewslettersCategory-subCategoriesContainer{padding-bottom:10px}}.NewslettersCategory-checkboxLabel:focus-within input:not(:checked)~.NewslettersCategory-checkmark{border:4px solid #336aa0}.NewslettersCategory-checkboxLabel input:checked~.NewslettersCategory-checkmark{background-color:#336aa0}.NewslettersCategory-checkmark:after{content:"";display:none;position:absolute}.NewslettersCategory-checkboxLabel input:checked~.NewslettersCategory-checkmark:after{display:block}.NewslettersCategory-checkboxLabel .NewslettersCategory-checkmark:after{border:solid #fff;border-width:0 2px 2px 0;height:9px;left:4px;top:0;transform:rotate(45deg);width:5px}@media (max-width:759px){.NewslettersCategory-cardContainer{max-width:185px;width:46%}}.NewslettersCategory-disabledCheckbox{cursor:not-allowed;opacity:.5}.NewslettersOverlay-overlayContainer{background:#fff;border-top:1px solid #bababa;bottom:0;left:0;padding:20px 20px 15px;position:sticky;right:0;z-index:1000}@media (min-width:760px){.NewslettersOverlay-overlayContainer{padding:30px 39px 15px}}@media (min-width:1020px){.NewslettersOverlay-overlayContainer{padding:30px 20px 15px}}@media (max-width:759px){.NewslettersOverlay-overlayContainer{bottom:54px}}.NewslettersOverlay-contentContainer{margin:0 auto}@media (min-width:1020px){.NewslettersOverlay-contentContainer{max-width:960px}}@media (min-width:1340px){.NewslettersOverlay-contentContainer{max-width:1290px}}.NewslettersOverlay-overlayText{font-family:Proxima Nova,Arial,Helvetica,sans-serif;font-size:20px;font-style:normal;font-weight:500;letter-spacing:.03px;line-height:20px}@media (min-width:760px){.NewslettersOverlay-overlayText{font-size:28px;line-height:30px}}@media (min-width:1020px){.NewslettersOverlay-overlayText{font-size:36px;line-height:38px}}.NewslettersOverlay-overlayText span{font-weight:700}.NewslettersOverlay-tosContainer{color:#747474;font-size:8px;font-weight:600;line-height:10px;margin:10px 0;max-width:1140px}.NewslettersOverlay-tosContainer a{color:#005594}@media (min-width:760px){.NewslettersOverlay-tosContainer{font-size:10px;line-height:12px;margin:15px 0;padding-right:106px}}@media (min-width:1020px){.NewslettersOverlay-tosContainer{font-size:12px;line-height:14px;padding-right:270px}}.NewslettersOverlay-emailInput{border:1px solid #747474;border-radius:4px;font-family:Proxima Nova,Arial,Helvetica,sans-serif;font-size:14px;font-weight:700;height:54px;letter-spacing:1px;line-height:12px;padding-left:20px;width:100%}.NewslettersOverlay-emailInput::placeholder{color:#424242;opacity:1}@media (min-width:760px){.NewslettersOverlay-emailInput{border-radius:0;border-bottom-left-radius:4px;border-top-left-radius:4px;width:325px}}.NewslettersOverlay-submitButton{background-color:#005594;border-radius:4px;color:#fff;font-size:18px;font-weight:600;height:54px;letter-spacing:1px;text-align:center;width:100%}.NewslettersOverlay-submitButton:focus,.NewslettersOverlay-submitButton:hover{background-color:#071d39}@media (min-width:760px){.NewslettersOverlay-submitButton{border-radius:0;border-bottom-right-radius:4px;border-top-right-radius:4px;width:177px}}.NewslettersOverlay-recaptchaText{color:#747474;font-size:12px;font-weight:700;line-height:normal}.NewslettersOverlay-inputAndSubmit{display:flex;flex-direction:column;gap:10px;margin-bottom:10px}@media (min-width:760px){.NewslettersOverlay-inputAndSubmit{flex-direction:row;gap:0;margin-bottom:15px}}.NewslettersOverlay-disabledButton,.NewslettersOverlay-disabledButton:focus,.NewslettersOverlay-disabledButton:hover{background-color:#d9d9d9}.NewslettersOverlay-errorMessage{color:red;height:18px}.NewslettersOverlay-footerContainer{display:flex;flex-flow:column}@media (min-width:760px){.NewslettersOverlay-footerContainer{flex-flow:row}}.NewslettersOverlay-signin{font-size:14px;font-weight:500;letter-spacing:.029px;line-height:16px;margin:8px 0;text-align:left}.NewslettersOverlay-signin a{color:#005594;margin-left:5px}.NewslettersOverlay-signin a:hover{color:#fcb700}@media (min-width:760px){.NewslettersOverlay-signin{margin:0 20px 0 0}}.NewslettersConfirmation-container{background-image:url(https://static-redesign.cnbcfm.com/dist/44944463efaf14fd092f.svg);background-position:right -300px top -40px;background-repeat:no-repeat;background-size:900px;color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:15px;font-style:normal;font-weight:400;line-height:1.2;margin-top:-30px;text-align:center}@media (max-width:759px){.NewslettersConfirmation-container{background-position:right -300px bottom -40px;height:100%;width:100%}}@media (min-width:760px) and (max-width:1019px){.NewslettersConfirmation-container{margin-top:10px}}.NewslettersConfirmation-logo{margin:0 auto 40px}@media (max-width:759px){.NewslettersConfirmation-logo{margin:0 auto 30px}}.NewslettersConfirmation-emailText,.NewslettersConfirmation-thankYou,.NewslettersConfirmation-titlesList{margin:0 auto 10px;max-width:410px}.NewslettersConfirmation-thankYou{font-size:28px;font-weight:700;letter-spacing:-.5px;line-height:32px}@media (max-width:759px){.NewslettersConfirmation-thankYou{line-height:30px}}.NewslettersConfirmation-emailText{margin-bottom:18px}.NewslettersConfirmation-emailAddress{font-weight:600}.NewslettersConfirmation-signUpPrompt{font-size:16px;font-weight:500;line-height:16px;margin:20px auto;text-align:center}.NewslettersCategories-container{margin:0 auto 40px;max-width:100%;padding:0 20px}@media (min-width:760px){.NewslettersCategories-container{max-width:678px}}@media (min-width:1020px){.NewslettersCategories-container{max-width:960px}}@media (min-width:1340px){.NewslettersCategories-container{max-width:1290px}}@media (min-width:760px){.NewslettersCategories-container{padding:0}}.UnsubscribeConfirmationModal-container{color:#171717;display:flex;flex-direction:column;font-size:18px;font-weight:600;line-height:20px;min-height:277px;padding:30px 12px 50px;text-align:center;width:500px}.UnsubscribeConfirmationModal-container .UnsubscribeConfirmationModal-text{margin:0 auto}@media (min-width:760px){.UnsubscribeConfirmationModal-container .UnsubscribeConfirmationModal-text{width:70%}}@media (max-width:759px){.UnsubscribeConfirmationModal-container{height:unset;padding:45px 28px;width:100%}}.UnsubscribeConfirmationModal-logo{height:23px;margin:0 auto 40px}@media (max-width:759px){.UnsubscribeConfirmationModal-logo{margin:0 auto 30px}}.UnsubscribeConfirmationModal-buttons{display:flex;justify-content:space-between;margin:40px auto 0;width:90%}.UnsubscribeConfirmationModal-buttons button{border:1px solid #005594;border-radius:3px;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-weight:600;height:50px;letter-spacing:1.09px;line-height:12px;text-align:center;text-transform:uppercase;width:200px}.UnsubscribeConfirmationModal-buttons button:hover{background:#002f6c}@media (max-width:759px){.UnsubscribeConfirmationModal-buttons button{margin:0 auto;width:100%}}.UnsubscribeConfirmationModal-buttons .UnsubscribeConfirmationModal-cancelButton{color:#005594}.UnsubscribeConfirmationModal-buttons .UnsubscribeConfirmationModal-cancelButton:hover{color:#fff}@media (max-width:759px){.UnsubscribeConfirmationModal-buttons .UnsubscribeConfirmationModal-cancelButton{margin-bottom:22px}}.UnsubscribeConfirmationModal-buttons .UnsubscribeConfirmationModal-yesButton{background-color:#005594;color:#fff}.UnsubscribeConfirmationModal-buttons .UnsubscribeConfirmationModal-loading{background-color:#d9d9d9;border:#d9d9d9;transition:none}.UnsubscribeConfirmationModal-buttons .UnsubscribeConfirmationModal-loading:hover{background-color:#d9d9d9;border:#d9d9d9}@media (max-width:759px){.UnsubscribeConfirmationModal-buttons{flex-direction:column}}.UnsubscribeConfirmationModal-error{word-wrap:break-word;color:#f44336;font-size:14px;font-weight:400;line-height:16px;position:relative;text-align:center;top:10px}.NewslettersFooter-container{color:#000;font-size:12px;font-weight:500;line-height:12px;margin-bottom:20px;padding:0 20px 20px;text-align:center}@media (min-width:760px){.NewslettersFooter-container{line-height:28px}}.NewslettersFooter-unsubscribeButton{color:#005594;font-size:12px;font-weight:500}.NewslettersFooter-unsubscribe{display:block}@media (min-width:760px){.NewslettersFooter-unsubscribe{display:inline}}.ZephrLandingPage-main{min-height:90vh}.WatchlistSortableColumnHeader-defaultSort{fill:#bababa}.WatchlistSortableColumnHeader-sortActive{color:#005594!important}.WatchlistSortableColumnHeader-sortActive .WatchlistSortableColumnHeader-asc,.WatchlistSortableColumnHeader-sortActive .WatchlistSortableColumnHeader-desc{fill:#005594}button.WatchlistSortableColumnHeader-sortButton{align-items:center;border-right:1px solid #ccc;display:flex;float:right;margin-right:4px;padding-right:4px}button.WatchlistSortableColumnHeader-sortButton:last-child{border:0;margin:0;padding:0}.WatchlistSortableColumnHeader-sortingIcons{display:flex;flex-direction:column;margin-left:8px}.SymbolTable-symbolTable{border-bottom:1px solid #d9d9d9;font-family:Proxima Nova,Helvetica,Arial,sans-serif;position:relative;table-layout:fixed;width:100%}.SymbolTable-symbolTable.SymbolTable-zeroQuotes{border-bottom:none}.SymbolTable-symbolTable:before{bottom:0;content:"";display:block;height:40px;pointer-events:none;position:absolute;width:100%;z-index:1}.SymbolTable-symbolTable.SymbolTable-fade:before{background:linear-gradient(180deg,#fff0,25%,#fff)}.SymbolTable-symbolTable thead{display:table;width:100%}.SymbolTable-symbolTable thead th{color:#747474;font-size:12px;font-style:normal;font-weight:700;line-height:15px;padding-bottom:5px}.SymbolTable-symbolTable td,.SymbolTable-symbolTable th{font-size:14px;padding:unset;padding-right:10px;text-align:end;width:25%}@media (max-width:1339px){.SymbolTable-symbolTable td,.SymbolTable-symbolTable th{font-size:12px}}.SymbolTable-symbolTable tr{box-sizing:border-box;display:table;width:100%}.SymbolTable-symbolTable tbody{display:block;max-height:240px;overflow-y:scroll;width:100%}.SymbolTable-symbolTable tbody tr{width:100%}.SymbolTable-symbolTable tbody tr:nth-child(odd){background:#f1f1f1}.SymbolTable-symbolTable tbody td{font-size:14px;font-style:normal;font-weight:600;height:30px;padding:4px 10px 4px 0}.SymbolTable-symbolTable tbody td.SymbolTable-symbol{overflow:hidden;padding-left:12px;text-align:start;text-overflow:ellipsis;white-space:nowrap}.SymbolTable-symbolTable tbody td a:hover{color:#005594;text-decoration:none}th{color:#9e9e9e}.SymbolTable-symbolLink{color:#000;cursor:pointer}.SymbolTable-positive{color:#00a857}.SymbolTable-negative{color:#ce2b2b}.SymbolTable-extendedHours{align-items:center;color:#e8802a;justify-content:flex-end;position:relative;text-align:end}.SymbolTable-extendedHours>svg{position:absolute;right:-3px;top:10px}.WatchlistSymbolAdder-container .WatchlistSymbolAdder-dropdownContent{left:0;right:auto}.WatchlistSymbolAdder-marketBanner{border:1px solid #005594!important}.WatchlistSymbolAdder-form{position:relative;white-space:nowrap;z-index:99}.WatchlistSymbolAdder-input{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:700;letter-spacing:.07em;padding:3px 3px 3px 6px;width:auto}@media (max-width:759px){.WatchlistSymbolAdder-input{width:100px}}input::placeholder{color:#ccc}.WatchlistSymbolAdder-addButton{background-color:#005594;border-radius:4px;color:#fff;font-size:12px;font-weight:700;letter-spacing:.07em;padding:3px 5px}.WatchlistSymbolAdder-addButton:hover{background-color:#002f6c;color:#fff;cursor:pointer;font-size:12px;font-weight:700;letter-spacing:.07em}.WatchlistSymbolAdder-dropdownContent{background-color:#fff;border-radius:4px;color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-weight:500;position:absolute;text-align:left;white-space:normal;width:392px;z-index:5000}@media (max-width:759px){.WatchlistSymbolAdder-dropdownContent{padding:10px;width:270px}}.WatchlistSymbolAdder-dropdownContent table{border-collapse:collapse;table-layout:fixed;white-space:nowrap;width:100%}.WatchlistSymbolAdder-dropdownContent table td{font-size:16px;padding:6px 6px 6px 0}.WatchlistSymbolAdder-dropdownItem{border-bottom:1px solid #ccd6d8;color:#333;display:table-row;line-height:20px;padding:2px 0;text-decoration:none}.WatchlistSymbolAdder-dropdownItem:last-of-type{border-bottom:0}.WatchlistSymbolAdder-dropdownItem.WatchlistSymbolAdder-active,.WatchlistSymbolAdder-dropdownItem:hover{background-color:#d5dee2;cursor:pointer}.WatchlistSymbolAdder-dropdownItem .WatchlistSymbolAdder-symbolName{overflow:hidden;text-overflow:ellipsis;width:90px}.WatchlistSymbolAdder-dropdownItem .WatchlistSymbolAdder-companyName{overflow:hidden;text-overflow:ellipsis;width:auto}.WatchlistSymbolAdder-dropdownItem .WatchlistSymbolAdder-countryCode{padding-right:0;width:25px}.WatchlistSymbolAdder-dropdownContent.WatchlistSymbolAdder-hasHighlightedSymbol .WatchlistSymbolAdder-dropdownItem:hover{background-color:none}.WatchlistSymbolAdder-ghostDropdownCloser{bottom:0;left:0;position:fixed;right:0;top:0;z-index:98}.WatchlistSymbolAdder-watchlistPage{background:#fff;border:1px solid #9e9e9e;border-bottom-left-radius:6px;border-bottom-right-radius:6px;border-top-right-radius:6px;display:flex;margin-right:20px;padding:10px;position:absolute;top:35px;z-index:98}.WatchlistSymbolAdder-watchlistPage.WatchlistSymbolAdder-rightAlign{border-bottom-left-radius:6px;border-bottom-right-radius:6px;border-top-left-radius:6px;border-top-right-radius:0;right:0}@media (min-width:760px){.WatchlistSymbolAdder-watchlistPage.WatchlistSymbolAdder-rightAlign{margin-right:40px}}@media (min-width:1020px){.WatchlistSymbolAdder-watchlistPage.WatchlistSymbolAdder-rightAlign{margin-right:0}}.WatchlistSymbolAdder-watchlistPage .WatchlistSymbolAdder-searchOptions{border-bottom:1px solid #bababa;display:flex;justify-content:space-between;padding-bottom:8px}.WatchlistSymbolAdder-watchlistPage .WatchlistSymbolAdder-form{width:307px}.WatchlistSymbolAdder-watchlistPage .WatchlistSymbolAdder-form .WatchlistSymbolAdder-input{border:none;font-size:14px;font-weight:600;line-height:20px;padding:unset;text-transform:unset;width:85%}.WatchlistSymbolAdder-watchlistPage .WatchlistSymbolAdder-form .WatchlistSymbolAdder-dropdownContent{border:unset;box-shadow:unset;display:flex;padding:unset;padding-top:8px;position:inherit;width:auto;z-index:inherit}@media (max-width:759px){.WatchlistSymbolAdder-watchlistPage .WatchlistSymbolAdder-form{width:240px}}.WatchlistSymbolAdder-embedded .WatchlistSymbolAdder-form{width:100%}.WatchlistSymbolAdder-embedded .WatchlistSymbolAdder-form .WatchlistSymbolAdder-input{border:unset;border-bottom:1px solid #747474;border-radius:unset;color:#747474;font-size:12px;font-weight:600;letter-spacing:.15px;line-height:15px;margin-bottom:5px;text-transform:unset;width:100%}.WatchlistSymbolAdder-embedded .WatchlistSymbolAdder-form .WatchlistSymbolAdder-dropdownContent{border:1px solid #ccd6d8;box-shadow:0 1px 10px #d9d9d9;padding:8px;text-align:center;width:100%}.WatchlistSymbolAdder-embedded .WatchlistSymbolAdder-form .WatchlistSymbolAdder-dropdownContent table tr{line-height:16px}.WatchlistSymbolAdder-embedded .WatchlistSymbolAdder-form .WatchlistSymbolAdder-dropdownContent table tr td{font-size:14px}.EmbeddedWatchlist-container{display:flex;flex-direction:column;font-weight:800;height:100%;position:relative}.EmbeddedWatchlist-container,.EmbeddedWatchlist-container .EmbeddedWatchlist-notify{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal}.EmbeddedWatchlist-container .EmbeddedWatchlist-notify{color:#747474;font-weight:500;line-height:15px;padding:16px 0;text-align:center}.EmbeddedWatchlist-dropdownAnchor{position:relative}.icon-offsite-arrow{color:#9e9e9e;font-size:10px;font-weight:600}.EmbeddedWatchlist-dropdownButton{align-items:center;display:flex;justify-content:left;margin-bottom:18px;text-align:left;width:-moz-fit-content;width:fit-content;z-index:2}.EmbeddedWatchlist-dropdownButton:hover{cursor:pointer}.EmbeddedWatchlist-dropdownButton:hover h2{color:#071d39}.EmbeddedWatchlist-dropdownButton div{align-items:center;border-bottom:1px solid #002f6c;display:flex;height:33px;max-width:200px;min-width:118px}.EmbeddedWatchlist-dropdownButton svg{margin-left:5px;margin-right:5px}.EmbeddedWatchlist-watchlistName{color:#002f6c;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:18px;font-style:normal;font-weight:600;letter-spacing:.33px;line-height:20px;margin:unset;margin-left:5px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%}.EmbeddedWatchlist-chevron{border-radius:1px;border-style:solid;border-width:2px 2px 0 0;color:#005594;height:10px;margin-left:10px;margin-right:7px;position:relative;transform:rotate(135deg);width:12px}.EmbeddedWatchlist-dropdown{background:#fff;box-shadow:1px 4px 16px #00000029;padding:0 10px;position:absolute;top:-18px;width:200px;z-index:2}.EmbeddedWatchlist-watchlistDropdownLink,.EmbeddedWatchlist-watchlistTools{border-bottom:1px solid #ccc;color:#424242;cursor:pointer;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:600;letter-spacing:.05em;line-height:15px;max-height:25px;overflow:hidden;padding-bottom:5px;padding-top:5px;text-align:left;text-overflow:ellipsis;white-space:nowrap;width:100%;word-break:break-word}.EmbeddedWatchlist-watchlistDropdownLink.EmbeddedWatchlist-activeWatchlist,.EmbeddedWatchlist-watchlistTools.EmbeddedWatchlist-activeWatchlist{color:#336aa0}.EmbeddedWatchlist-addIcon{fill:#005594}.EmbeddedWatchlist-watchlistDropdownLink:focus,.EmbeddedWatchlist-watchlistDropdownLink:hover{color:#002f6c}.EmbeddedWatchlist-selectedWatchlist{color:#005594}.EmbeddedWatchlist-watchlistTools a:last-of-type{border-bottom:0}.EmbeddedWatchlist-watchlistTools a:last-of-type:focus,.EmbeddedWatchlist-watchlistTools a:last-of-type:hover{color:#002f6c;text-decoration:none}.EmbeddedWatchlist-watchlistTools{align-items:center;border:none;display:flex;justify-content:space-between}.EmbeddedWatchlist-watchlistTools:focus .EmbeddedWatchlist-watchlistDropdownLink{color:#005594;text-decoration:none}.EmbeddedWatchlist-watchlistTools a{color:#005594}.EmbeddedWatchlist-watchlistTools .EmbeddedWatchlist-watchlistDropdownLink{padding:unset}.EmbeddedWatchlist-watchlistTools .EmbeddedWatchlist-watchlistDropdownLink:hover{color:#171717}.EmbeddedWatchlist-ghostDropdownCloser{bottom:0;left:0;position:fixed;right:0;top:0;z-index:1}.EmbeddedWatchlist-addWatchlistContainer,.EmbeddedWatchlist-errorContainer{align-items:center;background:#f1f1f1;display:flex;flex-direction:column;height:240px;justify-content:center}@media (max-width:1339px){.EmbeddedWatchlist-addWatchlistContainer,.EmbeddedWatchlist-errorContainer{height:269px}}.EmbeddedWatchlist-addWatchlistContainer>p,.EmbeddedWatchlist-errorContainer>p{color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:600;letter-spacing:.05em;line-height:17px;margin-bottom:24px;margin-top:0;max-width:197px;text-align:center}.EmbeddedWatchlist-addWatchlistContainer>a,.EmbeddedWatchlist-errorContainer>a{align-items:center;background:#00a857;border-radius:3px;color:#fff;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;justify-content:center;letter-spacing:1.09091px;line-height:16px;min-height:40px;min-width:191px;text-transform:uppercase}.EmbeddedWatchlist-addWatchlistContainer>a:hover,.EmbeddedWatchlist-errorContainer>a:hover{background-color:#008456;color:#fff;text-decoration:none}.EmbeddedWatchlist-errorContainer>p{margin-bottom:unset;margin-top:unset}.EmbeddedWatchlist-linkContainer{display:flex;font-size:12px;font-style:normal;font-weight:500;justify-content:flex-end;line-height:15px;margin-right:10px;margin-top:13px}.EmbeddedWatchlist-linkContainer a{align-items:center;color:#005594;display:flex}.EmbeddedWatchlist-linkContainer a>div{margin-right:3px;text-decoration:underline}.EmbeddedWatchlist-linkContainer a:hover,.EmbeddedWatchlist-linkContainer a:hover .icon-offsite-arrow{color:#002f6c}.EmbeddedWatchlist-linkContainer .icon-offsite-arrow{color:#336aa0;font-size:9px;font-weight:800}.EmbeddedWatchlist-tableOptions{align-items:baseline;display:flex;flex-direction:row;justify-content:flex-end;margin-bottom:12px}.EmbeddedWatchlist-tableOptions a,.EmbeddedWatchlist-tableOptions button{color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:500;line-height:15px;-webkit-text-decoration-line:underline;text-decoration-line:underline}.EmbeddedWatchlist-tableOptions a:hover,.EmbeddedWatchlist-tableOptions button:hover{color:#002f6c}.EmbeddedWatchlist-tableOptions a:hover svg,.EmbeddedWatchlist-tableOptions button:hover svg{fill:#002f6c}.EmbeddedWatchlist-tableOptions a svg,.EmbeddedWatchlist-tableOptions button svg{margin-left:5px}.EmbeddedWatchlist-tableOptions a:first-child{margin-right:10px}.EmbeddedWatchlist-notificationContainer{right:0;top:86px}.EmbeddedWatchlist-notificationContainer .EmbeddedWatchlist-notification{background-color:#2077b6;border-radius:3px;box-shadow:0 1px 3px 1px #00000014;color:#fff;font-weight:700;line-height:16px;padding:10px;width:224px}.EmbeddedWatchlist-notificationContainer .EmbeddedWatchlist-notification.EmbeddedWatchlist-error{background-color:#ce2b2b;width:204px}.ArticleGate-proGate{display:flex;justify-content:flex-end;margin-bottom:50px;margin-left:0;padding-bottom:50px;position:relative;width:100%}.ArticleGate-proGate:before{background:linear-gradient(180deg,#fff0,#fff);bottom:calc(100% + 30px);content:"";height:160px;position:absolute;width:100%}.ArticleGate-proGate .ArticleGate-spacer{overflow:hidden;width:100%}@media (min-width:760px){.ArticleGate-proGate{margin-bottom:40px;padding-bottom:0}.ArticleGate-proGate:before{height:135px}.ArticleGate-proGate .ArticleGate-spacer{margin-left:16.66667%}}@media (min-width:1020px){.ArticleGate-proGate{margin-bottom:50px}.ArticleGate-proGate:before{height:105px}.ArticleGate-proGate .ArticleGate-spacer{margin-left:calc(14.28571% + 4.28571px)}}.ArticleGate-pianoGateWebview{position:relative}.ArticleGate-pianoGateWebview:before{background:linear-gradient(180deg,#fff0,#fff);bottom:calc(100% + 30px);content:"";height:160px;position:absolute;width:100%}@media (prefers-color-scheme:dark){.ArticleGate-pianoGateWebview:before{background:linear-gradient(180deg,#0000,#000)}}.ArticleGate-dynamicPaywall{display:flex;margin-bottom:50px}.ArticleGate-dynamicPaywall:before{background:none}.ArticleGate-dynamicPaywall .ArticleGate-spacer{overflow:hidden;width:100%}@media (min-width:760px){.ArticleGate-dynamicPaywall{margin-bottom:40px;padding-bottom:0}.ArticleGate-dynamicPaywall .ArticleGate-spacer{margin-left:16.66667%}}@media (min-width:1020px){.ArticleGate-dynamicPaywall{margin-bottom:50px}.ArticleGate-dynamicPaywall .ArticleGate-spacer{margin-left:calc(14.28571% + 4.28571px)}}.UpdatePill-updatePill{align-items:center;background:#ce2b2b;border-radius:14px;color:#fff;cursor:pointer;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;height:28px;justify-content:center;line-height:17px;margin-right:7.78px;pointer-events:auto;-webkit-user-select:none;user-select:none;width:120px}.UpdatePill-displayText{margin-left:7.78px}.BackToTopPill-pillContainer{align-items:center;background:#fff;border:2px solid #27313c;border-radius:60px;color:#27313c;cursor:pointer;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;height:28px;justify-content:center;line-height:17px;pointer-events:auto;-webkit-user-select:none;user-select:none;width:120px}.BackToTopPill-pillContainer svg{fill:#27313c}.BackToTopPill-backPillStickyPosition{align-items:center;display:block;display:flex;justify-content:center;pointer-events:none;position:sticky;right:0;top:0;z-index:95}.BackToTopPill-backPillStickyPosition .BackToTopPill-backPillVerticalOffset{pointer-events:none;position:relative;top:10px}.BackToTopPill-displayText{margin-left:5.78px;margin-top:-1px;padding-right:2px}.LiveCommentaryFeed-scrollContainer{height:100%;overflow-x:hidden;overflow-y:auto;position:relative;width:100%}.LiveCommentaryFeed-scrollContainer .LiveCommentaryFeed-fade:before{box-shadow:0 0 93px 93px #fff;content:"";display:block;height:.1px;pointer-events:none;position:sticky;top:100%;width:100%;z-index:1}@media (min-width:760px){.LiveCommentaryFeed-scrollContainer .LiveCommentaryFeed-fade:before{box-shadow:0 0 76px 76px #fff}}@media (min-width:1020px){.LiveCommentaryFeed-scrollContainer .LiveCommentaryFeed-fade:before{box-shadow:0 0 93px 93px #fff}}.LiveCommentaryFeed-slate,.LiveCommentaryFeed-slate a{color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:18px;font-style:normal;font-weight:600;line-height:24px}.LiveCommentaryFeed-slate{align-items:center;background-color:#f8f8f8;border:1px solid #d9d9d9;display:flex;flex-direction:column;height:100%;justify-content:center;padding:18px;text-align:center}.LiveCommentaryFeed-slate a{text-decoration:underline}.LiveCommentaryFeed-slate a:hover{color:#00a857}.LiveCommentaryFeed-slateContainer{border-top:3px solid #9e9e9e;height:120px}.LiveCommentaryFeed-slateContainer p{font-size:12px;line-height:20px;margin:0}.LiveCommentaryFeed-slateContainer p a{font-size:12px}.LiveCommentaryFeed-slateContainer p:first-child{font-size:14px}.LiveCommentaryFeed-slateContainer p:not(:first-child):not(:last-child){margin-top:8px}.LiveCommentaryFeed-slateContainer p:last-child{line-height:22px;margin-top:8px}@media (min-width:760px){.LiveCommentaryFeed-slateContainer p{font-size:16px;line-height:36px}.LiveCommentaryFeed-slateContainer p a{font-size:16px}.LiveCommentaryFeed-slateContainer p:first-child{font-size:18px;line-height:24px}.LiveCommentaryFeed-slateContainer p:not(:first-child):not(:last-child){margin-top:unset}.LiveCommentaryFeed-slateContainer p:last-child{line-height:28px}}@media (min-width:1020px){.LiveCommentaryFeed-slateContainer{margin-top:unset}.LiveCommentaryFeed-slateContainer p:not(:first-child):not(:last-child){line-height:58px}}@media (min-width:760px){.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-offline{height:180px}}@media (min-width:1020px){.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-offline{height:302px}}@media (min-width:1340px){.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-offline{height:425px}}.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-coverageEnded{height:0;overflow:visible;position:sticky;top:0;transform:translateY(-62px);z-index:90}.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-coverageEnded .LiveCommentaryFeed-slate{height:62px}@media (min-width:760px){.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-coverageEnded{transform:translateY(-120px)}.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-coverageEnded .LiveCommentaryFeed-slate{height:120px}}.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-shadow .LiveCommentaryFeed-slate{box-shadow:0 6px 4px -4px #c4c4c4}.LiveCommentaryFeed-coverageEndedFeedWrapper{padding-top:62px}@media (min-width:760px){.LiveCommentaryFeed-coverageEndedFeedWrapper{padding-top:120px}}.LiveCommentaryHeader-liveUpdatesPill{height:28px;margin-bottom:12px;text-align:center;width:142px}.LiveCommentaryHeader-liveUpdatesPill .LiveCommentaryHeader-liveUpdatesPillContent{background:#002f6c;color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-weight:600;height:100%;line-height:28px;margin:0;width:100%}.LiveCommentaryHeader-timestampContainer{align-items:baseline;height:18px;width:288px}@media (max-width:759px){.LiveCommentaryHeader-timestampContainer{flex-direction:column;margin-bottom:16px}}.LiveCommentaryHeader-liveCommentaryHeader{position:relative}.LiveCommentaryHeader-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(100% - 30px);max-width:100%;min-width:calc(100% - 30px);padding-left:2px;position:relative}@media (min-width:760px){.LiveCommentaryHeader-wrapper{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.LiveCommentaryHeader-wrapper{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.LiveCommentaryHeader-wrapper{max-width:100%;min-width:100%}}@media (min-width:1340px){.LiveCommentaryHeader-wrapper{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:760px){.LiveCommentaryHeader-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.LiveCommentaryHeader-wrapper{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.LiveCommentaryHeader-wrapper{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.LiveCommentaryHeader-wrapper{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.LiveCommentaryHeader-wrapper{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.LiveCommentaryHeader-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(88.88889% - 3.33333px);min-width:calc(88.88889% - 3.33333px)}}@media (min-width:1340px){.LiveCommentaryHeader-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(72.72727% + 21.81818px);min-width:calc(72.72727% + 21.81818px);padding-right:70px}}.LiveCommentaryHeader-headerContentContainer{margin:0 auto;position:relative}@media (min-width:760px){.LiveCommentaryHeader-headerContentContainer{padding:0}}@media (min-width:1020px){.LiveCommentaryHeader-headerContentContainer{max-width:960px}}@media (min-width:1340px){.LiveCommentaryHeader-headerContentContainer{max-width:1290px}}.LiveCommentaryHeader-liveBlogTimeStamp>div,.LiveCommentaryHeader-time,.LiveCommentaryHeader-timeHidden{color:#747474;font-size:11px;font-weight:600;letter-spacing:1.2px;margin-bottom:4px;margin-right:4px;text-transform:uppercase}.LiveCommentaryHeader-liveBlogTimeStamp>div time,.LiveCommentaryHeader-time time,.LiveCommentaryHeader-timeHidden time{white-space:nowrap}@media (min-width:760px){.LiveCommentaryHeader-liveBlogTimeStamp>div,.LiveCommentaryHeader-time,.LiveCommentaryHeader-timeHidden{font-size:12px;margin-bottom:6px}}.LiveCommentaryHeader-timeHidden{opacity:1}.LiveCommentaryHeader-datetimeDivider:before{content:"•";display:inline-block;padding:0 3px}.LiveCommentaryHeader-title{color:#171717;font-family:Proxima Nova,sans-serif;font-size:16px;font-style:normal;font-weight:700;letter-spacing:0;line-height:20px;margin:0 0 1px}@media (min-width:760px){.LiveCommentaryHeader-title{font-size:28px;line-height:32px;margin:0 0 6px}}@media (max-width:759px){.LiveCommentaryHeader-about.LiveCommentaryHeader-proUserAboutSection{display:none}}.LiveCommentaryHeader-about>div{color:#747474;font-family:Lyon,serif;font-size:18px;font-style:italic;font-weight:400;line-height:26px;margin-left:0;max-width:unset}@media (max-width:759px){.LiveCommentaryHeader-about>div{font-size:14px;line-height:20px}}.LiveCommentaryHeader-about>div p{margin-bottom:10px;margin-top:10px}.LiveCommentaryHeader-about>div p a{color:#747474;text-decoration:underline}.LiveCommentaryHeader-about>div p a:hover{color:#00a857}.PlayerSlate-slateOverlay{display:block;height:auto;top:0;width:100%;z-index:2}.PlayerSlate-clickable{cursor:pointer}.ProLivePlayer-container{aspect-ratio:16/9;background-color:#171717;width:100%}.ProLivePlayer-nofs .jw-icon-fullscreen{display:none!important}#jw-cnbc-live-stream-player .jw-text-live:before{color:#ce2b2b}#jw-cnbc-live-stream-player .jw-text-live.jw-dvr-live:before{color:#fff}#jw-cnbc-live-stream-player .jw-text-live.jw-dvr-live{color:#747474}#jw-cnbc-live-stream-player .jw-slider-time .jw-progress{background:#f2f2f2}.LiveCommentaryPlayer-container{background-color:#171717;left:0;padding-top:56.25%;position:relative;top:0;width:100%}@media (max-width:1019px){.LiveCommentaryPlayer-container{margin-bottom:16px}}.LiveCommentaryPopularQuotes-tableContainer{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='100%25' height='100%25' fill='none' stroke='%239E9E9EFF' stroke-dasharray='1, 2' stroke-linecap='square'/%3E%3C/svg%3E");display:flex;flex-direction:column;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:800;height:100%;padding:30px 18px}.LiveCommentaryPopularQuotes-title{border-top:3px solid #cfd8e2;color:#002f6c;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-style:bold;font-weight:700;line-height:20px;max-width:365px;padding:4px 0 20px}.ProLiveCommentary-outerContainer{align-items:center;display:flex;flex-direction:column;margin:0 auto;max-width:1290px;min-height:900px;padding:20px;width:100%}@media (min-width:760px){.ProLiveCommentary-outerContainer{padding:40px 20px}}@media (min-width:1020px){.ProLiveCommentary-outerContainer{padding:40px 0}}.ProLiveCommentary-nonProMainContainer,.ProLiveCommentary-proMainContainer{display:flex;flex-direction:column;width:100%}@media (min-width:1020px){.ProLiveCommentary-nonProMainContainer,.ProLiveCommentary-proMainContainer{flex-direction:row;margin:0 auto;max-width:960px}}@media (min-width:1340px){.ProLiveCommentary-nonProMainContainer,.ProLiveCommentary-proMainContainer{max-width:1290px}}.ProLiveCommentary-nonProMainContainer{flex-direction:column}.ProLiveCommentary-leftColumn{padding:0;width:100%}@media (min-width:1020px){.ProLiveCommentary-leftColumn{width:555px}}@media (min-width:1340px){.ProLiveCommentary-leftColumn{width:770px}}.ProLiveCommentary-rightColumn{height:700px;margin:0 auto;padding:0;width:100%}@media (min-width:1020px){.ProLiveCommentary-rightColumn{height:651px;margin:0 0 20px 26px;width:410px}}@media (min-width:1340px){.ProLiveCommentary-rightColumn{height:794px;width:520px}}.ProLiveCommentary-title{color:#171717;font-family:Proxima Nova,sans-serif;font-size:16px;font-style:normal;font-weight:700;letter-spacing:0;line-height:20px;margin:16px 0 12px}@media (min-width:760px){.ProLiveCommentary-title{font-size:28px;line-height:32px;margin:24px 0 12px}}.ProLiveCommentary-about>div{color:#747474;font-family:Lyon,serif;font-size:18px;font-style:italic;font-weight:400;line-height:26px;margin-left:0;max-width:unset}@media (max-width:759px){.ProLiveCommentary-about>div{font-size:14px;line-height:20px}}.ProLiveCommentary-about>div p{margin-bottom:10px;margin-top:10px}.ProLiveCommentary-about>div p a{color:#747474;text-decoration:underline}.ProLiveCommentary-about>div p a:hover{color:#00a857}@media (max-width:759px){.ProLiveCommentary-proMainContainer .ProLiveCommentary-about{display:none}}.ProLiveCommentary-headerAndMainContainer{display:flex;flex-direction:column;width:100%}.ProLiveCommentary-nonProTextContainer{width:100%}@media (min-width:1020px){.ProLiveCommentary-nonProTextContainer{max-width:648px}}@media (min-width:1340px){.ProLiveCommentary-nonProTextContainer{max-width:739px}}.ProLiveCommentary-nonProTextContainer .ProLiveCommentary-title{margin-top:0}@media (min-width:760px){.ProLiveCommentary-nonProTextContainer .ProLiveCommentary-title{margin-top:2px}}.ProLiveCommentary-nonProTextContainer .ProLiveCommentary-about{margin-bottom:-6px}@media (min-width:760px){.ProLiveCommentary-nonProTextContainer .ProLiveCommentary-about{margin-bottom:-2px}}.ProLiveCommentary-tableTitle{border-top:3px solid #cfd8e2;color:#002f6c;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-style:bold;font-weight:700;line-height:20px;padding:4px 0 20px}.ProLiveCommentary-symbolTablesContainer{display:flex;justify-content:space-between;margin-top:33px}.ProLiveCommentary-symbolTablesContainer>div:first-child{margin-right:9px}.ProLiveCommentary-symbolTablesContainer>div{flex-basis:0;flex-grow:1}@media (max-width:1019px){.ProLiveCommentary-symbolTablesContainer{display:none}}.ProLiveCommentary-symbolTablesContainer .ProLiveCommentary-popularQuotesContainer{margin-bottom:11px}@media (max-width:1339px){.ProLiveCommentary-symbolTablesContainer .ProLiveCommentary-popularQuotesContainer{height:269px}}.ProLiveCommentary-symbolTablesContainer .ProLiveCommentary-watchlistContainer{margin-bottom:11px}.ProLiveCommentary-symbolTablesContainer .ProLiveCommentary-popularQuotesContainer>div,.ProLiveCommentary-symbolTablesContainer .ProLiveCommentary-watchlistContainer>div{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='100%25' height='100%25' fill='none' stroke='%239E9E9EFF' stroke-dasharray='1, 2' stroke-linecap='square'/%3E%3C/svg%3E");padding:14px 18px}.PageBuilder-container{display:flex;flex-flow:column;height:calc(100vh - 110px);max-height:-webkit-fill-available;min-height:-webkit-fill-available;overflow:auto}.PageBuilder-container,.PageBuilder-container *{font-family:Proxima Nova,Helvetica,Arial,sans-serif!important}.PageBuilder-container .PageBuilder-filterManagerContainer{margin-bottom:132px;margin-top:-103px;order:2}.PageBuilder-container .PageBuilder-filterManagerContainer.PageBuilder-closed{height:0;opacity:0;position:fixed;top:1000px;visibility:hidden;width:0}@media screen and (max-width:1019px) and (orientation:landscape){.PageBuilder-container .PageBuilder-filterManagerContainer{margin-bottom:70px}}@media screen and (min-width:480px) and (orientation:portrait){.PageBuilder-container .PageBuilder-filterManagerContainer{margin-top:-120px}}@media (min-width:1020px){.PageBuilder-container .PageBuilder-filterManagerContainer{margin:0;order:1;padding:0}}.PageBuilder-container .PageBuilder-mainContentContainer{margin-bottom:70px;order:1;padding:20px 21px}@media screen and (min-width:480px) and (orientation:portrait){.PageBuilder-container .PageBuilder-mainContentContainer{padding:41px 41px 20px}}@media screen and (max-width:759px) and (orientation:landscape){.PageBuilder-container .PageBuilder-mainContentContainer{padding:20px 21px}}@media screen and (min-width:480px) and (orientation:portrait){.PageBuilder-container{height:calc(100vh - 170px);max-height:-webkit-fill-available;min-height:-webkit-fill-available;overflow:hidden}}@media (min-width:1020px){.PageBuilder-container{flex-flow:row;height:auto;margin-bottom:0;overflow-x:hidden}.PageBuilder-container .PageBuilder-filterManagerContainer{animation:PageBuilder-slideIn .35s ease-out}.PageBuilder-container .PageBuilder-filterManagerContainer.PageBuilder-closed{animation:PageBuilder-slideOutPanel .35s ease-out;animation-fill-mode:forwards;opacity:1;position:static;visibility:visible}.PageBuilder-container .PageBuilder-mainContentContainer{flex:auto;margin-left:50px;order:2;padding:0 38px 0 16px;position:relative}.PageBuilder-container .PageBuilder-ep{animation:PageBuilder-slideOutMainContent .35s ease-out}.PageBuilder-container .PageBuilder-defaultViewOpen{animation:PageBuilder-slideIn .35s ease-out;padding:0 20px 0 16px}.PageBuilder-container .PageBuilder-defaultViewOpenSelected{animation:PageBuilder-slideIn .35s ease-out;padding:0 0 0 16px}.PageBuilder-container .PageBuilder-defaultViewCloseSelected{animation:PageBuilder-slideOutMainContent .35s ease-out;padding:0 0 0 16px}}@media (min-width:1340px){.PageBuilder-container .PageBuilder-mainContentContainer{padding:0 33px 0 16px}.PageBuilder-container .PageBuilder-defaultViewOpen{animation:PageBuilder-slideIn .35s ease-out;padding:0 23px 0 16px}.PageBuilder-container .PageBuilder-defaultViewOpenSelected{animation:PageBuilder-slideIn .35s ease-out;padding:0 0 0 16px}.PageBuilder-container .PageBuilder-ep{animation:PageBuilder-slideOutMainContent .35s ease-out}}@media (min-width:1850px){.PageBuilder-container .PageBuilder-mainContentContainer{padding:0 277px 0 237px}.PageBuilder-container .PageBuilder-defaultViewOpen{animation:PageBuilder-slideInWide .35s ease-out;padding:0 277px 0 16px}.PageBuilder-container .PageBuilder-defaultViewOpenSelected{animation:PageBuilder-slideInWide .35s ease-out;padding:0 0 0 16px}.PageBuilder-container .PageBuilder-defaultViewCloseSelected{animation:PageBuilder-slideOutMainContent .35s ease-out;padding:0 43px 0 16px}.PageBuilder-container .PageBuilder-ep{animation:PageBuilder-slideOutMainContentWide .35s ease-out;padding-left:237px}}@keyframes PageBuilder-slideIn{0%{transform:translateX(-300px)}to{transform:translateX(0)}}@keyframes PageBuilder-slideOutPanel{0%{transform:translateX(0)}to{transform:translateX(-300px)}}@keyframes PageBuilder-slideOutMainContent{0%{transform:translateX(300px)}to{transform:translateX(0)}}@keyframes PageBuilder-slideInWide{0%{transform:translateX(-100px)}to{transform:translateX(0)}}@keyframes PageBuilder-slideOutMainContentWide{0%{transform:translateX(100px)}to{transform:translateX(0)}}.StockScreenerPage-container{min-height:500px}.PortfolioNews-container{container-type:inline-size;container-name:outerCard;background-color:#fff;border-radius:4px;box-shadow:0 6px 24px 0 #82828226;color:#171717;flex:1;font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin-bottom:30px;padding:12px;width:100%}.PortfolioNews-header{align-items:center;display:flex;flex-direction:row;justify-content:space-between}.PortfolioNews-headerTitle{font-size:20px;font-weight:600;letter-spacing:.03px;line-height:26px}.PortfolioNews-ctaLinkContainer{align-items:center;color:#0053cf;display:flex;flex-direction:row;gap:8px}.PortfolioNews-ctaLinkContainer .PortfolioNews-chevronDownImage{fill:#0053cf}.PortfolioNews-ctaLinkContainer:focus,.PortfolioNews-ctaLinkContainer:hover{color:#001e5a}.PortfolioNews-ctaLinkContainer:focus .PortfolioNews-chevronDownImage,.PortfolioNews-ctaLinkContainer:hover .PortfolioNews-chevronDownImage{fill:#001e5a}.PortfolioNews-ctaTitle{font-size:12px;font-weight:600;letter-spacing:0;line-height:15px}.PortfolioNews-chevronDownImage{fill:#0053cf}.PortfolioNews-containerSubheader{color:#171717;font-size:12px;font-weight:500;line-height:16px;padding:20px 0}.PortfolioNews-asset{display:flex;flex-direction:row;padding:10px 0}.PortfolioNews-asset:not(:last-child){border-bottom:1px dashed #9e9e9e}.PortfolioNews-infoContainer{flex:1;padding-right:8px}.PortfolioNews-tag{color:#0053cf;font-size:12px;font-weight:700;letter-spacing:1.5px;line-height:16px;text-transform:uppercase}.PortfolioNews-tag:focus,.PortfolioNews-tag:hover{color:#001e5a}.PortfolioNews-articleTitle{-webkit-line-clamp:2;-webkit-box-orient:vertical;color:#171717;display:-webkit-box;font-weight:500;letter-spacing:.03px;margin-bottom:20px;max-width:100%;overflow:hidden}.PortfolioNews-articleTitle:hover{color:#171717;text-decoration:underline}.PortfolioNews-assetFooter{align-items:flex-start;display:flex;flex-direction:column;gap:12px;justify-content:flex-end;padding:0}.PortfolioNews-date{align-items:flex-end;color:#424242;display:flex;font-size:12px;font-weight:600;letter-spacing:1.5px;line-height:16px;text-transform:uppercase;white-space:nowrap}.PortfolioNews-videoIndicator{background-color:#fcb700;display:inline-block;height:16px;margin-bottom:4px;margin-right:4px;position:relative;vertical-align:middle;width:16px}.PortfolioNews-videoIndicator:after{border-bottom:3px solid #0000;border-left:5px solid #fff;border-top:3px solid #0000;content:"";height:0;left:6px;position:absolute;top:5px;width:0}.PortfolioNews-investingClubPill,.PortfolioNews-proPill{bottom:-2px!important}.PortfolioNews-imageContainer{height:78px;max-height:78px;max-width:138.6px;min-height:78px;min-width:138.6px;overflow:hidden;width:138.6px}.PortfolioNews-imageContainer img{object-fit:cover;position:relative;top:50%;transform:translateY(-50%)}.PortfolioNews-bold{font-weight:600}.PortfolioNews-forMore{padding-top:50px}.PortfolioNews-forMoreLink{color:#0053cf;font-weight:600}.PortfolioNews-forMoreLink:focus,.PortfolioNews-forMoreLink:hover{color:#001e5a}@container outerCard (max-width: 385px){.PortfolioNews-imageContainer{display:none}}.PortfolioMovers-container{background-color:#fff;border-radius:4px;box-shadow:0 6px 24px 0 #82828226;color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin-bottom:30px;padding:12px;width:100%}@media (min-width:760px){.PortfolioMovers-containerHeader{align-items:center;display:flex;justify-content:space-between}}.PortfolioMovers-headerTitle{color:#171717;font-size:20px;font-weight:600;line-height:26px}.PortfolioMovers-headerTime{color:#424242;font-size:10px;font-weight:600}@media (max-width:759px){.PortfolioMovers-headerTime{padding-top:20px}}.PortfolioMovers-listsContainer{display:flex;flex-wrap:wrap;gap:16px;padding-top:20px}.PortfolioMovers-moversList{display:flex;flex:1;flex-direction:column;min-width:240px}.PortfolioMovers-tableHeader{font-size:14px;font-weight:600;line-height:18px;padding:8px}.PortfolioMovers-tableContainer{width:100%}.PortfolioMovers-dataContainer{background:#f8f8f8;padding:8px}.PortfolioMovers-dataContainer:nth-child(2n){background:#fff}.PortfolioMovers-dataRow{display:flex;justify-content:space-between}.PortfolioMovers-dataRow:first-child{padding-bottom:8px}.PortfolioMovers-symbolName{color:#0053cf;cursor:pointer;font-size:12px;font-weight:500;line-height:16px}.PortfolioMovers-symbolName:focus,.PortfolioMovers-symbolName:hover{color:#001e5a}.PortfolioMovers-companyName{font-size:12px;overflow:hidden;padding-right:8px;text-overflow:ellipsis;white-space:nowrap}.PortfolioMovers-triangle-DOWN,.PortfolioMovers-triangle-UP{border-left:4px solid #0000;border-right:4px solid #0000;height:0;position:relative;width:0}.PortfolioMovers-triangle-UP{border-bottom:8px solid #0a6630;bottom:11px}.PortfolioMovers-triangle-DOWN{border-top:8px solid #ce2b2b;top:11px}.PortfolioMovers-quoteChange{font-size:12px;font-weight:500;line-height:16px}.PortfolioMovers-quoteChange-UP{color:#0a6630}.PortfolioMovers-quoteChange-DOWN{color:#ce2b2b}.PortfolioMovers-changeValue{padding:0 5px 0 8px}.PortfolioMovers-changeValue:empty{padding:0 0 0 8px}.PortfolioMovers-lastPrice{color:#171717;font-size:12px;font-weight:600;line-height:16px}.PortfolioCalendarEvent-eventRow{background-color:#f8f8f8;border-radius:4px;display:block;font-size:12px;height:33px;line-height:33px;overflow:hidden;padding:0 10px;text-align:left;text-overflow:ellipsis;white-space:nowrap;width:100%}.PortfolioCalendarEvent-eventRow:hover{background-color:#f1f1f1}.PortfolioCalendarEvent-eventRow:not(:last-child){margin-bottom:2px}.PortfolioCalendarEvent-categoryDot{border-radius:100%;display:inline-block;height:8px;margin-right:4px;pointer-events:none;vertical-align:middle;width:8px}.PortfolioCalendarEvent-symbol{color:#171717;display:inline-block;font-size:14px;font-weight:500;padding:0 10px;vertical-align:middle;width:80px}.PortfolioCalendarEvent-label{color:#171717;display:inline-block;overflow:hidden;text-overflow:ellipsis;text-transform:capitalize;vertical-align:middle;white-space:nowrap}.PortfolioCalendarFilterButton-filterButton{background-color:#fff;border:1px solid #424242;border-radius:100px;color:#171717;font-size:12px;height:20px;margin:5px 0;padding:0 8px}.PortfolioCalendarFilterButton-filterButton[data-selected=true]{background-color:#171717;color:#fff}.PortfolioCalendarFilterButton-filterButton:disabled{cursor:default}.PortfolioCalendarFilterButton-filterButton:not(:last-child){margin-right:5px}.PortfolioCalendarFilterButton-categoryDot{border-radius:100%;display:inline-block;height:8px;margin-right:4px;pointer-events:none;width:8px}.PortfolioCalendar-container{container-type:inline-size;container-name:outerCard;background-color:#fff;border-radius:4px;box-shadow:0 6px 24px 0 #82828226;color:#171717;flex:1;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:0;margin-bottom:30px;padding:12px;width:100%}.PortfolioCalendar-containerHeader{color:#171717;font-size:20px;font-weight:600;line-height:26px}.PortfolioCalendar-containerSubheader{color:#171717;font-size:12px;font-weight:500;line-height:16px;padding:20px 0}.PortfolioCalendar-calendarWrapper,.PortfolioCalendar-listWrapper{display:inline-block;font-size:12px;height:488px;vertical-align:top;width:50%}.PortfolioCalendar-listWrapper{padding-left:10px;padding-top:40px;position:relative}.PortfolioCalendar-filterRow{height:48px;min-width:360px;overflow-x:auto;overflow-y:hidden;padding-left:10px;position:absolute;right:0;top:0;white-space:nowrap;width:100%}.PortfolioCalendar-list{font-size:16px;height:100%;overflow-x:hidden;overflow-y:auto;position:relative}.PortfolioCalendar-emptyList{padding:20px 10px}.PortfolioCalendar-listItem{line-height:28px;padding:10px 0;text-transform:capitalize}.PortfolioCalendar-listItem:last-child:not(:only-child){margin-bottom:360px}.PortfolioCalendar-listItemHeader{height:36px;line-height:20px;padding:8px 10px}.PortfolioCalendar-listItemDate{font-weight:600}.PortfolioCalendar-eventCount{border:1px solid #008456;border-radius:100%;color:#008456;float:right;font-size:12px;font-weight:500;height:20px;line-height:18px;text-align:center;width:20px}.PortfolioCalendar-muiCalendar{height:auto!important;max-height:none!important;width:auto!important}.PortfolioCalendar-muiCalendarHeader{margin-bottom:20px!important;margin-top:0!important;padding:0!important}.PortfolioCalendar-muiCalendarHeader div:empty{width:0!important}.PortfolioCalendar-muiCalendarHeader div[role=presentation]{margin-right:0!important;width:130px!important}.PortfolioCalendar-muiCalendarHeader button[title="Next month"],.PortfolioCalendar-muiCalendarHeader button[title="Previous month"]{border-radius:50%!important;margin:0!important;padding:0!important}.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) button:not([aria-selected=true]):focus{background-color:inherit!important}.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) div[role=presentation]{min-height:360px!important}.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) div[role=rowgroup]{bottom:0!important;left:0!important;right:0!important;top:0!important}.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) div[role=row]:not(:last-child){margin-bottom:26px!important}.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) [role=gridcell]{margin:0!important}.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) [role=columnheader]{min-width:36px!important}.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) [role=columnheader],.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) span:has([role=gridcell]){margin:0!important}.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) [role=columnheader]:not(:last-child),.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) span:has([role=gridcell]):not(:last-child){margin-right:calc(14% - 34px)!important}@container outerCard (max-width: 568px){.PortfolioCalendar-calendarWrapper{height:auto;width:100%}.PortfolioCalendar-listWrapper{padding-left:0;width:100%}.PortfolioCalendar-filterRow{min-width:0;padding-left:0}.PortfolioCalendar-listItem:last-child:not(:only-child){margin-bottom:0}.PortfolioCalendar-muiCalendar>:not(.PortfolioCalendar-muiCalendarHeader) *{display:none}}.PortfolioHoldingsTable-container{background-color:#fff;border-radius:4px;box-shadow:0 6px 24px 0 #82828226;color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin-bottom:30px;min-height:304px;padding:12px;width:100%}.PortfolioHoldingsTable-containerHeader{color:#171717;font-size:20px;font-weight:600;line-height:26px}.PortfolioHoldingsTable-containerSubheader{color:#171717;font-size:12px;font-weight:500;line-height:16px;padding:20px 0}.PortfolioOverview-container{color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin:30px 0}.PortfolioOverview-containerHeader{font-size:28px;font-weight:700;line-height:32px}.PortfolioOverview-containerSubheader{color:#424242;font-size:12px;font-weight:500;line-height:16px;padding:20px 0 40px}.PortfolioOverview-aggregateHeader{font-size:16px;font-weight:400;line-height:20px;padding-bottom:20px;text-transform:uppercase}.PortfolioOverview-aggregateContainer{padding-bottom:80px}.PortfolioOverview-aggregateColumn{display:inline-block;vertical-align:top}.PortfolioOverview-aggregateMarketValue{font-size:56px;font-weight:500;line-height:60px}.PortfolioOverview-aggregateMarketValueText{color:#424242;font-size:16px;font-weight:500;line-height:16px;text-align:right}.PortfolioOverview-aggregateChangePercent{font-size:24px;font-weight:500;line-height:30px;padding-left:40px;vertical-align:middle}.PortfolioOverview-aggregateChangePercentText{font-size:16px;font-weight:500;letter-spacing:2.5px;line-height:27px;padding-left:10px;vertical-align:middle}.PortfolioOverview-listContainer{color:#171717;display:flex;flex-direction:row;gap:15px;overflow-x:auto;overflow-y:hidden;padding-bottom:10px;width:100%}.PortfolioOverview-sticky{background-color:#f8f8f8;display:flex;flex-direction:column;justify-content:center;left:0;position:sticky;z-index:2}.PortfolioOverview-sticky:after{background-color:inherit;content:"";height:10px;left:0;position:absolute;top:100%;width:100%}.PortfolioOverview-linkAccountButton{color:#0a6630;cursor:pointer;display:inline-block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:30px;font-weight:500;height:34px;width:34px}.PortfolioOverview-portfolioCardContainer{background:#fff;border:1px solid #0000;border-radius:8px;display:flex;flex-direction:row;flex-shrink:0;gap:8px;min-width:200px;padding:8px;position:relative;text-align:left;white-space:nowrap}.PortfolioOverview-portfolioCardContainer:after{background-color:initial;border-radius:12px;bottom:-8px;content:"";display:block;height:4px;left:0;pointer-events:none;position:absolute;width:100%}.PortfolioOverview-portfolioCardContainer:disabled{box-shadow:0 6px 24px 0 #82828226;color:#171717;cursor:default}.PortfolioOverview-portfolioCardContainer:disabled:after{background-color:#0a6630}.PortfolioOverview-portfolioCardContainer:hover:not(:disabled){border-color:#9e9e9e;box-shadow:0 2px 4px 0 #82828233}.PortfolioOverview-portfolioCardContainer:hover:not(:disabled):after{background-color:#9e9e9e}.PortfolioOverview-brokerageIcon{height:24px;position:relative;top:50%;transform:translateY(-50%);width:24px}.PortfolioOverview-portfolioCardColumn{display:flex;flex-direction:column;font-size:12px;gap:8px;line-height:16px}.PortfolioOverview-portfolioCardColumn:last-child{margin-left:auto}.PortfolioOverview-brokerageName{max-width:100px;overflow:hidden;text-overflow:ellipsis}.PortfolioOverview-portfolioCardMarketValue{font-size:16px;font-weight:500}.PortfolioOverview-portfolioCardChange{font-weight:500}.PortfolioOverview-portfolioCardToday{font-size:10px;font-weight:600;letter-spacing:1.5px}.PortfolioOverview-positiveChange{color:#0a6630}.PortfolioOverview-negativeChange{color:#ce2b2b}.SegmentDataAllocation-segment{display:flex;margin-bottom:12px}.SegmentDataAllocation-tileSegment{background:#0471e6;border-radius:2px;display:flex;height:16px;width:16px}.SegmentDataAllocation-segmentName{color:#171717;font-size:12px;font-weight:700;line-height:16px;margin-left:10px;text-transform:uppercase}.SegmentDataAllocation-segmentPercentContainer,.SegmentDataAllocation-segmentPercentData{color:#171717;font-size:12px;font-weight:700;line-height:16px;margin-left:auto}.SegmentDataAllocation-segmentPercentContainer{display:flex;gap:16px}.SegmentDataAllocation-sectorPercentData{color:#171717;font-size:12px;font-weight:700;line-height:16px}.SegmentDataAllocation-chevron{background:#171717;cursor:pointer;height:8px;mask-image:url(https://static-redesign.cnbcfm.com/dist/6d2e721986ddae3d97e6.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/6d2e721986ddae3d97e6.svg);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;position:relative;top:3.5px;width:15px}.SegmentDataAllocation-chevronOpen{transform:scaleY(-1)}.SegmentDataAllocation-disabledTile{background-color:#878eb6;cursor:default}.SegmentDataAllocation-disabled{color:#747474}.SegmentDataAllocation-industryTile{margin-left:8px}.DataTileGrid-gridContainer{container-type:inline-size;container-name:gridDataContainer;align-content:flex-start;display:flex;flex-direction:column;flex-wrap:wrap;height:70px;justify-content:flex-start;margin:0 auto 20px;max-width:386px}.DataTileGrid-gridItem{align-items:center;background-color:#ccc;display:flex;height:12px;justify-content:center;margin:1px;text-align:center;width:17px}@container gridDataContainer (max-width: 300px){.DataTileGrid-gridItem{height:12px;width:12px}}.Composition-container{background:#fff;margin-bottom:30px;padding:10px 12px 30px}.Composition-containerHeader{font-size:20px;font-weight:600;line-height:26px;padding-bottom:18px}.Composition-description{font-size:12px;font-weight:600;line-height:16px;padding-bottom:20px}.Composition-buttonContainer{display:flex;gap:12px;margin-bottom:20px}.Composition-buttonAssetSector{border:1px solid #001e5a;border-radius:100px;color:#001e5a;display:flex;font-size:12px;font-weight:400;line-height:16px;padding:2px 3px}.Composition-buttonAssetSector.Composition-selected,.Composition-buttonAssetSector:hover{background-color:#001e5a;color:#fff}.PortfolioLinkAccountGate-mainContainer{padding:40px 0}.PortfolioLinkAccountGate-leadContainer{background-image:url(https://static-redesign.cnbcfm.com/dist/66c912ab17167b75719a.svg);background-position:right 20px;background-repeat:no-repeat;box-shadow:0 6px 24px 0 #82828226;margin-bottom:40px;width:100%}.PortfolioLinkAccountGate-leadPropsContainer{display:flex;flex-direction:row;padding:65px 25px 0}.PortfolioLinkAccountGate-leadHeading{color:#101418;font-size:48px;font-weight:700;line-height:36px}.PortfolioLinkAccountGate-sublead{color:#424242;font-size:24px;font-weight:400;line-height:36px}.PortfolioLinkAccountGate-linkButton,.PortfolioLinkAccountGate-linkButtonFooter{background-color:#008456;border-radius:4px;color:#fff;font-size:18px;font-weight:700;height:50px;letter-spacing:.04em;line-height:18px;width:354px}.PortfolioLinkAccountGate-linkButton:hover,.PortfolioLinkAccountGate-linkButtonFooter:hover{background-color:#005034}.PortfolioLinkAccountGate-linkButtonFooter{width:100%}.PortfolioLinkAccountGate-leadHeadingContainer{display:flex;flex-basis:0;flex-direction:column;flex-grow:1;gap:40px;min-width:0}.PortfolioLinkAccountGate-leadLogo{align-items:center;display:flex;flex-basis:0;flex-grow:1;justify-content:center;min-width:0}.PortfolioLinkAccountGate-leadFooterContainer{align-items:flex-end;display:flex;flex-direction:column;gap:8px;margin-right:25px;padding-bottom:16px}.PortfolioLinkAccountGate-leadFooterLogoContainer{display:flex;flex-direction:row;gap:8px}.PortfolioLinkAccountGate-contentContainer{display:flex;flex-direction:column;gap:40px}.PortfolioLinkAccountGate-valuePropRowContainer{display:flex;flex-direction:row;gap:20px}.PortfolioLinkAccountGate-valuePropContainer{background-color:#fff;box-shadow:0 6px 24px 0 #82828226;display:flex;flex-basis:0;flex-direction:column;flex-grow:1;gap:24px;min-width:0}.PortfolioLinkAccountGate-valuePropHeading{align-items:center;color:#171717;display:flex;font-size:24px;font-weight:700;gap:8px;line-height:36px;padding:24px 24px 0}.PortfolioLinkAccountGate-valuePropDescription{color:#424242;font-size:16px;font-weight:500;line-height:20.8px;padding:24px 24px 0;text-align:left}.PortfolioLinkAccountGate-valuePropImageContainer{align-items:center;display:flex;height:168px;margin:auto}.PortfolioLinkAccountGate-valuePropLink{align-items:center;color:#101418;display:flex;flex-direction:row;font-size:16px;font-weight:600;gap:8px;justify-content:flex-end;letter-spacing:.03px;line-height:26px;margin:0 25px 25px 0}.PortfolioLinkAccountGate-valuePropImageContainer>img{width:100%}.PortfolioContainer-containerFluidWidths{margin:0 auto;width:100%}@media (min-width:1020px){.PortfolioContainer-containerFluidWidths{max-width:960px}}@media (min-width:1340px){.PortfolioContainer-containerFluidWidths{max-width:1290px}}.PortfolioContainer-page{display:block;margin-bottom:25px;overflow:visible}@media (min-width:760px){.PortfolioContainer-page{margin-bottom:28px}}.PortfolioContainer-pageWrapper{margin:0 auto;max-width:100%}@media (min-width:760px){.PortfolioContainer-pageWrapper{max-width:678px}}@media (min-width:1020px){.PortfolioContainer-pageWrapper{max-width:960px}}@media (min-width:1340px){.PortfolioContainer-pageWrapper{max-width:1290px}}@media (min-width:760px){.PortfolioContainer-pageWrapper{max-width:100%!important}}.PortfolioContainer-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.PortfolioContainer-pageRow{padding-left:0;padding-right:0}}@media (min-width:1020px){.PortfolioContainer-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}}@media (min-width:1020px) and (min-width:760px){.PortfolioContainer-pageRow{padding-left:0;padding-right:0}}@media (max-width:1019px){.PortfolioContainer-pageRow{margin:0;padding:0}}@media (min-width:360px) and (max-width:759px){.PortfolioContainer-pageRow.PortfolioContainer-containerFluidWidths{padding:0 21px}}@media (min-width:760px) and (max-width:1019px){.PortfolioContainer-pageRow.PortfolioContainer-containerFluidWidths{padding:0 45px}}.PortfolioContainer-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.PortfolioContainer-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.PortfolioContainer-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.PortfolioContainer-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.PortfolioContainer-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.PortfolioContainer-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.PortfolioContainer-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.PortfolioContainer-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}.PortfolioContainer-containerFluidWidths .PortfolioContainer-col{max-width:678px!important;min-width:678px}}@media (min-width:760px){.PortfolioContainer-col-3{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.PortfolioContainer-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.PortfolioContainer-col-3{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.PortfolioContainer-col-3{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.PortfolioContainer-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.PortfolioContainer-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}.PortfolioContainer-col-3:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.PortfolioContainer-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}@media (min-width:760px){.PortfolioContainer-col-4{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.PortfolioContainer-col-4{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.PortfolioContainer-col-4{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.PortfolioContainer-col-4{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.PortfolioContainer-col-4{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.PortfolioContainer-col-4{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}.PortfolioContainer-col-4:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.PortfolioContainer-col-4{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}}@media (min-width:760px){.PortfolioContainer-col-6{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.PortfolioContainer-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.PortfolioContainer-col-6{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.PortfolioContainer-col-6{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.PortfolioContainer-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.PortfolioContainer-col-6{flex-grow:0;flex-shrink:0;margin-left:0;margin-right:0;max-width:calc(44.44444% - 16.66667px);min-width:calc(44.44444% - 16.66667px)}.PortfolioContainer-col-6:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.PortfolioContainer-col-6{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(50% - 15px);min-width:calc(50% - 15px)}}@media (min-width:760px){.PortfolioContainer-col-8{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.PortfolioContainer-col-8{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.PortfolioContainer-col-8{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.PortfolioContainer-col-8{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.PortfolioContainer-col-8{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.PortfolioContainer-col-8{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.PortfolioContainer-col-8:last-child{margin-right:0}}@media (min-width:1340px){.PortfolioContainer-col-8{flex-grow:0;flex-shrink:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}}@media (min-width:760px){.PortfolioContainer-col-9{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.PortfolioContainer-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.PortfolioContainer-col-9{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.PortfolioContainer-col-9{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.PortfolioContainer-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.PortfolioContainer-col-9{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.PortfolioContainer-col-9:last-child{margin-right:0}}@media (min-width:1340px){.PortfolioContainer-col-9{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}}@media (min-width:760px){.PortfolioContainer-col-12{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.PortfolioContainer-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.PortfolioContainer-col-12{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.PortfolioContainer-col-12{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.PortfolioContainer-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.PortfolioContainer-col-12{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.PortfolioContainer-col-12:last-child{margin-right:0}}@media (min-width:1340px){.PortfolioContainer-col-12{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}.PortfolioContainer-col-full{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.PortfolioContainer-col-full .MyComponentName-container{width:100vw}@media (min-width:1340px){.PortfolioContainer-col-full .MyComponentName-container{max-width:none}}.PortfolioContainer-col-full:last-child{margin-right:0}.PortfolioPage-pageBackground{background-color:#f8f8f8}.PortfolioPage-container{min-height:500px}@media (min-width:1020px){.PortfolioPage-container{margin:0 auto;max-width:100%}}@media (min-width:1020px) and (min-width:760px){.PortfolioPage-container{max-width:678px}}@media (min-width:1020px) and (min-width:1020px){.PortfolioPage-container{max-width:960px}}@media (min-width:1020px) and (min-width:1340px){.PortfolioPage-container{max-width:1290px}}.omega_tapToUnmuteBtn{align-items:center;background:#fcb700;border:0;display:flex;height:44px;justify-content:center;margin:15px 0 0 15px;padding:0;width:44px;z-index:var(--z-index-tap-to-unmute);.omega_tapToUnmuteBtn-icon{color:#071d39;height:22px;width:22px}}.omega_rackWithDVR{align-items:center;bottom:0;box-sizing:border-box;display:grid;gap:10px 25px;grid-template-columns:repeat(5,auto) 1fr repeat(2,auto);opacity:0;padding:15px;position:fixed;transition:var(--fade-transition);width:100%;z-index:var(--z-index-control-rack);&.omega_rackWithDVR-show{opacity:1;transition:none}.omega_slider{&.omega_slider-scrubber{grid-column:1/-1;grid-row:1;justify-self:center}}.omega_btnSubtitle,.omega_btnSubtitleVOD,.omega_playPauseDesktop,.omega_playPauseMobile,.omega_rewind{align-items:center;background:#0000;border:none;display:flex;height:100%;justify-content:center;padding:0;&:focus{outline:none}}.omega_btnSubtitleVOD{justify-content:end}}.omega_volume{--volumeTransition:0.05s ease-in-out 0.5s;align-items:center;display:flex;&:hover{.omega_volume-muteBtn{margin:0 6px 0 0;transition-delay:0s}.omega_volume-container{transition-delay:0s;visibility:visible;width:88px}}.omega_volume-muteBtn{border:none;margin:0;padding-left:24px;transition:margin var(--volumeTransition)}.omega_volume-container{align-items:center;transition:width var(--volumeTransition),visibility var(--volumeTransition);visibility:hidden;width:0}}.omega_time{font-size:14px;letter-spacing:1.2px}.omega_liveBtn{align-items:center;display:flex;gap:8px;.omega_liveBtn-dot{background:red;border-radius:100%;display:block;height:8px;width:8px}.omega_liveBtn-label{font-size:14px;font-weight:700;letter-spacing:1.1px;line-height:normal;text-transform:uppercase}}.omega_slider{--sliderColor:#888;--sliderProgressColor:#fff;--sliderThumbColor:var(--sliderProgressColor);--sliderProgress:linear-gradient(to right,var(--sliderProgressColor) 0% var(--sliderPosition),var(--sliderColor) var(--sliderPosition) 100%);--sliderThumbShadow:0 1px 2px #00000040;--sliderThumbSize:15px;--sliderTrackHeight:5px;appearance:none;background:#0000;cursor:pointer;justify-self:center;width:100%;&::-webkit-slider-runnable-track{appearance:none;background:var(--sliderProgress);height:var(--sliderTrackHeight)}&::-webkit-slider-thumb{appearance:none;background:var(--sliderThumbColor);border:none;border-radius:100%;box-shadow:var(--sliderThumbShadow);height:var(--sliderThumbSize);margin-top:-5px;width:var(--sliderThumbSize)}&::-moz-range-track{background:var(--sliderColor);height:var(--sliderTrackHeight)}&::-moz-range-progress{background:var(--sliderProgressColor);height:var(--sliderTrackHeight)}&::-moz-range-thumb{background:var(--sliderThumbColor);border:none;border-radius:100%;box-shadow:var(--sliderThumbShadow);height:var(--sliderThumbSize);width:var(--sliderThumbSize)}}:root{--fade-transition:opacity 0.667s ease-in-out;--z-index-omega-overlay:50}.omega_aspectRatioContainer{margin:auto}.omega_videoContainer{container-name:video-container dvr-rack;container-type:size;--z-index-video:0;--z-index-captions:10;--z-index-control-rack-backdrop:20;--z-index-control-rack:30;--z-index-pip-close:30;--z-index-tap-to-unmute:40;--transition-backdrop-fade:var(--fade-transition);color:#fff;font-family:FoundersGroteskCond,Arial Narrow,Arial,sans-serif;height:100%;left:0;max-height:100vh;position:absolute;top:0;width:100%}.omega_videoContainer button{color:#fff}@container video-container (max-width: 312px){.omega_playPauseDesktop{display:none}}.omega_playPauseMobile{display:none}.omega_volume-container{display:flex}@container video-container (max-width: 480px){.omega_playPauseDesktop,.omega_volume-container{display:none}.omega_volume:hover .omega_volume-muteBtn{margin:0}.omega_playPauseMobile{align-self:center;background-color:initial;border:none;color:#fff;display:block;justify-self:center;z-index:var(--z-index-control-rack)}.omega_playPauseMobile svg{height:58px;width:58px}}@container dvr-rack (max-width: 435px){.omega_videoContainer .omega_rackWithDVR{grid-template-columns:repeat(4,auto) 1fr auto}.omega_videoContainer .omega_rackWithDVR .omega_btnSubtitle,.omega_videoContainer .omega_rackWithDVR .omega_liveBtn,.omega_videoContainer .omega_rackWithDVR .omega_volume-container{display:none}.omega_videoContainer .omega_rackWithDVR .omega_btnFullScreen{grid-column:auto/-1}}.omega_gridStackWrapper{display:grid;grid-template-columns:auto;grid-template-rows:auto}.omega_gridStackWrapper>*{grid-column:1/2;grid-row:1/2}.omega_coreVideoContainer video{left:0;position:absolute;top:0}.omega_controlRackBackdrop.omega_uiVisible{opacity:1}.omega_controlRackBackdrop{align-self:stretch;background-image:linear-gradient(180deg,#0000 50%,#000000e6);justify-self:stretch;z-index:var(--z-index-control-rack-backdrop)}.omega_controlRackBackdrop:not(.omega_uiVisible){opacity:0;transition:var(--fade-transition)}.omega_playPauseMobileContainer.omega_uiVisible{opacity:1}.omega_playPauseMobileContainer:not(.omega_uiVisible){opacity:0;transition:var(--fade-transition)}.omega_center{display:flex;justify-content:center}.omega_controlRack.omega_uiVisible{opacity:1}.omega_controlRack:not(.omega_uiVisible){opacity:0;transition:var(--fade-transition)}@media only screen and (min-width:758px){.omega_controlRack{padding:0 24px 13px}}.omega_controlRack{align-items:center;align-self:end;display:flex;justify-content:space-between;overflow:hidden;padding:0 24px 16px 0;z-index:var(--z-index-control-rack)}.omega_left,.omega_right{column-gap:12px;display:flex}.omega_left{justify-content:flex-start}.omega_right{justify-content:flex-end}.omega_adPlaying{font-size:.9rem;font-weight:600;padding:0 1em;text-transform:uppercase;white-space:nowrap}.omega_sections{align-items:center;flex-basis:0;flex-grow:1}.omega_controlRack button{background:none;border:none}.omega_right button{padding:0 .5em}.omega_right button:first-child{margin-left:-.5em}.omega_right button:last-child{margin-right:-.5em}svg:not(:root){overflow:hidden}.omega_captionOn{background-color:#fff;border-radius:2px}.omega_captionOn path{fill:#000}.omega_captionOff{border-radius:2px}.omega_captionOff path{fill:#fff}.omega_subtitles{background:#000;bottom:15%;color:#fff;font-family:var(--founders-mono,sans-serif);justify-self:center;padding:.5em 1em;position:absolute}.sr-only{clip:rect(0,0,0,0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.omega_slate{container-type:inline-size;display:flex;flex-direction:column;height:100%;justify-content:center;margin:auto;width:100%;z-index:var(--z-index-omega-overlay)}.omega_slate a{text-decoration:underline}.omega_slate p{color:#fff;font-size:calc(2cqi + 6px);font-weight:500;line-height:2;text-align:center}.omega_overlay{container-name:overlay;container-type:size;background-color:#000;color:#fff;height:100%;position:absolute;width:100%;z-index:var(--z-index-omega-overlay)}.omega_overlay_clickthrough{pointer-events:none}.omega_overlay_content{display:block;left:50%;max-height:100%;max-width:100%;position:relative;top:50%;transform:translate(-50%,-50%)}@container overlay (aspect-ratio > 16 /9){.omega_overlay .omega_overlay_image{height:100%;width:auto}}.omega_overlay_image{aspect-ratio:16/9;width:100%}.omega_overlay_text{font-size:10cqh;text-align:center}.FullEpisodePlayer-container{align-items:center;display:flex;flex-direction:row;font-size:22px;justify-content:space-between}.FullEpisodePlayer-fullEpisodePlayerContainer{display:flex;flex-direction:column;gap:20px}.FullEpisodePlayer-fullEpisodePlayer{container:video-player/inline-size;aspect-ratio:16/9;background-color:#000;position:relative;top:0;width:100%}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR{font-family:Proxima Nova,Helvetica,Arial,sans-serif;position:absolute;will-change:opacity}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_slider{--sliderColor:#ddd;--sliderProgressColor:#fff;--sliderThumbColor:#fff}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_volume{--volumeTransition:0.1s ease-in-out 0.5s;flex-direction:column-reverse}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_volume .omega_volume-muteBtn{padding:0}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_volume:hover .omega_volume-container{opacity:1;transition-delay:0s;visibility:visible;width:88px}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_volume:hover .omega_volume-muteBtn{margin:0}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_volume .omega_volume-container{opacity:0;position:absolute;rotate:-90deg;top:-50px;transition:opacity var(--volumeTransition),visibility var(--volumeTransition),width 0s .75s;visibility:hidden}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_liveBtn{display:flex;white-space:nowrap}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_liveBtn .omega_liveBtn-label{align-items:center;display:flex;font-weight:500;justify-content:center;letter-spacing:-.1px;position:relative}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_liveBtn .omega_liveBtn-label:before{border:2px solid #fff;content:"";display:block;height:100%;padding:5px 11px;position:absolute;width:100%}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_liveBtn .omega_liveBtn-dot+.omega_liveBtn-label:before{display:none}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_time{font-size:13px;letter-spacing:.5px;margin:0 0 1px}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR button{opacity:.8;transition:opacity .2s}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR button:hover{opacity:1}@container video-player (max-width: 460px){.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR{gap:5px 20px;grid-template-columns:repeat(2,auto) 1fr repeat(3,auto)}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR div:empty{display:none}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_slider{grid-row:1}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_playPauseDesktop{grid-row:2;height:30px}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_playPauseDesktop svg{height:24px;width:24px}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_volume .omega_volume-container{top:0;z-index:100}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_btnSubtitle{display:block}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_liveBtn .omega_liveBtn-label:before{padding:2px 6px}.FullEpisodePlayer-fullEpisodePlayer .omega_rackWithDVR .omega_rewind{display:none}}.FullEpisodePlayer-fullEpisodePlayer .omega_controlRackBackdrop{align-self:end;aspect-ratio:16/9;background:#000;height:100%;max-height:75px;width:100%}.FullEpisodePlayer-fullEpisodePlayer .omega_tapToUnmuteBtn{background:#fff}@container video-player (max-width: 630px){.FullEpisodePlayer-fullEpisodePlayer .omega_subtitles{bottom:2%;display:flex;max-width:600px;overflow:hidden;text-align:center;white-space:normal}}@container video-player (max-width: 460px){.FullEpisodePlayer-fullEpisodePlayer .omega_controlRackBackdrop{max-height:65px}.FullEpisodePlayer-fullEpisodePlayer .omega_subtitles{bottom:2%;display:flex;font-size:13px;max-width:280px;overflow:hidden;text-align:center;white-space:normal}}.FullEpisodePlayer-episodeInfoContianer{display:flex;flex-direction:column;gap:15px}.FullEpisodePlayer-seriesTitle{color:#2077b6;font-size:12px;font-weight:800;letter-spacing:1.5px;line-height:16px}.FullEpisodePlayer-episodeTitle{color:#f8f8f8;font-size:18px;font-weight:600;letter-spacing:.029999999329447746px;line-height:22px}.FullEpisodePlayer-episodeDescription{color:#f8f8f8;font-size:14px;font-weight:400;letter-spacing:.029999999329447746px;line-height:22px}.FullEpisodePlayer-videoThumbnail{width:100%}@media (min-width:760px) and (max-width:1019px){.FullEpisodePlayer-videoThumbnail{min-height:430px}}@media (min-width:360px) and (max-width:759px){.FullEpisodePlayer-videoThumbnail{min-height:230px}}.FullEpisodePlayer-PlayButton{position:relative}.FullEpisodePlayer-episodeDate{color:#9a9fa7;font-size:12px;font-weight:700;letter-spacing:1.5px;line-height:16px;text-align:left}.FullEpisodePlayer-videoThumbnailContainer{position:relative}.FullEpisodePlayer-videoFooter{background:linear-gradient(180deg,#1e579900 0,#000);bottom:0;filter:progid:dximagetransform.microsoft.gradient(startColorstr="#001e5799",endColorstr="#000000",GradientType=0);height:40px;padding-left:10px;padding-top:15px;position:absolute;text-align:left;width:100%}.FullEpisodePlayer-videoLabel{color:#fcb700;font-size:10px;font-weight:800;letter-spacing:1.67px;line-height:12px}@media (min-width:760px){.FullEpisodePlayer-videoLabel{font-size:12px;letter-spacing:2px;line-height:15px}}.FullEpisodePlayer-videoTime{color:#fffc;font-weight:600;letter-spacing:1.2px;padding-left:10px}@media (min-width:760px){.FullEpisodePlayer-videoTime{letter-spacing:1.44px}}.FullEpisodePlayer-slate{display:flex;height:100%;justify-content:center;margin:auto;width:100%}.FullEpisodePlayer-slate img{width:100%}.FullEpisodePlayer-slate+.omega_aspectRatioContainer{display:none}.EpisodePlayListItem-videoItem{margin-bottom:10px}.EpisodePlayListItem-episodeButtonContainer{display:flex;flex-direction:row;justify-content:space-between}@media (max-width:1019px){.EpisodePlayListItem-episodeButtonContainer{justify-content:flex-start;width:100%}}.EpisodePlayListItem-thumbnailContainer{height:72px;margin-right:10px;max-width:129px;overflow:hidden;position:relative}.EpisodePlayListItem-thumbnailContainer.EpisodePlayListItem-spacer{height:0}.EpisodePlayListItem-thumbnailContainer img{width:100%}.EpisodePlayListItem-headline{color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:500;letter-spacing:.03px;line-height:16px;margin:0;text-align:left}.EpisodePlayListItem-episodeDuration{bottom:5px;color:#fff;font-size:12px;font-weight:700;letter-spacing:1.5px;line-height:16px;margin:0;position:absolute;text-align:left}.EpisodePlayListItem-episodeDetailsContainer{border-bottom:.5px dashed #9e9e9e;display:flex;min-height:72px;min-width:160px;position:relative}@media (max-width:1019px){.EpisodePlayListItem-episodeDetailsContainer{margin-left:10px;width:inherit}}@media (min-width:1340px){.EpisodePlayListItem-episodeDetailsContainer{width:410px}}.EpisodePlayListItem-activeEpisodeContainer{border:2px solid #fcb700}.EpisodePlayListItem-activeEpisodeIndicator{background:linear-gradient(180.76deg,#00081a 18.7%,rgba(42,48,64,.836) 29.88%,rgba(74,80,93,.707) 37.74%,hsla(220,6%,47%,.553) 45.6%,#fdfeff00 99.35%);color:#fff;font-size:10px;font-weight:700;height:72px;line-height:16px;padding-left:8px;position:absolute;text-align:left;width:129px}.FullEpisodeVideoList-container{margin-bottom:20px;margin-top:24px}.FullEpisodeVideoList-episodeContainer{height:500px;margin-bottom:200px;overflow-x:clip;overflow-y:scroll;position:relative}@media (max-width:1019px){.FullEpisodeVideoList-episodeContainer{margin-bottom:0}}.ShowsListDropdown-showContainer{align-items:center;border-top:.5px solid #d9d9d9;display:flex;flex-direction:row;gap:12px;padding-top:12px}.ShowsListDropdown-showText{color:#9a9fa7;font-size:12px;font-weight:800;line-height:18px;padding:7px 5px}.ShowsListDropdown-buttonContainer{align-items:center;background-color:#fff;border:.5px solid #fff;border-radius:100px;display:flex;gap:4px;justify-content:center;padding:5px}.ShowsListDropdown-showName{color:#00081a;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:400;letter-spacing:.4px;line-height:16px;text-transform:uppercase}.ShowsListDropdown-chevron{background:#00081a;height:7px;mask-image:url(https://static-redesign.cnbcfm.com/dist/6d2e721986ddae3d97e6.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/6d2e721986ddae3d97e6.svg);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;position:relative;top:-.5px;width:11px}.ShowsListDropdown-chevronOpen{transform:scaleY(-1)}.ShowsListDropdown-dropdownContainer{background:#00081a;padding:24px 20px;position:absolute;width:300px;z-index:999}@media (max-width:1019px){.ShowsListDropdown-dropdownContainer{height:100%;left:0;padding:24px 41px;top:200px;width:100%}}@media (max-width:759px){.ShowsListDropdown-dropdownContainer{padding:24px 20px;top:0}}.ShowsListDropdown-dropdownItem{align-items:center;border-bottom:1px solid #2e3337;cursor:pointer;display:flex;height:37px;padding:8px}.ShowsListDropdown-dropdownItem:hover .ShowsListDropdown-dropDownShowTitle,.ShowsListDropdown-dropdownItem:hover .ShowsListDropdown-nbcShowContainer{color:#fcb700}.ShowsListDropdown-dropdownItem:hover .ShowsListDropdown-nbcIcon{background-color:#fcb700}.ShowsListDropdown-dropdownItem:last-child{border-bottom:0}.ShowsListDropdown-dropDownShowTitle{color:#fff;font-size:12px;font-weight:600;letter-spacing:1.32px;line-height:37px;text-align:justify;text-transform:uppercase;width:100%}.ShowsListDropdown-closeButtonContainer{display:flex;justify-content:flex-end}.ShowsListDropdown-closeButton{align-items:center;color:#fff;cursor:pointer;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;gap:10px;letter-spacing:1.32px;line-height:37px;text-align:right;width:70px}.ShowsListDropdown-closeButton:hover{color:#fcb700}.ShowsListDropdown-closeButton:hover .ShowsListDropdown-closeIcon{background-color:#fcb700}.ShowsListDropdown-closeIcon{background-color:#fff;display:inline-block;height:12px;mask-image:url(https://static-redesign.cnbcfm.com/dist/6118770fb27b2d9fb92e.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/6118770fb27b2d9fb92e.svg);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;position:relative;top:-2px;width:12px}.ShowsListDropdown-nbcShowContainer{display:flex;justify-content:space-between}.ShowsListDropdown-nbcIcon{background-color:#fff;display:inline-block;height:11px;margin-left:5px;mask-image:url(https://static-redesign.cnbcfm.com/dist/102cc85fdaab546b3ee8.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/102cc85fdaab546b3ee8.svg);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;width:14px}.ShowsVideosRightRail-rightRailContainer{margin-bottom:20px}.ShowsVideosRightRail-watchLivestreamButton{align-items:center;background-color:#0053cf;border-radius:5px;color:#fff;display:flex;font-size:14px;font-weight:600;justify-content:center;line-height:17px;margin-bottom:30px;min-height:51px;min-width:300px}@media (max-width:1019px){.ShowsVideosRightRail-watchLivestreamButton{margin-top:30px}}.ShowsVideosRightRail-watchLivestreamButton span{animation:ShowsVideosRightRail-pulse 1.5s infinite;animation-timing-function:ease-in-out;background-color:#fff;border-radius:100%;box-shadow:0 0 0 0 #fff;display:inline-block;height:8px;margin-right:8px;position:relative;transform:scale(1);width:8px}@keyframes ShowsVideosRightRail-pulse{0%{box-shadow:0 0 0 1px #0053cf;opacity:1}70%{border:1px solid #0053cf;box-shadow:0 0 0 1px #fff;opacity:.9;padding:2px;transform:scale(1.2)}to{box-shadow:0 0 0 1px #fff;opacity:1;transform:scale(1)}}.ShowsVideosRightRail-watchLivestreamButton:hover{background-color:#002f6c;color:#fff}.PlusLogoHeader-headerContainer{display:inline-flex;margin-bottom:20px;margin-top:20px}@media (max-width:759px){.PlusLogoHeader-headerContainer{justify-content:space-between}}.PlusLogoHeader-headerText{color:#fff;font-size:24px;font-weight:700;letter-spacing:.03px;line-height:26px}.PlusLogoHeader-plusLogo{display:inline;margin-right:20px}.FullEpisodeContainer-containerFluidWidths{margin:0 auto;width:100%}@media (min-width:1020px){.FullEpisodeContainer-containerFluidWidths{max-width:960px}}@media (min-width:1340px){.FullEpisodeContainer-containerFluidWidths{max-width:1290px}}.FullEpisodeContainer-container{min-height:500px}@media (min-width:1020px){.FullEpisodeContainer-container{margin:0 auto;max-width:100%}}@media (min-width:1020px) and (min-width:760px){.FullEpisodeContainer-container{max-width:678px}}@media (min-width:1020px) and (min-width:1020px){.FullEpisodeContainer-container{max-width:960px}}@media (min-width:1020px) and (min-width:1340px){.FullEpisodeContainer-container{max-width:1290px}}@media (max-width:1019px){.FullEpisodeContainer-container{padding:0 30px}}@media (max-width:759px){.FullEpisodeContainer-container{margin-top:-1px;padding:0 20px}}.FullEpisodeContainer-page{display:block;overflow:visible;padding-bottom:25px}@media (min-width:760px){.FullEpisodeContainer-page{padding-bottom:28px}}.FullEpisodeContainer-pageWrapper{margin:0 auto;max-width:100%}@media (min-width:760px){.FullEpisodeContainer-pageWrapper{max-width:678px}}@media (min-width:1020px){.FullEpisodeContainer-pageWrapper{max-width:960px}}@media (min-width:1340px){.FullEpisodeContainer-pageWrapper{max-width:1290px}}@media (min-width:760px){.FullEpisodeContainer-pageWrapper{max-width:100%!important}}.FullEpisodeContainer-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.FullEpisodeContainer-pageRow{padding-left:0;padding-right:0}}@media (min-width:1020px){.FullEpisodeContainer-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}}@media (min-width:1020px) and (min-width:760px){.FullEpisodeContainer-pageRow{padding-left:0;padding-right:0}}@media (max-width:1019px){.FullEpisodeContainer-pageRow{margin:0;padding:0}}.FullEpisodeContainer-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.FullEpisodeContainer-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.FullEpisodeContainer-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.FullEpisodeContainer-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.FullEpisodeContainer-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.FullEpisodeContainer-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.FullEpisodeContainer-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.FullEpisodeContainer-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}.FullEpisodeContainer-containerFluidWidths .FullEpisodeContainer-col{max-width:678px!important;min-width:678px}}@media (min-width:760px){.FullEpisodeContainer-col-3{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.FullEpisodeContainer-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.FullEpisodeContainer-col-3{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.FullEpisodeContainer-col-3{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.FullEpisodeContainer-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.FullEpisodeContainer-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}.FullEpisodeContainer-col-3:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.FullEpisodeContainer-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);max-width:calc(25% + 77.5px);min-width:calc(25% - 22.5px);min-width:calc(25% + 77.5px)}}@media (min-width:760px){.FullEpisodeContainer-col-6{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.FullEpisodeContainer-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.FullEpisodeContainer-col-6{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.FullEpisodeContainer-col-6{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.FullEpisodeContainer-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.FullEpisodeContainer-col-6{flex-grow:0;flex-shrink:0;margin-left:0;margin-right:0;max-width:calc(44.44444% - 16.66667px);min-width:calc(44.44444% - 16.66667px)}.FullEpisodeContainer-col-6:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.FullEpisodeContainer-col-6{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(50% - 15px);min-width:calc(50% - 15px)}}.FullEpisodeContainer-col-9 .BrandBanner-container{margin-bottom:30px;z-index:99}@media (min-width:1340px){.FullEpisodeContainer-col-9 .BrandBanner-container{margin-left:calc(-50vw - -538.5px)}}@media (min-width:760px){.FullEpisodeContainer-col-9 .BrandBanner-container{margin-bottom:-100px;margin-top:50px}.FullEpisodeContainer-col-9{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.FullEpisodeContainer-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.FullEpisodeContainer-col-9{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.FullEpisodeContainer-col-9{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.FullEpisodeContainer-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.FullEpisodeContainer-col-9{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.FullEpisodeContainer-col-9:last-child{margin-right:0}}@media (min-width:1340px){.FullEpisodeContainer-col-9{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);max-width:calc(75% - 107.5px);min-width:calc(75% - 7.5px);min-width:calc(75% - 107.5px)}.FullEpisodeContainer-col-9.FullEpisodeContainer-article{flex-grow:0;flex-shrink:0;margin-left:calc(8.33333% + 2.5px);max-width:calc(58.33333% - 12.5px);min-width:calc(58.33333% - 12.5px)}}@media (min-width:760px){.FullEpisodeContainer-col-12{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.FullEpisodeContainer-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.FullEpisodeContainer-col-12{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.FullEpisodeContainer-col-12{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.FullEpisodeContainer-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.FullEpisodeContainer-col-12{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.FullEpisodeContainer-col-12:last-child{margin-right:0}}@media (min-width:1340px){.FullEpisodeContainer-col-12{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}.FullEpisodeContainer-col-full{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.FullEpisodeContainer-col-full .MyComponentName-container{width:100vw}@media (min-width:1340px){.FullEpisodeContainer-col-full .MyComponentName-container{max-width:none}}.FullEpisodeContainer-col-full:last-child{margin-right:0}.FullEpisodeContainer-mvpdContainer{background-color:#000;bottom:0;left:0;padding-top:20px;position:absolute;right:0;top:0}.FullEpisodePage-container{min-height:800px}@media (max-width:1019px){.FullEpisodePage-container{min-height:1100px}}.LiveTVRightRail-rightRailContainer{margin-bottom:20px}.LiveTVRightRail-watchRecentEpisodesButton{align-items:center;background-color:#0053cf;border-radius:5px;color:#fff;display:flex;font-size:14px;font-weight:700;justify-content:center;letter-spacing:-.001em;line-height:13.3px;margin-bottom:30px;min-height:51px;min-width:300px;padding:16px 0}@media (max-width:1019px){.LiveTVRightRail-watchRecentEpisodesButton{margin-top:30px}}.LiveTVRightRail-watchRecentEpisodesButton span{background-image:url(https://static-redesign.cnbcfm.com/dist/8f814ea5e4aca99eb1cc.svg);background-repeat:no-repeat;display:inline-block;height:15px;margin-right:8px;position:relative;width:14px}.LiveTVRightRail-watchRecentEpisodesButton:hover{background-color:#002f6c;color:#fff}.LiveTVRightRail-cableProviderContainer{align-items:flex-start;background:linear-gradient(#101418,#101418) padding-box,linear-gradient(to bottom right,#ef1541,#890c25) border-box;border:1px solid #0000;border-radius:5px;color:#fff;display:flex;flex-flow:column;justify-content:center;margin-bottom:30px;min-width:300px;padding:17px 10px}@media (min-width:760px) and (max-width:1019px){.LiveTVRightRail-cableProviderContainer{align-items:center;flex-flow:row;height:60px;justify-content:space-between;padding:12px 10px}}.LiveTVRightRail-mvpdContainer{background:linear-gradient(#101418,#101418) padding-box,linear-gradient(to bottom right,#fccc12,#ff7112,#ef1541,#6e55dc,#069de0,#05ac3f) border-box;border:1px solid #0000;height:92px;position:relative}.LiveTVRightRail-mvpdContainer>.LiveTVRightRail-buttonContainer>.LiveTVRightRail-linkButton{font-weight:600}@media (min-width:760px) and (max-width:1019px){.LiveTVRightRail-mvpdContainer>.LiveTVRightRail-buttonContainer>.LiveTVRightRail-linkButton{top:0}}.LiveTVRightRail-mvpdContainer>.LiveTVRightRail-textContainer{margin-bottom:12px}@media (min-width:760px) and (max-width:1019px){.LiveTVRightRail-mvpdContainer>.LiveTVRightRail-textContainer{margin-bottom:0}}.LiveTVRightRail-mvpdContainer>.LiveTVRightRail-textContainer>.LiveTVRightRail-cableProviderTitle{line-height:26px}@media (min-width:760px) and (max-width:1019px){.LiveTVRightRail-mvpdContainer{height:42px}}.LiveTVRightRail-rightArrow{background-color:#fff;display:inline-block;height:10px;margin-left:8px;mask-image:url(https://static-redesign.cnbcfm.com/dist/102cc85fdaab546b3ee8.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/102cc85fdaab546b3ee8.svg);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;position:absolute;top:8px;width:14px}.LiveTVRightRail-cableProviderTitle{font-size:14px;font-weight:700;letter-spacing:.03px;line-height:22px;margin:0 10px;position:relative}.LiveTVRightRail-textContainer{margin-bottom:15px}@media (min-width:760px) and (max-width:1019px){.LiveTVRightRail-textContainer{margin-bottom:0;width:263px}}.LiveTVRightRail-buttonContainer{align-items:flex-start;display:flex;flex-flow:column;gap:12px}@media (min-width:760px) and (max-width:1019px){.LiveTVRightRail-buttonContainer{gap:0;margin:0 10px;padding:0 10px}}.LiveTVRightRail-linkButton{color:#fff;font-size:12px;font-weight:400;height:14px;letter-spacing:.03px;line-height:26px;margin:0 10px;position:relative;top:-8px}.LiveTVRightRail-linkButton:hover{color:#fcb700}.LiveTVRightRail-linkButton:hover .LiveTVRightRail-rightArrow{background-color:#fcb700}@media (min-width:760px) and (max-width:1019px){.LiveTVRightRail-linkButton{height:unset;top:0}}.LiveTVRightRail-linkButtonMvpdAndSubscription{height:20px}@media (min-width:760px) and (max-width:1019px){.LiveTVRightRail-linkButtonMvpdAndSubscription{height:unset}}.LiveTVRightRail-blur{background:linear-gradient(45deg,#ef15414d,#0000);filter:blur(50px);height:107px;margin:15px;position:absolute;width:210px}@media (min-width:760px) and (max-width:1019px){.LiveTVRightRail-blur{height:40px;margin-left:150px;width:483px}}.LiveTVRightRail-mvpdBlur{background:linear-gradient(146.23deg,#121212 75.35%,#4d4855 126.39%),linear-gradient(0deg,#101418,#101418);border-radius:6px;filter:none;height:100%;left:0;margin:unset;width:100%}.LiveTVRightRail-rightRailScheduleContainer{background-color:#101418;background-image:url(https://static-redesign.cnbcfm.com/dist/a421642a37beaf56ee95.svg);background-size:cover;border-radius:12px;box-shadow:0 4px 16px 1px #00000026;display:flex;flex-direction:column;gap:18px;margin-bottom:30px;padding:12px;position:relative}@media (min-width:760px) and (max-width:1019px){.LiveTVRightRail-rightRailScheduleContainer{background-image:url(https://static-redesign.cnbcfm.com/dist/9d98cbc9c3d696aba29d.svg);background-position:120px 250px;gap:8px}}@media (min-width:360px) and (max-width:759px){.LiveTVRightRail-rightRailScheduleContainer{background-position:0 150px;gap:27px}}.LiveTVRightRail-rightRailScheduleTitle{color:#fff;font-size:20px;font-weight:700;letter-spacing:-.5px;line-height:24.36px}.LiveTVRightRail-rightRailScheduleText{color:#fff;font-size:14px;font-weight:400;line-height:18.2px}.LiveTVRightRail-rightRailScheduleLinkContainer{display:flex;justify-content:flex-end;width:100%}@media (min-width:760px) and (max-width:1019px){.LiveTVRightRail-rightRailScheduleLinkContainer{bottom:12px;position:absolute;right:18px}}.LiveTVRightRail-rightRailScheduleLink{color:#fff;font-size:12px;font-weight:700;line-height:14.62px}.LiveTVRightRail-rightRailScheduleLink .LiveTVRightRail-rightArrow{margin-left:3px;position:relative;top:unset}.LiveTVRightRail-rightRailScheduleLink:hover .LiveTVRightRail-rightArrow{background-color:#fcb700}.ProLiveTVWithSelections-container{background-color:#171717;border-radius:4px;height:100%;left:0;position:relative;top:0;width:100%}.ProLiveTVWithSelections-playerWithTabsContainer{background-color:initial}#standaloneLivePlayer .OmegaPlayer-omegaPlayerContainer{max-height:unset}.omega_coreVideoContainer{position:relative;z-index:10}.omega_subtitles{z-index:10}.OmegaPlayer-slate{container-type:inline-size;background:linear-gradient(#059,#026);display:flex;flex-direction:column;height:100%;justify-content:center;margin:auto;width:100%}.OmegaPlayer-slate.OmegaPlayer-loading{background:none}.OmegaPlayer-slate.OmegaPlayer-loading img{width:100%}.OmegaPlayer-slate a{text-decoration:underline}.OmegaPlayer-slate p{color:#fff;font-size:calc(2cqi + 6px);font-weight:500;line-height:2;text-align:center}.OmegaPlayer-windowBoxContainer .OmegaPlayer-slate{aspect-ratio:16/9;height:calc(100% - 96px);max-height:56.25cqw;width:unset}.OmegaPlayer-slate+.omega_aspectRatioContainer{display:none}@container (min-aspect-ratio: 16/9){@container (max-width: 470px){.omega_volume-container{--volumeTransition:0.01s ease-in-out 0.5s;bottom:50%;display:block;margin-bottom:-15px;padding-bottom:20px;position:absolute;transform:rotate(-90deg)}}}@media (max-width:1019px){.omega_volume-container{display:none}}@container (min-aspect-ratio: 15/8){.OmegaPlayer-windowBoxContainer .OmegaPlayer-slate{height:auto;max-height:100%;max-width:177cqh;width:calc(100% - 240px)}}@container (max-width: 320px){.omega_btnSubtitle,.omega_subtitles{display:none}}.OmegaPlayer-CNBCLogo{height:20%}.OmegaPlayer-container{aspect-ratio:16/9}.OmegaPlayer-windowBoxContainer{container-type:size;background:#000;display:flex;height:100vw;max-height:calc(100vh - 180px);min-height:350px}.OmegaPlayer-windowBoxContainer .omega_coreVideoContainer{margin:48px 0}@container (min-aspect-ratio: 15/8){.OmegaPlayer-windowBoxContainer .omega_coreVideoContainer{margin:0 120px}}.ProDAIPlayer-proDAIPlayer{container:video-player/inline-size;aspect-ratio:16/9;background-color:#000;position:relative;top:0;width:100%}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR{font-family:Proxima Nova,Helvetica,Arial,sans-serif;position:absolute;will-change:opacity}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR:has([aria-label=Picture-in-Picture]){grid-template-columns:repeat(5,auto) 1fr repeat(3,auto)}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR button:has([aria-label=Picture-in-Picture]){justify-self:center}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_slider{--sliderColor:#ddd;--sliderProgressColor:#fff;--sliderThumbColor:#fff}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_volume{--volumeTransition:0.1s ease-in-out 0.5s;flex-direction:column-reverse}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_volume .omega_volume-muteBtn{padding:0}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_volume:hover .omega_volume-container{opacity:1;transition-delay:0s;visibility:visible;width:88px}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_volume:hover .omega_volume-muteBtn{margin:0}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_volume .omega_volume-container{opacity:0;position:absolute;rotate:-90deg;top:-50px;transition:opacity var(--volumeTransition),visibility var(--volumeTransition),width 0s .75s;visibility:hidden}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_liveBtn{display:flex;white-space:nowrap}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_liveBtn .omega_liveBtn-label{align-items:center;display:flex;font-weight:500;justify-content:center;letter-spacing:-.1px;position:relative}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_liveBtn .omega_liveBtn-label:before{border:2px solid #fff;content:"";display:block;height:100%;padding:5px 11px;position:absolute;width:100%}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_liveBtn .omega_liveBtn-dot+.omega_liveBtn-label:before{display:none}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_time{font-size:13px;letter-spacing:.5px;margin:0 0 1px;min-width:45px}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR button{opacity:.8;transition:opacity .2s}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR button:hover{opacity:1}@media (max-width:1019px){.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_volume .omega_volume-container{display:none}}@container video-player (max-width: 460px){.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR{gap:5px;grid-template-columns:repeat(3,auto) 1fr repeat(3,auto)}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR:has([aria-label=Picture-in-Picture]){grid-template-columns:repeat(3,auto) 1fr repeat(3,auto);padding:8px}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR div:empty,.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR img[aria-label=Picture-in-Picture]{display:none}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_slider.omega_slider-scrubber{grid-row:1}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_playPauseDesktop{grid-row:2;height:30px}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_btnFullScreen svg,.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_playPauseDesktop svg{height:20px;width:20px}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_volume{margin-right:4px;position:relative;top:2px}@media (min-width:1020px){.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_volume .omega_volume-container{display:block!important;left:45px;rotate:0deg;top:-152px;z-index:100}}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR:has([aria-label="Exit full screen"]) .omega_volume{position:unset}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR:has([aria-label="Exit full screen"]) .omega_volume .omega_volume-container{left:unset;rotate:-90deg;top:-50px}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_btnSubtitle{display:block!important}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_liveBtn{display:flex!important;min-width:76px}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_liveBtn .omega_liveBtn-label:before{padding:2px 6px}.ProDAIPlayer-proDAIPlayer .omega_rackWithDVR .omega_rewind{display:none}}.ProDAIPlayer-proDAIPlayer .omega_controlRackBackdrop{align-self:end;aspect-ratio:16/9;background:#000;height:100%;max-height:75px;width:100%}.ProDAIPlayer-proDAIPlayer .omega_tapToUnmuteBtn{background:#fff}@container video-player (max-width: 630px){.ProDAIPlayer-proDAIPlayer .omega_subtitles{bottom:2%;display:flex;max-width:600px;overflow:hidden;text-align:center;white-space:normal}}@container video-player (max-width: 460px){.ProDAIPlayer-proDAIPlayer .omega_controlRackBackdrop{max-height:65px}.ProDAIPlayer-proDAIPlayer .omega_subtitles{bottom:2%;display:flex;font-size:13px;max-width:280px;overflow:hidden;text-align:center;white-space:normal}}.ProDAIPlayer-proDAIPlayer .ProDAIPlayer-slate{display:flex;height:100%;justify-content:center;margin:auto;width:100%}.ProDAIPlayer-proDAIPlayer .ProDAIPlayer-slate img{width:100%}.ProDAIPlayer-proDAIPlayer .ProDAIPlayer-slate+.omega_aspectRatioContainer{display:none}.ProPlayerChannel-channelContainer{background-color:#171717;display:block;overflow:hidden;width:100%}.ProPlayerChannel-channelContainer *{box-sizing:border-box}.ProPlayerChannel-pcpChannelContainer{border-radius:4px}.ProPlayerChannel-channelHolder{background-color:#171717;display:flex;flex-wrap:wrap;justify-content:center;padding:0 8px;width:100%}@media (max-width:1019px){.ProPlayerChannel-channelHolder{align-items:center;flex-direction:column}}.ProPlayerChannel-leftContainer{display:block;width:295px}@media (max-width:1339px){.ProPlayerChannel-leftContainer{display:none}}.ProPlayerChannel-channels,.ProPlayerChannel-rightContainer{display:flex;text-align:center}.ProPlayerChannel-channels{background:#3cb87833;border-radius:26px;flex-direction:row;height:31px;margin-bottom:16px;margin-top:16px;position:relative;width:336px}.ProPlayerChannel-channels .ProPlayerChannel-slider{background-color:#3cb878;border-radius:30px;height:31px;left:0;position:absolute;top:0;transition:left .2s ease-in-out;width:33.33%}@media (max-width:759px){.ProPlayerChannel-channels .ProPlayerChannel-slider{width:88px}}.ProPlayerChannel-channels .ProPlayerChannel-buttonContainer{display:flex;flex-wrap:nowrap;width:100%}.ProPlayerChannel-channels .ProPlayerChannel-buttonContainer .ProPlayerChannel-selector{color:#fff;cursor:pointer;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;height:31px;line-height:17px;transition:color .2s ease-in;width:33.33%;z-index:1}.ProPlayerChannel-channels .ProPlayerChannel-buttonContainer .ProPlayerChannel-activeStream{color:#000}@media (max-width:759px){.ProPlayerChannel-channels{width:264px}}.ProPlayerChannel-embeddedPlayerSpacing{align-items:center;flex-direction:column}.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-rightContainer{justify-content:space-around;padding:0 22px 16px;text-align:center;width:295px}@media (max-width:1019px){.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-rightContainer{padding:0 16px 16px;width:300px}}@media (max-width:759px){.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-rightContainer{padding:0 22px 16px;width:300px}}.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels{background:#3cb87833;border-radius:26px;flex-direction:row;height:31px;margin-bottom:16px;margin-top:16px;position:relative;width:336px}.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels .ProPlayerChannel-slider{background-color:#3cb878;border-radius:30px;height:31px;left:0;position:absolute;top:0;transition:left .2s ease-in-out;width:33.33%}.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels .ProPlayerChannel-buttonContainer{display:flex;flex-wrap:nowrap;width:100%}.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels .ProPlayerChannel-buttonContainer .ProPlayerChannel-selector{color:#fff;cursor:pointer;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;height:31px;line-height:17px;transition:color .2s ease-in;width:33.33%;z-index:1}.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels .ProPlayerChannel-buttonContainer .ProPlayerChannel-activeStream{color:#000}@media (max-width:1019px){.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels{width:276px}}@media (max-width:759px){.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels{width:264px}}.ProPlayerChannel-rightContainer{justify-content:space-around;padding:16px 22px;text-align:center;width:295px}@media (max-width:1019px){.ProPlayerChannel-rightContainer{padding:0 16px 16px;width:300px}}@media (max-width:759px){.ProPlayerChannel-rightContainer{padding:0 22px 16px;width:300px}}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton{cursor:pointer;display:flex;text-decoration:none;transition:background-color .15s ease-in 50ms}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton>.ProPlayerChannel-withEmphasis{height:26px;justify-content:center;padding:4px 0;transition:color .1s ease-in;width:133px}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton>.ProPlayerChannel-noEmphasis{height:26px;justify-content:center;padding:4px 0;transition:color .1s ease-in}.ProPlayerChannel-rightContainer .ProPlayerChannel-noEmphasisIcon,.ProPlayerChannel-rightContainer .ProPlayerChannel-withEmphasisIcon{fill:#d9d9d9;margin-right:8px;margin-top:2px;transition:fill .1s ease-in}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton:hover .ProPlayerChannel-noEmphasis,.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton:hover .ProPlayerChannel-withEmphasis{color:#3cb878}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton:hover .ProPlayerChannel-noEmphasisIcon,.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton:hover .ProPlayerChannel-withEmphasisIcon{fill:#3cb878}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton:active .ProPlayerChannel-withEmphasis{background-color:#3cb878;border-radius:30px;color:#171717}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton:active .ProPlayerChannel-withEmphasisIcon{fill:#171717}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton>span>img{display:inline-block;padding-right:8px;width:24px}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton>span{color:#d9d9d9;display:inline-flex;flex-wrap:nowrap;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:700;text-decoration:none}@media (max-width:1019px){.ProPlayerChannel-rightContainer{flex-direction:row;margin-left:0;text-align:center;top:40px}}.ProPlayerToast-overlay{background-color:#171717;position:absolute;top:0;width:100%;z-index:1}.ProPlayerToast-toastMessageContainer{color:#fff;left:0;padding-top:12px;position:absolute;text-align:center;top:0;width:100%}.StreamToast-toastMessage{background-color:#171717;border-radius:3px;display:flex;flex-direction:column;justify-content:center;margin:auto;opacity:.85!important;width:-moz-fit-content;width:fit-content}.StreamToast-textAndButton{color:#fff;display:flex;flex-direction:row;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-style:normal;font-weight:600;justify-content:center;line-height:22px;padding:12px 24px}.StreamToast-textAndButton .StreamToast-dismissButton{margin-left:18px}@media (max-width:425px){.StreamToast-textAndButton{font-size:12px;line-height:16px;padding:8px 12px}.StreamToast-textAndButton .StreamToast-dismissButton{height:14px;margin-left:10px;width:14px}}@media (max-width:1020px){.StreamToast-embeddedPlayerContainer{font-size:12px;line-height:16px;padding:8px 12px}.StreamToast-embeddedPlayerContainer .StreamToast-dismissButton{height:14px;margin-left:10px;width:14px}}@media (max-width:759px){.StreamToast-embeddedPlayerContainer{font-size:16px;line-height:24px;padding:12px 24px}.StreamToast-embeddedPlayerContainer .StreamToast-dismissButton{margin-left:18px}}@media (max-width:425px){.StreamToast-embeddedPlayerContainer{font-size:12px;line-height:16px;padding:8px 12px}.StreamToast-embeddedPlayerContainer .StreamToast-dismissButton{height:14px;margin-left:10px;width:14px}}.StreamToastWithCTA-toastMessage{background-color:#171717;border-radius:3px;color:#fff;display:flex;flex-direction:column;justify-content:center;margin:auto;opacity:.85!important;width:-moz-fit-content;width:fit-content}.StreamToastWithCTA-textAndButton{display:flex;flex-direction:row;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-style:normal;font-weight:600;justify-content:center;line-height:22px;padding:12px 24px}.StreamToastWithCTA-textAndButton .StreamToastWithCTA-dismissButton{margin-left:18px}.StreamToastWithCTA-textAndButton .StreamToastWithCTA-switchButton{border:1px solid #fff;color:#fff;font-size:12px;font-style:normal;font-weight:700;letter-spacing:1.09px;line-height:12px;margin-left:18px;padding:10px 31px;text-transform:uppercase}@media (max-width:425px){.StreamToastWithCTA-textAndButton{font-size:12px;line-height:16px;padding:8px 12px}.StreamToastWithCTA-textAndButton .StreamToastWithCTA-switchButton{font-size:10px;line-height:12px;margin-left:10px;padding:5.5px 14.5px}.StreamToastWithCTA-textAndButton .StreamToastWithCTA-dismissButton{height:14px;margin-left:10px;width:14px}}@media (max-width:1020px){.StreamToastWithCTA-embeddedPlayerContainer{font-size:12px;line-height:16px;padding:8px 12px}.StreamToastWithCTA-embeddedPlayerContainer .StreamToastWithCTA-switchButton{font-size:10px;line-height:12px;margin-left:10px;padding:5.5px 14.5px}.StreamToastWithCTA-embeddedPlayerContainer .StreamToastWithCTA-dismissButton{height:14px;margin-left:10px;width:14px}}@media (max-width:759px){.StreamToastWithCTA-embeddedPlayerContainer{font-size:16px;line-height:24px;padding:12px 24px}.StreamToastWithCTA-embeddedPlayerContainer .StreamToastWithCTA-switchButton{font-size:12px;line-height:12px;margin-left:10px;padding:10px 31px}.StreamToastWithCTA-embeddedPlayerContainer .StreamToastWithCTA-dismissButton{margin-left:18px}}@media (max-width:425px){.StreamToastWithCTA-embeddedPlayerContainer{font-size:12px;line-height:16px;padding:8px 12px}.StreamToastWithCTA-embeddedPlayerContainer .StreamToastWithCTA-switchButton{font-size:10px;line-height:12px;margin-left:10px;padding:5.5px 14.5px}.StreamToastWithCTA-embeddedPlayerContainer .StreamToastWithCTA-dismissButton{height:14px;margin-left:10px;width:14px}}.StreamToastWithCTA-text{align-self:center}.StreamToastAutoSwitch-toastMessage{background-color:#171717;border-radius:3px;display:flex;flex-direction:column;justify-content:center;margin:auto;opacity:.85!important;width:-moz-fit-content;width:fit-content}.StreamToastAutoSwitch-textAndButton{color:#fff;display:flex;flex-direction:row;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-style:normal;font-weight:600;justify-content:center;line-height:22px;padding:12px 24px}.StreamToastAutoSwitch-textAndButton .StreamToastAutoSwitch-dismissButton{margin-left:18px}@media (max-width:425px){.StreamToastAutoSwitch-textAndButton{font-size:12px;line-height:16px;padding:8px 12px}.StreamToastAutoSwitch-textAndButton .StreamToastAutoSwitch-dismissButton{height:14px;margin-left:10px;width:14px}}@media (max-width:1020px){.StreamToastAutoSwitch-embeddedPlayerContainer{font-size:12px;line-height:16px;padding:8px 12px}.StreamToastAutoSwitch-embeddedPlayerContainer .StreamToastAutoSwitch-dismissButton{height:14px;margin-left:10px;width:14px}}@media (max-width:759px){.StreamToastAutoSwitch-embeddedPlayerContainer{font-size:16px;line-height:24px;padding:12px 24px}.StreamToastAutoSwitch-embeddedPlayerContainer .StreamToastAutoSwitch-dismissButton{margin-left:18px}}@media (max-width:425px){.StreamToastAutoSwitch-embeddedPlayerContainer{font-size:12px;line-height:16px;padding:8px 12px}.StreamToastAutoSwitch-embeddedPlayerContainer .StreamToastAutoSwitch-dismissButton{height:14px;margin-left:10px;width:14px}}.ProPlayerTabs-channelContainer{background-color:initial;display:block;overflow:hidden;width:100%}.ProPlayerTabs-channelContainer *{box-sizing:border-box}.ProPlayerTabs-pcpChannelContainer{border-radius:4px}.ProPlayerTabs-channelHolder{background-color:initial;display:flex;flex-wrap:wrap;justify-content:space-between;padding:0 8px;width:100%}@media (max-width:1019px){.ProPlayerTabs-channelHolder{flex-direction:column}}.ProPlayerTabs-standaloneChannelHolder{align-items:center;justify-content:center}.ProPlayerTabs-standaloneChannelContainer{background-color:#171717}.ProPlayerTabs-tabsHolder{justify-content:space-between}.ProPlayerTabs-leftContainer{display:block;width:295px}@media (max-width:1339px){.ProPlayerTabs-leftContainer{display:none}}.ProPlayerTabs-channels,.ProPlayerTabs-rightContainer{display:flex;text-align:center}.ProPlayerTabs-proChannels{width:100%!important}.ProPlayerTabs-channels{flex-direction:row;height:40px;margin-bottom:16px;position:relative;width:50%}@media (max-width:759px){.ProPlayerTabs-channels{width:100%}}.ProPlayerTabs-channels .ProPlayerTabs-slider{background-color:#3cb878;border-radius:30px;height:31px;left:0;position:absolute;top:0;transition:left .2s ease-in-out;width:33.33%}@media (max-width:759px){.ProPlayerTabs-channels .ProPlayerTabs-slider{width:88px}}.ProPlayerTabs-channels .ProPlayerTabs-buttonContainer{display:flex;flex-wrap:nowrap;width:100%}.ProPlayerTabs-channels .ProPlayerTabs-buttonContainer .ProPlayerTabs-proSelector{width:183px}.ProPlayerTabs-channels .ProPlayerTabs-buttonContainer .ProPlayerTabs-plusSelector{width:165px}.ProPlayerTabs-channels .ProPlayerTabs-buttonContainer .ProPlayerTabs-selector{color:#747474;cursor:pointer;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:600;height:40px;line-height:22px;transition:color .2s ease-in;white-space:nowrap;z-index:1}@media (max-width:759px){.ProPlayerTabs-channels .ProPlayerTabs-buttonContainer .ProPlayerTabs-selector{width:100%}}.ProPlayerTabs-channels .ProPlayerTabs-buttonContainer .ProPlayerTabs-activeStream{border-bottom:2px solid #171717;color:#171717}@media (max-width:759px){.ProPlayerTabs-plusTab{flex-basis:0;flex-grow:1;width:unset}}.ProPlayerTabs-darkThemeButtonContainer .ProPlayerTabs-selector{color:#9e9e9e!important}.ProPlayerTabs-darkThemeButtonContainer .ProPlayerTabs-activeStream{border-bottom:2px solid #f8f8f8!important;color:#f8f8f8!important}.ProPlayerTabs-rightContainer{gap:20px;padding:16px 16px 16px 0;text-align:center;width:230px}.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton{cursor:pointer;display:flex;text-decoration:none;transition:background-color .15s ease-in 50ms}.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton>.ProPlayerTabs-withEmphasis{height:26px;justify-content:flex-start;padding:4px 0;transition:color .1s ease-in;width:133px}.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton>.ProPlayerTabs-noEmphasis{height:26px;justify-content:flex-start;padding:4px 0;transition:color .1s ease-in}.ProPlayerTabs-rightContainer .ProPlayerTabs-noEmphasisIcon,.ProPlayerTabs-rightContainer .ProPlayerTabs-withEmphasisIcon{fill:#171717;margin-right:8px;margin-top:2px;transition:fill .1s ease-in}.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton:hover .ProPlayerTabs-noEmphasis,.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton:hover .ProPlayerTabs-withEmphasis{color:#fcb700}.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton:hover .ProPlayerTabs-noEmphasisIcon,.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton:hover .ProPlayerTabs-withEmphasisIcon{fill:#fcb700}.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton>span>img{display:inline-block;padding-right:8px;width:24px}.ProPlayerTabs-rightContainer .ProPlayerTabs-linkButton>span{color:#171717;display:inline-flex;flex-wrap:nowrap;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:700;line-height:16px;text-decoration:none}.ProPlayerTabs-darkThemeRightContainer .ProPlayerTabs-linkButton>span{color:#f8f8f8}.ProPlayerTabs-darkThemeRightContainer .ProPlayerTabs-noEmphasisIcon,.ProPlayerTabs-darkThemeRightContainer .ProPlayerTabs-withEmphasisIcon{fill:#d9d9d9;margin-right:8px;margin-top:2px;transition:fill .1s ease-in}.ProPlayerTabs-darkThemeRightContainer .ProPlayerTabs-linkButton:hover .ProPlayerTabs-noEmphasis,.ProPlayerTabs-darkThemeRightContainer .ProPlayerTabs-linkButton:hover .ProPlayerTabs-withEmphasis{color:#fcb700}.ProPlayerTabs-darkThemeRightContainer .ProPlayerTabs-linkButton:hover .ProPlayerTabs-noEmphasisIcon,.ProPlayerTabs-darkThemeRightContainer .ProPlayerTabs-linkButton:hover .ProPlayerTabs-withEmphasisIcon{fill:#fcb700}.MvpdLogout-mvpdLogout{background-position:50%;background-repeat:no-repeat;background-size:contain;font-weight:700;height:50px;position:absolute;right:10px;top:5px;width:100px}.MvpdLogout-mvpdLogout:hover .MvpdLogout-mvpdLogoutDropdown{display:block}.MvpdLogout-mvpdLogoutDropdown{background-color:#f2f2f2;color:#000;cursor:pointer;display:none;font-weight:700;padding:10px 20px;position:absolute;right:0;top:50px;white-space:nowrap}.MvpdServiceProvider-mvpdProvider{display:flex;position:relative}.MvpdServiceProvider-mvpdProvider--twc:after{color:#fff;content:"*";font-size:1.5rem;position:absolute;right:10px;top:8px}.MvpdServiceProvider-mvpdProviderFeatured{background:#383838;box-sizing:border-box;height:70px;margin:0 2px 2px 0;max-width:122px;padding:10px;width:calc(33% - 2px)}.MvpdServiceProvider-mvpdProviderFeatured:nth-child(3n){margin-right:0}@media (min-width:1020px){.MvpdServiceProvider-mvpdProviderFeatured{height:68px;margin:0 3px 3px 0;max-width:122px;width:calc(20% - 3px)}.MvpdServiceProvider-mvpdProviderFeatured:nth-child(3n){margin-right:3px}.MvpdServiceProvider-mvpdProviderFeatured:nth-child(5n){margin-right:0}}@media (min-width:1340px){.MvpdServiceProvider-mvpdProviderFeatured{height:92px;max-width:190px}}.MvpdServiceProvider-mvpdProviderFeatured:hover{background-color:#484848}.MvpdServiceProvider-mvpdProviderFeatured .MvpdServiceProvider-mvpdProviderContent{height:100%;margin:auto;max-height:28px;max-width:97px;position:relative;width:100%}@media (min-width:1020px){.MvpdServiceProvider-mvpdProviderFeatured .MvpdServiceProvider-mvpdProviderContent{max-height:30px;max-width:102px}}@media (min-width:1340px){.MvpdServiceProvider-mvpdProviderFeatured .MvpdServiceProvider-mvpdProviderContent{max-height:35px;max-width:138px}}.MvpdServiceProvider-mvpdProviderFeatured img{bottom:0;left:0;margin:auto;max-height:100%;max-width:100%;position:absolute;right:0;top:0}.MvpdServiceProvider-mvpdProviderFull .MvpdServiceProvider-mvpdProviderContent{color:#000;padding:7px 30px;text-transform:none}.MvpdServiceProvider-mvpdProviderFull .MvpdServiceProvider-mvpdProviderContent:hover{background:#fff}.MvpdPredictiveResults-mvpdPredictive{position:relative}@media (min-width:760px){.MvpdPredictiveResults-mvpdPredictive{margin:0}}.MvpdPredictiveResults-mvpdPredictiveResults{background-color:#eee;border:1px solid #e6e6e6;list-style-type:none;margin-top:18px;padding:0}.MvpdPredictiveResults-mvpdPredictiveItem{border-bottom:1px solid #e6e6e6;box-sizing:border-box;color:#000;font-size:1.25rem;height:48px;line-height:1.125rem;padding:14px 15px;text-align:left}@media (min-width:1020px){.MvpdPredictiveResults-mvpdPredictiveItem{font-size:1.125rem;height:50px;padding:16px 15px}}@media (min-width:1340px){.MvpdPredictiveResults-mvpdPredictiveItem{height:54px;line-height:1.5rem}}.MvpdPredictiveResults-mvpdPredictiveItem:hover{background-color:#e6e6e6;cursor:pointer}.MvpdPredictiveResults-mvpdPredictiveItem a{text-transform:none}.MvpdPredictiveResults-mvpdPredictiveItemSelected{background-color:#e6e6e6;cursor:pointer}.MvpdPredictiveResults-mvpdPredictiveResultsList{position:relative}.MvpdPredictiveResults-mvpdPredictiveResultsFull{margin-bottom:18px;margin-top:0;max-height:352px;overflow-y:scroll}@media (min-width:1020px){.MvpdPredictiveResults-mvpdPredictiveResultsFull{margin-bottom:26px;max-height:246px}}@media (min-width:1340px){.MvpdPredictiveResults-mvpdPredictiveResultsFull{margin-bottom:42px;max-height:308px}}.MvpdPredictiveInput-mvpdPredictive{position:relative}@media (min-width:760px){.MvpdPredictiveInput-mvpdPredictive{margin:0}}.MvpdPredictiveInput-mvpdPredictiveIcon{height:26px;pointer-events:none;position:absolute;right:15px;top:50%;transform:translateY(-50%);width:26px}@media (min-width:1020px){.MvpdPredictiveInput-mvpdPredictiveIcon{height:24px;width:24px}}@media (min-width:1340px){.MvpdPredictiveInput-mvpdPredictiveIcon{height:26px;width:26px}}.MvpdPredictiveInput-mvpdPredictiveIcon:before{color:#666;font-size:12px;pointer-events:all;position:relative}.MvpdPredictiveInput-mvpdPredictiveIconClose:before{cursor:pointer;font-size:18px;top:3px}.MvpdPredictiveInput-mvpdPredictiveIconSearch:before{font-size:20px;top:2px}.MvpdPredictiveInput-mvpdPredictiveInput{border:none;box-sizing:border-box;color:#1e1e1e;font-size:1.25rem;height:48px;padding:0 15px;pointer-events:all;width:100%}@media (min-width:1020px){.MvpdPredictiveInput-mvpdPredictiveInput{font-size:1.125rem;height:50px;padding:0 20px}}@media (min-width:1340px){.MvpdPredictiveInput-mvpdPredictiveInput{font-size:1.5rem}}.MvpdFooter-mvpdDialogFaq{color:#fff;display:block;font-size:1.25rem;margin-top:20px;text-align:left}.MvpdFooter-mvpdDialogFaq a{text-transform:none!important}@media (min-width:1020px){.MvpdFooter-mvpdDialogFaq{font-size:1.125rem;margin-top:24px;text-align:center}}@media (min-width:1340px){.MvpdFooter-mvpdDialogFaq{font-size:1.375rem;margin-top:42px}}.MvpdDialog-episodePageEmbed{background:#000}.MvpdDialog-episodePageEmbed .MvpdDialog-mvpdDialog{padding:20px 15px}.MvpdDialog-mvpdDialogContainer{background:#000}.MvpdDialog-mvpdDialog{background:#000;padding:20px 15px}@media (min-width:760px){.MvpdDialog-mvpdDialog{padding:15px}}@media (min-width:1020px){.MvpdDialog-mvpdDialog{padding:32px 15px}}@media (min-width:1340px){.MvpdDialog-mvpdDialog{padding:48px 15px 235px}}.MvpdDialog-mvpdDialog a{color:#005594;cursor:pointer;text-decoration:none;text-transform:uppercase}.MvpdDialog-mvpdDialog a:hover{opacity:.7}.MvpdDialog-mvpdDialog a.MvpdDialog-mvpdDialogBack{text-transform:none}.MvpdDialog-mvpd-dialog__animate-appear{opacity:.01}.MvpdDialog-mvpd-dialog__animate-appear.MvpdDialog-mvpd-dialog__animate-enter-active{opacity:1;transition:opacity .6s ease-in-out}.MvpdDialog-mvpd-dialog__animate-enter{opacity:.01}.MvpdDialog-mvpd-dialog__animate-enter.MvpdDialog-mvpd-dialog__animate-enter-active{opacity:1;transition:opacity .6s ease-in-out}.MvpdDialog-mvpdDialogIframe{box-sizing:border-box;display:table;margin:auto;max-width:370px;text-align:center}@media (min-width:1020px){.MvpdDialog-mvpdDialogIframe{max-width:612px}}@media (min-width:1340px){.MvpdDialog-mvpdDialogIframe{max-width:832px}}.MvpdDialog-mvpdDialogIframe iframe{border:none;max-width:100%}.MvpdDialog-mvpdDialogIframe .MvpdDialog-mvpdDialogBack{margin-bottom:1rem;position:static}.MvpdDialog-mvpdDialogFeatured,.MvpdDialog-mvpdDialogFull{margin:0 auto;text-align:center}.MvpdDialog-mvpdDialogFeatured{margin:auto;max-width:370px}@media (min-width:760px){.MvpdDialog-mvpdDialogFeatured{max-width:370px;min-height:475px}}@media (min-width:1020px){.MvpdDialog-mvpdDialogFeatured{max-width:612px;min-height:475px}}@media (min-width:1340px){.MvpdDialog-mvpdDialogFeatured{max-width:832px}}.MvpdDialog-mvpdDialogFeatured .MvpdDialog-mvpdDialogProviders{display:flex;flex-wrap:wrap;justify-content:center;margin-bottom:30px}.MvpdDialog-mvpdDialogFull{max-width:370px;position:relative}@media (min-width:1020px){.MvpdDialog-mvpdDialogFull{max-width:612px}}@media (min-width:1340px){.MvpdDialog-mvpdDialogFull{max-width:832px}}.MvpdDialog-mvpdDialogFull .MvpdDialog-mvpdDialogProviders{text-align:left}.MvpdDialog-mvpdDialogTitle{color:#fff;font-size:1.5rem;line-height:1.5rem;margin-bottom:20px;text-transform:uppercase}@media (min-width:760px){.MvpdDialog-mvpdDialogTitle{margin-bottom:10px}}@media (min-width:1020px){.MvpdDialog-mvpdDialogTitle{font-size:1.75rem;margin-bottom:20px}}@media (min-width:1340px){.MvpdDialog-mvpdDialogTitle{font-size:1.875rem}}.MvpdDialog-mvpdDialogDescription{color:#fff;font-size:1.25rem;line-height:24px;margin-bottom:1rem;text-align:left}@media (min-width:760px){.MvpdDialog-mvpdDialogDescription{margin-bottom:11px}}@media (min-width:1020px){.MvpdDialog-mvpdDialogDescription{font-size:1.125rem;margin-bottom:24px;text-align:center}}@media (min-width:1340px){.MvpdDialog-mvpdDialogDescription{font-size:1.375rem}}.MvpdDialog-mvpd-dialog__twc{color:#f1f1f1;font-size:1rem;text-align:left}@media (min-width:1020px){.MvpdDialog-mvpd-dialog__twc{text-align:center}}.MvpdDialog-mvpdDialogFullLink{color:#fff;display:block;font-size:1.25rem;line-height:24px;margin:14px 0 12px;text-align:left}@media (min-width:1020px){.MvpdDialog-mvpdDialogFullLink{font-size:1.125rem;margin:26px 0 18px;text-align:center}}@media (min-width:1340px){.MvpdDialog-mvpdDialogFullLink{font-size:1.375rem;margin:42px 0 18px}}.MvpdDialog-mvpdDialogFullLink a{text-transform:none}.MvpdDialog-mvpdDialogBack{display:block;font-size:1.375rem;line-height:20px;margin-bottom:18px;text-align:left;text-transform:none}@media (min-width:1020px){.MvpdDialog-mvpdDialogBack{left:0;line-height:33px;position:absolute;top:42px}}@media (min-width:1340px){.MvpdDialog-mvpdDialogBack{top:45px}}.MvpdDialog-mvpd-dialog__predictive-input{border:none;width:100%}.MvpdDialog-mvpdDialogPredictive{position:relative}.MvpdDialog-mvpdDialogPredictive .MvpdDialog-mvpdPredictiveResults{left:0;max-height:240px;overflow-y:scroll;position:absolute;right:0;z-index:1}@media (min-width:1020px){.MvpdDialog-mvpdDialogPredictive .MvpdDialog-mvpdPredictiveResults{max-height:250px}}.MvpdDialog-mvpdDialogFullList{position:relative}.MvpdDialog-mvpdDialogFullList .MvpdDialog-mvpdDialogDescription{margin-top:20px}@media (min-width:760px){.MvpdDialog-mvpdDialogFullList .MvpdDialog-mvpdDialogDescription{font-size:1.375rem;margin-bottom:18px}}@media (min-width:1020px){.MvpdDialog-mvpdDialogFullList .MvpdDialog-mvpdDialogDescription{font-size:1.125rem;margin-top:32px}}@media (min-width:1340px){.MvpdDialog-mvpdDialogFullList .MvpdDialog-mvpdDialogDescription{font-size:1.375rem;margin-top:48px}}.MvpdDialog-mvpdDialogSubscribe{background-color:#383838;margin-bottom:5.5rem}.MvpdConcurrencyMessage-container{align-items:center;background:radial-gradient(51.05% 62.78% at 50% 26.48%,#062f62 0,#062956 37.18%,#051838 100%);display:flex;flex-direction:column;justify-content:center;padding:23px;width:100%}.MvpdConcurrencyMessage-logo{height:27px;margin-bottom:10px;width:185px}.MvpdConcurrencyMessage-message{margin-bottom:32px;width:350px}@media (max-width:359px){.MvpdConcurrencyMessage-message{width:266px}}.MvpdConcurrencyMessage-message p{color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:23px;font-weight:700;line-height:28px;text-align:center}@media (max-width:359px){.MvpdConcurrencyMessage-message p{font-size:18px;line-height:24px}}.MvpdConcurrencyMessage-tryAgainButton{align-items:center;appearance:none;background-color:#005594;border:1px solid #002f6c;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px!important;justify-content:center;letter-spacing:1px;margin:0 auto;padding:0 20px;padding:0!important;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:191px}.MvpdConcurrencyMessage-tryAgainButton>span{display:block;line-height:12px}.MvpdConcurrencyMessage-tryAgainButton [class*=" icon-"],.MvpdConcurrencyMessage-tryAgainButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.MvpdConcurrencyMessage-tryAgainButton [class*=" icon-"]:before,.MvpdConcurrencyMessage-tryAgainButton [class^=icon-]:before{line-height:12px}.MvpdConcurrencyMessage-tryAgainButton:focus,.MvpdConcurrencyMessage-tryAgainButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.MvpdConcurrencyMessage-tryAgainButton[class*=touchButton]:hover{background-color:#005594;border-color:#002f6c;color:#fff}@media (hover:hover){.MvpdConcurrencyMessage-tryAgainButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.MvpdConcurrencyMessage-tryAgainButton{padding:0 30px;width:auto}}@media (max-width:359px){.MvpdConcurrencyMessage-tryAgainButton{width:100%}}@media (min-width:760px){.MvpdConcurrencyMessage-tryAgainButton{width:191px}}.MvpdConcurrencyMessage-tryAgainButton:last-child{margin-bottom:7px}.MvpdRedirect-unsupportedDevice{position:relative}.MvpdRedirect-redirectScreenMobile,.MvpdRedirect-redirectScreenTablet{height:auto;width:100%}.MvpdRedirect-appleButtonMobile{display:block;left:10%;position:absolute;top:55%;width:35%}.MvpdRedirect-appleButtonTablet{display:block;left:17%;position:absolute;top:70%;width:25%}.MvpdRedirect-androidButtonMobile{display:block;position:absolute;right:10%;top:55%;width:35%}.MvpdRedirect-androidButtonTablet{display:block;position:absolute;right:17%;top:70%;width:25%}.MvpdRedirect-downloadButton{height:auto;width:100%}.BionicPlayer-videoPlayer{height:100%;width:100%}.BionicPlayer-playerContainer{background-color:#000;height:90%;padding:60px 0}.BionicPlayer-playerContainer iframe{border:none}@media (min-width:760px){.BionicPlayer-playerContainer{margin:0 auto;max-height:calc(100vh - 130px);max-width:calc(177.77778vh - 231.11111px);padding:30px 120px}}.BionicPlayer-playerContainerUninitialized{background-color:initial;position:absolute;top:0;width:100%}.BionicPlayer-playerContainerHidden{display:none}.BionicPlayer-slate{display:flex;height:100%;padding-top:20px;vertical-align:middle}.BionicPlayer-slateimg{margin:auto;max-height:50vh;max-width:100%}.video-player-progress{display:none!important}.video-player__controls{margin:0 auto 8%!important}@media (min-width:760px){.video-player__controls{margin:0 auto 6%!important}}.video-player__controls__container{background-color:initial!important;height:39px!important}.PlayerLoader{position:unset!important}.video-ccoptions__overlay{display:block!important;position:unset!important;width:200px!important}.ccoptions-menu__content{bottom:40%!important;float:right!important;height:60px!important;position:absolute!important;right:12%!important;top:unset!important;width:unset!important;z-index:20!important}#ccPageOptions-audio-main,#ccPageOptions-captions-en,#ccPageOptions-edge-none{display:none!important}.video-ccoptions__header{border-bottom:1px solid #fcb700!important;color:#fcb700!important;font-family:Proxima Nova,Helvetica,Arial,sans-serif!important;font-size:20px!important;font-weight:700!important;margin-left:15px!important;padding:unset!important;padding-top:30px!important;width:90%!important}.video-ccoptions__close-button:before{margin-right:12px!important;margin-top:4px!important}.video-ccoptions__menu--item .video-ccoptions__menu--checkbox .checkbox__content{font-family:Proxima Nova,Helvetica,Arial,sans-serif!important;font-size:18px}.video-ccoptions__menu--item .video-ccoptions__menu--checkbox .checkbox__icon{float:right!important;position:absolute!important;right:0}.video-ccoptions__menu--item .video-ccoptions__item--icon{float:right;height:16px;margin-right:7px;position:absolute;right:0;width:16px}.video-ccoptions__submenu--title{font-family:Proxima Nova,Helvetica,Arial,sans-serif!important;font-size:16px!important}#audio-label{padding-top:20px}.video-ccoptions__close-button--wrapper .video-ccoptions__close-button:before{margin-top:10px!important}.ccpreferences-overlay__content,.video-ccpreferences__overlay{font-family:Proxima Nova,Helvetica,Arial,sans-serif!important}.ccpreferences-overlay__content{left:0!important}.video-ccpreferences__header{font-family:Proxima Nova,Helvetica,Arial,sans-serif!important}#captions-label{padding-top:10px!important}.video-ccoptions__panel{background-color:#000000b3!important}.BionicPlayer-geoErrorSlate{background:linear-gradient(#005594,#002f6c);height:50vh;margin:auto;position:relative;top:5vh;width:80vh}.BionicPlayer-geoErrorSlateText{color:#fff;font-size:26px;font-weight:500;line-height:2.5;margin:auto;position:relative;text-align:center;top:10vh}.BionicPlayer-geoRedirectLink{color:#fff;font-size:27px;font-weight:500;text-decoration:underline}.BionicPlayer-geoCNBCLogo{height:100px;margin:auto;position:relative;top:65px}@media only screen and (min-height:360px) and (max-height:700px){.BionicPlayer-geoErrorSlateText{font-size:18px;line-height:2;margin-top:10px}.BionicPlayer-geoRedirectLink{font-size:18px}.BionicPlayer-geoCNBCLogo{height:80px}}@media only screen and (max-width:1440px){.ccoptions-menu__content{right:8%!important}}@media only screen and (max-width:1340px){.ccoptions-menu__content{right:4%!important}}@media only screen and (min-width:1180px) and (max-width:1250px){.ccoptions-menu__content{height:70px!important}}@media only screen and (max-width:1020px){.ccoptions-menu__content{height:85px!important}.video-ccoptions__header{font-size:16px!important}.video-ccoptions__menu--item .video-ccoptions__menu--checkbox .checkbox__content{font-size:14px!important}.video-ccoptions__menu--item .video-ccoptions__item--icon{height:12px;width:12px}.video-ccoptions__submenu--title{font-size:12px!important}}@media only screen and (max-width:1180px){.ccoptions-menu__content{height:100px!important}}@media only screen and (max-height:800px){.ccoptions-menu__content{height:100px!important}}@media only screen and (max-height:700px){.ccoptions-menu__content{height:120px!important}.video-ccoptions__header{font-size:16px!important}.video-ccoptions__menu--item .video-ccoptions__menu--checkbox .checkbox__content{font-size:14px!important}.video-ccoptions__menu--item .video-ccoptions__item--icon{height:12px;width:12px}.video-ccoptions__submenu--title{font-size:12px!important}}.BionicPlayer-tempPassPlayerContainer{height:100%;width:100%}.BionicPlayer-tempPassPlayerContainer video{display:flex}.BionicPlayer-tempPassPlayerContainer .video-player__controls--cc,.BionicPlayer-tempPassPlayerContainer .video-player__controls--fullscreen{display:none!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls{margin-bottom:0!important;padding:0!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls__container{align-items:center;border-radius:0!important;height:28px!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls--button{bottom:auto!important;height:24px!important;width:24px!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls--button img,.BionicPlayer-tempPassPlayerContainer .video-player__controls--button svg{height:50%!important;transform:translate(-50%,-50%)!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls--button:first-child{margin-left:5px!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls__volume{bottom:auto!important;display:flex;left:30px!important;position:absolute!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls--slider{display:none!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls__top-button--icon{height:18px!important;width:18px!important}.LivePlayerChannel-channelContainer{background-color:#171717;display:block;overflow:visible;padding:10px;position:relative;width:100%}.LivePlayerChannel-channelContainer *{box-sizing:border-box}.LivePlayerChannel-channelHolder{background-color:#171717;display:flex;flex-wrap:wrap;justify-content:center;padding:5px 8px;width:100%}@media (max-width:1019px){.LivePlayerChannel-channelHolder{align-items:center;flex-direction:column;padding:5px 8px}}.LivePlayerChannel-leftContainer{display:block;width:295px}@media (max-width:1339px){.LivePlayerChannel-leftContainer{display:none}}.LivePlayerChannel-channels,.LivePlayerChannel-rightContainer{display:flex;text-align:center}.LivePlayerChannel-channels{background:#3cb87833;border-radius:26px;flex-direction:row;height:31px;margin-bottom:16px;margin-top:16px;position:relative;width:336px}.LivePlayerChannel-channels .LivePlayerChannel-slider{background-color:#3cb878;border-radius:30px;height:31px;left:0;position:absolute;top:0;transition:left .2s ease-in-out;width:112px}@media (max-width:759px){.LivePlayerChannel-channels .LivePlayerChannel-slider{width:88px}}.LivePlayerChannel-channels .LivePlayerChannel-buttonContainer{display:flex;flex-wrap:nowrap;width:336px}.LivePlayerChannel-channels .LivePlayerChannel-buttonContainer .LivePlayerChannel-selector{color:#000;cursor:pointer;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;height:31px;line-height:17px;transition:color .2s ease-in;width:112px;z-index:1}@media (max-width:759px){.LivePlayerChannel-channels .LivePlayerChannel-buttonContainer .LivePlayerChannel-selector{width:88px}}.LivePlayerChannel-channels .LivePlayerChannel-buttonContainer .LivePlayerChannel-buttonInactive{color:#fff;transition:color .2s ease-in}@media (max-width:759px){.LivePlayerChannel-channels{width:264px}}.LivePlayerChannel-embeddedPlayerSpacing{align-items:center;flex-direction:column}.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-rightContainer{justify-content:space-around;padding:0 22px 16px;text-align:center;width:295px}@media (max-width:1019px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-rightContainer{padding:0 16px 16px;width:300px}}@media (max-width:759px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-rightContainer{padding:0 22px 16px;width:300px}}.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels{background:#3cb87833;border-radius:26px;flex-direction:row;height:31px;margin-bottom:16px;margin-top:16px;position:relative;width:336px}.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-slider{background-color:#3cb878;border-radius:30px;height:31px;left:0;position:absolute;top:0;transition:left .2s ease-in-out;width:112px}@media (max-width:1019px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-slider{width:92px}}@media (max-width:759px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-slider{width:88px}}.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-buttonContainer{display:flex;flex-wrap:nowrap;width:336px}.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-buttonContainer .LivePlayerChannel-selector{color:#000;cursor:pointer;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;height:31px;line-height:17px;transition:color .2s ease-in;width:112px;z-index:1}@media (max-width:1019px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-buttonContainer .LivePlayerChannel-selector{width:92px}}@media (max-width:759px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-buttonContainer .LivePlayerChannel-selector{width:88px}}.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-buttonContainer .LivePlayerChannel-buttonInactive{color:#fff;transition:color .2s ease-in}@media (max-width:1019px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels{width:276px}}@media (max-width:759px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels{width:264px}}.LivePlayerChannel-rightContainer{justify-content:space-around;padding:8px 16px 22px;text-align:center;width:295px}@media (max-width:1019px){.LivePlayerChannel-rightContainer{padding:0 16px 16px;width:300px}}@media (max-width:759px){.LivePlayerChannel-rightContainer{padding:0 22px 16px;width:300px}}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton{cursor:pointer;display:flex;text-decoration:none;transition:background-color .15s ease-in 50ms}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton>.LivePlayerChannel-withEmphasis{height:26px;justify-content:center;padding:4px 0;transition:color .1s ease-in;width:133px}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton>.LivePlayerChannel-noEmphasis{height:26px;justify-content:center;padding:4px 0;transition:color .1s ease-in}.LivePlayerChannel-rightContainer .LivePlayerChannel-noEmphasisIcon,.LivePlayerChannel-rightContainer .LivePlayerChannel-withEmphasisIcon{fill:#d9d9d9;margin-right:8px;margin-top:2px;transition:fill .1s ease-in}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton:hover .LivePlayerChannel-noEmphasis,.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton:hover .LivePlayerChannel-withEmphasis{color:#fcb700}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton:hover .LivePlayerChannel-noEmphasisIcon,.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton:hover .LivePlayerChannel-withEmphasisIcon{fill:#fcb700}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton:active .LivePlayerChannel-withEmphasis{background-color:#fcb700;border-radius:30px;color:#171717}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton:active .LivePlayerChannel-withEmphasisIcon{fill:#171717}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton>span>img{display:inline-block;padding-right:8px;width:24px}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton>span{color:#d9d9d9;display:inline-flex;flex-wrap:nowrap;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:700;text-decoration:none}@media (max-width:1019px){.LivePlayerChannel-rightContainer{flex-direction:row;margin-left:0;text-align:center;top:40px}}.LiveTvGate-liveTvMvpd{height:100%;position:relative}.LiveTvGate-closeButton{align-items:center;background-color:#fff;border-radius:23px;display:flex;height:24px;justify-content:center;position:absolute;right:20px;width:24px}.LiveTvGate-closeButton svg path{fill:#00081a}.WatchLiveRightRail-containerFluidWidths{margin:0 auto;width:100%}@media (min-width:1020px){.WatchLiveRightRail-containerFluidWidths{max-width:960px}}@media (min-width:1340px){.WatchLiveRightRail-containerFluidWidths{max-width:1290px}}.WatchLiveRightRail-containerWidth100{width:100%}.WatchLiveRightRail-page{display:block;margin-bottom:25px;overflow:visible}@media (min-width:760px){.WatchLiveRightRail-page{margin-bottom:28px}}.WatchLiveRightRail-advertorialPage{display:block;overflow:visible}.WatchLiveRightRail-pageGrid{margin-left:auto;margin-right:auto;max-width:1290px;overflow:visible;width:100%}.WatchLiveRightRail-pageWrapper{margin:0 auto;max-width:100%}@media (min-width:760px){.WatchLiveRightRail-pageWrapper{max-width:678px}}@media (min-width:1020px){.WatchLiveRightRail-pageWrapper{max-width:960px}}@media (min-width:1340px){.WatchLiveRightRail-pageWrapper{max-width:1290px}}@media (min-width:760px){.WatchLiveRightRail-pageWrapper{max-width:100%!important}}.WatchLiveRightRail-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.WatchLiveRightRail-pageRow{padding-left:0;padding-right:0}}@media (min-width:1020px){.WatchLiveRightRail-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}}@media (min-width:1020px) and (min-width:760px){.WatchLiveRightRail-pageRow{padding-left:0;padding-right:0}}@media (max-width:1019px){.WatchLiveRightRail-pageRow{margin:0;padding:0}}@media (min-width:360px) and (max-width:759px){.WatchLiveRightRail-pageRow.WatchLiveRightRail-containerFluidWidths{padding:0 21px}}@media (min-width:760px) and (max-width:1019px){.WatchLiveRightRail-pageRow.WatchLiveRightRail-containerFluidWidths{padding:0 45px}}.WatchLiveRightRail-pageRowFlex{display:flex}.WatchLiveRightRail-rowUnderAd{margin-top:-29px}@media (min-width:1020px){.WatchLiveRightRail-rowUnderAd{margin-top:-50px}}@media (min-width:1340px){.WatchLiveRightRail-rowUnderAd{margin-top:-44px}}.WatchLiveRightRail-rowWithBackground{background:#cfd8e2;position:relative}.WatchLiveRightRail-rowWithBackground:after,.WatchLiveRightRail-rowWithBackground:before{background:#cfd8e2;content:"";display:block;height:100%;position:absolute;width:25vw}.WatchLiveRightRail-rowWithBackground:before{right:100%;top:0}.WatchLiveRightRail-rowWithBackground:after{left:100%;top:0}.WatchLiveRightRail-isAdvertorial{display:block;margin-bottom:50px!important}.WatchLiveRightRail-flipRowOrder .WatchLiveRightRail-col:first-child{order:2}@media (min-width:1020px){.WatchLiveRightRail-flipRowOrder .WatchLiveRightRail-col:first-child{order:1}}.WatchLiveRightRail-flipRowOrder .WatchLiveRightRail-col:last-child{order:1}@media (min-width:1020px){.WatchLiveRightRail-flipRowOrder .WatchLiveRightRail-col:last-child{order:2}}.WatchLiveRightRail-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.WatchLiveRightRail-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.WatchLiveRightRail-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.WatchLiveRightRail-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.WatchLiveRightRail-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.WatchLiveRightRail-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.WatchLiveRightRail-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.WatchLiveRightRail-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}.WatchLiveRightRail-containerFluidWidths .WatchLiveRightRail-col{max-width:678px!important;min-width:678px}}@media (min-width:760px){.WatchLiveRightRail-col-3{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.WatchLiveRightRail-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.WatchLiveRightRail-col-3{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.WatchLiveRightRail-col-3{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.WatchLiveRightRail-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.WatchLiveRightRail-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}.WatchLiveRightRail-col-3:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.WatchLiveRightRail-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}@media (min-width:760px){.WatchLiveRightRail-col-6{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.WatchLiveRightRail-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.WatchLiveRightRail-col-6{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.WatchLiveRightRail-col-6{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.WatchLiveRightRail-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.WatchLiveRightRail-col-6{flex-grow:0;flex-shrink:0;margin-left:0;margin-right:0;max-width:calc(44.44444% - 16.66667px);min-width:calc(44.44444% - 16.66667px)}.WatchLiveRightRail-col-6:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.WatchLiveRightRail-col-6{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(50% - 15px);min-width:calc(50% - 15px)}}.WatchLiveRightRail-col-9 .BrandBanner-container{margin-bottom:30px;z-index:99}@media (min-width:1340px){.WatchLiveRightRail-col-9 .BrandBanner-container{margin-left:calc(-50vw - -538.5px)}}@media (min-width:760px){.WatchLiveRightRail-col-9 .BrandBanner-container{margin-bottom:-100px;margin-top:50px}.WatchLiveRightRail-col-9{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.WatchLiveRightRail-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.WatchLiveRightRail-col-9{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.WatchLiveRightRail-col-9{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.WatchLiveRightRail-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.WatchLiveRightRail-col-9{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.WatchLiveRightRail-col-9:last-child{margin-right:0}}@media (min-width:1340px){.WatchLiveRightRail-col-9{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}.WatchLiveRightRail-col-9.WatchLiveRightRail-article{flex-grow:0;flex-shrink:0;margin-left:calc(8.33333% + 2.5px);max-width:calc(58.33333% - 12.5px);min-width:calc(58.33333% - 12.5px)}}@media (min-width:760px){.WatchLiveRightRail-col-12{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.WatchLiveRightRail-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.WatchLiveRightRail-col-12{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.WatchLiveRightRail-col-12{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.WatchLiveRightRail-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.WatchLiveRightRail-col-12{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.WatchLiveRightRail-col-12:last-child{margin-right:0}}@media (min-width:1340px){.WatchLiveRightRail-col-12{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}.WatchLiveRightRail-col-full{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.WatchLiveRightRail-col-full .MyComponentName-container{width:100vw}@media (min-width:1340px){.WatchLiveRightRail-col-full .MyComponentName-container{max-width:none}}.WatchLiveRightRail-col-full:last-child{margin-right:0}.WatchLiveRightRail-clear-col-padding{padding-bottom:0;padding-top:0}.WatchLiveRightRail-paddedWrapper{padding-bottom:15px;padding-top:15px}@media (min-width:1020px){.WatchLiveRightRail-paddedWrapper{padding-bottom:20px;padding-top:25px}.WatchLiveRightRail-hasBanner{margin-bottom:130px}}.WatchLiveRightRail-sidebar{flex-grow:0;flex-shrink:0;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.WatchLiveRightRail-sidebar{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.WatchLiveRightRail-sidebar{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.WatchLiveRightRail-sidebar{max-width:100%;min-width:100%}}@media (min-width:1340px){.WatchLiveRightRail-sidebar{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:360px){.WatchLiveRightRail-sidebar{min-width:100%}}@media (min-width:760px){.WatchLiveRightRail-sidebar{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}@media (min-width:1020px){.WatchLiveRightRail-sidebar{flex-grow:0;flex-shrink:0;margin-bottom:40px;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}}@media (min-width:1340px){.WatchLiveRightRail-sidebar{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}.WatchLiveRightRail-sidebarLeft{flex-grow:0;flex-shrink:0;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.WatchLiveRightRail-sidebarLeft{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.WatchLiveRightRail-sidebarLeft{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.WatchLiveRightRail-sidebarLeft{max-width:100%;min-width:100%}}@media (min-width:1340px){.WatchLiveRightRail-sidebarLeft{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:360px){.WatchLiveRightRail-sidebarLeft{min-width:100%}}@media (min-width:760px){.WatchLiveRightRail-sidebarLeft{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}@media (min-width:1020px){.WatchLiveRightRail-sidebarLeft{flex-grow:0;flex-shrink:0;margin-bottom:40px;margin-left:0;margin-right:30px;max-width:calc(22.22222% - 23.33333px);min-width:calc(22.22222% - 23.33333px);z-index:1}}@media (min-width:1340px){.WatchLiveRightRail-sidebarLeft{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}@media (min-width:1020px){.WatchLiveRightRail-sidebarLeftNav{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}}@media (min-width:1340px){.WatchLiveRightRail-sidebarLeftNav{flex-grow:0;flex-shrink:0;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}.WatchLiveRightRail-sidebarPro{margin-left:0;margin-right:30px}.WatchLiveRightRail-AdvertorialStory-ArticleHeader-1{display:hide}@media (min-width:360px){.WatchLiveRightRail-rightRail{display:none}}@media (min-width:1020px){.WatchLiveRightRail-rightRail{display:block}}.WatchLiveRightRail-mobileBanner.WatchLiveRightRail-berkshireEventContainer{margin:0 auto}@media (min-width:1020px){.WatchLiveRightRail-mobileBanner{display:none}}.WatchLiveRightRail-desktopBanner{display:none}@media (min-width:1020px){.WatchLiveRightRail-desktopBanner{display:block}}.WatchLiveRightRail-container{border:4px solid #002f6c;color:#002f6c;margin-bottom:30px;padding:8px 16px}.WatchLiveRightRail-container a{color:#002f6c}.WatchLiveRightRail-watchliveBannerV2{background:linear-gradient(#fff,#fff) padding-box,linear-gradient(to bottom right,#fccc12,#ff7112,#ef1541,#6e55dc,#069de0,#05ac3f) border-box;border:2px solid #0000;border-radius:4px;padding:16px 12px}.WatchLiveRightRail-header{display:flex;justify-content:space-between;margin-bottom:10px}.WatchLiveRightRail-header a{display:flex}.WatchLiveRightRail-liveTV{background:#fff;display:flex;font-size:14px;font-style:normal;font-weight:800;height:20px;line-height:18px;margin:-18px 0 0 -8px;padding:2px 10px;width:65px}.WatchLiveRightRail-liveTV img{margin-right:2px;width:22px}.WatchLiveRightRail-currTitle{display:block;font-size:20px;font-weight:800;line-height:18px;margin-bottom:10px;width:70%}@media (min-width:760px) and (max-width:1019px){.WatchLiveRightRail-currTitle{max-width:205px}}.WatchLiveRightRail-currTitle:hover{color:#4699d6}.WatchLiveRightRail-wlButton,.WatchLiveRightRail-wlButtonMobile{background:#ce2b2b;color:#fff!important;display:flex;font-weight:700;justify-content:space-evenly;margin-bottom:10px}.WatchLiveRightRail-wlButton:hover,.WatchLiveRightRail-wlButtonMobile:hover{background:#b40909}.WatchLiveRightRail-wlButton{display:none;font-size:12px;height:30px;padding:6px 4px}@media (min-width:1020px){.WatchLiveRightRail-wlButton{display:flex;width:130px}}.WatchLiveRightRail-wlButton .WatchLiveRightRail-logo{width:18px}.WatchLiveRightRail-wlButtonMobile{font-size:12px;padding:4px 6px}@media (min-width:760px){.WatchLiveRightRail-wlButtonMobile{display:flex;padding:4px;width:260px}}@media (min-width:1020px){.WatchLiveRightRail-wlButtonMobile{display:none}}.WatchLiveRightRail-contents{align-items:center;display:flex;justify-content:space-between}.WatchLiveRightRail-nextTitle{font-weight:800}.WatchLiveRightRail-footer{display:flex;font-size:12px;justify-content:space-between}.WatchLiveRightRail-footer .WatchLiveRightRail-audio{align-items:center;display:flex;font-size:12px;font-style:normal;font-weight:700;line-height:19px;margin-top:-3px;text-transform:capitalize}.WatchLiveRightRail-footer .WatchLiveRightRail-audio span{text-decoration:underline}.WatchLiveRightRail-footer .WatchLiveRightRail-nextShow{padding-right:22px}.WatchLiveRightRail-inline{border:none;border-top:3px solid #002f6c;padding:8px 0}@media (min-width:760px){.WatchLiveRightRail-inline{display:none}}@media (min-width:1020px){.WatchLiveRightRail-inline{display:block;margin-left:calc(16.66667% + 5px);min-width:auto}}@media (min-width:1340px){.WatchLiveRightRail-inline{margin-left:calc(14.28571% + 4.28571px);min-width:auto}}.WatchLiveRightRail-inline .WatchLiveRightRail-audio,.WatchLiveRightRail-inline .WatchLiveRightRail-liveTV{display:none}.WatchLiveRightRail-inline .WatchLiveRightRail-wlButton{margin-bottom:-10px;margin-top:0}.WatchLiveRightRail-berkshireEvent{margin-bottom:30px;max-width:300px;width:100%}@media (max-width:759px){.WatchLiveRightRail-berkshireEvent{display:block;margin:auto auto 15px;max-width:318px;width:100%}}.WatchLiveRightRail-BHmobileBanner{display:block}@media (min-width:480px){.WatchLiveRightRail-BHmobileBanner{display:none}}.WatchLiveRightRail-BHinline{display:none}.WatchLiveRightRail-BHrightRail{display:block}@media (min-width:760px){.WatchLiveRightRail-BHrightRail{display:none}}@media (min-width:1020px){.WatchLiveRightRail-BHrightRail{display:block}}.WatchLiveRightRail-audioLink{color:#001e5a;display:block;font-size:12px;font-weight:600;line-height:14.62px;margin-bottom:12px;text-decoration:underline;width:-moz-fit-content;width:fit-content}.WatchLiveRightRail-watchLivestreamButton{align-items:center;background-color:#0053cf;border-radius:5px;color:#fff!important;display:flex;font-size:14px;font-weight:700;justify-content:center;line-height:17.05px;margin-bottom:12px;min-height:51px}.WatchLiveRightRail-watchLivestreamButton span{animation:WatchLiveRightRail-pulse 1.5s infinite;animation-timing-function:ease-in-out;background-color:#fff;border-radius:100%;box-shadow:0 0 0 0 #fff;display:inline-block;height:8px;margin-right:8px;position:relative;transform:scale(1);width:8px}@keyframes WatchLiveRightRail-pulse{0%{box-shadow:0 0 0 1px #0053cf;opacity:1}70%{border:1px solid #0053cf;box-shadow:0 0 0 1px #fff;opacity:.9;padding:2px;transform:scale(1.2)}to{box-shadow:0 0 0 1px #fff;opacity:1;transform:scale(1)}}.WatchLiveRightRail-watchLivestreamButton:hover{background-color:#002f6c;color:#fff}.WatchLiveRightRail-footerV2{display:flex;flex-direction:column;gap:10px;justify-content:space-between}.WatchLiveRightRail-showDetailsContainer{align-items:center;display:flex;flex-direction:row;justify-content:space-between}.WatchLiveRightRail-nowText,.WatchLiveRightRail-upNextText{color:#001e5a;font-size:12px;font-weight:400;line-height:14.62px}.WatchLiveRightRail-liveShow{color:#002f6c;font-size:16px;font-weight:800;line-height:18px}@media (min-width:760px) and (max-width:1019px){.WatchLiveRightRail-liveShow{text-align:right}}.WatchLiveRightRail-nextShow{color:#002f6c;font-size:14px;font-weight:600;line-height:18px}@media (min-width:760px) and (max-width:1019px){.WatchLiveRightRail-nextShow{text-align:right;width:170px}}.TempPassOverlay-overlay{height:0;pointer-events:none;position:relative;width:100%;z-index:40}.TempPassOverlay-liveContainer{align-items:center;background:#27313c;border-radius:4px;display:flex;height:20px;justify-content:center;position:absolute;right:5px;top:5px;width:57px}@keyframes TempPassOverlay-blink{25%{opacity:1}50%{opacity:.4}75%{opacity:1}}.TempPassOverlay-redIcon{animation:TempPassOverlay-blink 2s linear infinite;background-clip:content-box;background-color:#ce2b2b;border:1px solid #b40909;border-radius:50%;box-sizing:initial;height:7px;margin-top:-1px;padding:2px;width:7px}.TempPassOverlay-liveText{color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:800;letter-spacing:.01em;line-height:15px;margin-left:5px;text-transform:uppercase}.TempPassOverlay-timerContainer{align-items:center;display:flex;height:20px;justify-content:left;position:absolute;right:5px;top:25px;width:57px}.TempPassOverlay-time{color:#fff;display:inline-block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:600;letter-spacing:.05em;line-height:14px;margin-left:5px;max-width:36px;min-width:36px;text-shadow:0 0 2px #000,0 0 1px #000;width:36px}.TempPassOverlay-linkOut{margin-top:2px;pointer-events:auto}.TempPassOverlay-linkIcon{filter:drop-shadow(0 0 .5px #000) drop-shadow(0 0 .5px #000)}.LogoOverlay-logoContainer{align-items:center;border-radius:4px;display:flex;height:20px;justify-content:center;pointer-events:none;position:absolute;right:66px;top:6px;width:auto;z-index:40}.LogoOverlay-logoContainer img{filter:drop-shadow(1px 1px 0 black) drop-shadow(-1px -1px 0 black) drop-shadow(-1px 1px 0 black) drop-shadow(1px -1px 0 black);height:auto;width:57px}.TempPass-playerContainer{background:#000;position:relative}.TempPass-omegaPlayerContainer{aspect-ratio:16/9;position:relative;z-index:0}.LiveTV-contentArea{background-color:#000;height:100%;min-height:60vh;width:100%}.LiveTV-contentAreaOmega{height:100%}.LiveTV-contentAreaOmega,.LiveTV-contentAreaOmegaPlus{background-color:#000;display:flex;flex-direction:column}.LiveTV-contentAreaOmegaPlus{height:487px}@media (max-width:1339px){.LiveTV-contentAreaOmegaPlus{height:325px}}@media (max-width:1019px){.LiveTV-contentAreaOmegaPlus{height:467px}}@media (max-width:759px){.LiveTV-contentAreaOmegaPlus{height:435px}}.LiveTV-slate{display:flex;height:100%;padding-top:20px;vertical-align:middle}.LiveTV-slateimg{margin:auto;max-height:50vh;max-width:100%}.liveTV{margin-bottom:0!important}.LiveTV-loadingContainer{align-items:center;display:flex;justify-content:center;min-height:60vh}.LiveTV-concurrencyMessage{align-items:stretch;display:flex;min-height:60vh}.LiveTV-wrapperForProAndTempPass{margin-bottom:20px;position:relative;width:100%}.LiveTV-channel{height:-moz-fit-content;height:fit-content}.LiveTV-channels,.LiveTV-leftContainer,.LiveTV-rightContainer{width:100%!important}.LiveTV-channels .LiveTV-buttonContainer .LiveTV-selector{text-align:center}.LiveTV-rightContainer .LiveTV-linkButton{justify-content:center;width:50%!important}.LiveTVContainer-containerFluidWidths{margin:0 auto;width:100%}@media (min-width:1020px){.LiveTVContainer-containerFluidWidths{max-width:960px}}@media (min-width:1340px){.LiveTVContainer-containerFluidWidths{max-width:1290px}}.LiveTVContainer-page{display:block;overflow:visible;padding-bottom:25px}@media (min-width:760px){.LiveTVContainer-page{padding-bottom:28px}}.LiveTVContainer-pageWrapper{margin:0 auto;max-width:100%}@media (min-width:760px){.LiveTVContainer-pageWrapper{max-width:678px}}@media (min-width:1020px){.LiveTVContainer-pageWrapper{max-width:960px}}@media (min-width:1340px){.LiveTVContainer-pageWrapper{max-width:1290px}}@media (min-width:760px){.LiveTVContainer-pageWrapper{max-width:100%!important}}.LiveTVContainer-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.LiveTVContainer-pageRow{padding-left:0;padding-right:0}}@media (min-width:1020px){.LiveTVContainer-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}}@media (min-width:1020px) and (min-width:760px){.LiveTVContainer-pageRow{padding-left:0;padding-right:0}}@media (max-width:1019px){.LiveTVContainer-pageRow{margin:0;padding:0}}.LiveTVContainer-gateContainer{background:#000;margin:0;padding:0}.LiveTVContainer-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.LiveTVContainer-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.LiveTVContainer-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.LiveTVContainer-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.LiveTVContainer-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.LiveTVContainer-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.LiveTVContainer-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.LiveTVContainer-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}.LiveTVContainer-containerFluidWidths .LiveTVContainer-col{max-width:678px!important;min-width:678px}}@media (min-width:760px){.LiveTVContainer-col-3{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.LiveTVContainer-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.LiveTVContainer-col-3{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.LiveTVContainer-col-3{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.LiveTVContainer-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.LiveTVContainer-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}.LiveTVContainer-col-3:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.LiveTVContainer-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}@media (min-width:760px){.LiveTVContainer-col-6{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.LiveTVContainer-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.LiveTVContainer-col-6{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.LiveTVContainer-col-6{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.LiveTVContainer-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.LiveTVContainer-col-6{flex-grow:0;flex-shrink:0;margin-left:0;margin-right:0;max-width:calc(44.44444% - 16.66667px);min-width:calc(44.44444% - 16.66667px)}.LiveTVContainer-col-6:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.LiveTVContainer-col-6{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(50% - 15px);min-width:calc(50% - 15px)}}.LiveTVContainer-col-9 .BrandBanner-container{margin-bottom:30px;z-index:99}@media (min-width:1340px){.LiveTVContainer-col-9 .BrandBanner-container{margin-left:calc(-50vw - -538.5px)}}@media (min-width:760px){.LiveTVContainer-col-9 .BrandBanner-container{margin-bottom:-100px;margin-top:50px}.LiveTVContainer-col-9{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.LiveTVContainer-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.LiveTVContainer-col-9{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.LiveTVContainer-col-9{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.LiveTVContainer-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.LiveTVContainer-col-9{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.LiveTVContainer-col-9:last-child{margin-right:0}}@media (min-width:1340px){.LiveTVContainer-col-9{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}.LiveTVContainer-col-9.LiveTVContainer-article{flex-grow:0;flex-shrink:0;margin-left:calc(8.33333% + 2.5px);max-width:calc(58.33333% - 12.5px);min-width:calc(58.33333% - 12.5px)}}@media (min-width:760px){.LiveTVContainer-col-12{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.LiveTVContainer-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.LiveTVContainer-col-12{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.LiveTVContainer-col-12{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.LiveTVContainer-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.LiveTVContainer-col-12{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.LiveTVContainer-col-12:last-child{margin-right:0}}@media (min-width:1340px){.LiveTVContainer-col-12{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}.LiveTVContainer-col-full{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.LiveTVContainer-col-full .MyComponentName-container{width:100vw}@media (min-width:1340px){.LiveTVContainer-col-full .MyComponentName-container{max-width:none}}.LiveTVContainer-col-full:last-child{margin-right:0}.LiveTVContainer-container{min-height:500px}@media (min-width:1020px){.LiveTVContainer-container{margin:0 auto;max-width:100%}}@media (min-width:1020px) and (min-width:760px){.LiveTVContainer-container{max-width:678px}}@media (min-width:1020px) and (min-width:1020px){.LiveTVContainer-container{max-width:960px}}@media (min-width:1020px) and (min-width:1340px){.LiveTVContainer-container{max-width:1290px}}@media (max-width:1019px){.LiveTVContainer-container{padding:0 30px}}@media (max-width:759px){.LiveTVContainer-container{margin-top:-1px;padding:0 20px}}.LiveTVContainer-mvpdContainer{background-color:#000;bottom:0;left:0;padding-top:20px;position:absolute;right:0;top:0}.LiveTVContainer-liveTvMvpd{height:100%;position:relative}.LiveTVContainer-closeButton{align-items:center;background-color:#fff;border-radius:23px;display:flex;height:24px;justify-content:center;position:absolute;right:20px;width:24px}.LiveTVContainer-closeButton svg path{fill:#00081a}.LiveTVPage-container{min-height:800px}@media (max-width:1019px){.LiveTVPage-container{min-height:1100px}}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:800;src:local("~assets/fonts/Lyon/LyonText-Black-Web-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Black-Web-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:800;src:local("~assets/fonts/Lyon/LyonText-Black-Web-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Black-Web-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:800;src:local("~assets/fonts/Lyon/LyonText-Black-Web-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Black-Web-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:600;src:local("~assets/fonts/Lyon/LyonText-Bold-Web-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Bold-Web-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:600;src:local("~assets/fonts/Lyon/LyonText-Bold-Web-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Bold-Web-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:600;src:local("~assets/fonts/Lyon/LyonText-Bold-Web-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Bold-Web-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:400;src:local("~assets/fonts/Lyon/LyonText-Regular-Web-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Regular-Web-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:400;src:local("~assets/fonts/Lyon/LyonText-Regular-Web-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Regular-Web-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:400;src:local("~assets/fonts/Lyon/LyonText-Regular-Web-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Regular-Web-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lyon;font-style:italic;font-weight:400;src:local("~assets/fonts/Lyon/LyonText-RegularItalic-Web-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-RegularItalic-Web-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Lyon;font-style:italic;font-weight:400;src:local("~assets/fonts/Lyon/LyonText-RegularItalic-Web-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-RegularItalic-Web-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lyon;font-style:italic;font-weight:400;src:local("~assets/fonts/Lyon/LyonText-RegularItalic-Web-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-RegularItalic-Web-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:500;src:local("~assets/fonts/Lyon/LyonText-Semibold-Web-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Semibold-Web-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:500;src:local("~assets/fonts/Lyon/LyonText-Semibold-Web-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Semibold-Web-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:500;src:local("~assets/fonts/Lyon/LyonText-Semibold-Web-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Semibold-Web-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0-oriya.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0-oriya.woff2) format("woff2");unicode-range:"U+0964-0965, U+0B01-0B77, U+200C-200D, U+20B9, U+25CC"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0-greek.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0-greek.woff2) format("woff2");unicode-range:"U+0370-03FF"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0-cyrillic-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0-cyrillic-ext.woff2) format("woff2");unicode-range:"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0-cyrillic.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0-cyrillic.woff2) format("woff2");unicode-range:"U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0-oriya.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0-oriya.woff2) format("woff2");unicode-range:"U+0964-0965, U+0B01-0B77, U+200C-200D, U+20B9, U+25CC"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0-greek.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0-greek.woff2) format("woff2");unicode-range:"U+0370-03FF"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0-cyrillic-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0-cyrillic-ext.woff2) format("woff2");unicode-range:"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0-cyrillic.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0-cyrillic.woff2) format("woff2");unicode-range:"U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0-oriya.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0-oriya.woff2) format("woff2");unicode-range:"U+0964-0965, U+0B01-0B77, U+200C-200D, U+20B9, U+25CC"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0-greek.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0-greek.woff2) format("woff2");unicode-range:"U+0370-03FF"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0-cyrillic-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0-cyrillic-ext.woff2) format("woff2");unicode-range:"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0-cyrillic.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0-cyrillic.woff2) format("woff2");unicode-range:"U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0-oriya.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0-oriya.woff2) format("woff2");unicode-range:"U+0964-0965, U+0B01-0B77, U+200C-200D, U+20B9, U+25CC"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0-greek.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0-greek.woff2) format("woff2");unicode-range:"U+0370-03FF"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0-cyrillic-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0-cyrillic-ext.woff2) format("woff2");unicode-range:"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0-cyrillic.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0-cyrillic.woff2) format("woff2");unicode-range:"U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:800;src:local("~assets/fonts/ProximaNova/351C86_0_0-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_0_0-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:800;src:local("~assets/fonts/ProximaNova/351C86_0_0-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_0_0-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:600;src:local("~assets/fonts/ProximaNova/351C86_1_0-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_1_0-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:600;src:local("~assets/fonts/ProximaNova/351C86_1_0-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_1_0-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:700;src:local("~assets/fonts/ProximaNova/351C86_2_0-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_2_0-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:700;src:local("~assets/fonts/ProximaNova/351C86_2_0-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_2_0-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:400;src:local("~assets/fonts/ProximaNova/351C86_3_0-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_3_0-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:400;src:local("~assets/fonts/ProximaNova/351C86_3_0-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_3_0-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:500;src:local("~assets/fonts/ProximaNova/351C86_4_0-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_4_0-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:500;src:local("~assets/fonts/ProximaNova/351C86_4_0-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_4_0-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-gujarati.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-gujarati.woff2) format("woff2");unicode-range:"U+0964-0965, U+0A80-0AFF, U+200C-200D, U+20B9, U+25CC, U+A830-A839"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-myanmar.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-myanmar.woff2) format("woff2");unicode-range:"U+1000-109F, U+200C-200D, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-devanagari.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-devanagari.woff2) format("woff2");unicode-range:"U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-thai.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-thai.woff2) format("woff2");unicode-range:"U+0E01-0E5B, U+200C-200D, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-bengali.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-bengali.woff2) format("woff2");unicode-range:"U+0964-0965, U+0981-09FB, U+200C-200D, U+20B9, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-telugu.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-telugu.woff2) format("woff2");unicode-range:"U+0951-0952, U+0964-0965, U+0C00-0C7F, U+1CDA, U+200C-200D, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-khmer.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-khmer.woff2) format("woff2");unicode-range:"U+1780-17FF, U+200C, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-tamil.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-tamil.woff2) format("woff2");unicode-range:"U+0964-0965, U+0B82-0BFA, U+200C-200D, U+20B9, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-kannada.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-kannada.woff2) format("woff2");unicode-range:"U+0964-0965, U+0C82-0CF2, U+200C-200D, U+20B9, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-gurmukhi.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-gurmukhi.woff2) format("woff2");unicode-range:"U+0964-0965, U+0A01-0A75, U+200C-200D, U+20B9, U+25CC, U+262C, U+A830-A839"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-malayalam.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-malayalam.woff2) format("woff2");unicode-range:"U+0307, U+0323, U+0964-0965, U+0D02-0D7F, U+200C-200D, U+20B9, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-oriya.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-oriya.woff2) format("woff2");unicode-range:"U+0964-0965, U+0B01-0B77, U+200C-200D, U+20B9, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-hebrew.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-hebrew.woff2) format("woff2");unicode-range:"U+0590-05FF, U+20AA, U+25CC, U+FB1D-FB4F"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-sinhala.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-sinhala.woff2) format("woff2");unicode-range:"U+0964-0965, U+0D82-0DF4, U+200C-200D, U+25CC"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-vietnamese.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-vietnamese.woff2) format("woff2");unicode-range:"U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lato;font-style:normal;font-weight:400;src:local("~assets/fonts/Lato/Lato-Regular-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-Regular-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lato;font-style:normal;font-weight:400;src:local("~assets/fonts/Lato/Lato-Regular-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-Regular-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lato;font-style:normal;font-weight:700;src:local("~assets/fonts/Lato/Lato-Bold-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-Bold-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lato;font-style:normal;font-weight:700;src:local("~assets/fonts/Lato/Lato-Bold-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-Bold-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lato;font-style:normal;font-weight:900;src:local("~assets/fonts/Lato/Lato-Black-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-Black-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lato;font-style:normal;font-weight:900;src:local("~assets/fonts/Lato/Lato-Black-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-Black-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lato;font-style:italic;font-weight:400;src:local("~assets/fonts/Lato/Lato-RegularItalic-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-RegularItalic-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lato;font-style:italic;font-weight:400;src:local("~assets/fonts/Lato/Lato-RegularItalic-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-RegularItalic-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lato;font-style:italic;font-weight:700;src:local("~assets/fonts/Lato/Lato-BoldItalic-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-BoldItalic-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lato;font-style:italic;font-weight:700;src:local("~assets/fonts/Lato/Lato-BoldItalic-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-BoldItalic-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}@font-face{font-display:swap;font-family:Lato;font-style:italic;font-weight:900;src:local("~assets/fonts/Lato/Lato-BlackItalic-latin-ext.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-BlackItalic-latin-ext.woff2) format("woff2");unicode-range:"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF"}@font-face{font-display:swap;font-family:Lato;font-style:italic;font-weight:900;src:local("~assets/fonts/Lato/Lato-BlackItalic-latin.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-BlackItalic-latin.woff2) format("woff2");unicode-range:"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"}.SearchGroup-container{border-top:6px solid #002f6c;display:block;width:100%}.SearchGroup-container.SearchGroup-railVariant{margin-bottom:0}@media (min-width:760px){.SearchGroup-container.SearchGroup-railVariant{margin-bottom:20px}}@media (min-width:1020px){.SearchGroup-container.SearchGroup-railVariant{margin-bottom:20px}}.SearchGroup-header{align-items:flex-start;background:#fff;display:flex;flex-direction:row;justify-content:space-between;padding:10px 0}@media (min-width:760px){.SearchGroup-header{align-items:center}}.SearchGroup-sectionTitle{color:#002f6c;font-size:22px;font-weight:800;line-height:1.2;margin:0;text-transform:uppercase}@media (min-width:1020px){.SearchGroup-sectionTitle{font-size:14px}}.SearchGroup-railVariant .SearchGroup-sectionTitle{font-size:18px;font-weight:800}@media (min-width:760px){.SearchGroup-railVariant .SearchGroup-sectionTitle{font-size:20px}}@media (min-width:1340px){.SearchGroup-railVariant .SearchGroup-sectionTitle{font-size:30px}}.SearchGroup-contentButton{color:#002f6c;display:inline-block;font-size:12px;font-weight:700;letter-spacing:1px;margin-top:10px;text-transform:uppercase;vertical-align:middle;white-space:nowrap}.SearchGroup-contentButton i{font-style:normal;margin-right:3px}.SearchGroup-railVariant .SearchGroup-contentButton{margin:10px 0 0}@media (min-width:760px){.SearchGroup-contentButton{margin:0 0 0 25px}.SearchGroup-railVariant .SearchGroup-contentButton{margin:0 0 0 auto}}@media (min-width:1020px){.SearchGroup-contentButton{line-height:1}.SearchGroup-railVariant .SearchGroup-contentButton{margin:5px 0 0}}@media (min-width:1340px){.SearchGroup-railVariant .SearchGroup-contentButton{flex-grow:0;margin:0 0 0 24px}}.SearchGroup-headerButton{margin:0 0 0 50px}.SearchGroup-headerButton .icon-short-arrow-right{display:inline-block;margin-left:3px;margin-right:0;vertical-align:middle}@media (min-width:760px){.SearchGroup-headerButton{margin-left:auto}}.SearchGroup-content{position:relative}.SearchGroup-item{border-top:1px dashed #9b9b9b;display:flex;flex-direction:row;flex-wrap:wrap;padding:8px 5px}.SearchGroup-item:nth-of-type(1n+6){display:none}.SearchGroup-item:nth-child(2n){background-color:#f2f2f2}@media (min-width:360px){.SearchGroup-item:nth-of-type(1n+6){display:none}}@media (min-width:760px){.SearchGroup-item{flex-wrap:nowrap;padding:20px 5px}.SearchGroup-item:nth-of-type(1n+4){display:block}.SearchGroup-item:nth-of-type(1n+6){display:none}.SearchGroup-railVariant .SearchGroup-item{flex-wrap:wrap}}@media (min-width:1020px){.SearchGroup-item{min-height:53px;padding:10px}}@media (min-width:1340px){.SearchGroup-railVariant .SearchGroup-item{flex-wrap:nowrap}}.SearchGroup-itemIdentifier{display:block;flex-grow:1;float:left;min-width:50%;width:60%}@media (min-width:760px){.SearchGroup-itemIdentifier{min-width:0;width:auto}.SearchGroup-railVariant .SearchGroup-itemIdentifier{max-width:42%;min-width:42%}}@media (min-width:1020px){.SearchGroup-railVariant .SearchGroup-itemIdentifier{max-width:50%;min-width:50%}}@media (min-width:1340px){.SearchGroup-railVariant .SearchGroup-itemIdentifier{max-width:100%;min-width:0}}.SearchGroup-itemTitle{color:#171717;display:block;font-size:16px;font-weight:800;line-height:1.25;text-transform:uppercase}.SearchGroup-itemTitle:focus,.SearchGroup-itemTitle:hover{color:#005594}.SearchGroup-itemSubTitle{color:#747474;display:block;font-size:14px;line-height:1.4;margin-top:5px}@media (min-width:1020px){.SearchGroup-itemSubTitle{font-size:12px;line-height:1}}.SearchGroup-railVariant .SearchGroup-itemSubTitle{font-weight:500}.SearchGroup-marketChange{color:#747474;display:block;font-size:14px;font-weight:600;line-height:1.42;margin-left:auto;min-width:40%;text-align:right;text-transform:uppercase}@media (min-width:760px){.SearchGroup-marketChange{min-width:0}}@media (min-width:1020px){.SearchGroup-marketChange{font-size:12px;line-height:1}.SearchGroup-railVariant .SearchGroup-marketChange{max-width:50%;min-width:50%}}@media (min-width:1340px){.SearchGroup-railVariant .SearchGroup-marketChange{max-width:100%;min-width:0}}.SearchGroup-marketChangeUp{color:#008456}.SearchGroup-marketChangeDown{color:#ce2b2b}.SearchGroup-change,.SearchGroup-change_pct{display:block}.SearchGroup-change_pct{margin-top:5px}.SearchGroup-label{color:#747474;display:block;font-size:14px;font-weight:600;line-height:1.42;margin-left:auto;text-align:right;text-transform:uppercase}@media (min-width:1020px){.SearchGroup-label{font-size:12px;line-height:1}}.SearchGroup-noSavedData{border-top:1px dashed #9b9b9b;display:block;padding:20px 0}@media (min-width:1020px){.SearchGroup-noSavedData{padding:10px 0 0}}@media (min-width:1340px){.SearchGroup-noSavedData{padding-top:18px}}.SearchGroup-callToActionTitle{color:#171717;display:block;font-size:20px;font-weight:700;line-height:1.2;margin:0}.SearchGroup-callToActionDescription{color:#5d5d5d;display:block;font-size:14px;font-weight:500;line-height:1.28;margin:10px 0 20px}.SearchGroup-callToActionDescription .SearchGroup-emphasized{font-weight:600;text-transform:uppercase}@media (min-width:760px){.SearchGroup-callToActionDescription{font-size:12px;line-height:1.33;margin:10px 0 30px;max-width:382px;width:70%}}@media (min-width:1020px){.SearchGroup-callToActionDescription{font-size:12px;line-height:1.33;margin:10px 0 20px;max-width:100%;width:100%}}.SearchGroup-callToActionButton{align-items:center;appearance:none;background-color:#002f6c;border:1px solid #002f6c;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.SearchGroup-callToActionButton>span{display:block;line-height:12px}.SearchGroup-callToActionButton [class*=" icon-"],.SearchGroup-callToActionButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.SearchGroup-callToActionButton [class*=" icon-"]:before,.SearchGroup-callToActionButton [class^=icon-]:before{line-height:12px}.SearchGroup-callToActionButton:focus,.SearchGroup-callToActionButton:hover{background-color:#2077b6;border-color:#2077b6;color:#fff}.SearchGroup-callToActionButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}@media (hover:hover){.SearchGroup-callToActionButton[class*=touchButton]:hover{background-color:#2077b6;border-color:#2077b6;color:#fff}}@media (min-width:760px){.SearchGroup-callToActionButton{max-width:236px;padding:0 30px;width:auto}}.SearchGroup-noResults{border-top:1px dotted #9b9b9b;color:#5d5d5d;font-size:14px;font-weight:500;padding-top:10px}.SearchGroup-noResults span{font-weight:700}.SearchResult-searchResult{border-bottom:1px dashed #9b9b9b;margin-bottom:20px;padding-bottom:20px}@media (min-width:760px){.SearchResult-searchResult{display:flex;flex-direction:row;margin-bottom:30px;padding-bottom:30px}}@media (min-width:1020px){.SearchResult-searchResult{margin-bottom:40px;padding-bottom:40px}}@media (min-width:1340px){.SearchResult-searchResult{margin-left:-30px}}.SearchResult-searchResult:last-child{border-bottom:0;padding-bottom:0}.SearchResult-searchResult.SearchResult-standardVariant{justify-content:space-between}@media (min-width:1340px){.SearchResult-searchResult.SearchResult-standardVariant{margin-left:0}}.SearchResult-searchResultCard{margin-bottom:10px}.SearchResult-standardVariant .SearchResult-searchResultCard{height:150px;padding-bottom:50%}@media (min-width:760px){.SearchResult-searchResultCard{margin-bottom:-20px;order:2;width:calc(33.33333% - 15px)}.SearchResult-standardVariant .SearchResult-searchResultCard{flex:1 1 300px;padding-bottom:inherit}}@media (min-width:1020px){.SearchResult-standardVariant .SearchResult-searchResultCard{margin-bottom:20px}}@media (min-width:1340px){.SearchResult-searchResultCard{width:calc(30% - 15px)}.SearchResult-standardVariant .SearchResult-searchResultCard{flex:1 1 300px}}.PlayButton-container{border-top:6px solid #fcb700;height:100%;left:0;position:absolute;top:0;width:100%;z-index:1}.PlayButton-base{align-items:center;background-color:#fcb700;color:#fff;display:flex;font-size:12px;height:40px;justify-content:center;position:absolute;right:0;top:-5px;transition:all .15s linear;width:40px;z-index:1}.PlayButton-base:focus .PlayButton-flyout,.PlayButton-base:hover .PlayButton-flyout,.PlayButton-basebutton:focus .PlayButton-flyout,.PlayButton-basebutton:hover .PlayButton-flyout{color:#071d39;transform:scaleX(1);transition:color .15s linear .15s,transform .15s linear}.PlayButton-flyout{background-color:#fcb700;color:#071d39;font-size:9px;font-weight:800;height:100%;letter-spacing:1px;line-height:1;position:absolute;right:35px;text-align:left;text-transform:uppercase;top:0;transform:scaleX(0);transform-origin:center right;transition:color .15s linear,transform .15s linear .15s;width:90px;z-index:1}.PlayButton-flyout,.PlayButton-icon{align-items:center;display:flex;justify-content:center}.PlayButton-icon{border:2px solid #fcb700;height:30px;transition:border .15s linear;width:30px;z-index:2}.PlayButton-icon:focus,.PlayButton-icon:hover,.PlayButton-iconbutton:focus,.PlayButton-iconbutton:hover{border:2px solid #fff}@media (min-width:760px){.SearchResult-searchResultContent{margin-right:30px;width:calc(66.66667% - 15px)}.SearchResult-standardVariant .SearchResult-searchResultContent{flex:1 1 340px}}@media (min-width:1340px){.SearchResult-searchResultContent{width:calc(70% - 15px)}.SearchResult-standardVariant .SearchResult-searchResultContent{flex:1 0 410px}}.SearchResult-searchHighlight{background-color:#e7ecf1}.SearchResult-searchResultEyebrow{color:#732634;font-size:12px;font-weight:500;letter-spacing:2px;line-height:1.116;margin-bottom:10px;text-transform:uppercase}.SearchResult-standardVariant .SearchResult-searchResultEyebrow{color:#005594;font-weight:700;letter-spacing:1px}.SearchResult-searchResultTitle{color:#171717;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:20px;font-weight:500;line-height:1.3;margin-bottom:10px}.SearchResult-standardVariant .SearchResult-searchResultTitle{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-weight:600}@media (min-width:1020px){.SearchResult-standardVariant .SearchResult-searchResultTitle{margin-bottom:10px}.SearchResult-searchResultTitle{font-size:26px;line-height:1.23;margin-bottom:20px}}.SearchResult-searchResultPreview{color:#5d5d5d;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:18px;font-weight:400;line-height:1.611;margin-bottom:0;margin-top:0}.SearchResult-standardVariant .SearchResult-searchResultPreview{margin-bottom:10px}.SearchResult-byline{font-size:12px}.SearchResult-author{color:#005594;font-family:Lyon,Helvetica,Arial,sans-serif;font-weight:600;letter-spacing:1px}.SearchResult-publishedDate{color:#747474;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-weight:600;text-transform:uppercase}.SearchResult-searchResultFrom{color:#b2b2b2;font-size:12px;font-weight:500;letter-spacing:2px;line-height:1.33;margin-top:15px;text-transform:uppercase}@media (min-width:1020px){.SearchResult-searchResultFrom{margin-top:25px}}.SearchResult-searchResultFrom a{color:#000}.SearchResult-searchResultFrom a:hover{color:#d1bb7e}.SearchResult-searchResultImage{background-position:50% 50%;background-size:cover;margin-bottom:10px;padding-bottom:50%;width:100%}@media (min-width:760px){.SearchResult-searchResultImage{margin-bottom:20px}}.SearchDropDown-dropDownContainer .Card-mediaContainer{background-position:50% 50%;background-size:cover;padding-bottom:50%}.SearchDropDown-dropDownContainer .Card-mediaContainer .Card-placeholder{position:absolute}
.BoxInline-container{margin:30px auto auto;max-width:300px}@media (max-width:359px){.BoxInline-container{margin-bottom:20px}}@media (min-width:1020px){.BoxInline-container{margin:0}}.BoxInline-container [id*=div-gpt-boxinline]>div{margin-bottom:40px}
.BoxRail-container,.BoxRail-container-left,.BoxRail-container-right{flex:1 1 auto;position:relative;width:100%}@media only screen and (min-width:760px) and (max-width:1019px){.BoxRail-container,.BoxRail-container-left,.BoxRail-container-right{left:calc(6.66667% + 26px)}.BoxRail-container-right{left:0}}.BoxRail-container-left{right:30px}.BoxRail-container-left>div>div>div,.BoxRail-container-right>div>div>div,.BoxRail-container>div>div>div{margin-bottom:30px}@media (min-width:360px){.BoxRail-container-left>div>div>div,.BoxRail-container-right>div>div>div,.BoxRail-container>div>div>div{margin-bottom:40px}}.BoxRail-adWrapperSticky,.BoxRail-adWrapperStickyNewsAlert{position:fixed;top:130px}.BoxRail-ad{align-items:center;align-self:center;display:flex;justify-content:center;margin:0 auto;max-width:300px;width:250px}@media (min-width:760px){.BoxRail-ad{max-width:768px;min-height:150px;width:100%}}
.TableHeader-container{border-top:6px solid #002f6c;margin-bottom:5px;min-height:6px;width:100%}@media (min-width:760px){.TableHeader-container{margin-bottom:10px}}.TableHeader-title{color:#002f6c;display:inline-block;font-size:20px;font-weight:800;line-height:24px;margin-bottom:0;margin-top:10px;text-transform:uppercase}@media (min-width:1020px){.TableHeader-title{font-size:24px;line-height:29px}}.TableHeader-themeTitle{color:#000}.TableHeader-link{text-decoration:none}.TableHeader-link:hover .TableHeader-title{color:#2077b6}@media (prefers-color-scheme:dark){.webview .TableHeader-themeTitle{background-color:#000;color:#dce0e4}}
.BasicTable-basicTable,.BasicTable-tableWrapper{position:relative}@media (max-width:1019px){.BasicTable-tableWrapper{overflow-x:auto;overflow-y:visible}}.BasicTable-portfolioTableWrapper{position:relative}.BasicTable-table{width:100%}.BasicTable-tableHeadingSortable{cursor:pointer}.BasicTable-portfolioTd{text-align:center!important}.BasicTable-portfolioHeader{display:flex}.BasicTable-portfolioHeaderJustify{justify-content:center}.BasicTable-watchlistTableHeaderJustify{justify-content:end}.BasicTable-portfolioHeaderName{text-align:center}.BasicTable-portfolioHeaderSortIcon{margin-bottom:auto;margin-top:auto}.BasicTable-articleContainer{overflow-x:auto;overflow-y:visible}.BasicTable-articleContainer .BasicTable-tableHeading{border-bottom:1px dotted #e8e8e8}.BasicTable-articleContainer .BasicTable-tableHeading th{color:#747474;cursor:pointer;font-size:12px;font-weight:600;letter-spacing:.9px;padding:8px 15px 8px 5px;text-transform:uppercase}@media (min-width:1020px){.BasicTable-articleContainer .BasicTable-tableHeading th{font-size:12px;padding-right:50px}}.BasicTable-articleContainer .BasicTable-tableBody{margin-top:10px}.BasicTable-articleContainer .BasicTable-tableBody td{color:#747474;font-size:12px;font-weight:600;padding:12px 15px 12px 5px}.BasicTable-articleContainer .BasicTable-tableBody td:first-child{color:#000;text-transform:uppercase}@media (min-width:1020px){.BasicTable-articleContainer .BasicTable-tableBody td{font-size:12px;padding-right:50px}}.BasicTable-articleContainer .BasicTable-tableBody tr:first-child td{padding-top:15px}.BasicTable-articleContainer .BasicTable-tableBody tr:nth-child(2n){background:#f8f8f8}@media (max-width:1019px){.BasicTable-container{overflow-x:auto;overflow-y:hidden}}@media (min-width:1020px){.BasicTable-container .BasicTable-portfolioTableHeading{background:#fff;position:sticky;top:50px;z-index:200}}.BasicTable-container .BasicTable-portfolioTableHeading:after{top:unset!important}.BasicTable-container .BasicTable-tableHeading{border-bottom:none}.BasicTable-container .BasicTable-tableHeading:after{border-bottom:1px dashed #9b9b9b;content:"";display:block;height:1px;left:0;position:absolute;width:100%}.BasicTable-container .BasicTable-tableHeading th{color:#747474;font-size:12px;font-weight:600;letter-spacing:1.2px;line-height:15px;padding:8px 5px;text-transform:uppercase;white-space:nowrap}.BasicTable-container .BasicTable-tableHeading .BasicTable-portfolioHeaderTh{padding-right:0;white-space:unset!important}.BasicTable-container .BasicTable-tableHeading th:first-child{padding-left:10px}.BasicTable-container .BasicTable-tableHeading th:last-child{padding-right:10px}.BasicTable-container .BasicTable-tableBody tr:nth-child(2n){background-color:#f8f8f8}.BasicTable-container .BasicTable-tableBody td{height:30px;padding:5px;white-space:nowrap}.BasicTable-container .BasicTable-tableBody tr:first-child td{padding-top:20px}.BasicTable-container .BasicTable-tableBody tr td:first-child{padding-left:10px}.BasicTable-container .BasicTable-tableBody tr td:last-child{padding-right:10px}@media (min-width:760px){.BasicTable-container .BasicTable-tableBody tr td:first-child{padding-left:8px}.BasicTable-container .BasicTable-tableBody tr td:last-child{padding-right:8px}}@media (min-width:1340px){.BasicTable-container .BasicTable-tableBody tr td:first-child{padding-left:10px}.BasicTable-container .BasicTable-tableBody tr td:last-child{padding-right:10px}}.BasicTable-container .BasicTable-textData{color:#171717;font-size:12px;font-weight:600;line-height:15px;text-align:right;text-align:left}.BasicTable-container .BasicTable-numData{color:#171717;font-size:12px;font-weight:600;line-height:15px;text-align:right}.BasicTable-container::-webkit-scrollbar{height:6px}.BasicTable-container::-webkit-scrollbar-track{background:none;border-top:1px dashed #9b9b9b}.BasicTable-container::-webkit-scrollbar-thumb{background:#cfd8e2}.BasicTable-floatingTable{background:linear-gradient(90deg,#fff,#fff 80%,#fff0);left:0;position:absolute;top:0;z-index:2}.BasicTable-floatingTable .BasicTable-tableHeading:after{width:99%}.BasicTable-floatingTable th{text-align:left}.BasicTable-floatingTable .BasicTable-tableBody tr:nth-child(2n){background:none}.BasicTable-portfolioScroll{width:15px!important}.BasicTable-scrollGradient{background:linear-gradient(270deg,#fff 10%,#ffffff80 60%,#fff0);height:calc(100% - 6px);pointer-events:none;position:absolute;right:0;top:0;width:60px}@supports (-ms-high-contrast:none){.BasicTable-scrollGradient{background:#0000}}@supports (-ms-accelerator:true){.BasicTable-scrollGradient{background:#0000}}@media (min-width:760px){.BasicTable-scrollGradient{width:80px}}.BasicTable-quoteGain{color:#008456}.BasicTable-quoteDecline,.BasicTable-quoteGain{font-size:12px;font-weight:600;line-height:15px;text-align:right}.BasicTable-quoteDecline{color:#ce2b2b}.BasicTable-watchlistTableQuote{text-align:center!important}.BasicTable-changePositive{border-bottom:11px solid #008456;border-left:6px solid #0000;border-right:6px solid #0000;bottom:14px;height:0;margin-left:5px;overflow:hidden;position:relative;width:0}.BasicTable-changeNegative{border-bottom:0;border-top:11px solid #ce2b2b;bottom:0;top:12px}.BasicTable-symbol{text-align:left}.BasicTable-symbol a{word-wrap:break-word;color:#4a4a4a;font-size:12px;font-weight:700;letter-spacing:0;line-height:15px;max-width:75px;text-transform:uppercase;width:10%}.BasicTable-symbol a:focus,.BasicTable-symbol a:hover{color:#2077b6}.BasicTable-name{font-size:12px;font-weight:700;letter-spacing:0;line-height:15px}.BasicTable-unchanged{color:#747474;text-transform:uppercase}.BasicTable-portfolioSummary,.BasicTable-portfolioSummaryNegative,.BasicTable-portfolioSummaryPositive{color:#000;font-size:14px!important;font-style:normal;font-weight:700;letter-spacing:0;line-height:20px!important;padding-top:6px!important;text-align:center;text-transform:none!important}@media (max-width:759px){.BasicTable-portfolioSummary,.BasicTable-portfolioSummaryNegative,.BasicTable-portfolioSummaryPositive{font-size:12px!important;letter-spacing:0!important;line-height:16px!important}}.BasicTable-portfolioSummaryPositive{color:#008456}.BasicTable-portfolioSummaryNegative{color:#ce2b2b}@media (prefers-color-scheme:dark){.webview .BasicTable-articleContainer .BasicTable-tableBody td:first-child{color:#fff}.webview .BasicTable-articleContainer .BasicTable-tableBody tr:nth-child(2n){background-color:#272727}.webview .BasicTable-scrollGradient{background:linear-gradient(270deg,#000 10%,#00000080 60%,#0000)}}.BasicTable-symbolName{display:-webkit-box}.BasicTable-addWatchlist{left:2px;position:relative;top:2px}.BasicTable-desktopOnly{display:none}@media (min-width:1020px){.BasicTable-desktopOnly{display:inline-block}.BasicTable-dropdownStyles{width:150px!important}}@media (max-width:1019px){.BasicTable-dropdownStyles a{align-self:center;font-size:14px;max-width:-moz-fit-content;max-width:fit-content;text-transform:none;width:-moz-fit-content;width:fit-content}}.BasicTable-dataRow{display:flex;justify-content:space-between}.BasicTable-fairValueQuote .BasicTable-tableBody tr:first-child td{padding:4px}.BasicTable-fairValueQuote .BasicTable-numData{text-align:left}.BasicTable-fairValueQuote .BasicTable-numData span{font-size:10px}
.Card-card{border-top:1px dashed #8b8b8b80;box-sizing:border-box;display:block;font-weight:600;padding:15px 0}.Card-card .Card-title{font-family:Proxima Nova,Helvetica,Arial,sans-serif}@media (min-width:760px){.Card-card{padding:0}}@media (min-width:1020px){.Card-card{padding:30px 0}}.Card-buffett:hover .title{text-decoration:underline}.Card-package{border-color:#ffffff80}.Card-package .Card-title{color:#fff}.Card-title{color:#2e2e2e}.Card-title:focus,.Card-title:hover{color:#2e2e2e;text-decoration:underline}.Card-titleAndFooter{display:flex;flex-direction:column;justify-content:space-between}.Card-leftSquareMedia .Card-titleAndFooter,.Card-rectangleToLeftSquareMedia .Card-titleAndFooter{height:auto}.Card-mediaContainer{display:block;line-height:0;margin-bottom:10px;position:relative;width:100%}.Card-mediaContainer:hover+.Card-textContent .Card-title{text-decoration:underline}.Card-mediaContainer:hover .Card-aboveImageTitle a{color:#fff;text-decoration:underline}@media (min-width:760px){.Card-mediaContainer{margin-bottom:20px}}.Card-buffett .mediaContainer:hover+.textContent .title{text-decoration:underline}.Card-mediaContainerPackage{display:block;margin:0 -20px 20px;position:relative}.Card-mediaContainerPackage:hover+.Card-textContent .Card-title{text-decoration:underline}.Card-rectangleMediaContainer,.Card-squareMediaContainer{background-position:50%;height:100%;width:100%}@media (max-width:759px){.Card-rectangleMediaContainer{margin-bottom:8px}}.Card-imageGradient{background:linear-gradient(180deg,#071d3900 0,#071d3980 46%,#071d39 97%,#071d39);bottom:0;filter:progid:dximagetransform.microsoft.gradient(startColorstr="#00071d39",endColorstr="#071d39",GradientType=0);height:50%;position:absolute;width:100%}.Card-videoFooter{background:linear-gradient(180deg,#1e579900 0,#000);bottom:0;filter:progid:dximagetransform.microsoft.gradient(startColorstr="#001e5799",endColorstr="#000000",GradientType=0);height:40px;padding-left:10px;padding-top:10px;position:absolute;width:100%}@media (min-width:1340px){.Card-videoFooter{height:50px;padding-top:25px}}.Card-videoFooterContent{bottom:10px;left:10px;position:absolute}@media (min-width:1020px){.Card-videoFooterContent{bottom:20px;left:20px}.Column-squareLeadRight .Card-videoFooterContent,.Column-threeUp .Card-videoFooterContent{bottom:10px;left:10px}}.Card-videoLabel{color:#fcb700;font-size:10px;font-weight:800;letter-spacing:1.67px;line-height:12px}@media (min-width:760px){.Card-videoLabel{font-size:12px;letter-spacing:2px;line-height:15px}}.Card-videoTime{color:#fffc;font-weight:600;letter-spacing:1.2px;padding-left:10px}@media (min-width:760px){.Card-videoTime{letter-spacing:1.44px}}.Card-totalTime{padding-left:5px}.Card-totalTime:before{content:"|";display:inline-block;margin-right:5px}.Card-byline,.Card-threeUpCardFooterStyle .Card-threeUpBylineStyle{color:#005594;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;line-height:1.15;margin-right:10px}.Card-byline a,.Card-threeUpCardFooterStyle .Card-threeUpBylineStyle a{color:inherit}.Card-byline a:hover,.Card-threeUpCardFooterStyle .Card-threeUpBylineStyle a:hover{text-decoration:underline}@media (min-width:1020px){.Card-byline,.Card-threeUpCardFooterStyle .Card-threeUpBylineStyle{font-size:12px}}@media (min-width:1340px){.Card-byline,.Card-threeUpCardFooterStyle .Card-threeUpBylineStyle{margin-top:1px}}.Card-bylinePackage{color:#fcb700}.Card-time{color:#747474;font-size:10px;font-weight:600;letter-spacing:1px;line-height:15px;text-transform:uppercase}@media (min-width:1020px){.Card-time{font-size:11px}}.Card-timePackage{color:#b9c7d5}.Card-sponsoredLogo{color:#53c;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;line-height:1.4;margin:0 0 10px;margin-top:17px!important}@media (min-width:360px){.Card-sponsoredLogo{font-size:12px}}@media (min-width:760px){.Card-sponsoredLogo{font-size:14px;margin:8px 0 10px!important;padding-top:3px}}@media (min-width:1020px){.Card-sponsoredLogo{font-size:14px;margin-top:0!important;padding-top:11px}}@media (min-width:1340px){.Card-sponsoredLogo{font-size:16px;margin-top:0;padding-top:9px}}.Card-sponsoredLogo img{bottom:-2px;display:inline-block;margin-left:10px;max-height:20px;max-width:calc(100% - 80px);position:relative}@media (min-width:1020px){.Card-sponsoredLogo img{max-width:calc(100% - 85px)}}.Card-sponsoredLogo:hover{text-decoration:underline}.Card-packageTitle{bottom:0;color:#fcb700;font-size:12px;font-weight:700;left:20px;letter-spacing:.5px;line-height:1.25;position:absolute;text-transform:uppercase}.Card-packageTitle:hover{text-decoration:underline}.Card-live img{height:12px;margin-bottom:10px;max-height:12px;max-width:42px;width:42px}.Card-titleOnly{font-size:17px;font-weight:600;line-height:1.2;line-height:22px;padding:15px 0}@media (min-width:760px){.Card-titleOnly{font-size:17px}}@media (min-width:1020px){.Card-titleOnly{font-size:16px}}@media (min-width:1340px){.Card-titleOnly{font-size:18px;line-height:24px;padding:20px 0}}.Card-pro{margin-bottom:-6px;position:relative;top:-7px}@media (min-width:760px){.Card-pro{margin-top:8px;max-height:none}}.Card-titleOnlyUltraDense{font-size:17px;font-weight:600;line-height:1.2;line-height:1.3;max-height:100px;padding:16px 0}@media (min-width:760px){.Card-titleOnlyUltraDense{font-size:17px}}@media (min-width:1020px){.Card-titleOnlyUltraDense{font-size:16px}}@media (min-width:1340px){.Card-titleOnlyUltraDense{font-size:18px}}@media (min-width:760px){.Card-titleOnlyUltraDense{font-weight:600;height:140px;max-height:140px;padding-top:15px}.Card-titleOnlyUltraDense:last-child{border-bottom:1px dashed #8b8b8b80}}@media (min-width:760px) and (min-width:760px){.Card-titleOnlyUltraDense .Card-textContent .Card-titleAndFooter .Card-pro{position:relative;top:-25px}}@media (min-width:1020px){.Card-titleOnlyUltraDense{height:140px;max-height:140px;padding-top:20px}}@media (min-width:1340px){.Card-titleOnlyUltraDense{height:130px;line-height:24px;max-height:130px}.Card-titleOnlyUltraDense .Card-textContent .Card-titleAndFooter .Card-pro{position:relative;top:-23px}}@media (max-width:759px){.Card-titleOnlyImageDense{font-size:17px;font-weight:600;line-height:24px}}@media (min-width:760px){.Card-titleOnlyTopBorder{border-top:none;padding-top:0}}.Card-titleOnlyNoBorder{border-top:none;font-weight:600;padding-top:20px}@media (min-width:760px){.Card-titleOnlyNoBorder{height:110px;max-height:110px;padding-bottom:29px;padding-top:0}}@media (min-width:1020px){.Card-titleOnlyNoBorder{height:110px;max-height:110px;padding-bottom:27px}}@media (min-width:1340px){.Card-titleOnlyNoBorder{height:100px;line-height:24px;max-height:100px;padding-bottom:34px}}.Card-titleOnlyTopSolidBorder{border-top:1px solid #e8e8e8}@media (min-width:760px){.Card-titleOnlyTopSolidBorder{border-top:none;padding-top:0}}.Card-titleOnlyHalf{float:left;padding-right:30px;width:50%}@media (min-width:1020px){.Card-titleOnlyHalf{width:100%}}@media (min-width:1340px){.Card-titleOnlyHalf{width:50%}}.Card-titleOnlyHalf:last-child{padding-right:0}.Card-titleOnlyHalf:last-child .Card-textContent{border-left:1px dashed #8b8b8b80;padding-left:30px}@media (min-width:1020px){.Card-titleOnlyHalf:last-child .Card-textContent{border-left:none;padding-left:0}}@media (min-width:1340px){.Card-titleOnlyHalf:last-child .Card-textContent{border-left:1px dashed #8b8b8b80;padding-left:30px}}.Card-titleOnlyHalfPackage:last-child .Card-textContent{border-color:#ffffff80}.Card-titleByline{font-size:16px;line-height:1.2}@media (min-width:760px){.Card-titleByline{font-size:16px}}@media (min-width:1020px){.Card-titleByline{font-size:16px}}@media (min-width:1340px){.Card-titleByline{font-size:24px}}.Card-titleBylinePackage{border-top:1px dashed #ffffff80}.Card-titleBylineNoBorder{border-top:none;font-size:19px;line-height:1.2;padding-top:0}@media (min-width:760px){.Card-titleBylineNoBorder{font-size:18px}}@media (min-width:1020px){.Card-titleBylineNoBorder{font-size:21px}}@media (min-width:1340px){.Card-titleBylineNoBorder{font-size:24px}}.Card-titleBylineRight{border-top:1px dashed #8b8b8b80;font-size:16px;line-height:1.2;width:100%}@media (min-width:760px){.Card-titleBylineRight{font-size:16px}}@media (min-width:1020px){.Card-titleBylineRight{font-size:22px}}@media (min-width:1340px){.Card-titleBylineRight{font-size:24px}}@media (min-width:760px){.Card-titleBylineRight{border-top:none;padding-top:0}}.Card-titleBylineRight .Card-textContent{padding-left:0}@media (min-width:760px){.Card-titleBylineRight .Card-textContent{border-left:1px dashed #8b8b8b80;padding-left:15px}}@media (min-width:1340px){.Card-titleBylineRight .Card-textContent{padding-left:30px}}.Card-largeTitleByline{border-top:1px dashed #8b8b8b80;font-size:16px;line-height:1.2}@media (min-width:760px){.Card-largeTitleByline{font-size:26px}}@media (min-width:1020px){.Card-largeTitleByline{font-size:26px}}@media (min-width:1340px){.Card-largeTitleByline{font-size:36px}.Card-largeTitleByline .Card-investingClubPill,.Card-largeTitleByline .Card-proPill,.Card-largeTitleByline .Card-watchLivePill{margin-top:-.2em;vertical-align:middle}.Card-largeTitleByline{line-height:40px}}.Card-titleBylineHalf{flex:1 0 40%;font-size:16px;line-height:1.2;max-width:50%}@media (min-width:760px){.Card-titleBylineHalf{font-size:16px}}@media (min-width:1020px){.Card-titleBylineHalf{font-size:16px}}@media (min-width:1340px){.Card-titleBylineHalf{font-size:16px}}.Card-threeUpCardFooterStyle .Card-titleBylineHalf .Card-threeUpBylineStyle,.Card-titleBylineHalf .Card-byline,.Card-titleBylineHalf .Card-threeUpCardFooterStyle .Card-threeUpBylineStyle,.Card-titleBylineHalf .Card-time{display:block}@media (min-width:760px){.Card-threeUpCardFooterStyle .Card-titleBylineHalf .Card-threeUpBylineStyle,.Card-titleBylineHalf .Card-byline,.Card-titleBylineHalf .Card-threeUpCardFooterStyle .Card-threeUpBylineStyle,.Card-titleBylineHalf .Card-time{display:inline-block}}.Card-featuredRectangleMedia{border-top:none;font-size:22px;line-height:1.2;padding-bottom:9px;padding-top:0;width:100%}@media (min-width:760px){.Card-featuredRectangleMedia{font-size:22px}}@media (min-width:1020px){.Card-featuredRectangleMedia{font-size:22px}}@media (min-width:1340px){.Card-featuredRectangleMedia{font-size:30px}.Card-featuredRectangleMedia .Card-investingClubPill,.Card-featuredRectangleMedia .Card-proPill,.Card-featuredRectangleMedia .Card-watchLivePill{margin-top:-.2em;vertical-align:middle}}.Card-featuredRectangleMedia .Card-imageContainer{position:relative}.Card-featuredRectangleMedia .Card-mediaContainer{margin:initial;width:100%}@media (min-width:760px){.Card-featuredRectangleMedia{padding-bottom:14px}}.Card-specialReportsRiver{border-bottom:1px dashed #8b8b8b80;border-top:none;font-size:17px;line-height:1.2;margin:0 0 18px;padding:0}@media (min-width:760px){.Card-specialReportsRiver{font-size:18px}}@media (min-width:1020px){.Card-specialReportsRiver{font-size:18px}}@media (min-width:1340px){.Card-specialReportsRiver{font-size:18px}}.Card-specialReportsRiver .Card-mediaContainer{margin-bottom:18px;width:auto}@media (min-width:760px){.Card-specialReportsRiver .Card-mediaContainer{margin-bottom:24px}}.Card-specialReportsRiver .Card-cardFooter,.Card-specialReportsRiver .Card-threeUpCardFooterStyle{font-size:12px;line-height:12px;margin-bottom:9px;margin-top:9px}@media (min-width:360px){.Card-specialReportsRiver{display:flex;line-height:20px}}@media (min-width:760px){.Card-specialReportsRiver{line-height:22px;margin-bottom:24px;max-height:422px}.Card-specialReportsRiver .Card-cardFooter,.Card-specialReportsRiver .Card-threeUpCardFooterStyle{margin-bottom:15px;margin-top:15px}}@media (min-width:1020px){.Card-specialReportsRiver{max-height:428px}.Card-specialReportsRiver .Card-cardFooter,.Card-specialReportsRiver .Card-threeUpCardFooterStyle{margin-bottom:16px;margin-top:16px}}@media (min-width:1340px){.Card-specialReportsRiver{max-height:218px}.Card-specialReportsRiver .Card-cardFooter,.Card-specialReportsRiver .Card-threeUpCardFooterStyle{margin-bottom:18px;margin-top:18px}}@media (min-width:360px){.Card-specialReportsRiver .Card-bylineContainer{display:none}}@media (min-width:760px){.Card-specialReportsRiver .Card-bylineContainer,.Card-specialReportsRiver .Card-bylineContainer .Card-byline,.Card-specialReportsRiver .Card-bylineContainer .Card-threeUpCardFooterStyle .Card-threeUpBylineStyle,.Card-threeUpCardFooterStyle .Card-specialReportsRiver .Card-bylineContainer .Card-threeUpBylineStyle{display:inline}}.Card-specialReportsRiver.Card-specialReportsRiver .Card-imageContainer{position:relative}@media (min-width:360px){.Card-specialReportsRiver.Card-specialReportsRiver .Card-imageContainer{height:100px;margin-right:15px;width:100px}}@media (min-width:760px){.Card-specialReportsRiver.Card-specialReportsRiver .Card-imageContainer{height:116px;margin-right:32px;width:206px}}@media (min-width:1020px){.Card-specialReportsRiver.Card-specialReportsRiver .Card-imageContainer{height:107px;margin-right:30px;width:190px}}@media (min-width:1340px){.Card-specialReportsRiver.Card-specialReportsRiver .Card-imageContainer{height:169px;width:300px}}@media (min-width:760px){.Card-specialReportsRiver.Card-specialReportsRiver .Card-bylineDivider{color:#b2b2b2;font-size:12px;margin:0 -5px 0 5px}}@media (min-width:360px){.Card-specialReportsRiver.Card-specialReportsRiver .Card-titleContainer{min-height:80px}}@media (min-width:760px){.Card-specialReportsRiver.Card-specialReportsRiver .Card-titleContainer{min-height:90px}}@media (min-width:1020px){.Card-specialReportsRiver.Card-specialReportsRiver .Card-titleContainer{min-height:80px}}@media (min-width:1340px){.Card-specialReportsRiver.Card-specialReportsRiver .Card-titleContainer{font-size:22px;line-height:26px;min-height:140px}}.Card-featuredRectangleMediaImagedense{font-size:22px;line-height:26px}.Card-featuredRectangleMediaImagedense .Card-mediaContainer{margin-bottom:15px}@media (min-width:760px){.Card-featuredRectangleMediaImagedense{line-height:28px;max-height:422px}}@media (min-width:1020px){.Card-featuredRectangleMediaImagedense{font-size:28px;line-height:34px;max-height:428px}}@media (min-width:1340px){.Card-featuredRectangleMediaImagedense{font-size:30px;line-height:36px;max-height:520px}.Card-featuredRectangleMediaImagedense .Card-investingClubPill,.Card-featuredRectangleMediaImagedense .Card-proPill,.Card-featuredRectangleMediaImagedense .Card-watchLivePill{margin-top:-.2em;vertical-align:middle}}@media (min-width:760px){.Card-featuredRectangleMediaImagedense.Card-featuredRectangleMedia .Card-imageContainer{height:213px}}@media (min-width:1020px){.Card-featuredRectangleMediaImagedense.Card-featuredRectangleMedia .Card-imageContainer{height:200px}}@media (min-width:1340px){.Card-featuredRectangleMediaImagedense.Card-featuredRectangleMedia .Card-imageContainer{height:310px}}.Card-featuredRectangleMediaPackage{display:block}.Card-featuredSecondaryRectangleMedia{border-top:none;font-size:22px;line-height:1.2;padding-top:0}@media (min-width:760px){.Card-featuredSecondaryRectangleMedia{font-size:22px}}@media (min-width:1020px){.Card-featuredSecondaryRectangleMedia{font-size:22px}}@media (min-width:1340px){.Card-featuredSecondaryRectangleMedia{font-size:24px}}.Card-featuredSecondaryRectangleMedia .Card-mediaContainer{width:auto}@media (min-width:760px){.Card-featuredSecondaryRectangleMedia .Card-mediaContainer{width:100%}}.Card-featuredSecondaryRectangleMediaPackage{display:block}@media (min-width:1340px){.Card-featuredSecondaryRectangleMediaPackage{line-height:28px}}.Card-cardFooter,.Card-threeUpCardFooterStyle{display:flex;flex-flow:row wrap;margin:15px 0}.Card-cardFooter .Card-byline,.Card-threeUpCardFooterStyle .Card-byline,.Card-threeUpCardFooterStyle .Card-threeUpBylineStyle{padding-bottom:3px}@media (max-width:1020px){.Card-cardFooter .Card-byline,.Card-threeUpCardFooterStyle .Card-byline,.Card-threeUpCardFooterStyle .Card-threeUpBylineStyle{display:block}}@media (max-width:759px){.Card-cardFooter .Card-byline,.Card-threeUpCardFooterStyle .Card-byline,.Card-threeUpCardFooterStyle .Card-threeUpBylineStyle{display:inline-block}}@media (min-width:1340px){.Card-cardFooter .Card-byline,.Card-threeUpCardFooterStyle .Card-byline,.Card-threeUpCardFooterStyle .Card-threeUpBylineStyle{padding-bottom:0}}.Card-threeUpCardFooterStyle .Card-threeUpBylineStyle{display:block}.Card-rectangleMedia{border-top:none;font-size:16px;line-height:1.2;margin-top:30px;padding-top:0}@media (min-width:760px){.Card-rectangleMedia{font-size:16px}}@media (min-width:1020px){.Card-rectangleMedia{font-size:16px}}@media (min-width:1340px){.Card-rectangleMedia{font-size:24px;margin-top:0}}.Card-rectangleMedia.Card-standardBreakerCard{margin-top:0;padding-bottom:0}@media (min-width:760px){.Card-rectangleMedia.Card-standardBreakerCard{height:390px;max-height:390px}}@media (min-width:1340px){.Card-rectangleMedia.Card-standardBreakerCard{height:360px;max-height:360px}}.Card-rectangleMedia.Card-standardBreakerCard .Card-title{display:inline;font-size:18px;line-height:1.2}@media (min-width:760px){.Card-rectangleMedia.Card-standardBreakerCard .Card-title{font-size:19px;height:133px;max-height:133px}}@media (min-width:1020px){.Card-rectangleMedia.Card-standardBreakerCard .Card-title{height:190px;max-height:190px}}@media (min-width:1340px){.Card-rectangleMedia.Card-standardBreakerCard .Card-title{font-size:24px;height:150px;max-height:150px}}@media (min-width:760px){.Card-rectangleMedia{margin-top:0}}.Card-rectangleMediaUltraDense .Card-textContent .Card-titleAndFooter .Card-pro{position:relative;top:-25px}@media (max-width:759px){.Card-rectangleMediaUltraDense .Card-textContent .Card-titleAndFooter .Card-pro{display:inline;position:relative;top:-15px}}@media (max-width:1339px){.Card-rectangleMediaUltraDense .Card-textContent .Card-titleAndFooter .Card-cardFooter,.Card-rectangleMediaUltraDense .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle{position:relative;top:30px}}@media (max-width:1019px){.Card-rectangleMediaUltraDense .Card-textContent .Card-titleAndFooter .Card-cardFooter,.Card-rectangleMediaUltraDense .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle{position:relative;top:50px}}@media only screen and (min-width:1000px) and (max-width:1020px){.Card-rectangleMediaUltraDense .Card-textContent .Card-titleAndFooter .Card-cardFooter,.Card-rectangleMediaUltraDense .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle{position:relative;top:35px}}@media (max-width:759px){.Card-rectangleMediaUltraDense .Card-textContent .Card-titleAndFooter .Card-cardFooter,.Card-rectangleMediaUltraDense .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle{position:relative;top:0}}@media (min-width:760px){.Card-rectangleMediaUltraDense .Card-textContent .Card-titleAndFooter .Card-bylinePosition{position:relative;top:30px}}@media (min-width:1020px){.Card-rectangleMediaUltraDense .Card-textContent .Card-titleAndFooter .Card-bylinePosition{position:relative;top:-15px}}@media (min-width:1340px){.Card-rectangleMediaUltraDense .Card-textContent .Card-titleAndFooter .Card-bylinePosition{position:relative;top:-30px}}@media (min-width:760px){.Card-rectangleMediaUltraDense.Card-standardBreakerCard .Card-title{font-size:24px;line-height:26px}}@media (min-width:1340px){.Card-rectangleMediaUltraDense.Card-standardBreakerCard .Card-title{font-size:24px;line-height:30px}}.Card-rectangleMediaPackage{display:block;font-size:22px;line-height:1.2;margin-top:0}@media (min-width:760px){.Card-rectangleMediaPackage{font-size:16px}}@media (min-width:1020px){.Card-rectangleMediaPackage{font-size:22px}}@media (min-width:1340px){.Card-rectangleMediaPackage{font-size:24px}}.Card-rectangleMediaHalf{float:left;font-size:16px;line-height:1.2;padding-right:15px;width:50%}@media (min-width:760px){.Card-rectangleMediaHalf{font-size:16px}}@media (min-width:1020px){.Card-rectangleMediaHalf{font-size:16px}}@media (min-width:1340px){.Card-rectangleMediaHalf{font-size:24px}}.Card-rectangleMediaHalf .Card-byline,.Card-rectangleMediaHalf .Card-threeUpCardFooterStyle .Card-threeUpBylineStyle,.Card-rectangleMediaHalf .Card-time,.Card-threeUpCardFooterStyle .Card-rectangleMediaHalf .Card-threeUpBylineStyle{display:block}@media (min-width:760px){.Card-rectangleMediaHalf{border-top:none;line-height:20px;padding-top:0}.Card-rectangleMediaHalf .Card-byline,.Card-rectangleMediaHalf .Card-threeUpCardFooterStyle .Card-threeUpBylineStyle,.Card-rectangleMediaHalf .Card-time,.Card-threeUpCardFooterStyle .Card-rectangleMediaHalf .Card-threeUpBylineStyle{display:inline-block}}@media (min-width:1020px){.Card-rectangleMediaHalf{line-height:1.2}}.Card-rectangleMediaHalf:last-of-type{padding-left:15px;padding-right:0}.Card-rectangleMediaHalfNoBorder{border-top:none;float:left;font-size:14px;line-height:1.2;padding-top:0;width:calc(50% - 15px)}@media (min-width:760px){.Card-rectangleMediaHalfNoBorder{font-size:14px}}@media (min-width:1020px){.Card-rectangleMediaHalfNoBorder{font-size:14px}}@media (min-width:1340px){.Card-rectangleMediaHalfNoBorder{font-size:14px}}.Card-rectangleMediaHalfNoBorder .Card-byline,.Card-rectangleMediaHalfNoBorder .Card-threeUpCardFooterStyle .Card-threeUpBylineStyle,.Card-rectangleMediaHalfNoBorder .Card-time,.Card-threeUpCardFooterStyle .Card-rectangleMediaHalfNoBorder .Card-threeUpBylineStyle{display:block}@media (min-width:760px){.Card-rectangleMediaHalfNoBorder .Card-byline,.Card-rectangleMediaHalfNoBorder .Card-threeUpCardFooterStyle .Card-threeUpBylineStyle,.Card-rectangleMediaHalfNoBorder .Card-time,.Card-threeUpCardFooterStyle .Card-rectangleMediaHalfNoBorder .Card-threeUpBylineStyle{display:inline-block}}@media only screen and (max-width:759px){.Card-imageContainer{position:relative}}.Card-leftRectangleToTopMedia{border-top:none;font-size:19px;line-height:1.2;padding-top:0}@media (min-width:760px){.Card-leftRectangleToTopMedia{font-size:18px}}@media (min-width:1020px){.Card-leftRectangleToTopMedia{font-size:18px}}@media (min-width:1340px){.Card-leftRectangleToTopMedia{font-size:24px}}@media (min-width:760px){.Card-leftRectangleToTopMedia{display:flex;flex-direction:row;flex-grow:1}}.Card-leftRectangleToTopMedia .Card-mediaContainer{position:relative}@media (min-width:760px){.Card-leftRectangleToTopMedia .Card-mediaContainer{flex:1 1 0;margin-bottom:0;margin-right:30px}.Card-leftRectangleToTopMedia .Card-textContent{flex:1 1 0}}.Card-rectangleToRectangleMediaHalf{border-top:none;float:left;font-size:16px;line-height:1.2;margin-top:30px;padding-right:15px;padding-top:0;width:50%}@media (min-width:760px){.Card-rectangleToRectangleMediaHalf{font-size:16px}}@media (min-width:1020px){.Card-rectangleToRectangleMediaHalf{font-size:16px}}@media (min-width:1340px){.Card-rectangleToRectangleMediaHalf{font-size:24px}}@media (min-width:760px){.Card-rectangleToRectangleMediaHalf{float:none;margin-top:0;padding-right:0;width:100%}}.Card-recToRecMediaHalf:last-of-type,.Card-rectangleToRectangleMediaHalf:last-of-type{padding-left:15px;padding-right:0}@media (min-width:760px){.Card-recToRecMediaHalf:last-of-type,.Card-rectangleToRectangleMediaHalf:last-of-type{padding-left:0}}.Card-recToRecMediaHalf{border-top:none;float:left;font-size:16px;line-height:1.2;margin-top:30px;padding-right:15px;padding-top:0;width:50%}@media (min-width:760px){.Card-recToRecMediaHalf{font-size:16px}}@media (min-width:1020px){.Card-recToRecMediaHalf{font-size:16px}}@media (min-width:1340px){.Card-recToRecMediaHalf{font-size:18px}}@media (min-width:760px){.Card-recToRecMediaHalf{float:none;margin-top:0;padding-right:0;width:100%}}.Card-squareMedia{border-top:none;display:flex;flex-direction:row;font-size:16px;line-height:1.2;padding-top:0}@media (min-width:760px){.Card-squareMedia{font-size:16px}}@media (min-width:1020px){.Card-squareMedia{font-size:16px}}@media (min-width:1340px){.Card-squareMedia{font-size:24px}}.Card-squareMedia .Card-byline,.Card-squareMedia .Card-threeUpCardFooterStyle .Card-threeUpBylineStyle,.Card-squareMedia .Card-time,.Card-threeUpCardFooterStyle .Card-squareMedia .Card-threeUpBylineStyle{display:block}.Card-squareMedia .Card-mediaContainer{margin-bottom:0;margin-right:30px;width:50%}.Card-squareMedia .Card-textContent{width:50%}@media (min-width:760px){.Card-squareMedia{border-top:none;flex-direction:column;margin-top:0}.Card-squareMedia .Card-mediaContainer{margin-bottom:30px;margin-right:0;width:100%}.Card-squareMedia .Card-textContent{width:100%}.Card-squareMedia .Card-byline,.Card-squareMedia .Card-threeUpCardFooterStyle .Card-threeUpBylineStyle,.Card-squareMedia .Card-time,.Card-threeUpCardFooterStyle .Card-squareMedia .Card-threeUpBylineStyle{display:block}}@media (min-width:360px) and (max-width:759px){.Card-squareMediaImageDense{border-bottom:1px dashed #8b8b8b;border-top:1px dashed #8b8b8b;padding-bottom:15px;padding-top:15px}.Card-squareMediaImageDense .Card-byline,.Card-squareMediaImageDense .Card-threeUpCardFooterStyle .Card-threeUpBylineStyle,.Card-squareMediaImageDense .Card-time,.Card-threeUpCardFooterStyle .Card-squareMediaImageDense .Card-threeUpBylineStyle{display:inline-block}.Card-squareMediaImageDense .Card-mediaContainer{display:none}.Card-squareMediaImageDense .Card-textContent{width:100%}}@media (min-width:760px){.Card-squareMediaImageDense{font-size:20px;max-height:402px}.Card-squareMediaImageDense .Card-mediaContainer{margin-bottom:18px}.Card-squareMediaImageDense .Card-mediaContainer .Card-imageContainer{height:213px}}@media (min-width:1020px){.Card-squareMediaImageDense{font-size:20px;max-height:418px}.Card-squareMediaImageDense .Card-mediaContainer{margin-bottom:16px}.Card-squareMediaImageDense .Card-mediaContainer .Card-imageContainer{height:200px}}@media only screen and (min-width:1180px) and (max-width:1339px){.Card-squareMediaImageDense .Card-mediaContainer .Card-imageContainer{height:200px}}@media (min-width:1340px){.Card-squareMediaImageDense{font-size:24px;line-height:28px;max-height:510px}.Card-squareMediaImageDense .Card-mediaContainer{margin-bottom:17px}.Card-squareMediaImageDense .Card-mediaContainer .Card-imageContainer{height:310px}}.Card-leftSquareMedia{display:flex;font-size:16px;line-height:1.2}@media (min-width:760px){.Card-leftSquareMedia{font-size:16px}}@media (min-width:1020px){.Card-leftSquareMedia{font-size:16px}}@media (min-width:1340px){.Card-leftSquareMedia{font-size:24px}}.Card-leftSquareMedia .Card-byline,.Card-leftSquareMedia .Card-threeUpCardFooterStyle .Card-threeUpBylineStyle,.Card-leftSquareMedia .Card-time,.Card-threeUpCardFooterStyle .Card-leftSquareMedia .Card-threeUpBylineStyle{display:block}.Card-leftSquareMedia .Card-mediaContainer{margin-bottom:0;width:30%}.Card-leftSquareMedia .Card-textContent{display:flex;flex-direction:column;padding-left:30px;width:70%}.Card-leftSquareMedia .Card-titleAndFooter{flex-grow:1}@media (min-width:760px){.Card-leftSquareMedia .Card-byline,.Card-leftSquareMedia .Card-threeUpCardFooterStyle .Card-threeUpBylineStyle,.Card-leftSquareMedia .Card-time,.Card-threeUpCardFooterStyle .Card-leftSquareMedia .Card-threeUpBylineStyle{display:inline-block}}.Card-rectangleToLeftSquareMedia{border-top:none;display:flex;flex-direction:row;font-size:17px;font-weight:600;line-height:1.2;line-height:1.3;margin-top:30px;padding-top:0}@media (min-width:760px){.Card-rectangleToLeftSquareMedia{font-size:17px}}@media (min-width:1020px){.Card-rectangleToLeftSquareMedia{font-size:16px}}@media (min-width:1340px){.Card-rectangleToLeftSquareMedia{font-size:18px}}.Card-rectangleToLeftSquareMedia .Card-mediaContainer{height:103px;margin-bottom:0;margin-right:30px;min-width:103px;width:103px}@media (min-width:760px){.Card-rectangleToLeftSquareMedia .Card-mediaContainer{height:auto}}.Card-rectangleToLeftSquareMedia .Card-textContent{display:flex;flex-direction:column;margin-top:-6px}.Card-rectangleToLeftSquareMedia .Card-titleAndFooter{flex-grow:1}@media (min-width:760px){.Card-rectangleToLeftSquareMedia{border-bottom:none;flex-direction:column;margin-top:0}.Card-rectangleToLeftSquareMedia .Card-mediaContainer{margin-bottom:10px;margin-right:0;width:100%}}@media (min-width:1340px){.Card-rectangleToLeftSquareMedia{line-height:1.2}}.Card-rectangleToLeftSquareMediaUltraDense{font-weight:600}@media (min-width:360px) and (max-width:759px){.Card-rectangleToLeftSquareMediaUltraDense .Card-mediaContainer{display:none}.Card-rectangleToLeftSquareMediaUltraDense .Card-threeUpCardFooterStyle{align-items:baseline;flex-direction:row}}@media (min-width:760px){.Card-rectangleToLeftSquareMediaUltraDense{font-size:16px;line-height:22px;padding:0}.Card-rectangleToLeftSquareMediaUltraDense .Card-mediaContainerInner{height:103px}}@media (min-width:1020px){.Card-rectangleToLeftSquareMediaUltraDense{font-size:16px;line-height:22px}.Card-rectangleToLeftSquareMediaUltraDense .Card-mediaContainerInner{height:95px}}@media (min-width:1340px){.Card-rectangleToLeftSquareMediaUltraDense{font-size:18px;line-height:24px}.Card-rectangleToLeftSquareMediaUltraDense .Card-mediaContainerInner{height:150px}}.Card-featuredSquareToRectangleMedia,.Card-squareLeadMediaLeft{border-bottom:1px dashed #8b8b8b80;border-top:none;font-size:22px;line-height:1.2;padding-top:0}@media (min-width:760px){.Card-featuredSquareToRectangleMedia,.Card-squareLeadMediaLeft{font-size:22px}}@media (min-width:1020px){.Card-featuredSquareToRectangleMedia,.Card-squareLeadMediaLeft{font-size:26px}}@media (min-width:1340px){.Card-featuredSquareToRectangleMedia,.Card-squareLeadMediaLeft{font-size:30px}.Card-featuredSquareToRectangleMedia .Card-investingClubPill,.Card-featuredSquareToRectangleMedia .Card-proPill,.Card-featuredSquareToRectangleMedia .Card-watchLivePill,.Card-squareLeadMediaLeft .Card-investingClubPill,.Card-squareLeadMediaLeft .Card-proPill,.Card-squareLeadMediaLeft .Card-watchLivePill{margin-top:-.2em;vertical-align:middle}}.Card-featuredSquareToRectangleMedia .Card-mediaContainer,.Card-squareLeadMediaLeft .Card-mediaContainer{margin:0 -20px 20px;width:auto}@media (min-width:760px){.Card-featuredSquareToRectangleMedia,.Card-squareLeadMediaLeft{border:none}.Card-featuredSquareToRectangleMedia .Card-mediaContainer,.Card-squareLeadMediaLeft .Card-mediaContainer{margin:0 0 20px}}.Card-squareLeadMediaLeft .Card-mediaContainer{margin:0 0 10px}.Card-squareToRectangleMediaPackage{border-top:0;font-size:22px;line-height:1.2;padding-top:0}@media (min-width:760px){.Card-squareToRectangleMediaPackage{font-size:16px}}@media (min-width:1020px){.Card-squareToRectangleMediaPackage{font-size:22px}}@media (min-width:1340px){.Card-squareToRectangleMediaPackage{font-size:24px}}.Card-placeholder{background-color:#d7e1e4}div:focus{outline:none}.Card-mediaContainerInner{height:auto;width:100%}.Card-eyebrow{color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-weight:600}@media (max-width:759px){.Card-eyebrow{font-size:13px}}.Card-eyebrowContainer{letter-spacing:.8px;padding:0 0 10px;text-transform:uppercase}@media (min-width:760px){.Card-eyebrowContainer{padding:10px 0}}.Card-titleOnlyFourUp{padding-top:11px;width:100%}@media (min-width:760px){.Card-titleOnlyFourUp{padding-top:9px;width:353px}}@media (min-width:1020px){.Card-titleOnlyFourUp{padding:11px 0;width:219px}}@media (min-width:1340px){.Card-titleOnlyFourUp{height:135px;padding:15px 0;width:300px}}.Card-titleOnlyFourUp.Card-cnbcvideo .Card-title:after{background-image:url(https://static-redesign.cnbcfm.com/dist/2b9683da8ee9d11e69bc.svg);background-repeat:no-repeat;content:"";display:inline-block;height:15px;margin-left:4px;position:relative;top:2px;width:18px}.Card-titleOnlyFourUp.Card-webresource .Card-title div:after{background-image:url(https://static-redesign.cnbcfm.com/dist/387a9977e4e000be15d0.svg);background-repeat:no-repeat;content:"";display:inline-block;height:11px;margin-left:4px;width:18px}.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-pro{line-height:1;margin:0;top:-2px}@media (min-width:1020px){.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-pro{height:99px}}@media (min-width:1340px){.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-pro{height:92px}}.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-pro .Card-proSmall{display:block;height:19px;margin:0 0 7px;position:unset;width:35px}@media (min-width:760px){.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-pro .Card-proSmall{margin:0 0 6px}}@media (min-width:1020px){.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-pro .Card-proSmall{margin:0 0 6px}}@media (min-width:1340px){.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-pro .Card-proSmall{height:23px;margin:0 0 2px}}.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-pro .Card-proIcon{color:#3cb878;line-height:17px;position:relative}.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer{line-height:1;margin:0 0 7px;padding:0}@media (min-width:760px){.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer{margin:0 0 6px}}@media (min-width:1020px){.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer{height:18px;margin:0 0 5px}}.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer .Card-eyebrow{color:#002f6c;font-size:12px;line-height:18px;overflow-y:hidden}@media (min-width:1020px){.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer .Card-eyebrow{line-height:16px}}@media (min-width:1340px){.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer .Card-eyebrow{line-height:18px}}.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer .Card-eyebrow:hover{color:#fcb700}.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-titleContainer{line-height:1}@media (min-width:1020px){.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-titleContainer{height:73px}}@media (min-width:1340px){.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-titleContainer{height:69px}}.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-title{color:#171717;font-size:17px;font-weight:600;line-height:21px;overflow:hidden;text-align:left}@media (min-width:760px){.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-title{line-height:22px}}@media (min-width:1020px){.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-title{font-size:16px;line-height:18px;text-align:left}}@media (min-width:1340px){.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-title{font-size:18px;line-height:22px}}.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-cardFooter,.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle{margin:7px 0 0}@media (min-width:760px){.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-cardFooter,.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle{margin:11px 0 0}}@media (min-width:1020px){.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-cardFooter,.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle{margin:3px 0 0}}@media (min-width:1340px){.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-cardFooter,.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle{margin:9px 0 0}}.Card-threeUpCardFooterStyle .Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-cardFooter .Card-threeUpBylineStyle,.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-cardFooter .Card-byline,.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle .Card-byline,.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle .Card-threeUpBylineStyle{margin:0;padding:0}.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-cardFooter .Card-time,.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle .Card-time{font-size:11px}.Card-threeUpStackRectangleSquareMedia .Card-textContent{height:auto!important}.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-description{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;line-height:19px}.Card-threeUpRectangleSquareMediaDescription,.Card-threeUpStackRectangleSquareMedia{display:block;position:relative;width:100%}@media (min-width:360px) and (max-width:759px){.Card-threeUpRectangleSquareMediaDescription,.Card-threeUpStackRectangleSquareMedia{border-bottom:1px dashed #8b8b8b80;margin-top:0}.Card-threeUpRectangleSquareMediaDescription:nth-child(n+2),.Card-threeUpStackRectangleSquareMedia:nth-child(n+2){border-bottom:none;width:50%}.Card-threeUpRectangleSquareMediaDescription:nth-child(n+2) .Card-mediaContainer,.Card-threeUpStackRectangleSquareMedia:nth-child(n+2) .Card-mediaContainer{height:72px;width:145px}}@media (min-width:360px) and (max-width:759px) and (min-width:360px) and (max-width:759px){.Card-threeUpRectangleSquareMediaDescription:nth-child(n+2) .Card-mediaContainer,.Card-threeUpStackRectangleSquareMedia:nth-child(n+2) .Card-mediaContainer{margin:0 auto 10px}}@media (min-width:360px) and (max-width:759px){.Card-threeUpRectangleSquareMediaDescription:nth-of-type(2),.Card-threeUpStackRectangleSquareMedia:nth-of-type(2){border-right:1px dashed #8b8b8b80;border-top:none;margin:14px 0 0;padding:0 15px 0 0}.Card-threeUpRectangleSquareMediaDescription:nth-of-type(3),.Card-threeUpStackRectangleSquareMedia:nth-of-type(3){border-top:none;margin:14px 0 0;padding:0 0 0 15px}.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer{margin:0 0 7px;padding:0}.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer .Card-eyebrow,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer .Card-eyebrow{color:#002f6c;display:block;font-size:12px;font-weight:600;letter-spacing:.8px;line-height:18px}.Card-threeUpCardFooterStyle .Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-cardFooter .Card-threeUpBylineStyle,.Card-threeUpCardFooterStyle .Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-cardFooter .Card-threeUpBylineStyle,.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-cardFooter .Card-byline,.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle .Card-byline,.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle .Card-threeUpBylineStyle,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-cardFooter .Card-byline,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle .Card-byline,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle .Card-threeUpBylineStyle{margin:0}.Card-threeUpRectangleSquareMediaDescription .Card-pro,.Card-threeUpStackRectangleSquareMedia .Card-pro{margin:0;position:unset}.Card-threeUpRectangleSquareMediaDescription .Card-proSmall,.Card-threeUpStackRectangleSquareMedia .Card-proSmall{bottom:0;display:block;height:19px;margin:0 0 5px;position:relative;top:0;width:35px}.Card-threeUpRectangleSquareMediaDescription .Card-proIcon,.Card-threeUpStackRectangleSquareMedia .Card-proIcon{color:#3cb878;position:absolute;top:-5px}.Card-threeUpRectangleSquareMediaDescription:nth-child(n+2) .Card-mediaContainerInner,.Card-threeUpStackRectangleSquareMedia:nth-child(n+2) .Card-mediaContainerInner{height:72px}}@media (min-width:760px){.Card-threeUpRectangleSquareMediaDescription,.Card-threeUpStackRectangleSquareMedia{border-bottom:none;margin-right:30px;padding:0 0 10px;width:calc(33.33333% - 20px)}.Card-threeUpRectangleSquareMediaDescription:nth-of-type(2n),.Card-threeUpStackRectangleSquareMedia:nth-of-type(2n){border-right:none}.Card-threeUpRectangleSquareMediaDescription:nth-child(3n),.Card-threeUpStackRectangleSquareMedia:nth-child(3n){margin-right:0}.Card-threeUpRectangleSquareMediaDescription .Card-mediaContainerInner,.Card-threeUpStackRectangleSquareMedia .Card-mediaContainerInner{height:106px}}@media (min-width:1020px){.Card-threeUpRectangleSquareMediaDescription,.Card-threeUpRectangleSquareMediaDescription:nth-of-type(n+2),.Card-threeUpStackRectangleSquareMedia,.Card-threeUpStackRectangleSquareMedia:nth-of-type(n+2){width:190px}.Card-threeUpRectangleSquareMediaDescription .Card-mediaContainerInner,.Card-threeUpStackRectangleSquareMedia .Card-mediaContainerInner{height:95px}}@media (min-width:1340px){.Card-threeUpRectangleSquareMediaDescription,.Card-threeUpRectangleSquareMediaDescription:nth-of-type(n+2),.Card-threeUpStackRectangleSquareMedia,.Card-threeUpStackRectangleSquareMedia:nth-of-type(n+2){width:300px}.Card-threeUpRectangleSquareMediaDescription .Card-mediaContainerInner,.Card-threeUpStackRectangleSquareMedia .Card-mediaContainerInner{height:169px}}@media (min-width:760px){.Card-threeUpRectangleSquareMediaDescription.Card-webresource .Card-textContent,.Card-threeUpStackRectangleSquareMedia.Card-webresource .Card-textContent{height:119px}}@media (min-width:1020px){.Card-threeUpRectangleSquareMediaDescription.Card-webresource .Card-textContent,.Card-threeUpStackRectangleSquareMedia.Card-webresource .Card-textContent{height:100px}}.Card-threeUpRectangleSquareMediaDescription.Card-webresource .Card-title div:after,.Card-threeUpStackRectangleSquareMedia.Card-webresource .Card-title div:after{background-image:url(https://static-redesign.cnbcfm.com/dist/387a9977e4e000be15d0.svg);background-repeat:no-repeat;content:"";display:inline-block;height:11px;margin-left:4px;width:18px}.Card-threeUpRectangleSquareMediaDescription .Card-mediaContainer,.Card-threeUpStackRectangleSquareMedia .Card-mediaContainer{height:auto;margin:0 0 15px;width:100%}@media (min-width:1340px){.Card-threeUpRectangleSquareMediaDescription .Card-mediaContainer,.Card-threeUpStackRectangleSquareMedia .Card-mediaContainer{height:169px}}.Card-threeUpRectangleSquareMediaDescription .Card-textContent,.Card-threeUpStackRectangleSquareMedia .Card-textContent{display:block;margin:0}@media (min-width:760px){.Card-threeUpRectangleSquareMediaDescription .Card-textContent,.Card-threeUpStackRectangleSquareMedia .Card-textContent{height:146px}}@media (min-width:1020px){.Card-threeUpRectangleSquareMediaDescription .Card-textContent,.Card-threeUpStackRectangleSquareMedia .Card-textContent{height:127px}}.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter{display:block}.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-pro,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-pro{margin:0;position:unset}.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-watchLivePill+.Card-proSmall,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-watchLivePill+.Card-proSmall{display:inline-block;margin-right:6px;top:3px}.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-proSmall,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-proSmall{bottom:0;display:block;height:19px;margin:0 0 7px;position:relative;top:0;width:35px}@media (min-width:760px){.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-proSmall,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-proSmall{margin:0 0 3px}}@media (min-width:1020px){.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-proSmall,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-proSmall{height:17px;margin:0}}@media (min-width:760px){.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-proIcon,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-proIcon{line-height:.2}}.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer{height:12px;padding:0}@media (min-width:760px){.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer{margin:0 0 10px}}@media (min-width:1020px){.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer{margin:0 0 5px}}.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer .Card-eyebrow,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer .Card-eyebrow{color:#002f6c;display:block;font-size:12px;line-height:12px;overflow-y:hidden}.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer .Card-eyebrow:hover,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer .Card-eyebrow:hover{color:#fcb700}.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer .Card-eyebrow div,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer .Card-eyebrow div{height:12px;line-height:12px}.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-title,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-title{line-height:18px;max-height:80px;overflow:hidden;text-align:left}@media (min-width:760px){.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-title,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-title{line-height:18px;max-height:80px}}@media (min-width:1020px){.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-title,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-title{font-size:16px;font-weight:600;line-height:18px;max-height:80px}}@media (min-width:1340px){.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-title,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-title{font-size:18px;line-height:22px;max-height:96px}}.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-pro>.Card-title,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-pro>.Card-title{line-height:18px;max-height:100px}@media (min-width:760px){.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-pro>.Card-title,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-pro>.Card-title{line-height:18px;max-height:100px}}@media (min-width:1020px){.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-pro>.Card-title,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-pro>.Card-title{line-height:18px;max-height:100px}}@media (min-width:1340px){.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-pro>.Card-title,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-pro>.Card-title{line-height:22px;max-height:96px}}.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-cardFooter,.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-cardFooter,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle{display:block;line-height:11px;margin:0}.Card-threeUpCardFooterStyle .Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-cardFooter .Card-threeUpBylineStyle,.Card-threeUpCardFooterStyle .Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-cardFooter .Card-threeUpBylineStyle,.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-cardFooter .Card-byline,.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle .Card-byline,.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle .Card-threeUpBylineStyle,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-cardFooter .Card-byline,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle .Card-byline,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle .Card-threeUpBylineStyle{display:none}.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-cardFooter .Card-time,.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle .Card-time,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-cardFooter .Card-time,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle .Card-time{display:block;font-size:11px;letter-spacing:.1em;margin-top:10px}@media (min-width:760px){.Card-threeUpRectangleSquareMediaDescription{width:calc(100% - 60px)}}@media (min-width:1020px){.Card-threeUpRectangleSquareMediaDescription{width:190px}}@media (min-width:1340px){.Card-threeUpRectangleSquareMediaDescription{width:300px}}.Card-threeUpRectangleSquareMediaDescription .Card-textContent,.Card-threeUpRectangleSquareMediaDescription .Card-titleContainer a{height:auto!important}.Card-titleOnlyThreeUpStack{border-top:1px dashed #8b8b8b80;margin:0;padding:15px 0;width:100%}@media (min-width:360px) and (max-width:759px){.Card-titleOnlyThreeUpStack:nth-of-type(4n){margin:14px 0 0}.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer{margin:0 0 7px}.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer .Card-eyebrow{display:block}}@media (min-width:760px){.Card-titleOnlyThreeUpStack{border-bottom:1px dashed #8b8b8b80;margin-right:30px;width:calc(33.33333% - 20px)}.Card-titleOnlyThreeUpStack:nth-child(3n){margin-right:0}}@media (min-width:1020px){.Card-titleOnlyThreeUpStack{width:190px}}@media (min-width:1340px){.Card-titleOnlyThreeUpStack{font-size:18px;line-height:22px;width:300px}}.Card-titleOnlyThreeUpStack.Card-cnbcvideo .Card-title:after{background-image:url(https://static-redesign.cnbcfm.com/dist/2b9683da8ee9d11e69bc.svg);background-repeat:no-repeat;content:"";display:inline-block;height:15px;margin-left:4px;position:relative;top:2px;width:18px}@media (min-width:760px){.Card-titleOnlyThreeUpStack.Card-webresource .Card-textContent{height:124px}}@media (min-width:1020px){.Card-titleOnlyThreeUpStack.Card-webresource .Card-textContent{height:110px}}.Card-titleOnlyThreeUpStack.Card-webresource .Card-title div:after{background-image:url(https://static-redesign.cnbcfm.com/dist/387a9977e4e000be15d0.svg);background-repeat:no-repeat;content:"";display:inline-block;height:11px;margin-left:4px;width:18px}.Card-titleOnlyThreeUpStack .Card-textContent{display:block;margin:0}@media (min-width:760px){.Card-titleOnlyThreeUpStack .Card-textContent{height:146px}}@media (min-width:1020px){.Card-titleOnlyThreeUpStack .Card-textContent{height:127px}}.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter{display:block}.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-pro{margin:0;position:unset}.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-watchLivePill+.Card-proSmall{display:inline-block;margin-right:6px;top:3px}.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-proSmall{bottom:0;display:block;height:19px;margin:0 0 7px;position:relative;top:0;width:35px}@media (min-width:760px){.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-proSmall{margin:0 0 3px}}@media (min-width:1020px){.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-proSmall{height:17px;margin:0}}.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-proIcon{color:#3cb878;position:absolute;top:-8px}@media (min-width:760px){.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-proIcon{top:5px}}.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer{height:12px;padding:0}@media (min-width:760px){.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer{margin:0 0 10px}}@media (min-width:1020px){.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer{margin:0 0 5px}}.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer .Card-eyebrow{color:#002f6c;display:block;font-size:12px;line-height:12px;overflow-y:hidden}.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer .Card-eyebrow:hover{color:#fcb700}.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer .Card-eyebrow div{height:12px;line-height:12px}.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-title{line-height:18px;max-height:80px;overflow:hidden;text-align:left}@media (min-width:760px){.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-title{line-height:18px;max-height:80px}}@media (min-width:1020px){.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-title{font-size:16px;font-weight:600;line-height:18px;max-height:80px}}@media (min-width:1340px){.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-title{font-size:18px;line-height:22px;max-height:72px}}.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-pro>.Card-title{line-height:18px;max-height:100px}@media (min-width:760px){.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-pro>.Card-title{line-height:18px;max-height:100px}}@media (min-width:1020px){.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-pro>.Card-title{line-height:18px;max-height:100px}}@media (min-width:1340px){.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-pro>.Card-title{line-height:22px;max-height:96px}}.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-cardFooter,.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle{display:block;line-height:11px;margin:0}.Card-threeUpCardFooterStyle .Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-cardFooter .Card-threeUpBylineStyle,.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-cardFooter .Card-byline,.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle .Card-byline,.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle .Card-threeUpBylineStyle{display:none}.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-cardFooter .Card-time,.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle .Card-time{display:block;font-size:11px;letter-spacing:.1em;margin:10px 0 0}.Card-titleOnlyThreeUpStackLast{border-bottom:none}.Card-proIcon{line-height:.8}@media (min-width:760px){.Card-proIcon{line-height:0}}.Card-videoIcon{display:none}.Card-description{font-size:12px;font-weight:400;margin-bottom:10px;margin-top:10px}.Card-aboveImageContent{background:linear-gradient(180deg,#113e6b00 31.19%,#071d39 69.16%);bottom:0;padding:0 22px 20px 21px;position:absolute;width:100%}@media (min-width:360px){.Card-aboveImageContent{padding:48px 46px 30px}}@media (min-width:760px){.Card-aboveImageContent{background:linear-gradient(180deg,#113e6b00 20.19%,#071d39 69.16%);padding:24px 46px 30px}}@media (min-width:1020px){.Card-aboveImageContent{background:linear-gradient(180deg,#113e6b00 4.19%,#071d39 69.16%);padding:19px 46px 30px}}@media (min-width:1340px){.Card-aboveImageContent{background:linear-gradient(180deg,#113e6b00 29.19%,#071d39 69.16%);padding:70px 70px 30px}}.Card-aboveImageTitle{color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:20px;font-style:normal;font-weight:700;line-height:22px;margin:0}@media (min-width:760px){.Card-aboveImageTitle{font-size:30px;font-weight:800;line-height:32px;width:580px}.Card-aboveImageTitle .Card-investingClubPill,.Card-aboveImageTitle .Card-proPill,.Card-aboveImageTitle .Card-watchLivePill{margin-top:-.2em;vertical-align:middle}}@media (min-width:1020px){.Card-aboveImageTitle{width:538px}}@media (min-width:1340px){.Card-aboveImageTitle{font-size:38px;font-weight:800;line-height:40px;width:820px}.Card-aboveImageTitle .Card-investingClubPill,.Card-aboveImageTitle .Card-proPill,.Card-aboveImageTitle .Card-watchLivePill{margin-top:-.2em;vertical-align:middle}}.Card-aboveImageTitle a{color:#fff}.Card-aboveImageTitle a:focus,.Card-aboveImageTitle a:hover{color:#fff;text-decoration:underline}@media (max-width:1339px){.Card-rectangleToRectangleMediaHalf .Card-pro{margin:0;top:0}}@media (prefers-color-scheme:dark){.webview .Card-titleContainer a{color:#b2b2b2}}@media (max-width:1020px){.Card-specialReportTimestamp{font-size:11px}}
@media (max-width:759px){.MidResponsive-midResponsiveContainer iframe{max-width:300px}}[id*=MidResponsive],[id*=dart_wrapper_midresponsive]{margin:40px auto 0;position:sticky}@media (min-width:760px){[id*=MidResponsive],[id*=dart_wrapper_midresponsive]{margin-top:0}}[id*=MidResponsive]>div,[id*=dart_wrapper_midresponsive]>div{margin-bottom:40px;text-align:center}
.TrendingNowBreaker-containerFluidWidths{margin:0 auto;width:100%}@media (min-width:1020px){.TrendingNowBreaker-containerFluidWidths{max-width:960px}}@media (min-width:1340px){.TrendingNowBreaker-containerFluidWidths{max-width:1290px}}.TrendingNowBreaker-containerWidth100{width:100%}.TrendingNowBreaker-page{display:block;margin-bottom:25px;overflow:visible}@media (min-width:760px){.TrendingNowBreaker-page{margin-bottom:28px}}.TrendingNowBreaker-advertorialPage{display:block;overflow:visible}.TrendingNowBreaker-pageGrid{margin-left:auto;margin-right:auto;max-width:1290px;overflow:visible;width:100%}.TrendingNowBreaker-pageWrapper{margin:0 auto;max-width:100%}@media (min-width:760px){.TrendingNowBreaker-pageWrapper{max-width:678px}}@media (min-width:1020px){.TrendingNowBreaker-pageWrapper{max-width:960px}}@media (min-width:1340px){.TrendingNowBreaker-pageWrapper{max-width:1290px}}@media (min-width:760px){.TrendingNowBreaker-pageWrapper{max-width:100%!important}}.TrendingNowBreaker-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.TrendingNowBreaker-pageRow{padding-left:0;padding-right:0}}@media (min-width:1020px){.TrendingNowBreaker-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}}@media (min-width:1020px) and (min-width:760px){.TrendingNowBreaker-pageRow{padding-left:0;padding-right:0}}@media (max-width:1019px){.TrendingNowBreaker-pageRow{margin:0;padding:0}}@media (min-width:360px) and (max-width:759px){.TrendingNowBreaker-pageRow.TrendingNowBreaker-containerFluidWidths{padding:0 21px}}@media (min-width:760px) and (max-width:1019px){.TrendingNowBreaker-pageRow.TrendingNowBreaker-containerFluidWidths{padding:0 45px}}.TrendingNowBreaker-pageRowFlex{display:flex}.TrendingNowBreaker-rowUnderAd{margin-top:-29px}@media (min-width:1020px){.TrendingNowBreaker-rowUnderAd{margin-top:-50px}}@media (min-width:1340px){.TrendingNowBreaker-rowUnderAd{margin-top:-44px}}.TrendingNowBreaker-rowWithBackground{background:#cfd8e2;position:relative}.TrendingNowBreaker-rowWithBackground:after,.TrendingNowBreaker-rowWithBackground:before{background:#cfd8e2;content:"";display:block;height:100%;position:absolute;width:25vw}.TrendingNowBreaker-rowWithBackground:before{right:100%;top:0}.TrendingNowBreaker-rowWithBackground:after{left:100%;top:0}.TrendingNowBreaker-isAdvertorial{display:block;margin-bottom:50px!important}.TrendingNowBreaker-flipRowOrder .TrendingNowBreaker-col:first-child{order:2}@media (min-width:1020px){.TrendingNowBreaker-flipRowOrder .TrendingNowBreaker-col:first-child{order:1}}.TrendingNowBreaker-flipRowOrder .TrendingNowBreaker-col:last-child{order:1}@media (min-width:1020px){.TrendingNowBreaker-flipRowOrder .TrendingNowBreaker-col:last-child{order:2}}.TrendingNowBreaker-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.TrendingNowBreaker-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.TrendingNowBreaker-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.TrendingNowBreaker-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.TrendingNowBreaker-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.TrendingNowBreaker-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.TrendingNowBreaker-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.TrendingNowBreaker-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}.TrendingNowBreaker-containerFluidWidths .TrendingNowBreaker-col{max-width:678px!important;min-width:678px}}@media (min-width:760px){.TrendingNowBreaker-col-3{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.TrendingNowBreaker-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.TrendingNowBreaker-col-3{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.TrendingNowBreaker-col-3{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.TrendingNowBreaker-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.TrendingNowBreaker-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}.TrendingNowBreaker-col-3:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.TrendingNowBreaker-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}@media (min-width:760px){.TrendingNowBreaker-col-6{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.TrendingNowBreaker-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.TrendingNowBreaker-col-6{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.TrendingNowBreaker-col-6{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.TrendingNowBreaker-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.TrendingNowBreaker-col-6{flex-grow:0;flex-shrink:0;margin-left:0;margin-right:0;max-width:calc(44.44444% - 16.66667px);min-width:calc(44.44444% - 16.66667px)}.TrendingNowBreaker-col-6:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.TrendingNowBreaker-col-6{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(50% - 15px);min-width:calc(50% - 15px)}}.TrendingNowBreaker-col-9 .BrandBanner-container{margin-bottom:30px;z-index:99}@media (min-width:1340px){.TrendingNowBreaker-col-9 .BrandBanner-container{margin-left:calc(-50vw - -538.5px)}}@media (min-width:760px){.TrendingNowBreaker-col-9 .BrandBanner-container{margin-bottom:-100px;margin-top:50px}.TrendingNowBreaker-col-9{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.TrendingNowBreaker-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.TrendingNowBreaker-col-9{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.TrendingNowBreaker-col-9{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.TrendingNowBreaker-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.TrendingNowBreaker-col-9{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.TrendingNowBreaker-col-9:last-child{margin-right:0}}@media (min-width:1340px){.TrendingNowBreaker-col-9{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}.TrendingNowBreaker-col-9.TrendingNowBreaker-article{flex-grow:0;flex-shrink:0;margin-left:calc(8.33333% + 2.5px);max-width:calc(58.33333% - 12.5px);min-width:calc(58.33333% - 12.5px)}}@media (min-width:760px){.TrendingNowBreaker-col-12{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.TrendingNowBreaker-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.TrendingNowBreaker-col-12{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.TrendingNowBreaker-col-12{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.TrendingNowBreaker-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.TrendingNowBreaker-col-12{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.TrendingNowBreaker-col-12:last-child{margin-right:0}}@media (min-width:1340px){.TrendingNowBreaker-col-12{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}.TrendingNowBreaker-col-full{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.TrendingNowBreaker-col-full .MyComponentName-container{width:100vw}@media (min-width:1340px){.TrendingNowBreaker-col-full .MyComponentName-container{max-width:none}}.TrendingNowBreaker-col-full:last-child{margin-right:0}.TrendingNowBreaker-clear-col-padding{padding-bottom:0;padding-top:0}.TrendingNowBreaker-paddedWrapper{padding-bottom:15px;padding-top:15px}@media (min-width:1020px){.TrendingNowBreaker-paddedWrapper{padding-bottom:20px;padding-top:25px}.TrendingNowBreaker-hasBanner{margin-bottom:130px}}.TrendingNowBreaker-sidebar{flex-grow:0;flex-shrink:0;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.TrendingNowBreaker-sidebar{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.TrendingNowBreaker-sidebar{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.TrendingNowBreaker-sidebar{max-width:100%;min-width:100%}}@media (min-width:1340px){.TrendingNowBreaker-sidebar{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:360px){.TrendingNowBreaker-sidebar{min-width:100%}}@media (min-width:760px){.TrendingNowBreaker-sidebar{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}@media (min-width:1020px){.TrendingNowBreaker-sidebar{flex-grow:0;flex-shrink:0;margin-bottom:40px;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}}@media (min-width:1340px){.TrendingNowBreaker-sidebar{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}.TrendingNowBreaker-sidebarLeft{flex-grow:0;flex-shrink:0;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.TrendingNowBreaker-sidebarLeft{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.TrendingNowBreaker-sidebarLeft{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.TrendingNowBreaker-sidebarLeft{max-width:100%;min-width:100%}}@media (min-width:1340px){.TrendingNowBreaker-sidebarLeft{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:360px){.TrendingNowBreaker-sidebarLeft{min-width:100%}}@media (min-width:760px){.TrendingNowBreaker-sidebarLeft{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}@media (min-width:1020px){.TrendingNowBreaker-sidebarLeft{flex-grow:0;flex-shrink:0;margin-bottom:40px;margin-left:0;margin-right:30px;max-width:calc(22.22222% - 23.33333px);min-width:calc(22.22222% - 23.33333px);z-index:1}}@media (min-width:1340px){.TrendingNowBreaker-sidebarLeft{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}@media (min-width:1020px){.TrendingNowBreaker-sidebarLeftNav{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}}@media (min-width:1340px){.TrendingNowBreaker-sidebarLeftNav{flex-grow:0;flex-shrink:0;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}.TrendingNowBreaker-sidebarPro{margin-left:0;margin-right:30px}.TrendingNowBreaker-AdvertorialStory-ArticleHeader-1{display:hide}.TrendingNowBreaker-pageRow{margin-bottom:50px}@media (max-width:759px){.TrendingNowBreaker-pageRow{padding:0}}@media (min-width:760px){.TrendingNowBreaker-col-9{padding-bottom:5px}}@media (min-width:1020px){.TrendingNowBreaker-col-9{padding-bottom:20px}}@media (min-width:1340px){.TrendingNowBreaker-col-9{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}}
.TrendingNow-container{display:flex;flex-direction:row;flex-wrap:wrap;padding:0;width:100%}@media (min-width:760px){.TrendingNow-container{padding-left:0;padding-right:0}}.TrendingNow-heading{border-top:1px solid #747474;color:#002f6c;font-size:30px;font-weight:800;letter-spacing:.5px;line-height:37px;margin-bottom:10px;margin-top:0;padding-top:15px;position:relative;text-transform:uppercase;width:100%}@media (min-width:760px){.TrendingNow-heading{padding-top:15px}}@media (min-width:1020px){.TrendingNow-heading{font-size:32px;line-height:40px;padding-top:20px}}.TrendingNow-heading:before{background-color:#2077b6;content:"";height:6px;left:0;position:absolute;top:-6px;width:110px}.TrendingNow-storyContainer{display:flex;flex-wrap:wrap}@media (min-width:1020px){.TrendingNow-storyContainer{flex-wrap:nowrap;justify-content:space-between}}
.TrendingNowItem-linkWrap{line-height:18px}.TrendingNowItem-linkWrap .TrendingNowItem-title{color:#000;display:inline}.TrendingNowItem-linkWrap .TrendingNowItem-title:hover{color:#000;text-decoration:underline}.TrendingNowItem-number{color:#cfd8e2;font-size:46px;font-weight:800;line-height:46px;margin-bottom:8px}.TrendingNowItem-storyItem{border-left:6px solid #f3f5f7;font-size:17px;font-weight:500;line-height:21px;list-style:none;margin:15px 0;padding:0 30px 5px 15px;width:50%}@media (min-width:760px){.TrendingNowItem-storyItem{font-size:16px;line-height:20px;width:33.33333%}}@media (min-width:1020px){.TrendingNowItem-storyItem{font-size:16px;padding-right:55px;width:100%}.TrendingNowItem-storyItem:last-child{padding-right:0}}
.TwoColumnImageDense-containerFluidWidths{margin:0 auto;width:100%}@media (min-width:1020px){.TwoColumnImageDense-containerFluidWidths{max-width:960px}}@media (min-width:1340px){.TwoColumnImageDense-containerFluidWidths{max-width:1290px}}.TwoColumnImageDense-containerWidth100{width:100%}.TwoColumnImageDense-page{display:block;margin-bottom:25px;overflow:visible}@media (min-width:760px){.TwoColumnImageDense-page{margin-bottom:28px}}.TwoColumnImageDense-advertorialPage{display:block;overflow:visible}.TwoColumnImageDense-pageGrid{margin-left:auto;margin-right:auto;max-width:1290px;overflow:visible;width:100%}.TwoColumnImageDense-pageWrapper{margin:0 auto;max-width:100%}@media (min-width:760px){.TwoColumnImageDense-pageWrapper{max-width:678px}}@media (min-width:1020px){.TwoColumnImageDense-pageWrapper{max-width:960px}}@media (min-width:1340px){.TwoColumnImageDense-pageWrapper{max-width:1290px}}@media (min-width:760px){.TwoColumnImageDense-pageWrapper{max-width:100%!important}}.TwoColumnImageDense-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.TwoColumnImageDense-pageRow{padding-left:0;padding-right:0}}@media (min-width:1020px){.TwoColumnImageDense-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}}@media (min-width:1020px) and (min-width:760px){.TwoColumnImageDense-pageRow{padding-left:0;padding-right:0}}@media (max-width:1019px){.TwoColumnImageDense-pageRow{margin:0;padding:0}}@media (min-width:360px) and (max-width:759px){.TwoColumnImageDense-pageRow.TwoColumnImageDense-containerFluidWidths{padding:0 21px}}@media (min-width:760px) and (max-width:1019px){.TwoColumnImageDense-pageRow.TwoColumnImageDense-containerFluidWidths{padding:0 45px}}.TwoColumnImageDense-pageRowFlex{display:flex}.TwoColumnImageDense-rowUnderAd{margin-top:-29px}@media (min-width:1020px){.TwoColumnImageDense-rowUnderAd{margin-top:-50px}}@media (min-width:1340px){.TwoColumnImageDense-rowUnderAd{margin-top:-44px}}.TwoColumnImageDense-rowWithBackground{background:#cfd8e2;position:relative}.TwoColumnImageDense-rowWithBackground:after,.TwoColumnImageDense-rowWithBackground:before{background:#cfd8e2;content:"";display:block;height:100%;position:absolute;width:25vw}.TwoColumnImageDense-rowWithBackground:before{right:100%;top:0}.TwoColumnImageDense-rowWithBackground:after{left:100%;top:0}.TwoColumnImageDense-isAdvertorial{display:block;margin-bottom:50px!important}.TwoColumnImageDense-flipRowOrder .TwoColumnImageDense-col:first-child{order:2}@media (min-width:1020px){.TwoColumnImageDense-flipRowOrder .TwoColumnImageDense-col:first-child{order:1}}.TwoColumnImageDense-flipRowOrder .TwoColumnImageDense-col:last-child{order:1}@media (min-width:1020px){.TwoColumnImageDense-flipRowOrder .TwoColumnImageDense-col:last-child{order:2}}.TwoColumnImageDense-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.TwoColumnImageDense-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.TwoColumnImageDense-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.TwoColumnImageDense-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.TwoColumnImageDense-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.TwoColumnImageDense-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.TwoColumnImageDense-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.TwoColumnImageDense-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}.TwoColumnImageDense-containerFluidWidths .TwoColumnImageDense-col{max-width:678px!important;min-width:678px}}@media (min-width:760px){.TwoColumnImageDense-col-3{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.TwoColumnImageDense-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.TwoColumnImageDense-col-3{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.TwoColumnImageDense-col-3{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.TwoColumnImageDense-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.TwoColumnImageDense-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}.TwoColumnImageDense-col-3:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.TwoColumnImageDense-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}@media (min-width:760px){.TwoColumnImageDense-col-6{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.TwoColumnImageDense-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.TwoColumnImageDense-col-6{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.TwoColumnImageDense-col-6{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.TwoColumnImageDense-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.TwoColumnImageDense-col-6{flex-grow:0;flex-shrink:0;margin-left:0;margin-right:0;max-width:calc(44.44444% - 16.66667px);min-width:calc(44.44444% - 16.66667px)}.TwoColumnImageDense-col-6:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.TwoColumnImageDense-col-6{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(50% - 15px);min-width:calc(50% - 15px)}}.TwoColumnImageDense-col-9 .BrandBanner-container{margin-bottom:30px;z-index:99}@media (min-width:1340px){.TwoColumnImageDense-col-9 .BrandBanner-container{margin-left:calc(-50vw - -538.5px)}}@media (min-width:760px){.TwoColumnImageDense-col-9 .BrandBanner-container{margin-bottom:-100px;margin-top:50px}.TwoColumnImageDense-col-9{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.TwoColumnImageDense-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.TwoColumnImageDense-col-9{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.TwoColumnImageDense-col-9{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.TwoColumnImageDense-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.TwoColumnImageDense-col-9{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.TwoColumnImageDense-col-9:last-child{margin-right:0}}@media (min-width:1340px){.TwoColumnImageDense-col-9{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}.TwoColumnImageDense-col-9.TwoColumnImageDense-article{flex-grow:0;flex-shrink:0;margin-left:calc(8.33333% + 2.5px);max-width:calc(58.33333% - 12.5px);min-width:calc(58.33333% - 12.5px)}}@media (min-width:760px){.TwoColumnImageDense-col-12{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.TwoColumnImageDense-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.TwoColumnImageDense-col-12{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.TwoColumnImageDense-col-12{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.TwoColumnImageDense-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.TwoColumnImageDense-col-12{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.TwoColumnImageDense-col-12:last-child{margin-right:0}}@media (min-width:1340px){.TwoColumnImageDense-col-12{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}.TwoColumnImageDense-col-full{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.TwoColumnImageDense-col-full .MyComponentName-container{width:100vw}@media (min-width:1340px){.TwoColumnImageDense-col-full .MyComponentName-container{max-width:none}}.TwoColumnImageDense-col-full:last-child{margin-right:0}.TwoColumnImageDense-clear-col-padding{padding-bottom:0;padding-top:0}.TwoColumnImageDense-paddedWrapper{padding-bottom:15px;padding-top:15px}@media (min-width:1020px){.TwoColumnImageDense-paddedWrapper{padding-bottom:20px;padding-top:25px}.TwoColumnImageDense-hasBanner{margin-bottom:130px}}.TwoColumnImageDense-sidebar{flex-grow:0;flex-shrink:0;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.TwoColumnImageDense-sidebar{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.TwoColumnImageDense-sidebar{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.TwoColumnImageDense-sidebar{max-width:100%;min-width:100%}}@media (min-width:1340px){.TwoColumnImageDense-sidebar{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:360px){.TwoColumnImageDense-sidebar{min-width:100%}}@media (min-width:760px){.TwoColumnImageDense-sidebar{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}@media (min-width:1020px){.TwoColumnImageDense-sidebar{flex-grow:0;flex-shrink:0;margin-bottom:40px;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}}@media (min-width:1340px){.TwoColumnImageDense-sidebar{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}.TwoColumnImageDense-sidebarLeft{flex-grow:0;flex-shrink:0;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.TwoColumnImageDense-sidebarLeft{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.TwoColumnImageDense-sidebarLeft{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.TwoColumnImageDense-sidebarLeft{max-width:100%;min-width:100%}}@media (min-width:1340px){.TwoColumnImageDense-sidebarLeft{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:360px){.TwoColumnImageDense-sidebarLeft{min-width:100%}}@media (min-width:760px){.TwoColumnImageDense-sidebarLeft{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}@media (min-width:1020px){.TwoColumnImageDense-sidebarLeft{flex-grow:0;flex-shrink:0;margin-bottom:40px;margin-left:0;margin-right:30px;max-width:calc(22.22222% - 23.33333px);min-width:calc(22.22222% - 23.33333px);z-index:1}}@media (min-width:1340px){.TwoColumnImageDense-sidebarLeft{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}@media (min-width:1020px){.TwoColumnImageDense-sidebarLeftNav{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}}@media (min-width:1340px){.TwoColumnImageDense-sidebarLeftNav{flex-grow:0;flex-shrink:0;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}.TwoColumnImageDense-sidebarPro{margin-left:0;margin-right:30px}.TwoColumnImageDense-AdvertorialStory-ArticleHeader-1{display:hide}.TwoColumnImageDense-col{padding-bottom:15px;padding-top:15px}@media (min-width:1020px){.TwoColumnImageDense-col{padding-bottom:20px;padding-top:25px}}@media (min-width:760px){.TwoColumnImageDense-col-9{padding-bottom:5px}}@media (min-width:1020px){.TwoColumnImageDense-col-9{padding-bottom:20px}}@media (min-width:1340px){.TwoColumnImageDense-col-9{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}}.TwoColumnImageDense-imageDense{margin-right:0;padding:0 0 32px}@media (min-width:360px){.TwoColumnImageDense-imageDense{padding-bottom:10px}}@media (min-width:760px){.TwoColumnImageDense-imageDense{padding-bottom:24px}}@media (min-width:760px) and (max-width:1019px){.TwoColumnImageDense-imageDense{margin:0 auto;width:678px}}@media (max-width:359px){.TwoColumnImageDense-imageDense{padding:0}}
.SectionWrapper-container{display:flex;flex-direction:column;padding-top:5px;position:relative;width:100%}.SectionWrapper-container .SectionHeader-container{display:none}.SectionWrapper-container .MustWatchVideo-container{flex-grow:1;margin-right:-30px;max-width:none}@media (min-width:760px){.SectionWrapper-container{flex-direction:row;flex-wrap:wrap}}@media (min-width:1020px){.SectionWrapper-twoThirds{flex-grow:0;flex-shrink:0;max-width:calc(150% - 30px);min-width:calc(150% - 30px)}}@media (min-width:1020px) and (min-width:760px){.SectionWrapper-twoThirds{max-width:calc(50% - 30px);min-width:calc(50% - 30px)}}@media (min-width:1020px) and (min-width:1020px){.SectionWrapper-twoThirds{max-width:calc(66.66667% - 30px);min-width:calc(66.66667% - 30px)}}@media screen and (min-width:1020px) and (min-width:1020px) and (-ms-high-contrast:none){.SectionWrapper-twoThirds{max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:1340px){.SectionWrapper-twoThirds{max-width:calc(50% - 30px);min-width:calc(50% - 30px)}}@media (min-width:1340px){.SectionWrapper-twoThirds{flex-grow:0;flex-shrink:0;max-width:calc(225% - 30px);min-width:calc(225% - 30px)}}@media (min-width:1340px) and (min-width:760px){.SectionWrapper-twoThirds{max-width:calc(75% - 30px);min-width:calc(75% - 30px)}}@media (min-width:1340px) and (min-width:1020px){.SectionWrapper-twoThirds{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media screen and (min-width:1340px) and (min-width:1020px) and (-ms-high-contrast:none){.SectionWrapper-twoThirds{max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:1340px){.SectionWrapper-twoThirds{max-width:calc(75% - 30px);min-width:calc(75% - 30px)}}.SectionWrapper-header{border-top:1px solid #747474;order:1;position:relative}@media (min-width:760px){.SectionWrapper-header{flex-grow:1}}.SectionWrapper-decoration{background-color:#fcb700;display:block;height:6px;left:0;position:absolute;top:-6px;width:80px}@media (min-width:760px){.SectionWrapper-decoration{width:110px}}.SectionWrapper-title{color:#002f6c;font-size:30px;font-weight:800;letter-spacing:.5px;line-height:1;margin:15px 0;text-transform:uppercase}.SectionWrapper-title a{color:inherit}.SectionWrapper-title a:focus,.SectionWrapper-title a:hover{color:#2077b6}@media (min-width:1020px){.SectionWrapper-title{font-size:32px;margin-top:20px}}.SectionWrapper-titleImage{height:30px;margin:15px 0;max-width:100%;width:auto}@media (min-width:1020px){.SectionWrapper-titleImage{height:40px;margin-top:20px}}.SectionWrapper-sponsorIcon{display:none}@media (min-width:1020px){.SectionWrapper-sponsorIcon{bottom:0;display:block;height:31px;margin:auto;position:absolute;right:0;top:0}}.SectionWrapper-link{border:1px solid #002f6c;color:#002f6c;display:flex;flex-direction:column;flex-direction:center;font-size:12px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;line-height:12px;order:3;text-align:center;text-transform:uppercase;transition:all .15s ease-out;width:100%}.SectionWrapper-link:focus,.SectionWrapper-link:hover{background-color:#fcb700;border-color:#fcb700;color:#002f6c}@media (min-width:760px){.SectionWrapper-link{margin-left:30px;max-width:168px;min-width:168px;order:2}}@media (min-width:1020px){.SectionWrapper-link{margin-left:25px}}@media (min-width:1340px){.SectionWrapper-link{margin-left:30px}}.SectionWrapper-content{display:block;flex-grow:1;order:2;width:100%}.SectionWrapper-content.SectionWrapper-latestContent{margin-bottom:30px}@media (min-width:1020px){.SectionWrapper-content.SectionWrapper-latestContent{height:-webkit-fill-available;height:-moz-available;height:stretch}}@media (min-width:760px){.SectionWrapper-content{order:3}}@media screen and (max-width:1020px){.SectionWrapper-latestNews{max-height:none}}@media screen and (min-width:1019px){.SectionWrapper-latestNews{height:604px}}@-moz-document url-prefix(){.SectionWrapper-latestNews:hover{overflow-y:scroll;padding-right:0}}@media (prefers-color-scheme:dark){.webview .SectionWrapper-title,.webview .SectionWrapper-title a{color:#dce0e4}}
.Column-cardRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.Column-cardRow{padding-left:0;padding-right:0}}.Column-dualLeadLeft{margin-right:30px}.Column-dualLeadLeft:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-dualLeadLeft{margin-right:30px}.Column-dualLeadLeft:last-child{margin-right:0}.Column-dualLeadLeft{flex-grow:0;flex-shrink:0;max-width:calc(58.33333% - 30px);min-width:calc(58.33333% - 30px)}}@media (min-width:1020px){.Column-dualLeadLeft{flex-grow:0;flex-shrink:0;max-width:calc(50% - 30px);min-width:calc(50% - 30px)}}@media (min-width:1340px){.Column-dualLeadLeft{flex-grow:0;flex-shrink:0;max-width:calc(55.55556% - 30px);min-width:calc(55.55556% - 30px)}}.Column-dualLeadLeftPackage{background-color:#071d39;display:table;display:block;margin-left:-20px;margin-right:10px;padding:0 20px}.Column-dualLeadLeftPackage:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-dualLeadLeftPackage{margin-right:30px}.Column-dualLeadLeftPackage:last-child{margin-right:0}.Column-dualLeadLeftPackage{flex-grow:0;flex-shrink:0;max-width:calc(58.33333% - 30px);min-width:calc(58.33333% - 30px)}}@media (min-width:1020px){.Column-dualLeadLeftPackage{flex-grow:0;flex-shrink:0;max-width:calc(50% - 30px);min-width:calc(50% - 30px)}}@media (min-width:1340px){.Column-dualLeadLeftPackage{flex-grow:0;flex-shrink:0;max-width:calc(55.55556% - 30px);min-width:calc(55.55556% - 30px)}}@media (min-width:760px){.Column-dualLeadLeftPackage{margin-left:0;margin-right:30px}}.Column-dualLeadRight{margin-right:30px}.Column-dualLeadRight:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-dualLeadRight{margin-right:30px}.Column-dualLeadRight:last-child{margin-right:0}.Column-dualLeadRight{flex-grow:0;flex-shrink:0;max-width:calc(41.66667% - 30px);min-width:calc(41.66667% - 30px)}}@media (min-width:1020px){.Column-dualLeadRight{flex-grow:0;flex-shrink:0;max-width:calc(50% - 30px);min-width:calc(50% - 30px)}}@media (min-width:1340px){.Column-dualLeadRight{flex-grow:0;flex-shrink:0;max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}.Column-dualLeadRightPackage{background-color:#071d39;display:table;display:block;margin-left:-20px;margin-right:10px;padding:0 20px}.Column-dualLeadRightPackage:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-dualLeadRightPackage{margin-right:30px}.Column-dualLeadRightPackage:last-child{margin-right:0}.Column-dualLeadRightPackage{flex-grow:0;flex-shrink:0;max-width:calc(41.66667% - 30px);min-width:calc(41.66667% - 30px)}}@media (min-width:1020px){.Column-dualLeadRightPackage{flex-grow:0;flex-shrink:0;max-width:calc(50% - 30px);min-width:calc(50% - 30px)}}@media (min-width:1340px){.Column-dualLeadRightPackage{flex-grow:0;flex-shrink:0;max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media (min-width:760px){.Column-dualLeadRightPackage{margin-left:0;margin-right:30px}}.Column-dynamicContentLeft{margin-right:30px}.Column-dynamicContentLeft:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-dynamicContentLeft{margin-right:30px}.Column-dynamicContentLeft:last-child{margin-right:0}.Column-dynamicContentLeft{flex-grow:0;flex-shrink:0;max-width:calc(50% - 30px);min-width:calc(50% - 30px)}}@media (min-width:1020px){.Column-dynamicContentLeft{flex-grow:0;flex-shrink:0;max-width:calc(50% - 30px);min-width:calc(50% - 30px)}}@media (min-width:1340px){.Column-dynamicContentLeft{flex-grow:0;flex-shrink:0;max-width:calc(55.55556% - 30px);min-width:calc(55.55556% - 30px)}}.Column-dynamicContentRight{margin-right:30px}.Column-dynamicContentRight:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-dynamicContentRight{margin-right:30px}.Column-dynamicContentRight:last-child{margin-right:0}.Column-dynamicContentRight{flex-grow:0;flex-shrink:0;max-width:calc(50% - 30px);min-width:calc(50% - 30px)}.Column-dynamicContentRight:last-child{margin-left:auto}}@media (min-width:1020px){.Column-dynamicContentRight{flex-grow:0;flex-shrink:0;max-width:calc(50% - 30px);min-width:calc(50% - 30px)}}@media (min-width:1340px){.Column-dynamicContentRight{flex-grow:0;flex-shrink:0;max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}.Column-singleLeadLeft{margin-right:30px}.Column-singleLeadLeft:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-singleLeadLeft{margin-right:30px}.Column-singleLeadLeft:last-child{margin-right:0}.Column-singleLeadLeft{flex-grow:0;flex-shrink:0;max-width:calc(66.66667% - 30px);min-width:calc(66.66667% - 30px)}}@media (min-width:1020px){.Column-singleLeadLeft{flex-grow:0;flex-shrink:0;max-width:calc(66.66667% - 30px);min-width:calc(66.66667% - 30px)}}@media (min-width:1340px){.Column-singleLeadLeft{flex-grow:0;flex-shrink:0;max-width:calc(66.66667% - 30px);min-width:calc(66.66667% - 30px)}}.Column-imageDenseModRight{margin-right:30px}.Column-imageDenseModRight:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-imageDenseModRight{margin-right:30px}.Column-imageDenseModRight:last-child{margin-right:0}}@media (min-width:360px) and (max-width:759px){.Column-imageDenseModRight{margin-right:0}}@media (min-width:760px){.Column-imageDenseModRight{flex-grow:0;flex-shrink:0;margin-bottom:35px;max-width:unset;min-width:unset;width:calc(66.66667% - 20px)}}.Column-imageDenseModRight .Column-featuredRectangleMedia{height:476px}.Column-singleLeadLeftPackage{background-color:#071d39;display:table;display:block;margin-left:-20px;margin-right:10px;padding:0 20px}.Column-singleLeadLeftPackage:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-singleLeadLeftPackage{margin-right:30px}.Column-singleLeadLeftPackage:last-child{margin-right:0}.Column-singleLeadLeftPackage{flex-grow:0;flex-shrink:0;max-width:calc(66.66667% - 30px);min-width:calc(66.66667% - 30px)}}@media (min-width:1020px){.Column-singleLeadLeftPackage{flex-grow:0;flex-shrink:0;max-width:calc(66.66667% - 30px);min-width:calc(66.66667% - 30px)}}@media (min-width:1340px){.Column-singleLeadLeftPackage{flex-grow:0;flex-shrink:0;max-width:calc(66.66667% - 30px);min-width:calc(66.66667% - 30px)}}@media (min-width:760px){.Column-singleLeadLeftPackage{margin-left:0;margin-right:30px}}.Column-singleLeadRight{margin-right:30px}.Column-singleLeadRight:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-singleLeadRight{margin-right:30px}.Column-singleLeadRight:last-child{margin-right:0}.Column-singleLeadRight{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.Column-singleLeadRight{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1340px){.Column-singleLeadRight{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.Column-imageDenseModLeft{margin-right:30px}.Column-imageDenseModLeft:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-imageDenseModLeft{margin-right:30px}.Column-imageDenseModLeft:last-child{margin-right:0}}@media (min-width:360px) and (max-width:759px){.Column-imageDenseModLeft{margin-right:0}}@media (min-width:760px){.Column-imageDenseModLeft{flex-grow:0;flex-shrink:0;margin-bottom:35px;max-width:unset;min-width:unset;width:calc(33.33333% - 10px)}}.Column-imageDenseModLeft .Column-standardBreakerCard .Column-squareMedia .Column-card{height:451px}.Column-singleLeadRightPackage{background-color:#071d39;display:table;display:block;margin-left:-20px;margin-right:10px;padding:0 20px}.Column-singleLeadRightPackage:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-singleLeadRightPackage{margin-right:30px}.Column-singleLeadRightPackage:last-child{margin-right:0}.Column-singleLeadRightPackage{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.Column-singleLeadRightPackage{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1340px){.Column-singleLeadRightPackage{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:760px){.Column-singleLeadRightPackage{margin-left:0;margin-right:30px}}.Column-miniHeroLeft{margin-right:30px}.Column-miniHeroLeft:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-miniHeroLeft{margin-right:30px}.Column-miniHeroLeft:last-child{margin-right:0}.Column-miniHeroLeft{flex-grow:0;flex-shrink:0;max-width:calc(66.66667% - 30px);min-width:calc(66.66667% - 30px)}}@media (min-width:1020px){.Column-miniHeroLeft{flex-grow:0;flex-shrink:0;max-width:calc(66.66667% - 30px);min-width:calc(66.66667% - 30px)}}@media (min-width:1340px){.Column-miniHeroLeft{flex-grow:0;flex-shrink:0;max-width:calc(66.66667% - 30px);min-width:calc(66.66667% - 30px)}}.Column-miniHeroRight{margin-right:30px}.Column-miniHeroRight:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-miniHeroRight{margin-right:30px}.Column-miniHeroRight:last-child{margin-right:0}.Column-miniHeroRight{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.Column-miniHeroRight{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1340px){.Column-miniHeroRight{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.Column-squareLeadLeft{margin-right:0}.Column-squareLeadLeft:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-squareLeadLeft{margin-right:30px}.Column-squareLeadLeft:last-child{margin-right:0}.Column-squareLeadLeft{flex-grow:0;flex-shrink:0;max-width:calc(66.66667% - 30px);min-width:calc(66.66667% - 30px)}}@media (min-width:1020px){.Column-squareLeadLeft{flex-grow:0;flex-shrink:0;max-width:calc(66.66667% - 30px);min-width:calc(66.66667% - 30px)}}@media (min-width:1340px){.Column-squareLeadLeft{flex-grow:0;flex-shrink:0;max-width:unset;min-width:unset;width:calc(66.66667% - 20px)}}.Column-squareImageDenseLeft{margin-right:0}.Column-squareImageDenseLeft:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-squareImageDenseLeft{margin-right:30px}.Column-squareImageDenseLeft:last-child{margin-right:0}.Column-squareImageDenseLeft{flex-grow:0;flex-shrink:0;margin-bottom:10px;max-width:unset;min-width:unset;width:calc(66.66667% - 10px)}}@media (min-width:1020px){.Column-squareImageDenseLeft{flex-grow:0;flex-shrink:0;margin-bottom:0;max-width:unset;min-width:unset;width:calc(66.66667% - 10px)}}@media (min-width:1340px){.Column-squareImageDenseLeft{flex-grow:0;flex-shrink:0;margin-bottom:0;max-width:unset;min-width:unset;width:calc(66.66667% - 10px)}}.Column-squareLeadLeftPackage{background-color:#071d39;display:table;display:block;margin-left:-20px;margin-right:10px;padding:0 20px}.Column-squareLeadLeftPackage:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-squareLeadLeftPackage{margin-right:30px}.Column-squareLeadLeftPackage:last-child{margin-right:0}.Column-squareLeadLeftPackage{flex-grow:0;flex-shrink:0;max-width:calc(66.66667% - 30px);min-width:calc(66.66667% - 30px)}}@media (min-width:1020px){.Column-squareLeadLeftPackage{flex-grow:0;flex-shrink:0;max-width:calc(66.66667% - 30px);min-width:calc(66.66667% - 30px)}}@media (min-width:1340px){.Column-squareLeadLeftPackage{flex-grow:0;flex-shrink:0;max-width:calc(55.55556% - 30px);min-width:calc(55.55556% - 30px)}}@media (min-width:760px){.Column-squareLeadLeftPackage{margin-left:0;margin-right:30px}}.Column-squareLeadRight{margin-right:0}.Column-squareLeadRight:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-squareLeadRight{margin-right:30px}.Column-squareLeadRight:last-child{margin-right:0}.Column-squareLeadRight{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.Column-squareLeadRight{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1340px){.Column-squareLeadRight{flex-grow:0;flex-shrink:0;max-width:unset;min-width:unset;width:calc(33.33333% - 10px)}}.Column-squareImageDenseRight{margin-right:0}.Column-squareImageDenseRight:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-squareImageDenseRight{margin-right:30px}.Column-squareImageDenseRight:last-child{margin-right:0}.Column-squareImageDenseRight{flex-grow:0;flex-shrink:0;margin-bottom:10px;max-width:unset;min-width:unset;width:calc(33.33333% - 20px)}}@media (min-width:1020px){.Column-squareImageDenseRight{flex-grow:0;flex-shrink:0;margin-bottom:0;max-width:unset;min-width:unset;width:calc(33.33333% - 20px)}}@media (min-width:1340px){.Column-squareImageDenseRight{flex-grow:0;flex-shrink:0;margin-bottom:0;max-width:unset;min-width:unset;width:calc(33.33333% - 20px)}}.Column-squareLeadRightPackage{background-color:#071d39;display:table;display:block;margin-left:-20px;margin-right:10px;padding:0 20px}.Column-squareLeadRightPackage:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-squareLeadRightPackage{margin-right:30px}.Column-squareLeadRightPackage:last-child{margin-right:0}.Column-squareLeadRightPackage{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.Column-squareLeadRightPackage{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1340px){.Column-squareLeadRightPackage{flex-grow:0;flex-shrink:0;max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media (min-width:760px){.Column-squareLeadRightPackage{margin-left:0;margin-right:30px}}.Column-threeUpUltraDense{border-bottom:1px dashed #8b8b8b80;margin:0}.Column-threeUpUltraDense:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-threeUpUltraDense{margin-right:30px}.Column-threeUpUltraDense:last-child{margin-right:0}}.Column-threeUpUltraDense:nth-child(3n+3){border-bottom:none}@media (min-width:760px){.Column-threeUpUltraDense{border-bottom:none;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:unset;min-width:unset;width:calc(33.33333% - 20px)}}.Column-dense,.Column-threeUp{border-bottom:1px dashed #8b8b8b80;margin:initial}.Column-dense:after,.Column-threeUp:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-dense,.Column-threeUp{margin-right:30px}.Column-dense:last-child,.Column-threeUp:last-child{margin-right:0}}.Column-dense:last-child,.Column-threeUp:last-child{border-bottom:none}@media (min-width:760px){.Column-dense,.Column-threeUp{border-bottom:none;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:unset;min-width:unset;width:calc(33.33333% - 20px)}}.Column-fourUp{margin-right:0}.Column-fourUp:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-fourUp{margin-right:30px}.Column-fourUp:last-child{margin-right:0}.Column-fourUp{flex-grow:0;flex-shrink:0;max-width:unset;min-width:unset;width:100%}}@media (min-width:1020px){.Column-fourUp{flex-grow:0;flex-shrink:0;margin-right:27px;max-width:unset;min-width:unset;width:calc(25% - 20.25px)}}@media (min-width:1340px){.Column-fourUp{flex-grow:0;flex-shrink:0;margin-right:30px;max-width:unset;min-width:unset;width:calc(25% - 22.5px)}}.Column-threeUpStack{display:flex;flex-wrap:wrap;margin:0}.Column-threeUpStack:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-threeUpStack{margin-right:30px}.Column-threeUpStack:last-child{margin-right:0}}@media (min-width:360px) and (max-width:759px){.Column-threeUpStack{padding-bottom:10px}}@media (min-width:760px){.Column-threeUpStack{border-bottom:none}}.Column-dense{margin-right:20px}@media only screen and (max-width:759px){.Column-dense:last-child{border-bottom:1px dashed #8b8b8b80}}@media (min-width:760px){.Column-dense{max-width:calc(33.33333% - 14px)}}@media (min-width:1020px){.Column-dense{max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px);padding-bottom:30px}}@media (min-width:1340px){.Column-dense{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.Column-twoUp{margin-right:30px}.Column-twoUp:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-twoUp{margin-right:30px}.Column-twoUp:last-child{margin-right:0}.Column-twoUp{flex-grow:0;flex-shrink:0;max-width:calc(50% - 30px);min-width:calc(50% - 30px)}}@media (min-width:1020px){.Column-twoUp{flex-grow:0;flex-shrink:0;max-width:calc(50% - 30px);min-width:calc(50% - 30px)}}@media (min-width:1340px){.Column-twoUp{flex-grow:0;flex-shrink:0;max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}.Column-imageDenseLeft{margin-right:30px}.Column-imageDenseLeft:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-imageDenseLeft{margin-right:30px}.Column-imageDenseLeft:last-child{margin-right:0}.Column-imageDenseLeft{flex-grow:0;flex-shrink:0;max-width:calc(66.66667% - 30px);min-width:calc(66.66667% - 30px)}}@media (min-width:1020px){.Column-imageDenseLeft{flex-grow:0;flex-shrink:0;max-width:calc(66.66667% - 30px);min-width:calc(66.66667% - 30px)}}@media (min-width:1340px){.Column-imageDenseLeft{flex-grow:0;flex-shrink:0;max-width:calc(66.66667% - 30px);min-width:calc(66.66667% - 30px)}}@media only screen and (max-width:759px){.Column-imageDenseLeft .Card-card{margin-bottom:22px}.Column-imageDenseLeft .Card-card:last-child{margin-bottom:0}}.Column-imageDenseRight{margin-right:30px}.Column-imageDenseRight .Card-card .Card-title{font-weight:500}@media (max-width:759px){.Column-imageDenseRight .Card-card .Card-title{font-size:17px}}.Column-imageDenseRight:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-imageDenseRight{margin-right:30px}.Column-imageDenseRight:last-child{margin-right:0}.Column-imageDenseRight{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.Column-imageDenseRight{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1340px){.Column-imageDenseRight{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.Column-dynamicContentMobile{display:flex;flex-wrap:wrap;justify-content:space-between;margin-right:0}.Column-dynamicContentMobile:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-dynamicContentMobile{margin-right:30px}.Column-dynamicContentMobile:last-child{margin-right:0}}.Column-dynamicContentMobile>div:nth-child(2n){margin-left:30px}.Column-oneImageDense{display:flex;flex-wrap:wrap;justify-content:space-between;margin-right:0}.Column-oneImageDense:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-oneImageDense{margin-right:30px}.Column-oneImageDense:last-child{margin-right:0}.Column-oneImageDense{flex-grow:0;flex-shrink:0;max-width:unset;min-width:unset;width:100%}}.Column-oneImageDense>div:nth-child(2n){margin-left:30px}.Column-flexibleLabel{border-top:5px solid #002f6c;color:#002f6c;display:block;font-size:16px;font-weight:800;line-height:19px;padding:10px 0 0;text-transform:uppercase}.Column-flexibleLabel:hover{color:#2077b6}@media (min-width:760px){.Column-flexibleLabel{padding-bottom:10px}}@media (min-width:1020px){.Column-flexibleLabel{padding-bottom:10px}}@media (min-width:1340px){.Column-flexibleLabel{font-size:18px;padding-bottom:20px}}.Column-topBorder{border-top:1px dashed #8b8b8b80;padding-top:15px}@media (min-width:760px){.Column-topBorder{border-top:none;padding-top:0}}.Column-topMargin{margin-top:20px}@media (min-width:760px){.Column-topMargin{margin-top:0}}.Column-videoFeatured{margin-right:0}.Column-videoFeatured:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-videoFeatured{margin-right:30px}.Column-videoFeatured:last-child{margin-right:0}.Column-videoFeatured{flex-grow:0;flex-shrink:0;max-width:unset;min-width:unset;width:100%}}@media (min-width:1020px){.Column-videoFeatured{flex-grow:0;flex-shrink:0;margin-top:-20px;max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1340px){.Column-videoFeatured{flex-grow:0;flex-shrink:0;max-width:unset;min-width:unset;width:calc(33.33333% - 10px)}}
.PlayButton-container{border-top:6px solid #fcb700;height:100%;left:0;position:absolute;top:0;width:100%;z-index:1}.PlayButton-base{align-items:center;background-color:#fcb700;color:#fff;display:flex;font-size:12px;height:40px;justify-content:center;position:absolute;right:0;top:-5px;transition:all .15s linear;width:40px;z-index:1}@media (min-width:760px){.PlayButton-base{font-size:14px;height:50px;width:50px}}@media (min-width:760px){.PlayButton-featured{font-size:22px;height:80px;width:80px}}@media (min-width:1340px){.PlayButton-featuredMediaPlaybutton{height:100px;width:100px}}[data-type=playlist]{box-shadow:inset 10 2px 10px #dcffa6,10 2px 15px #000}.PlayButton-icon{align-items:center;border:2px solid #fcb700;display:flex;height:30px;justify-content:center;transition:border .15s linear;width:30px;z-index:2}.PlayButton-base:hover .PlayButton-icon,a:focus .PlayButton-icon,a:hover .PlayButton-icon,button:focus .PlayButton-icon,button:hover .PlayButton-icon{border:2px solid #fff}@media (min-width:760px){.PlayButton-icon{height:40px;width:40px}.PlayButton-featured .PlayButton-icon{border:2px solid #fcb700;height:60px;width:60px}}.PlayButton-flyout{align-items:center;background-color:#fcb700;color:#071d3900;display:flex;font-size:9px;font-weight:800;height:100%;justify-content:center;letter-spacing:1px;line-height:1;position:absolute;right:35px;text-align:left;text-transform:uppercase;top:0;transform:scaleX(0);transform-origin:center right;transition:color .15s linear,transform .15s linear .15s;width:90px;z-index:1}.PlayButton-base:hover .PlayButton-flyout,a:focus .PlayButton-flyout,a:hover .PlayButton-flyout,button:focus .PlayButton-flyout,button:hover .PlayButton-flyout{color:#071d39;transform:scaleX(1);transition:color .15s linear .15s,transform .15s linear}@media (min-width:760px){.PlayButton-flyout{font-size:12px;letter-spacing:2.2px;text-align:center;width:130px}.PlayButton-featured .PlayButton-flyout{font-size:20px;right:80px;width:200px}}@media (max-width:1019px){.PlayButton-base:hover .PlayButton-flyout.PlayButton-suppressFlyout,a:focus .PlayButton-flyout.PlayButton-suppressFlyout,a:hover .PlayButton-flyout.PlayButton-suppressFlyout,button:focus .PlayButton-flyout.PlayButton-suppressFlyout,button:hover .PlayButton-flyout.PlayButton-suppressFlyout{transform:scaleX(0)}}@media (min-width:1340px){.PlayButton-flyout{right:35px}}@media (max-width:759px){.FeaturedVideoModule-videoPlayerContainer .PlayButton-base{font-size:18px;height:60px;width:60px}.Card-featuredRectangleMediaImagedense .PlayButton-flyout,.InlineVideo-wrapper .PlayButton-flyout{justify-content:center;right:30px}.FeaturedVideoModule-videoPlayerContainer .PlayButton-featured .PlayButton-flyout{font-size:20px;right:40px;width:200px}}.FeaturedVideoModule-videoPlayerContainer .PlayButton-flyout{justify-content:center}.PlayButton-hover{color:#071d39;transform:scaleX(1);transition:color .15s linear .15s,transform .15s linear}@media (max-width:759px){.PlayButton-hover.PlayButton-suppressFlyout{transform:scaleX(0)}}.PlayButton-featured .PlayButton-iconHover{border:2px solid #fff;transition:border .15s linear}.PlayButton-playlistWrapper{position:relative}.PlayButton-playlist{background-color:#fff;box-shadow:-5px 5px 0 0 #fcb700;height:35px;position:absolute;right:5px;top:5px;width:40px}.PlayButton-playlist:hover,a:focus .PlayButton-playlist,a:hover .PlayButton-playlist,button:focus .PlayButton-playlist,button:hover .PlayButton-playlist{visibility:hidden}@media (min-width:760px){.PlayButton-playlist{height:45px;width:50px}}@media (min-width:760px){.PlayButton-featuredPlaylist{height:75px;width:80px}}.PlayButton-sizeVariationOne.PlayButton-container{border-top:4px solid #fcb700}.PlayButton-sizeVariationOne .PlayButton-base{height:40px;top:-4px;width:40px}@media (min-width:760px){.PlayButton-sizeVariationOne .PlayButton-base{height:25px;width:25px}}@media (min-width:1340px){.PlayButton-sizeVariationOne .PlayButton-base{height:40px;width:40px}}.PlayButton-sizeVariationOne .PlayButton-icon{font-size:14px;height:40px;width:40px}@media (min-width:760px){.PlayButton-sizeVariationOne .PlayButton-icon{font-size:10px;height:25px;width:25px}}@media (min-width:1340px){.PlayButton-sizeVariationOne .PlayButton-icon{font-size:14px;height:40px;width:40px}}.PlayButton-base:hover .PlayButton-sizeVariationOne .PlayButton-icon,a:focus .PlayButton-sizeVariationOne .PlayButton-icon,a:hover .PlayButton-sizeVariationOne .PlayButton-icon,button:focus .PlayButton-sizeVariationOne .PlayButton-icon,button:hover .PlayButton-sizeVariationOne .PlayButton-icon{border:2px solid #fcb700}@media (min-width:760px){.PlayButton-sizeVariationOne .PlayButton-flyout{right:10px}}@media (min-width:1340px){.PlayButton-sizeVariationOne .PlayButton-flyout{right:35px}}.PlayButton-sizeVariationFive.PlayButton-container{border-top:6px solid #fcb700}.PlayButton-sizeVariationFive .PlayButton-base{font-size:11px;height:38px;width:38px}.PlayButton-sizeVariationFive .PlayButton-icon{font-size:14px;height:26px;width:26px}.PlayButton-base:hover .PlayButton-sizeVariationFive .PlayButton-icon,a:focus .PlayButton-sizeVariationFive .PlayButton-icon,a:hover .PlayButton-sizeVariationFive .PlayButton-icon,button:focus .PlayButton-sizeVariationFive .PlayButton-icon,button:hover .PlayButton-sizeVariationFive .PlayButton-icon{border:1px solid #fff}.PlayButton-sizeVariationFive .PlayButton-flyout{font-size:10px;font-weight:900;height:38px;letter-spacing:1px;line-height:12px;width:84px}.PlayButton-smallVersion .PlayButton-base{height:29px;top:-4px;width:29px}@media (min-width:760px){.PlayButton-smallVersion .PlayButton-base{height:38px;width:38px}}.PlayButton-smallVersion .PlayButton-flyout{font-size:8px;right:29px;width:71px}@media (min-width:760px){.PlayButton-smallVersion .PlayButton-flyout{font-size:12px;right:35px;width:85px}}@media (min-width:1020px){.PlayButton-smallVersion .PlayButton-flyout{width:77px}}@media (min-width:1340px){.PlayButton-smallVersion .PlayButton-flyout{width:85px}}.PlayButton-smallVersion .PlayButton-icon{font-size:12px;height:29px;width:29px}@media (min-width:760px){.PlayButton-smallVersion .PlayButton-icon{font-size:13px;height:38px;width:38px}}.PlayButton-base:hover .PlayButton-smallVersion .PlayButton-icon,a:focus .PlayButton-smallVersion .PlayButton-icon,a:hover .PlayButton-smallVersion .PlayButton-icon,button:focus .PlayButton-smallVersion .PlayButton-icon,button:hover .PlayButton-smallVersion .PlayButton-icon{border:2px solid #fcb700}</style><title itemprop="name">International Business, World News &amp; Global Stock Market Analysis</title><meta content="initial-scale=1.0, width=device-width" name="viewport"/><meta content="IE=Edge" http-equiv="X-UA-Compatible"/><meta content="franchise" property="AssetType"/><meta content="100727362" property="pageNodeId"/><meta content="CNBC International is the world leader for news on business, technology, China, trade, oil prices, the Middle East and markets." itemprop="description" name="description"/><link href="https://www.cnbc.com/world/" rel="canonical"/><meta content="website" property="og:type"/><meta content="International: Top News And Analysis" property="og:title"/><meta content="CNBC International is the world leader for news on business, technology, China, trade, oil prices, the Middle East and markets." property="og:description"/><meta content="https://www.cnbc.com/world/" property="og:url"/><meta content="CNBC" property="og:site_name"/><meta content="2016-09-27T13:00:09+0000" itemprop="dateCreated"/><meta content="2024-08-21T14:43:49+0000" itemprop="dateModified"/><meta content="2024-08-21T14:43:49+0000" itemprop="lastReviewed"/><meta content="en-US" itemprop="inLanguage"/><meta content="https://sc.cnbcfm.com/applications/cnbc.com/staticcontent/img/cnbc_logo_new.png?v=1524171804&amp;w=1920&amp;h=1080" itemprop="image" property="og:image"/><meta content="https://sc.cnbcfm.com/applications/cnbc.com/staticcontent/img/cnbc_logo_new.png?v=1524171804&amp;w=1920&amp;h=1080" name="twitter:image:src"/><meta content="https://sc.cnbcfm.com/applications/cnbc.com/staticcontent/img/cnbc_logo_new.png?v=1524171804&amp;w=1920&amp;h=1080" name="twitter:image"/><meta content="@CNBC" name="twitter:creator"/><meta content="https://www.facebook.com/cnbc" property="article:publisher"/><meta content="2016-09-27T13:00:09+0000" property="article:published_time"/><meta content="2024-08-21T14:43:49+0000" property="article:modified_time"/><meta content="NR" itemprop="contentRating"/><meta content="CNBC Meets,Charting Asia,business news" name="news_keywords"/><meta content="CNBC Meets,Charting Asia,business news" itemprop="keywords" name="keywords"/><meta content="CNBC Meets,Charting Asia" itemprop="specialty"/><meta content="universal" name="tp:PreferredRuntimes"/><meta content="M3U,MPEG4" name="tp:PreferredFormats"/><meta content="false" name="tp:initialize"/><meta content="app-id=398018310" name="apple-itunes-app"/><meta content="CNBC Business News and Finance" property="al:ios:app_name"/><meta content="398018310" property="al:ios:app_store_id"/><meta content="https://sc.cnbcfm.com/applications/cnbc.com/staticcontent/img/cnbc_logo_new.png?v=1524171804" itemprop="primaryImageOfPage"/><meta content='{"nodeid":100727362,"originalImage":"https://sc.cnbcfm.com/applications/cnbc.com/resources/img/editorial/2015/03/30/102546467-Most-Popular--Image-Placeholder-Large.jpg"}' name="parsely-metadata"/><script type="application/ld+json">{"@context":"https://schema.org","@type":"CollectionPage","mainEntityOfPage":"https://www.cnbc.com/world/","url":"https://www.cnbc.com/world/","inLanguage":"en-US","copyrightYear":2024,"copyrightHolder":{"@id":"https://www.cnbc.com","@type":"NewsMediaOrganization"},"sourceOrganization":{"@id":"https://www.cnbc.com","@type":"NewsMediaOrganization"},"headline":"International: Top News And Analysis","description":"CNBC International is the world leader for news on business, technology, China, trade, oil prices, the Middle East and markets.","dateCreated":"2016-09-27T13:00:09+0000","datePublished":"2016-09-27T13:00:09+0000","dateModified":"2024-08-21T14:43:49+0000","image":{"@type":"ImageObject","url":"https://sc.cnbcfm.com/applications/cnbc.com/staticcontent/img/cnbc_logo_new.png?v=1524171804","width":"720","height":"405"},"thumbnailUrl":"https://sc.cnbcfm.com/applications/cnbc.com/staticcontent/img/cnbc_logo_new.png?v=1524171804&w=720&h=405","publisher":{"@type":"NewsMediaOrganization","name":"CNBC","url":"https://www.cnbc.com/","logo":{"@type":"ImageObject","url":"https://sc.cnbcfm.com/applications/cnbc.com/staticcontent/img/cnbc-hdr-logo2.png","width":360,"height":60},"sameAs":["https://www.facebook.com/cnbc","https://www.instagram.com/cnbc","https://www.linkedin.com/company/cnbc","https://twitter.com/cnbc","https://en.wikipedia.org/wiki/CNBC","https://www.youtube.com/cnbc"]},"keywords":["cnbc","CNBC Meets","Charting Asia","International: Top News And Analysis"]}</script><link as="script" href="https://static-redesign.cnbcfm.com/dist/main-37c2d3419753c15b6ae9.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/54711-074183786c75107fe881.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/39232-441ed94f5c408157935b.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/22143-499b162db2fa51141497.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/98051-8ef3c8da838640dce6e1.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/CNBCGlobalNav-827fab83e29db698ed0a.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/components-PcmModule-MarketsBanner-64183bfc5529c43fa4c8.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/components-PcmModule-Ads-TopBanner-eff93b6c9936548d80d1.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/components-PcmModule-QuickLinks-ff3da69fb210a129df52.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/components-PcmModule-LegacyPlayerContainer-914b66d44239746adc27.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/components-PcmModule-FeaturedNewsHero-c68b83c1fddbce9cd6fd.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/components-PcmModule-EventSignUpHP-26c8bc94a98bb7237c8e.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/components-PcmModule-QuoteFinder-bb2a43cdd62e8d965c75.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/components-PcmModule-MarketMoversPlus-0aa6c9ed1d93c1d044c3.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/components-PcmModule-RiverPlus-e330835f29746f5abaee.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/components-PcmModule-Ads-BoxRail-e5bc2aa430bec08bd929.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/14984-6687886021e23649eab2.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/components-PcmModule-MarketsModule-82b78d3fc88b74ac3934.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/15641-3efad4eb048bac43c4ea.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/49181-590c1330b8b3c38c85a1.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/components-PcmModule-Ads-MidResponsive-8a544ff9931197ae617d.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/12532-2f3f00a9d7512f1ebaea.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/33082-851f19e555aa4c73f6e0.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/79815-445debc26f6c92804c3b.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/components-Column-f6a8929d74962773bbe4.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/components-PcmModule-VideoBreakerFeatured-d7bbaa06c377fd9414bd.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/components-PcmModule-Breakers-FeaturedBreaker-426e0a4fb8ecada475c4.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/components-PcmModule-TrendingNowBreaker-e3d403c139abcd7be687.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/components-PcmModule-TwoColumnImageDense-692740462083e87ec1ed.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/components-Footer-CNBCFooter-996fa06f332dfd1f8ce8.js" rel="preload"/><script async="" src="https://assets.adobedtm.com/a2ef59fba8e9/d6969c3828c3/launch-1ee49e3e9eb5.min.js"></script></head><body><div itemprop="publisher" itemscope="" itemtype="https://schema.org/NewsMediaOrganization"><meta content="CNBC" itemprop="name"/><meta content="https://www.cnbc.com" itemprop="url"/><meta content="'1989-04-17'" itemprop="foundingDate"/></div><div id="root"><div class="App-containerClick"><div class="cnbcBrand" id="BrandPageWrapper"><div class="JumpLink-container"><a class="JumpLink-link" href="#MainContent">Skip Navigation</a></div><header class="CNBCGlobalNav-container" data-analytics="HomePageInternational-GlobalNavigation" data-test="GlobalNavigation" id="GlobalNavigation"><div class="CountdownClock-countdownContainer"><div class="CountdownClock-container" data-module="mps-slot" id="GlobalNavigation-CountdownClock"></div></div><div class="CNBCGlobalNav-globalNavigation"><div class="CNBCGlobalNav-gridContainer"><div class="CNBCGlobalNav-wrapper"><div class="branding-menu-brandingMenu"><a class="branding-menu-logo" href="//www.cnbc.com/world/"><img alt="logo" class="branding-menu-logo" src="https://static-redesign.cnbcfm.com/dist/7821ea3cb72f88388591.svg"/></a></div><div class="CNBCGlobalNav-desktopNavMenu"><div class="nav-menu-navMenu" id="nav-menu"><button aria-label="Open Navigation Menu" class="nav-menu-desktopHamburger nav-menu-button"><span class="icon-menu"></span></button><a class="nav-menu-logoContainer" href="/"><img alt="logo" class="nav-menu-logo" src="https://static-redesign.cnbcfm.com/dist/2469ed0a9a4cafdf055e.svg"/></a><div class="nav-menu-mainLinks"><div class="nav-menu-mainLinksWrapperStart nav-menu-mainLinksWrapper"><div class="nav-menu-navLinks"><div class="nav-menu-primaryLink markets"><a class="nav-menu-button" href="/markets/"><span class="icon-markets"></span><span class="nav-menu-buttonText">Markets</span></a><ul class="nav-menu-subLinks" style="display:none"><li data-text="Pre-Markets"><a class="nav-menu-subLink" href="/pre-markets/" tabindex="-1">Pre-Markets</a></li><li data-text="U.S. Markets"><a class="nav-menu-subLink" href="/us-markets/" tabindex="-1">U.S. Markets</a></li><li data-text="Europe Markets"><a class="nav-menu-subLink" href="/markets-europe/" tabindex="-1">Europe Markets</a></li><li data-text="China Markets"><a class="nav-menu-subLink" href="/china-markets/" tabindex="-1">China Markets</a></li><li data-text="Asia Markets"><a class="nav-menu-subLink" href="/markets-asia-pacific/" tabindex="-1">Asia Markets</a></li><li data-text="World Markets"><a class="nav-menu-subLink" href="/world-markets/" tabindex="-1">World Markets</a></li><li data-text="Currencies"><a class="nav-menu-subLink" href="/currencies/" tabindex="-1">Currencies</a></li><li data-text="Cryptocurrency"><a class="nav-menu-subLink" href="/cryptocurrency/" tabindex="-1">Cryptocurrency</a></li><li data-text="Futures &amp; Commodities"><a class="nav-menu-subLink" href="/futures-and-commodities/" tabindex="-1">Futures &amp; Commodities</a></li><li data-text="Bonds"><a class="nav-menu-subLink" href="/bonds/" tabindex="-1">Bonds</a></li><li data-text="Funds &amp; ETFs"><a class="nav-menu-subLink" href="/funds-and-etfs/" tabindex="-1">Funds &amp; ETFs</a></li></ul></div><div class="nav-menu-primaryLink business_news"><a class="nav-menu-button" href="/business/"><span class="icon-news"></span><span class="nav-menu-buttonText">Business</span></a><ul class="nav-menu-subLinks" style="display:none"><li data-text="Economy"><a class="nav-menu-subLink" href="/economy/" tabindex="-1">Economy</a></li><li data-text="Finance"><a class="nav-menu-subLink" href="/finance/" tabindex="-1">Finance</a></li><li data-text="Health &amp; Science"><a class="nav-menu-subLink" href="/health-and-science/" tabindex="-1">Health &amp; Science</a></li><li data-text="Media"><a class="nav-menu-subLink" href="/media/" tabindex="-1">Media</a></li><li data-text="Real Estate"><a class="nav-menu-subLink" href="/real-estate/" tabindex="-1">Real Estate</a></li><li data-text="Energy"><a class="nav-menu-subLink" href="/energy/" tabindex="-1">Energy</a></li><li data-text="Climate"><a class="nav-menu-subLink" href="/climate/" tabindex="-1">Climate</a></li><li data-text="Transportation"><a class="nav-menu-subLink" href="/transportation/" tabindex="-1">Transportation</a></li><li data-text="Industrials"><a class="nav-menu-subLink" href="/industrials/" tabindex="-1">Industrials</a></li><li data-text="Retail"><a class="nav-menu-subLink" href="/retail/" tabindex="-1">Retail</a></li><li data-text="Wealth"><a class="nav-menu-subLink" href="/wealth/" tabindex="-1">Wealth</a></li><li data-text="Sports"><a class="nav-menu-subLink" href="/sports/" tabindex="-1">Sports</a></li><li data-text="Life"><a class="nav-menu-subLink" href="/life/" tabindex="-1">Life</a></li><li data-text="Small Business"><a class="nav-menu-subLink" href="/small-business/" tabindex="-1">Small Business</a></li></ul></div><div class="nav-menu-primaryLink investing"><a class="nav-menu-button" href="/investing/"><span class="icon-investing"></span><span class="nav-menu-buttonText">Investing</span></a><ul class="nav-menu-subLinks" style="display:none"><li data-text="Personal Finance"><a class="nav-menu-subLink" href="/personal-finance/" tabindex="-1">Personal Finance</a></li><li data-text="Fintech"><a class="nav-menu-subLink" href="/fintech/" tabindex="-1">Fintech</a></li><li data-text="Financial Advisors"><a class="nav-menu-subLink" href="/financial-advisors/" tabindex="-1">Financial Advisors</a></li><li data-text="Options Action"><a class="nav-menu-subLink" href="/options-action/" tabindex="-1">Options Action</a></li><li data-text="ETF Street"><a class="nav-menu-subLink" href="/etf-street/" tabindex="-1">ETF Street</a></li><li data-text="Buffett Archive"><a class="nav-menu-subLink" href="https://buffett.cnbc.com" tabindex="-1" target="_blank">Buffett Archive</a></li><li data-text="Earnings"><a class="nav-menu-subLink" href="/earnings/" tabindex="-1">Earnings</a></li><li data-text="Trader Talk"><a class="nav-menu-subLink" href="/trader-talk/" tabindex="-1">Trader Talk</a></li></ul></div><div class="nav-menu-primaryLink tech"><a class="nav-menu-button" href="/technology/"><span class="icon-tech"></span><span class="nav-menu-buttonText">Tech</span></a><ul class="nav-menu-subLinks" style="display:none"><li data-text="Cybersecurity"><a class="nav-menu-subLink" href="/cybersecurity/" tabindex="-1">Cybersecurity</a></li><li data-text="Enterprise"><a class="nav-menu-subLink" href="/enterprise/" tabindex="-1">Enterprise</a></li><li data-text="Internet"><a class="nav-menu-subLink" href="/internet/" tabindex="-1">Internet</a></li><li data-text="Media"><a class="nav-menu-subLink" href="/media/" tabindex="-1">Media</a></li><li data-text="Mobile"><a class="nav-menu-subLink" href="/mobile/" tabindex="-1">Mobile</a></li><li data-text="Social Media"><a class="nav-menu-subLink" href="/social-media/" tabindex="-1">Social Media</a></li><li data-text="CNBC Disruptor 50"><a class="nav-menu-subLink" href="/cnbc-disruptors/" tabindex="-1">CNBC Disruptor 50</a></li><li data-text="Tech Guide"><a class="nav-menu-subLink" href="/tech-guide/" tabindex="-1">Tech Guide</a></li></ul></div><div class="nav-menu-primaryLink politics"><a class="nav-menu-button" href="/politics/"><span class="icon-politics"></span><span class="nav-menu-buttonText">Politics</span></a><ul class="nav-menu-subLinks" style="display:none"><li data-text="White House"><a class="nav-menu-subLink" href="/white-house/" tabindex="-1">White House</a></li><li data-text="Policy"><a class="nav-menu-subLink" href="/policy/" tabindex="-1">Policy</a></li><li data-text="Defense"><a class="nav-menu-subLink" href="/defense/" tabindex="-1">Defense</a></li><li data-text="Congress"><a class="nav-menu-subLink" href="/congress/" tabindex="-1">Congress</a></li><li data-text="Equity and Opportunity"><a class="nav-menu-subLink" href="/equity-opportunity/" tabindex="-1">Equity and Opportunity</a></li><li data-text="Europe Politics"><a class="nav-menu-subLink" href="/europe-politics/" tabindex="-1">Europe Politics</a></li><li data-text="China Politics"><a class="nav-menu-subLink" href="/china-politics/" tabindex="-1">China Politics</a></li><li data-text="Asia Politics"><a class="nav-menu-subLink" href="/asia-politics/" tabindex="-1">Asia Politics</a></li><li data-text="World Politics"><a class="nav-menu-subLink" href="/world-politics/" tabindex="-1">World Politics</a></li></ul></div><div class="nav-menu-primaryLink video"><a class="nav-menu-button" href="/tv/"><span class="icon-cnbctv"></span><span class="nav-menu-buttonText">Video</span></a><ul class="nav-menu-subLinks" style="display:none"><li data-text="Latest Video"><a class="nav-menu-subLink" href="/latest-video/" tabindex="-1">Latest Video</a></li><li data-text="Full Episodes"><a class="nav-menu-subLink" href="/live-tv/full-episodes/" tabindex="-1">Full Episodes</a></li><li data-text="Livestream"><a class="nav-menu-subLink" href="/live-tv/" tabindex="-1">Livestream</a></li><li data-text="Top Video"><a class="nav-menu-subLink" href="/top-video/" tabindex="-1">Top Video</a></li><li data-text="Live Audio"><a class="nav-menu-subLink" href="/live-audio/" tabindex="-1">Live Audio</a></li><li data-text="Europe TV"><a class="nav-menu-subLink" href="/europe-television/" tabindex="-1">Europe TV</a></li><li data-text="Asia TV"><a class="nav-menu-subLink" href="/asia-business-day/" tabindex="-1">Asia TV</a></li><li data-text="CNBC Podcasts"><a class="nav-menu-subLink" href="/podcast/" tabindex="-1">CNBC Podcasts</a></li><li data-text="CEO Interviews"><a class="nav-menu-subLink" href="/video-ceo-interviews/" tabindex="-1">CEO Interviews</a></li><li data-text="Digital Originals"><a class="nav-menu-subLink" href="/digital-original/" tabindex="-1">Digital Originals</a></li></ul></div><div class="nav-menu-primaryLink watchlist"><a class="nav-menu-button" href="/watchlist/"><span class="icon-watchlist"></span><span class="nav-menu-buttonText">Watchlist</span></a></div><div class="nav-menu-primaryLink investing_club"><a class="nav-menu-button" href="/investingclub/subscribe?__source=investingclub|globalnav|join&amp;tpcc=investingclub|globalnav|join"><span class="icon-investing_club"></span><span class="nav-menu-buttonText">Investing Club</span></a><ul class="nav-menu-subLinks" style="display:none"><li data-text="Trust Portfolio"><a class="nav-menu-subLink" href="/investingclub/charitable-trust/" tabindex="-1">Trust Portfolio</a></li><li data-text="Analysis"><a class="nav-menu-subLink" href="/investingclub/analysis/" tabindex="-1">Analysis</a></li><li data-text="Trade Alerts"><a class="nav-menu-subLink" href="/investingclub/trade-alerts/" tabindex="-1">Trade Alerts</a></li><li data-text="Meeting Videos"><a class="nav-menu-subLink" href="/investingclub/video/" tabindex="-1">Meeting Videos</a></li><li data-text="Homestretch"><a class="nav-menu-subLink" href="/investingclub/homestretch/" tabindex="-1">Homestretch</a></li><li data-text="Jim's Columns"><a class="nav-menu-subLink" href="/investingclub/jim-cramer-columns/" tabindex="-1">Jim's Columns</a></li><li data-text="Education"><a class="nav-menu-subLink" href="/investingclub/education/" tabindex="-1">Education</a></li><li data-text="Subscribe"><a class="nav-menu-subLink" href="#" tabindex="-1">Subscribe</a></li><li data-text="Sign In"><a class="nav-menu-subLink" href="#" tabindex="-1">Sign In</a></li></ul></div><span class="nav-menu-investingClubPillIcon pillIcon"><object aria-label="IC Join Pill" data="https://static-redesign.cnbcfm.com/dist/31932e96a7cf9a0b8070.svg" type="image/svg+xml"></object></span><div class="nav-menu-primaryLink pro"><a class="nav-menu-button" href="/application/pro?__source=pro|globalnav|join&amp;tpcc=pro|globalnav|join"><span class="icon-pro"></span><span class="nav-menu-buttonText">PRO</span></a><ul class="nav-menu-subLinks" style="display:none"><li data-text="Pro News"><a class="nav-menu-subLink" href="/pro/news/" tabindex="-1">Pro News</a></li><li data-text="Livestream"><a class="nav-menu-subLink" href="/live-tv/" tabindex="-1">Livestream</a></li><li data-text="Full Episodes"><a class="nav-menu-subLink" href="/live-tv/full-episodes/" tabindex="-1">Full Episodes</a></li><li data-text="Stock Screener"><a class="nav-menu-subLink" href="/pro-stock-screener/" tabindex="-1">Stock Screener</a></li><li data-text="Market Forecast"><a class="nav-menu-subLink" href="/2023/05/11/market-strategist-survey-forecast.html" tabindex="-1">Market Forecast</a></li><li data-text="Options Investing"><a class="nav-menu-subLink" href="/pro/options-investing/" tabindex="-1">Options Investing</a></li><li data-text="Chart Investing"><a class="nav-menu-subLink" href="/cnbc-pro-chart-investing/" tabindex="-1">Chart Investing</a></li><li data-text="Subscribe"><a class="nav-menu-subLink" href="#" tabindex="-1">Subscribe</a></li><li data-text="Sign In"><a class="nav-menu-subLink" href="#" tabindex="-1">Sign In</a></li></ul></div><span class="nav-menu-proPillIcon pillIcon"><object aria-label="Pro Join Pill" data="https://static-redesign.cnbcfm.com/dist/65cda4be300e2e8b8112.svg" type="image/svg+xml"></object></span><div class="nav-menu-primaryLink livestream" data-testid="livestream"><div class="WatchLivestream-livestreamNavItemContainer"><div><svg fill="none" height="10" viewbox="0 0 10 10" width="10" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="M4.99875 7.31918C6.27953 7.31918 7.31781 6.28103 7.31781 5.00041C7.31781 3.71979 6.27953 2.68164 4.99875 2.68164C3.71797 2.68164 2.67969 3.71979 2.67969 5.00041C2.67969 6.28103 3.71797 7.31918 4.99875 7.31918Z" fill="#FF0000" fill-rule="evenodd"></path><path clip-rule="evenodd" d="M0 5C0 7.76157 2.23872 10 5 10C7.76128 10 10 7.76157 10 5C10 2.23843 7.76128 0 5 0C2.23872 0 0 2.23843 0 5ZM9.27517 4.99969C9.27517 7.36061 7.36076 9.27477 4.99891 9.27477C2.63706 9.27477 0.722656 7.36061 0.722656 4.99969C0.722656 2.63877 2.63706 0.724609 4.99891 0.724609C7.36076 0.724609 9.27517 2.63877 9.27517 4.99969Z" fill="#FF0000" fill-rule="evenodd"></path></svg></div><div class="WatchLivestream-navItemText"><div><a href="/live-tv/"><span class="WatchLivestream-streamTxt">Livestream</span></a></div></div></div></div><div aria-hidden="true" class="nav-menu-navUnderline"></div><div aria-hidden="true" class="nav-menu-navDropdownWrap"></div><div class="nav-menu-primaryLink hamburger"><button aria-label="Open Navigation Menu" class="nav-menu-hamburger nav-menu-button"><span class="icon-menu"></span><span class="nav-menu-buttonText">Menu</span></button></div></div></div></div><div class="nav-menu-progressBarContainer"></div></div><div class="account-menu-accountMenu account-menu-accountMenuLsPipeBar account-menu-accountMenuLs"><ul><li class="featured-menu-button"><a href="/make-it/" title="makeit">Make It<span class="icon-offsite-arrow"></span></a></li><li><button class="EditionMenu-featuredMenuButton">select<span class="icon-offsite-arrow"></span></button><ul class="EditionMenu-featuredSubLinks"><li class="EditionMenu-featuredListItem"><a class="EditionMenu-featuredSubLink" href="https://www.cnbc.com/select/" tabindex="-1">ALL SELECT</a></li><li class="EditionMenu-featuredListItem"><a class="EditionMenu-featuredSubLink" href="//www.cnbc.com/select/credit-cards/" tabindex="-1"><p>Credit Cards</p> <div class="EditionMenu-chevronRight"></div></a></li><li class="EditionMenu-featuredListItem"><a class="EditionMenu-featuredSubLink" href="//www.cnbc.com/select/loans/" tabindex="-1"><p>Loans</p> <div class="EditionMenu-chevronRight"></div></a></li><li class="EditionMenu-featuredListItem"><a class="EditionMenu-featuredSubLink" href="//www.cnbc.com/select/banking/" tabindex="-1"><p>Banking</p> <div class="EditionMenu-chevronRight"></div></a></li><li class="EditionMenu-featuredListItem"><a class="EditionMenu-featuredSubLink" href="//www.cnbc.com/select/mortgages/" tabindex="-1"><p>Mortgages</p> <div class="EditionMenu-chevronRight"></div></a></li><li class="EditionMenu-featuredListItem"><a class="EditionMenu-featuredSubLink" href="//www.cnbc.com/select/insurance/" tabindex="-1"><p>Insurance</p> <div class="EditionMenu-chevronRight"></div></a></li><li class="EditionMenu-featuredListItem"><a class="EditionMenu-featuredSubLink" href="//www.cnbc.com/select/credit-monitoring/" tabindex="-1"><p>Credit Monitoring</p> <div class="EditionMenu-chevronRight"></div></a></li><li class="EditionMenu-featuredListItem"><a class="EditionMenu-featuredSubLink" href="//www.cnbc.com/select/personal-finance/" tabindex="-1"><p>Personal Finance</p> <div class="EditionMenu-chevronRight"></div></a></li><li class="EditionMenu-featuredListItem"><a class="EditionMenu-featuredSubLink" href="//www.cnbc.com/select/small-business/" tabindex="-1"><p>Small Business</p> <div class="EditionMenu-chevronRight"></div></a></li><li class="EditionMenu-featuredListItem"><a class="EditionMenu-featuredSubLink" href="//www.cnbc.com/select/taxes/" tabindex="-1"><p>Taxes</p> <div class="EditionMenu-chevronRight"></div></a></li><li class="EditionMenu-featuredListItem"><a class="EditionMenu-featuredSubLink" href="//www.cnbc.com/select/low-credit-scores/" tabindex="-1"><p>Help for Low Credit Scores</p> <div class="EditionMenu-chevronRight"></div></a></li><li class="EditionMenu-featuredListItem"><a class="EditionMenu-featuredSubLink" href="//www.cnbc.com/select/investing/" tabindex="-1"><p>Investing</p> <div class="EditionMenu-chevronRight"></div></a></li></ul><ul class="EditionMenu-featuredSubLinks EditionMenu-subMenu"><li class="EditionMenu-backBtn" style="display:none"><a href="#"><p>SELECT</p></a></li><li class="EditionMenu-featuredListItem" style="display:none"><a class="EditionMenu-featuredSubLink" href="//www.cnbc.com/select/credit-cards/" tabindex="-1"><p>All <!-- -->Credit Cards</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Find the Credit Card for You" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/credit-card-marketplace/" tabindex="-1"><p>Find the Credit Card for You</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best Credit Cards" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-credit-cards/" tabindex="-1"><p>Best Credit Cards</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best Rewards Credit Cards" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-rewards-credit-cards/" tabindex="-1"><p>Best Rewards Credit Cards</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best Travel Credit Cards" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-travel-credit-cards/" tabindex="-1"><p>Best Travel Credit Cards</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best 0% APR Credit Cards" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-zero-interest-credit-cards/" tabindex="-1"><p>Best 0% APR Credit Cards</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best Balance Transfer Credit Cards" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-balance-transfer-credit-cards/" tabindex="-1"><p>Best Balance Transfer Credit Cards</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best Cash Back Credit Cards" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-cash-back-credit-cards/" tabindex="-1"><p>Best Cash Back Credit Cards</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best Credit Card Welcome Bonuses" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-credit-card-sign-up-bonuses/" tabindex="-1"><p>Best Credit Card Welcome Bonuses</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best Credit Cards to Build Credit" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/the-best-credit-cards-for-building-credit/" tabindex="-1"><p>Best Credit Cards to Build Credit</p></a></li><li class="EditionMenu-backBtn" style="display:none"><a href="#"><p>SELECT</p></a></li><li class="EditionMenu-featuredListItem" style="display:none"><a class="EditionMenu-featuredSubLink" href="//www.cnbc.com/select/loans/" tabindex="-1"><p>All <!-- -->Loans</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Find the Best Personal Loan for You" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/personal-loan-marketplace/" tabindex="-1"><p>Find the Best Personal Loan for You</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best Personal Loans" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-personal-loans/" tabindex="-1"><p>Best Personal Loans</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best Debt Consolidation Loans" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-debt-consolidation-loans/" tabindex="-1"><p>Best Debt Consolidation Loans</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best Loans to Refinance Credit Card Debt" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-loans-for-refinancing-credit-card-debt/" tabindex="-1"><p>Best Loans to Refinance Credit Card Debt</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best Loans with Fast Funding" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/6-personal-loans-thatll-get-you-funded-in-as-little-as-1-business-day/" tabindex="-1"><p>Best Loans with Fast Funding</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best Small Personal Loans" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-small-personal-loans/" tabindex="-1"><p>Best Small Personal Loans</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best Large Personal Loans" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/personal-loan-lenders-borrow-50000/" tabindex="-1"><p>Best Large Personal Loans</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best Personal Loans to Apply Online" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/personal-loan-online-applications/" tabindex="-1"><p>Best Personal Loans to Apply Online</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best Student Loan Refinance" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-student-loan-refinance-companies/" tabindex="-1"><p>Best Student Loan Refinance</p></a></li><li class="EditionMenu-backBtn" style="display:none"><a href="#"><p>SELECT</p></a></li><li class="EditionMenu-featuredListItem" style="display:none"><a class="EditionMenu-featuredSubLink" href="//www.cnbc.com/select/banking/" tabindex="-1"><p>All <!-- -->Banking</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Find the Savings Account for You" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/savings-marketplace/" tabindex="-1"><p>Find the Savings Account for You</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best High Yield Savings Accounts" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-high-yield-savings-accounts/" tabindex="-1"><p>Best High Yield Savings Accounts</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best Big Bank Savings Accounts" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-brick-and-mortar-savings-accounts/" tabindex="-1"><p>Best Big Bank Savings Accounts</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best Big Bank Checking Accounts" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-brick-mortar-checking-accounts/" tabindex="-1"><p>Best Big Bank Checking Accounts</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best No Fee Checking Accounts" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-no-fee-checking-accounts/" tabindex="-1"><p>Best No Fee Checking Accounts</p></a></li><li class="EditionMenu-featuredListItem" data-testid="No Overdraft Fee Checking Accounts" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/checking-accounts-with-no-overdraft-fees/" tabindex="-1"><p>No Overdraft Fee Checking Accounts</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best Checking Account Bonuses" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-checking-account-bonuses/" tabindex="-1"><p>Best Checking Account Bonuses</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best Money Market Accounts" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-money-market-accounts/" tabindex="-1"><p>Best Money Market Accounts</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best CDs" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-certificates-of-deposits/" tabindex="-1"><p>Best CDs</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best Credit Unions" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-credit-unions/" tabindex="-1"><p>Best Credit Unions</p></a></li><li class="EditionMenu-backBtn" style="display:none"><a href="#"><p>SELECT</p></a></li><li class="EditionMenu-featuredListItem" style="display:none"><a class="EditionMenu-featuredSubLink" href="//www.cnbc.com/select/mortgages/" tabindex="-1"><p>All <!-- -->Mortgages</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best Mortgages" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-mortgage-lenders/" tabindex="-1"><p>Best Mortgages</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best Mortgages for Small Down Payment" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/mortgage-lenders-for-a-small-down-payment/" tabindex="-1"><p>Best Mortgages for Small Down Payment</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best Mortgages for No Down Payment" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-mortgage-lenders-va-loans-usda-loans/" tabindex="-1"><p>Best Mortgages for No Down Payment</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best Mortgages with No Origination Fee" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-mortgage-lenders-that-dont-charge-origination-fees/" tabindex="-1"><p>Best Mortgages with No Origination Fee</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best Mortgages for Average Credit Score" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-mortgage-lenders-average-credit-score/" tabindex="-1"><p>Best Mortgages for Average Credit Score</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Adjustable Rate Mortgages" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/adjustable-rate-mortgage-pros-and-cons/" tabindex="-1"><p>Adjustable Rate Mortgages</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Affording a Mortgage" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/mortgage-affordability/" tabindex="-1"><p>Affording a Mortgage</p></a></li><li class="EditionMenu-backBtn" style="display:none"><a href="#"><p>SELECT</p></a></li><li class="EditionMenu-featuredListItem" style="display:none"><a class="EditionMenu-featuredSubLink" href="//www.cnbc.com/select/insurance/" tabindex="-1"><p>All <!-- -->Insurance</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best Life Insurance" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-life-insurance-companies/" tabindex="-1"><p>Best Life Insurance</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best Homeowners Insurance" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-homeowners-insurance-companies/" tabindex="-1"><p>Best Homeowners Insurance</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best Renters Insurance" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-renters-insurance-companies/" tabindex="-1"><p>Best Renters Insurance</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best Car Insurance" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-car-insurance-companies/" tabindex="-1"><p>Best Car Insurance</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Travel Insurance" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/travel-insurance-guide/" tabindex="-1"><p>Travel Insurance</p></a></li><li class="EditionMenu-backBtn" style="display:none"><a href="#"><p>SELECT</p></a></li><li class="EditionMenu-featuredListItem" style="display:none"><a class="EditionMenu-featuredSubLink" href="//www.cnbc.com/select/credit-monitoring/" tabindex="-1"><p>All <!-- -->Credit Monitoring</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best Credit Monitoring Services" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-credit-monitoring-services/" tabindex="-1"><p>Best Credit Monitoring Services</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best Identity Theft Protection" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-identity-theft-protection-services/" tabindex="-1"><p>Best Identity Theft Protection</p></a></li><li class="EditionMenu-featuredListItem" data-testid="How to Boost Your Credit Score" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/how-experian-boost-works/" tabindex="-1"><p>How to Boost Your Credit Score</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Credit Repair Services" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/how-do-credit-repair-services-work/" tabindex="-1"><p>Credit Repair Services</p></a></li><li class="EditionMenu-backBtn" style="display:none"><a href="#"><p>SELECT</p></a></li><li class="EditionMenu-featuredListItem" style="display:none"><a class="EditionMenu-featuredSubLink" href="//www.cnbc.com/select/personal-finance/" tabindex="-1"><p>All <!-- -->Personal Finance</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best Budgeting Apps" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-budgeting-apps/" tabindex="-1"><p>Best Budgeting Apps</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best Expense Tracker Apps" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-expense-tracker-apps/" tabindex="-1"><p>Best Expense Tracker Apps</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best Money Transfer Apps" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-money-transfer-payment-apps/" tabindex="-1"><p>Best Money Transfer Apps</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best Resale Apps and Sites" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-resale-apps-and-websites/" tabindex="-1"><p>Best Resale Apps and Sites</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Buy Now Pay Later (BNPL) Apps" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-buy-now-pay-later-apps/" tabindex="-1"><p>Buy Now Pay Later (BNPL) Apps</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best Debt Relief" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-debt-relief-companies/" tabindex="-1"><p>Best Debt Relief</p></a></li><li class="EditionMenu-backBtn" style="display:none"><a href="#"><p>SELECT</p></a></li><li class="EditionMenu-featuredListItem" style="display:none"><a class="EditionMenu-featuredSubLink" href="//www.cnbc.com/select/small-business/" tabindex="-1"><p>All <!-- -->Small Business</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best Small Business Savings Accounts" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-small-business-savings-accounts/" tabindex="-1"><p>Best Small Business Savings Accounts</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best Small Business Checking Accounts" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-business-checking-accounts/" tabindex="-1"><p>Best Small Business Checking Accounts</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best Credit Cards for Small Business" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-small-business-credit-cards/" tabindex="-1"><p>Best Credit Cards for Small Business</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best Small Business Loans" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-small-business-loans/" tabindex="-1"><p>Best Small Business Loans</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best Tax Software for Small Business" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-tax-software-for-small-businesses/" tabindex="-1"><p>Best Tax Software for Small Business</p></a></li><li class="EditionMenu-backBtn" style="display:none"><a href="#"><p>SELECT</p></a></li><li class="EditionMenu-featuredListItem" style="display:none"><a class="EditionMenu-featuredSubLink" href="//www.cnbc.com/select/taxes/" tabindex="-1"><p>All <!-- -->Taxes</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Filing For Free" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/how-to-file-your-taxes-for-free/" tabindex="-1"><p>Filing For Free</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best Tax Software" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-tax-software/" tabindex="-1"><p>Best Tax Software</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best Tax Software for Small Businesses" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-tax-software-for-small-businesses/" tabindex="-1"><p>Best Tax Software for Small Businesses</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Tax Refunds" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/how-to-check-the-status-of-your-2020-tax-refund/" tabindex="-1"><p>Tax Refunds</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Tax Brackets" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/federal-income-tax-brackets-tax-rates/" tabindex="-1"><p>Tax Brackets</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Tax Tips" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/how-to-reduce-taxable-income/" tabindex="-1"><p>Tax Tips</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Tax By State" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/states-with-no-income-tax/" tabindex="-1"><p>Tax By State</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Tax Payment Plans" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/tax-payment-plan-options/" tabindex="-1"><p>Tax Payment Plans</p></a></li><li class="EditionMenu-backBtn" style="display:none"><a href="#"><p>SELECT</p></a></li><li class="EditionMenu-featuredListItem" style="display:none"><a class="EditionMenu-featuredSubLink" href="//www.cnbc.com/select/low-credit-scores/" tabindex="-1"><p>All <!-- -->Help for Low Credit Scores</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best Credit Cards for Bad Credit" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-credit-cards-for-bad-credit/" tabindex="-1"><p>Best Credit Cards for Bad Credit</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best Personal Loans for Bad Credit" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-personal-loans-for-bad-credit/" tabindex="-1"><p>Best Personal Loans for Bad Credit</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best Debt Consolidation Loans for Bad Credit" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-debt-consolidation-loans-for-bad-credit/" tabindex="-1"><p>Best Debt Consolidation Loans for Bad Credit</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Personal Loans if You Don't Have Credit" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/personal-loan-lenders-to-consider-if-you-dont-have-credit-score/" tabindex="-1"><p>Personal Loans if You Don't Have Credit</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best Credit Cards for Building Credit" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/the-best-credit-cards-for-building-credit/" tabindex="-1"><p>Best Credit Cards for Building Credit</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Personal Loans for 580 Credit Score or Lower" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/personal-loans-to-apply-credit-score-580-or-lower/" tabindex="-1"><p>Personal Loans for 580 Credit Score or Lower</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Personal Loans for 670 Credit Score or Lower" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/personal-loan-lenders-credit-score-below-670/" tabindex="-1"><p>Personal Loans for 670 Credit Score or Lower</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best Mortgages for Bad Credit" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-mortgage-lenders-bad-credit-score/" tabindex="-1"><p>Best Mortgages for Bad Credit</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best Hardship Loans" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-hardship-loans/" tabindex="-1"><p>Best Hardship Loans</p></a></li><li class="EditionMenu-featuredListItem" data-testid="How to Boost Your Credit Score" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/how-experian-boost-works/" tabindex="-1"><p>How to Boost Your Credit Score</p></a></li><li class="EditionMenu-backBtn" style="display:none"><a href="#"><p>SELECT</p></a></li><li class="EditionMenu-featuredListItem" style="display:none"><a class="EditionMenu-featuredSubLink" href="//www.cnbc.com/select/investing/" tabindex="-1"><p>All <!-- -->Investing</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best IRA Accounts" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-ira-accounts/" tabindex="-1"><p>Best IRA Accounts</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best Roth IRA Accounts" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-roth-ira-accounts/" tabindex="-1"><p>Best Roth IRA Accounts</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best Investing Apps" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-investing-apps/" tabindex="-1"><p>Best Investing Apps</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best Free Stock Trading Platforms" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-brokerage-free-stock-trading/" tabindex="-1"><p>Best Free Stock Trading Platforms</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Best Robo-Advisors" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/best-robo-advisors/" tabindex="-1"><p>Best Robo-Advisors</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Index Funds" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/what-are-index-funds/" tabindex="-1"><p>Index Funds</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Mutual Funds" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/what-are-mutual-funds/" tabindex="-1"><p>Mutual Funds</p></a></li><li class="EditionMenu-featuredListItem" data-testid="ETFs" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/what-are-etfs-should-you-invest/" tabindex="-1"><p>ETFs</p></a></li><li class="EditionMenu-featuredListItem" data-testid="Bonds" style="display:none"><a class="EditionMenu-featuredSubLink EditionMenu-subMenuLink" href="//www.cnbc.com/select/what-are-bonds/" tabindex="-1"><p>Bonds</p></a></li></ul></li></ul><ul class="account-menu-editionMenu"><li class="AccountMenu-li"><a href="/?region=usa">USA</a></li><li class="AccountMenu-li"><a class="account-menu-underlineLabel" href="/world/">INTL</a></li></ul><ul class="WatchLivestream-watchContainer WatchLivestream-lsLoggedOut"><li class="WatchLivestream-watchItems"><div class="WatchLivestream-alertIconWrapper"><svg fill="none" height="10" viewbox="0 0 10 10" width="10" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="M4.99875 7.31918C6.27953 7.31918 7.31781 6.28103 7.31781 5.00041C7.31781 3.71979 6.27953 2.68164 4.99875 2.68164C3.71797 2.68164 2.67969 3.71979 2.67969 5.00041C2.67969 6.28103 3.71797 7.31918 4.99875 7.31918Z" fill="#FF0000" fill-rule="evenodd"></path><path clip-rule="evenodd" d="M0 5C0 7.76157 2.23872 10 5 10C7.76128 10 10 7.76157 10 5C10 2.23843 7.76128 0 5 0C2.23872 0 0 2.23843 0 5ZM9.27517 4.99969C9.27517 7.36061 7.36076 9.27477 4.99891 9.27477C2.63706 9.27477 0.722656 7.36061 0.722656 4.99969C0.722656 2.63877 2.63706 0.724609 4.99891 0.724609C7.36076 0.724609 9.27517 2.63877 9.27517 4.99969Z" fill="#FF0000" fill-rule="evenodd"></path></svg></div><div class="WatchLivestream-dynamicTitleWrapper"><div><a href="/live-tv/"><span class="WatchLivestream-streamTxt">Livestream</span></a></div></div></li></ul></div></div><div class="CNBCGlobalNav-rightNavigationWrapper"><span class="CNBCGlobalNav-searchWrapper"><button aria-label="Search" class="SearchToggle-button searchToggler analyticsSearchButton"><span>Search quotes, news &amp; videos</span><i aria-hidden="true" class="icon-search" data-analytics="cnbc-search-icon" data-analytics-id="cnbc-search-icon"></i></button></span><span class="CNBCGlobalNav-livestreamWrapper"><ul class="WatchLivestream-watchContainer WatchLivestream-lsLoggedOut"><li class="WatchLivestream-watchItems"><div class="WatchLivestream-alertIconWrapper"><svg fill="none" height="10" viewbox="0 0 10 10" width="10" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="M4.99875 7.31918C6.27953 7.31918 7.31781 6.28103 7.31781 5.00041C7.31781 3.71979 6.27953 2.68164 4.99875 2.68164C3.71797 2.68164 2.67969 3.71979 2.67969 5.00041C2.67969 6.28103 3.71797 7.31918 4.99875 7.31918Z" fill="#FF0000" fill-rule="evenodd"></path><path clip-rule="evenodd" d="M0 5C0 7.76157 2.23872 10 5 10C7.76128 10 10 7.76157 10 5C10 2.23843 7.76128 0 5 0C2.23872 0 0 2.23843 0 5ZM9.27517 4.99969C9.27517 7.36061 7.36076 9.27477 4.99891 9.27477C2.63706 9.27477 0.722656 7.36061 0.722656 4.99969C0.722656 2.63877 2.63706 0.724609 4.99891 0.724609C7.36076 0.724609 9.27517 2.63877 9.27517 4.99969Z" fill="#FF0000" fill-rule="evenodd"></path></svg></div><div class="WatchLivestream-dynamicTitleWrapper"><div><a href="/live-tv/"><span class="WatchLivestream-streamTxt">Livestream</span></a></div></div></li></ul></span><span class="CNBCGlobalNav-watchlistWrapper"><div class="CNBCGlobalNav-watchListContainer"><a href="/watchlist/">Watchlist</a></div></span><span class="CNBCGlobalNav-notificationBellWrapper"><div class="NotificationBell-notificationBellContainer" data-testid="notification_bell"><button title="Show Notifications"><svg fill="none" height="22" viewbox="0 0 19 18" width="22" xmlns="http://www.w3.org/2000/svg"><path d="M7.1449 1.18702L5.26053 2.23926C4.14893 2.85999 3.43597 4.0293 3.37858 5.32207L3.19586 9.4372C3.16369 10.1617 2.91287 10.8579 2.47829 11.4299L0.987781 13.3917L0.868726 13.5485L0.912578 13.5493C0.904357 13.5827 0.9 13.6176 0.9 13.6534C0.9 13.8873 1.08584 14.081 1.32 14.081H6.39744C6.43203 14.2083 6.48203 14.3329 6.54686 14.453C6.68288 14.7052 6.8812 14.9324 7.12891 15.1226C7.37659 15.3127 7.66935 15.4626 7.99002 15.5646C8.31072 15.6666 8.65386 15.719 9 15.719C9.34614 15.719 9.68928 15.6666 10.01 15.5646C10.3307 15.4626 10.6234 15.3127 10.8711 15.1226C11.1188 14.9324 11.3171 14.7052 11.4531 14.453C11.518 14.3329 11.568 14.2083 11.6026 14.081H16.68C16.9142 14.081 17.1 13.8873 17.1 13.6534C17.1 13.5906 17.0866 13.5307 17.0625 13.4766L17.0714 13.4696L17.0122 13.3917L15.5217 11.4299C15.0871 10.8579 14.8363 10.1617 14.8041 9.4372L14.6214 5.32207C14.564 4.0293 13.8511 2.85999 12.7395 2.23926L10.8551 1.18702L10.6555 0.98264C10.6169 0.943132 10.5773 0.905292 10.5367 0.86912C10.4505 0.773586 10.3327 0.68605 10.1805 0.607025C9.28391 0.0706269 8.11311 0.195832 7.34455 0.98264L7.1449 1.18702Z" fill="white" stroke="white" stroke-width="0.2"></path></svg></button></div></span><span class="CNBCGlobalNav-signInMenuWrapper"><div class="SignInMenu-signInContainer"><div><div class="SignInMenu-signInLinkWrapper"><div class="SignInMenu-signInMenu"><a href="#">SIGN IN</a></div></div></div></div></span><span class="CNBCGlobalNav-signUpMenuWrapper"><div class="SignUpMenu-signUpContainer"><div></div></div></span></div></div></div></div></header><div class="CNBCGlobalNav-mobileNavMenu"><div class="nav-menu-navMenu" id="nav-menu"><button aria-label="Open Navigation Menu" class="nav-menu-desktopHamburger nav-menu-button"><span class="icon-menu"></span></button><a class="nav-menu-logoContainer" href="/"><img alt="logo" class="nav-menu-logo" src="https://static-redesign.cnbcfm.com/dist/2469ed0a9a4cafdf055e.svg"/></a><div class="nav-menu-mainLinks"><div class="nav-menu-mainLinksWrapperStart nav-menu-mainLinksWrapper"><div class="nav-menu-navLinks"><div class="nav-menu-primaryLink markets"><a class="nav-menu-button" href="/markets/"><span class="icon-markets"></span><span class="nav-menu-buttonText">Markets</span></a></div><div class="nav-menu-primaryLink business_news"><a class="nav-menu-button" href="/business/"><span class="icon-news"></span><span class="nav-menu-buttonText">Business</span></a></div><div class="nav-menu-primaryLink investing"><a class="nav-menu-button" href="/investing/"><span class="icon-investing"></span><span class="nav-menu-buttonText">Investing</span></a></div><div class="nav-menu-primaryLink tech"><a class="nav-menu-button" href="/technology/"><span class="icon-tech"></span><span class="nav-menu-buttonText">Tech</span></a></div><div class="nav-menu-primaryLink politics"><a class="nav-menu-button" href="/politics/"><span class="icon-politics"></span><span class="nav-menu-buttonText">Politics</span></a></div><div class="nav-menu-primaryLink video"><a class="nav-menu-button" href="/tv/"><span class="icon-cnbctv"></span><span class="nav-menu-buttonText">Video</span></a></div><div class="nav-menu-primaryLink watchlist"><a class="nav-menu-button" href="/watchlist/"><span class="icon-watchlist"></span><span class="nav-menu-buttonText">Watchlist</span></a></div><div class="nav-menu-primaryLink investing_club"><a class="nav-menu-button" href="/investingclub/subscribe?__source=investingclub|globalnav|join&amp;tpcc=investingclub|globalnav|join"><span class="icon-investing_club"></span><span class="nav-menu-buttonText">Investing Club</span></a></div><span class="nav-menu-investingClubPillIcon pillIcon"><object aria-label="IC Join Pill" data="https://static-redesign.cnbcfm.com/dist/31932e96a7cf9a0b8070.svg" type="image/svg+xml"></object></span><div class="nav-menu-primaryLink pro"><a class="nav-menu-button" href="/application/pro?__source=pro|globalnav|join&amp;tpcc=pro|globalnav|join"><span class="icon-pro"></span><span class="nav-menu-buttonText">PRO</span></a></div><span class="nav-menu-proPillIcon pillIcon"><object aria-label="Pro Join Pill" data="https://static-redesign.cnbcfm.com/dist/65cda4be300e2e8b8112.svg" type="image/svg+xml"></object></span><div class="nav-menu-primaryLink livestream" data-testid="livestream"><div class="WatchLivestream-livestreamNavItemContainer"><div><svg fill="none" height="10" viewbox="0 0 10 10" width="10" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="M4.99875 7.31918C6.27953 7.31918 7.31781 6.28103 7.31781 5.00041C7.31781 3.71979 6.27953 2.68164 4.99875 2.68164C3.71797 2.68164 2.67969 3.71979 2.67969 5.00041C2.67969 6.28103 3.71797 7.31918 4.99875 7.31918Z" fill="#FF0000" fill-rule="evenodd"></path><path clip-rule="evenodd" d="M0 5C0 7.76157 2.23872 10 5 10C7.76128 10 10 7.76157 10 5C10 2.23843 7.76128 0 5 0C2.23872 0 0 2.23843 0 5ZM9.27517 4.99969C9.27517 7.36061 7.36076 9.27477 4.99891 9.27477C2.63706 9.27477 0.722656 7.36061 0.722656 4.99969C0.722656 2.63877 2.63706 0.724609 4.99891 0.724609C7.36076 0.724609 9.27517 2.63877 9.27517 4.99969Z" fill="#FF0000" fill-rule="evenodd"></path></svg></div><div class="WatchLivestream-navItemText"><div><a href="/live-tv/"><span class="WatchLivestream-streamTxt">Livestream</span></a></div></div></div></div><div aria-hidden="true" class="nav-menu-navUnderline"></div><div aria-hidden="true" class="nav-menu-navDropdownWrap"></div><div class="nav-menu-primaryLink hamburger"><button aria-label="Open Navigation Menu" class="nav-menu-hamburger nav-menu-button"><span class="icon-menu"></span><span class="nav-menu-buttonText">Menu</span></button></div></div></div></div><div class="nav-menu-progressBarContainer"></div></div></div><div class="BrandPageWrapper-liveAlertAd BrandPageWrapper-contentWrapper" id="MainContentContainer" role="main"><p id="MainContent" tabindex="-1"></p><div><div class="Home Page International PageBuilder-page"><div class="PageBuilder-pageWrapper"><div class="PageBuilder-containerWidth100 PageBuilder-pageRow"><div class="PageBuilder-col-full PageBuilder-col"><section class="MarketsBanner-container" data-analytics="HomePageInternational-marketsBanner-1-0" data-test="marketsBanner-0" id="HomePageInternational-MarketsBanner-1"><div class="MarketsBannerMenu-marketBannerMenuWrapper"><div class="CustomBannerAdder-container"><button class="CustomBannerAdder-addButton" data-testid="addButton"><span class="CustomBannerAdder-plusButton" data-testid="plusButton"><svg data-analytic-id="plus-icon" fill="none" height="17" viewbox="0 0 17 17" width="17" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="M9.1427 7.43729L9.18188 1.1331C9.18391 0.807363 8.92149 0.544946 8.59576 0.546971C8.27003 0.548995 8.00433 0.814694 8.0023 1.14043L7.96312 7.44462L1.46316 7.48502C1.13743 7.48704 0.871726 7.75274 0.869702 8.07847C0.867677 8.40421 1.13009 8.66662 1.45583 8.6646L7.95579 8.6242L7.91539 15.1242C7.91337 15.4499 8.17579 15.7123 8.50152 15.7103C8.82725 15.7083 9.09295 15.4426 9.09497 15.1168L9.13537 8.61687L15.4396 8.57769C15.7653 8.57566 16.031 8.30997 16.033 7.98423C16.035 7.6585 15.7726 7.39608 15.4469 7.39811L9.1427 7.43729Z" fill="#005594" fill-rule="evenodd"></path></svg></span></button><span class="CustomBannerAdder-addTabtooltip">Create your own markets banner</span></div><div class="MarketsBannerMenu-container"><button class="MarketsBannerMenu-activeMarket MarketsBannerMenu-marketOption">EUR</button><button class="MarketsBannerMenu-marketOption">ASIA</button><button class="MarketsBannerMenu-marketOption">ASIA FX</button><button class="MarketsBannerMenu-marketOption">PRE-MKT</button><button class="MarketsBannerMenu-marketOption">US</button><button class="MarketsBannerMenu-marketOption">EUR FX</button><button class="MarketsBannerMenu-marketOption">BONDS</button><button class="MarketsBannerMenu-marketOption">OIL</button><button class="MarketsBannerMenu-marketOption">GOLD</button><button class="MarketsBannerMenu-marketOption">CRYPTO</button></div></div><div class="MarketsBanner-main"><div class="MarketsBanner-marketData" id="market-data-scroll-container"><div class="MarketsBanner-ad"><div class="SponsorLogo-container" data-module="mps-slot" id="SponsorLogo-HomePageInternational-MarketsBanner-1"></div></div></div></div><div class="MarketsBanner-teaserContainer"><div class="MarketsBanner-teaser"><a href="https://www.cnbc.com/2024/08/21/europe-markets-head-for-higher-open-with-fed-in-focus.html">Europe markets tick higher with Fed in focus; UK net borrowing higher than expected</a></div></div></section></div></div><div class="PageBuilder-containerWidth100 PageBuilder-pageRow"><div class="PageBuilder-col-full PageBuilder-col"><div class="TopBanner-container" data-top-banner-placeholder="true"><script>
          (function() {
            const userMembershipOnLastVisit = localStorage.getItem("cnbcMeta__cachedUserMembership");
            if (!userMembershipOnLastVisit) {
              // If no user membership is stored, user is likely not logged in.
              // These users will typically see the banner.
              return;
            }

            const { isPro, isInvestingClubUser } = JSON.parse(userMembershipOnLastVisit);
            if (!(isPro || isInvestingClubUser)) {
              // We’re rendering the top banner for users who are not pro or investing club members.
              return;
            }

            // Hide the banner for pro and investing club users.
            const style = document.createElement("style");
            style.id = "top-banner-placeholder-style";
            style.innerHTML = "[data-top-banner-placeholder] { display: none; }";
            document.head.appendChild(style);
          })()
        </script></div></div></div><div class="PageBuilder-containerWidth100 PageBuilder-pageRow"><div class="PageBuilder-col-full PageBuilder-col"><div class="QuickLinks-container" data-analytics="HomePageInternational-quickLinks-3-0" data-test="quickLinks-0" id="HomePageInternational-QuickLinks-3"><div class="QuickLinks-deviceHeader QuickLinks-desktopHeader">Quick Links</div><div class="QuickLinks-scrollableContainer"><span class="QuickLinks-desktopHeader">Quick Links</span><span class="QuickLinks-quickLink"><a href="https://www.cnbc.com/2024/08/21/europe-markets-head-for-higher-open-with-fed-in-focus.html" title="Europe market moves">Europe market moves</a></span><span class="QuickLinks-quickLink"><a href="https://www.cnbc.com/quotes/US10Y" title="U.S. Treasurys">U.S. Treasurys</a></span><span class="QuickLinks-quickLink"><a href="https://www.cnbc.com/2024/08/21/why-the-latest-mpox-outbreak-is-raising-alarm-among-health-experts.html" title="Mpox outbreak">Mpox outbreak</a></span><span class="QuickLinks-quickLink"><a href="https://www.cnbc.com/2024/08/21/blockchain-startup-story-raises-funds-from-a16z-to-stop-ip-theft-by-ai.html" title="Blockchain startup">Blockchain startup</a></span><span class="QuickLinks-quickLink"><a href="https://www.cnbc.com/2024/08/21/mike-lynch-missing-search-for-sicily-yacht-passengers.html" title="Missing tech entrepreneur">Missing tech entrepreneur</a></span><span class="QuickLinks-quickLink"><a href="https://www.cnbc.com/2024/08/21/swiftflation-taylor-swift-eras-tour-unlikely-to-impact-boe-rate-policy.html" title="Swiftflation">Swiftflation</a></span></div></div></div></div><div class="PageBuilder-containerWidth100 PageBuilder-pageRow"><div class="PageBuilder-col-full PageBuilder-col"></div></div><div class="PageBuilder-containerFluidWidths PageBuilder-pageRow"><div class="PageBuilder-col-9 PageBuilder-col"><div class="FeaturedNewsHero-container" data-analytics="HomePageInternational-featuredNewsHero-5-0" data-test="featuredNewsHero-0" id="HomePageInternational-FeaturedNewsHero-5-0"><div id="HomePageInternational-FeaturedCard-5-0"><div class="FeaturedCard-container"><div class="FeaturedCard-imageContainer"><a href="https://www.cnbc.com/2024/08/21/mike-lynch-missing-search-for-sicily-yacht-passengers.html" title="Two bodies found in Sicily yacht wreckage as search for missing passengers continues"><div><picture data-test="Picture"><source height="554" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/108023359-1724225683417-gettyimages-2166881350-AFP_36EK4TE.jpeg?v=1724251936&amp;w=830&amp;h=554&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="830"/><source height="512" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/108023359-1724225683417-gettyimages-2166881350-AFP_36EK4TE.jpeg?v=1724251936&amp;w=610&amp;h=512&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="610"/><source height="730" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/108023359-1724225683417-gettyimages-2166881350-AFP_36EK4TE.jpeg?v=1724251936&amp;w=960&amp;h=730&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="960"/><source height="470" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/108023359-1724225683417-gettyimages-2166881350-AFP_36EK4TE.jpeg?v=1724251936&amp;w=560&amp;h=470&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="560"/><img alt="Two bodies found in Sicily yacht wreckage as search for missing passengers continues" class="" src="https://image.cnbcfm.com/api/v1/image/108023359-1724225683417-gettyimages-2166881350-AFP_36EK4TE.jpeg?v=1724251936&amp;w=960&amp;h=730&amp;vtcrop=y"/></picture></div></a></div><div class="FeaturedCard-content"><div class="FeaturedCard-contentText"><h2 class="FeaturedCard-packagedCardTitle"><a href="https://www.cnbc.com/2024/08/21/mike-lynch-missing-search-for-sicily-yacht-passengers.html" title="Two bodies found in Sicily yacht wreckage as search for missing passengers continues">Two bodies found in Sicily yacht wreckage as search for missing passengers continues</a></h2></div><ul class="PackageItems-container"><li id="HomePageInternational-FeaturedCard-5-1-0"><a class="PackageItem-link" href="https://www.cnbc.com/2024/08/21/europe-markets-head-for-higher-open-with-fed-in-focus.html" title="Europe markets tick higher with Fed in focus; UK net borrowing higher than expected">Europe markets tick higher with Fed in focus; UK net borrowing higher than expected<!-- --> </a></li><li id="HomePageInternational-FeaturedCard-5-1-1"><svg alt="Watch Live" class="LivePill-watchLivePill" height="16" viewbox="0 0 57 22"><rect fill="#FF5053" height="100%" width="100%"></rect><path d="M12.9997 13.3192C14.2805 13.3192 15.3188 12.281 15.3188 11.0004C15.3188 9.71979 14.2805 8.68164 12.9997 8.68164C11.7189 8.68164 10.6807 9.71979 10.6807 11.0004C10.6807 12.281 11.7189 13.3192 12.9997 13.3192Z" fill="white"></path><path d="M8 11C8 13.7616 10.2387 16 13 16C15.7613 16 18 13.7616 18 11C18 8.23843 15.7613 6 13 6C10.2387 6 8 8.23843 8 11ZM17.2766 10.9997C17.2766 13.3606 15.3622 15.2748 13.0004 15.2748C10.6385 15.2748 8.72412 13.3606 8.72412 10.9997C8.72412 8.63877 10.6385 6.72461 13.0004 6.72461C15.3622 6.72461 17.2766 8.63877 17.2766 10.9997Z" fill="white"></path><path d="M22.08 15V6.6H23.556V13.656H27.972V15H22.08ZM29.3437 15V6.6H30.8197V15H29.3437ZM35.5903 15.06L32.0983 6.6H33.7303L36.2623 13.056L38.7823 6.6H40.3783L36.8983 15.06H35.5903ZM41.5683 15V6.6H47.7963V7.92H43.0443V10.104H47.2563V11.424H43.0443V13.68H47.8563V15H41.5683Z" fill="white"></path></svg><a class="PackageItem-link" href="https://www.cnbc.com/2024/08/20/stock-market-today-live-updates.html" title="S&amp;P 500 ticks higher as Wall Street awaits Fed minutes: Live updates">S&amp;P 500 ticks higher as Wall Street awaits Fed minutes<!-- --> </a></li></ul></div></div></div><div class="SecondaryCardContainer-container"><ul><li id="HomePageInternational-SecondaryCard-5-0"><div class="SecondaryCard-container"><div class="SecondaryCard-imageContainer"><a href="https://www.cnbc.com/2024/08/21/usdjpy-strategist-expects-dollar-to-drift-much-lower-against-the-yen.html" title="'Pick a number': Strategist says the U.S. dollar will drift much lower against the Japanese yen"><div><picture data-test="Picture"><source height="338" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/108016156-1722861143183-gettyimages-2164867716-AFP_36A92LR.jpeg?v=1724234051&amp;w=600&amp;h=338&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="600"/><source height="214" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/108016156-1722861143183-gettyimages-2164867716-AFP_36A92LR.jpeg?v=1724234051&amp;w=380&amp;h=214&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="380"/><source height="338" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/108016156-1722861143183-gettyimages-2164867716-AFP_36A92LR.jpeg?v=1724234051&amp;w=648&amp;h=338&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="648"/><source height="338" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/108016156-1722861143183-gettyimages-2164867716-AFP_36A92LR.jpeg?v=1724234051&amp;w=636&amp;h=338&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="636"/><img alt="'Pick a number': Strategist says the U.S. dollar will drift much lower against the Japanese yen" class="" src="https://image.cnbcfm.com/api/v1/image/108016156-1722861143183-gettyimages-2164867716-AFP_36A92LR.jpeg?v=1724234051&amp;w=648&amp;h=338&amp;vtcrop=y"/></picture></div></a></div><div><div class="SecondaryCard-headline"><a href="https://www.cnbc.com/2024/08/21/usdjpy-strategist-expects-dollar-to-drift-much-lower-against-the-yen.html" title="'Pick a number': Strategist says the U.S. dollar will drift much lower against the Japanese yen">'Pick a number': Strategist says the U.S. dollar will drift much lower against the Japanese yen</a></div></div></div></li><li id="HomePageInternational-SecondaryCard-5-1"><div class="SecondaryCard-container"><div class="SecondaryCard-imageContainer"><a href="https://www.cnbc.com/2024/08/21/blockchain-startup-story-raises-funds-from-a16z-to-stop-ip-theft-by-ai.html" title="Startup using blockchain to prevent copyright theft by AI valued over $2 billion after fresh funding"><div><picture data-test="Picture"><source height="338" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/108022033-1724069949112-gettyimages-2013766961-Illustration_Sora.jpeg?v=1724070511&amp;w=600&amp;h=338&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="600"/><source height="214" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/108022033-1724069949112-gettyimages-2013766961-Illustration_Sora.jpeg?v=1724070511&amp;w=380&amp;h=214&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="380"/><source height="338" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/108022033-1724069949112-gettyimages-2013766961-Illustration_Sora.jpeg?v=1724070511&amp;w=648&amp;h=338&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="648"/><source height="338" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/108022033-1724069949112-gettyimages-2013766961-Illustration_Sora.jpeg?v=1724070511&amp;w=636&amp;h=338&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="636"/><img alt="Startup using blockchain to prevent copyright theft by AI valued over $2 billion after fresh funding" class="" src="https://image.cnbcfm.com/api/v1/image/108022033-1724069949112-gettyimages-2013766961-Illustration_Sora.jpeg?v=1724070511&amp;w=648&amp;h=338&amp;vtcrop=y"/></picture></div></a></div><div><div class="SecondaryCard-headline"><a href="https://www.cnbc.com/2024/08/21/blockchain-startup-story-raises-funds-from-a16z-to-stop-ip-theft-by-ai.html" title="Startup using blockchain to prevent copyright theft by AI valued over $2 billion after fresh funding">Startup using blockchain to prevent copyright theft by AI valued over $2 billion after fresh funding</a></div></div></div></li></ul></div></div></div><div class="SidebarArticle-sidebar PageBuilder-sidebar" data-test="SidebarArticle"><div class="SidebarArticle-noSticky" style="height:calc(100% - 70px)"><div><div class="LatestNews-isHomePage LatestNews-isIntlHomepage" data-analytics="HomePageInternational-latestNews-6-0" data-test="latestNews-0"><header class="LatestNews-header"><span aria-hidden="true" style="background-color:#0089D0"></span><h2><span>Latest News</span></h2></header><ul class="LatestNews-list"><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-0"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">21 Min Ago</time></span><a class="ProPill-proPillLink" data-type="pro-button" href="/pro/"><svg alt="CNBC Pro" class="LatestNews-proPill ProPill-proPill" height="16" viewbox="0 0 43 22"><rect fill="#047E2E" height="100%" width="100%"></rect><path d="M9.08 15V6.6H12.392C14.36 6.6 15.584 7.716 15.584 9.408V9.432C15.584 11.316 14.072 12.3 12.224 12.3H10.556V15H9.08ZM10.556 10.968H12.272C13.388 10.968 14.084 10.344 14.084 9.468V9.444C14.084 8.46 13.376 7.944 12.272 7.944H10.556V10.968ZM17.0956 15V6.6H20.8396C21.8956 6.6 22.7236 6.912 23.2636 7.44C23.7076 7.896 23.9596 8.52 23.9596 9.252V9.276C23.9596 10.656 23.1316 11.484 21.9676 11.82L24.2356 15H22.4836L20.4196 12.072H18.5716V15H17.0956ZM18.5716 10.764H20.7316C21.7876 10.764 22.4596 10.212 22.4596 9.36V9.336C22.4596 8.436 21.8116 7.944 20.7196 7.944H18.5716V10.764ZM29.7755 15.144C27.1955 15.144 25.3955 13.188 25.3955 10.824V10.8C25.3955 8.436 27.2195 6.456 29.7995 6.456C32.3795 6.456 34.1795 8.412 34.1795 10.776V10.8C34.1795 13.164 32.3555 15.144 29.7755 15.144ZM29.7995 13.776C31.4675 13.776 32.6315 12.456 32.6315 10.824V10.8C32.6315 9.168 31.4435 7.812 29.7755 7.812C28.1075 7.812 26.9435 9.144 26.9435 10.776V10.8C26.9435 12.432 28.1315 13.776 29.7995 13.776Z" fill="white"></path></svg></a><a class="LatestNews-headline" href="https://www.cnbc.com/2024/08/21/this-payments-stock-has-broken-out-of-a-2-year-sideways-pattern-using-options-to-play-it.html" title="This stock has broken out of a 2-year sideways pattern. Using options to play it">This stock has broken out of a 2-year sideways pattern. Using options to play it</a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-1"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">22 Min Ago</time></span><a class="LatestNews-headline" href="https://www.cnbc.com/2024/08/21/nonfarm-payroll-growth-revised-down-by-818000-labor-department-says.html" title="Nonfarm payroll growth revised down by 818,000, Labor Department says">Nonfarm payroll growth revised down by 818,000, Labor Department says</a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-2"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">57 Min Ago</time></span><a class="ProPill-proPillLink" data-type="pro-button" href="/pro/"><svg alt="CNBC Pro" class="LatestNews-proPill ProPill-proPill" height="16" viewbox="0 0 43 22"><rect fill="#047E2E" height="100%" width="100%"></rect><path d="M9.08 15V6.6H12.392C14.36 6.6 15.584 7.716 15.584 9.408V9.432C15.584 11.316 14.072 12.3 12.224 12.3H10.556V15H9.08ZM10.556 10.968H12.272C13.388 10.968 14.084 10.344 14.084 9.468V9.444C14.084 8.46 13.376 7.944 12.272 7.944H10.556V10.968ZM17.0956 15V6.6H20.8396C21.8956 6.6 22.7236 6.912 23.2636 7.44C23.7076 7.896 23.9596 8.52 23.9596 9.252V9.276C23.9596 10.656 23.1316 11.484 21.9676 11.82L24.2356 15H22.4836L20.4196 12.072H18.5716V15H17.0956ZM18.5716 10.764H20.7316C21.7876 10.764 22.4596 10.212 22.4596 9.36V9.336C22.4596 8.436 21.8116 7.944 20.7196 7.944H18.5716V10.764ZM29.7755 15.144C27.1955 15.144 25.3955 13.188 25.3955 10.824V10.8C25.3955 8.436 27.2195 6.456 29.7995 6.456C32.3795 6.456 34.1795 8.412 34.1795 10.776V10.8C34.1795 13.164 32.3555 15.144 29.7755 15.144ZM29.7995 13.776C31.4675 13.776 32.6315 12.456 32.6315 10.824V10.8C32.6315 9.168 31.4435 7.812 29.7755 7.812C28.1075 7.812 26.9435 9.144 26.9435 10.776V10.8C26.9435 12.432 28.1315 13.776 29.7995 13.776Z" fill="white"></path></svg></a><a class="LatestNews-headline" href="https://www.cnbc.com/2024/08/21/lng-booming-as-asia-seeks-coal-substitutes-these-stocks-could-surge-.html" title="LNG is booming as Asia looks for coal substitutes — these stocks could surge ">LNG is booming as Asia looks for coal substitutes — these stocks could surge </a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-3"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">1 Hour Ago</time></span><a class="LatestNews-headline" href="https://www.cnbc.com/2024/08/21/the-explosion-of-online-sports-betting-is-taking-a-toll-on-how-people-invest.html" title="The explosion of online sports betting is taking a toll on how people invest">The explosion of online sports betting is taking a toll on how people invest</a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-4"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">2 Hours Ago</time></span><a class="LatestNews-headline" href="https://www.cnbc.com/2024/08/21/2-in-3-college-seniors-are-stressed-about-the-tight-job-market.html" title="2 in 3 college seniors are stressed about the tight job market">2 in 3 college seniors are stressed about the tight job market</a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-5"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">2 Hours Ago</time></span><a class="LatestNews-headline" href="https://www.cnbc.com/2024/08/21/it-analyst-lucrative-side-hustle-selling-houseplants-online-palmstreet.html" title="44-year-old’s garage side hustle brings in $148K/year: 'Almost anyone can do it'">44-year-old’s garage side hustle brings in $148K/year: 'Almost anyone can do it'</a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-6"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">2 Hours Ago</time></span><a class="LatestNews-headline" href="https://www.cnbc.com/2024/08/21/map-how-far-your-money-goes-by-state.html" title="Map: See how far $1,000 goes in every state">Map: See how far $1,000 goes in every state</a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-7"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">2 Hours Ago</time></span><a class="ProPill-proPillLink" data-type="pro-button" href="/pro/"><svg alt="CNBC Pro" class="LatestNews-proPill ProPill-proPill" height="16" viewbox="0 0 43 22"><rect fill="#047E2E" height="100%" width="100%"></rect><path d="M9.08 15V6.6H12.392C14.36 6.6 15.584 7.716 15.584 9.408V9.432C15.584 11.316 14.072 12.3 12.224 12.3H10.556V15H9.08ZM10.556 10.968H12.272C13.388 10.968 14.084 10.344 14.084 9.468V9.444C14.084 8.46 13.376 7.944 12.272 7.944H10.556V10.968ZM17.0956 15V6.6H20.8396C21.8956 6.6 22.7236 6.912 23.2636 7.44C23.7076 7.896 23.9596 8.52 23.9596 9.252V9.276C23.9596 10.656 23.1316 11.484 21.9676 11.82L24.2356 15H22.4836L20.4196 12.072H18.5716V15H17.0956ZM18.5716 10.764H20.7316C21.7876 10.764 22.4596 10.212 22.4596 9.36V9.336C22.4596 8.436 21.8116 7.944 20.7196 7.944H18.5716V10.764ZM29.7755 15.144C27.1955 15.144 25.3955 13.188 25.3955 10.824V10.8C25.3955 8.436 27.2195 6.456 29.7995 6.456C32.3795 6.456 34.1795 8.412 34.1795 10.776V10.8C34.1795 13.164 32.3555 15.144 29.7755 15.144ZM29.7995 13.776C31.4675 13.776 32.6315 12.456 32.6315 10.824V10.8C32.6315 9.168 31.4435 7.812 29.7755 7.812C28.1075 7.812 26.9435 9.144 26.9435 10.776V10.8C26.9435 12.432 28.1315 13.776 29.7995 13.776Z" fill="white"></path></svg></a><a class="LatestNews-headline" href="https://www.cnbc.com/2024/08/21/wall-street-tries-to-keep-momentum-with-fed-minutes-looming.html" title="Wall Street tries to keep momentum with Fed minutes looming">Wall Street tries to keep momentum with Fed minutes looming</a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-8"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">2 Hours Ago</time></span><a class="LatestNews-headline" href="https://www.cnbc.com/2024/08/21/jim-cramers-top-10-things-to-watch-in-the-stock-market-wednesday.html" title="Jim Cramer's top 10 things to watch in the stock market Wednesday">Jim Cramer's top 10 things to watch in the stock market Wednesday</a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-9"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">2 Hours Ago</time></span><a class="LatestNews-headline" href="https://www.cnbc.com/2024/08/21/net-worth-needed-to-be-considered-wealthy-in-major-us-cities.html" title="How much money it takes to be considered wealthy in 12 major U.S. cities">How much money it takes to be considered wealthy in 12 major U.S. cities</a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-10"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">2 Hours Ago</time></span><a class="LatestNews-headline" href="https://www.cnbc.com/2024/08/21/strength-training-demand-fitness-industry-peloton-planet-fitness-ladder.html" title="As strength training gets more popular, Peloton and Planet Fitness shift focus ">As strength training gets more popular, Peloton and Planet Fitness shift focus </a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-11"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">3 Hours Ago</time></span><a class="LatestNews-headline" href="https://www.cnbc.com/2024/08/21/why-the-latest-mpox-outbreak-is-raising-alarm-among-health-experts.html" title="Why the latest mpox outbreak is raising alarm among health experts">Why the latest mpox outbreak is raising alarm among health experts</a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-12"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">3 Hours Ago</time></span><a class="LatestNews-headline" href="https://www.cnbc.com/2024/08/21/target-ceo-brian-cornell-weighs-in-on-price-gouging.html" title="Target CEO addresses 'price gouging' accusations in retail">Target CEO addresses 'price gouging' accusations in retail</a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-13"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">3 Hours Ago</time></span><a class="LatestNews-headline" href="https://www.cnbc.com/2024/08/21/stocks-making-the-biggest-moves-premarket-tgt-jd-m.html" title="Stocks making the biggest moves premarket: Target, JD.com, Macy's and more">Stocks making the biggest moves premarket: Target, JD.com, Macy's and more</a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-14"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">3 Hours Ago</time></span><a class="ProPill-proPillLink" data-type="pro-button" href="/pro/"><svg alt="CNBC Pro" class="LatestNews-proPill ProPill-proPill" height="16" viewbox="0 0 43 22"><rect fill="#047E2E" height="100%" width="100%"></rect><path d="M9.08 15V6.6H12.392C14.36 6.6 15.584 7.716 15.584 9.408V9.432C15.584 11.316 14.072 12.3 12.224 12.3H10.556V15H9.08ZM10.556 10.968H12.272C13.388 10.968 14.084 10.344 14.084 9.468V9.444C14.084 8.46 13.376 7.944 12.272 7.944H10.556V10.968ZM17.0956 15V6.6H20.8396C21.8956 6.6 22.7236 6.912 23.2636 7.44C23.7076 7.896 23.9596 8.52 23.9596 9.252V9.276C23.9596 10.656 23.1316 11.484 21.9676 11.82L24.2356 15H22.4836L20.4196 12.072H18.5716V15H17.0956ZM18.5716 10.764H20.7316C21.7876 10.764 22.4596 10.212 22.4596 9.36V9.336C22.4596 8.436 21.8116 7.944 20.7196 7.944H18.5716V10.764ZM29.7755 15.144C27.1955 15.144 25.3955 13.188 25.3955 10.824V10.8C25.3955 8.436 27.2195 6.456 29.7995 6.456C32.3795 6.456 34.1795 8.412 34.1795 10.776V10.8C34.1795 13.164 32.3555 15.144 29.7755 15.144ZM29.7995 13.776C31.4675 13.776 32.6315 12.456 32.6315 10.824V10.8C32.6315 9.168 31.4435 7.812 29.7755 7.812C28.1075 7.812 26.9435 9.144 26.9435 10.776V10.8C26.9435 12.432 28.1315 13.776 29.7995 13.776Z" fill="white"></path></svg></a><a class="LatestNews-headline" href="https://www.cnbc.com/2024/08/21/wednesdays-top-wall-street-stocks-to-watch.html" title="Wednesday's top analyst calls: Nvidia, Apple, Netflix, Sunrun, Amazon">Wednesday's top analyst calls: Nvidia, Apple, Netflix, Sunrun, Amazon</a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-15"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">3 Hours Ago</time></span><a class="LatestNews-headline" href="https://www.cnbc.com/2024/08/21/ford-delays-new-ev-plant-cancels-electric-three-row-suv.html" title="Ford delays new EV plant, cancels electric three-row SUV ">Ford delays new EV plant, cancels electric three-row SUV </a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-16"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">3 Hours Ago</time></span><a class="LatestNews-headline" href="https://www.cnbc.com/2024/08/21/blockchain-startup-story-raises-funds-from-a16z-to-stop-ip-theft-by-ai.html" title="Startup using blockchain to prevent AI copyright theft valued over $2 billion">Startup using blockchain to prevent AI copyright theft valued over $2 billion</a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-17"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">3 Hours Ago</time></span><a class="LatestNews-headline" href="https://www.cnbc.com/2024/08/21/tjx-companies-tjx-earnings-q2-2025.html" title="TJX Companies raises full-year guidance, posts 5.6% sales gain">TJX Companies raises full-year guidance, posts 5.6% sales gain</a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-18"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">3 Hours Ago</time></span><a class="LatestNews-headline" href="https://www.cnbc.com/2024/08/21/5-things-to-know-before-the-stock-market-opens-wednesday-august-21.html" title="5 things to know before the stock market opens Wednesday">5 things to know before the stock market opens Wednesday</a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-19"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">3 Hours Ago</time></span><a class="LatestNews-headline" href="https://www.cnbc.com/2024/08/21/swiftflation-taylor-swift-eras-tour-unlikely-to-impact-boe-rate-policy.html" title="Swiftflation unlikely to impact the Bank of England's rate policy, analyst says">Swiftflation unlikely to impact the Bank of England's rate policy, analyst says</a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-20"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">4 Hours Ago</time></span><a class="ProPill-proPillLink" data-type="pro-button" href="/pro/"><svg alt="CNBC Pro" class="LatestNews-proPill ProPill-proPill" height="16" viewbox="0 0 43 22"><rect fill="#047E2E" height="100%" width="100%"></rect><path d="M9.08 15V6.6H12.392C14.36 6.6 15.584 7.716 15.584 9.408V9.432C15.584 11.316 14.072 12.3 12.224 12.3H10.556V15H9.08ZM10.556 10.968H12.272C13.388 10.968 14.084 10.344 14.084 9.468V9.444C14.084 8.46 13.376 7.944 12.272 7.944H10.556V10.968ZM17.0956 15V6.6H20.8396C21.8956 6.6 22.7236 6.912 23.2636 7.44C23.7076 7.896 23.9596 8.52 23.9596 9.252V9.276C23.9596 10.656 23.1316 11.484 21.9676 11.82L24.2356 15H22.4836L20.4196 12.072H18.5716V15H17.0956ZM18.5716 10.764H20.7316C21.7876 10.764 22.4596 10.212 22.4596 9.36V9.336C22.4596 8.436 21.8116 7.944 20.7196 7.944H18.5716V10.764ZM29.7755 15.144C27.1955 15.144 25.3955 13.188 25.3955 10.824V10.8C25.3955 8.436 27.2195 6.456 29.7995 6.456C32.3795 6.456 34.1795 8.412 34.1795 10.776V10.8C34.1795 13.164 32.3555 15.144 29.7755 15.144ZM29.7995 13.776C31.4675 13.776 32.6315 12.456 32.6315 10.824V10.8C32.6315 9.168 31.4435 7.812 29.7755 7.812C28.1075 7.812 26.9435 9.144 26.9435 10.776V10.8C26.9435 12.432 28.1315 13.776 29.7995 13.776Z" fill="white"></path></svg></a><a class="LatestNews-headline" href="https://www.cnbc.com/2024/08/21/stocks-to-buy-when-the-fed-starts-cutting-according-to-jefferies.html" title="Stocks to buy when the Fed starts cutting interest rates, according to Jefferies">Stocks to buy when the Fed starts cutting interest rates, according to Jefferies</a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-21"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">4 Hours Ago</time></span><a class="LatestNews-headline" href="https://www.cnbc.com/2024/08/21/macys-m-q2-2024-earnings.html" title="Macy’s cuts sales forecast as department stores struggle to draw shoppers">Macy’s cuts sales forecast as department stores struggle to draw shoppers</a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-22"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">4 Hours Ago</time></span><a class="LatestNews-headline" href="https://www.cnbc.com/2024/08/21/after-mini-boom-weekly-mortgage-refinance-demand-falls-back-15percent-heres-why.html" title="After mini-boom, weekly mortgage refinance demand falls back 15%. Here's why.">After mini-boom, weekly mortgage refinance demand falls back 15%. Here's why.</a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-23"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">4 Hours Ago</time></span><a class="LatestNews-headline" href="https://www.cnbc.com/2024/08/21/usdjpy-strategist-expects-dollar-to-drift-much-lower-against-the-yen.html" title="Strategist expects the U.S. dollar to drift much lower against the Japanese yen">Strategist expects the U.S. dollar to drift much lower against the Japanese yen</a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-24"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">5 Hours Ago</time></span><a class="LatestNews-headline" href="https://www.cnbc.com/2024/08/21/china-calls-eu-tariffs-on-evs-unfair-says-it-will-defend-industry.html" title="China calls EU tariffs on EVs unfair, says it take measures to defend industry">China calls EU tariffs on EVs unfair, says it take measures to defend industry</a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-25"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">5 Hours Ago</time></span><a class="LatestNews-headline" href="https://www.cnbc.com/2024/08/21/how-a-strong-dollar-can-backfire-on-american-consumers-businessess.html" title="How a weaker dollar can help on the U.S. economy">How a weaker dollar can help on the U.S. economy</a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-26"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">5 Hours Ago</time></span><a class="LatestNews-headline" href="https://www.cnbc.com/2024/08/21/sesame-to-offer-compounded-wegovy-through-weight-loss-program.html" title="Sesame to offer compounded versions of Wegovy through $249 weight loss program">Sesame to offer compounded versions of Wegovy through $249 weight loss program</a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-27"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">5 Hours Ago</time></span><a class="ProPill-proPillLink" data-type="pro-button" href="/pro/"><svg alt="CNBC Pro" class="LatestNews-proPill ProPill-proPill" height="16" viewbox="0 0 43 22"><rect fill="#047E2E" height="100%" width="100%"></rect><path d="M9.08 15V6.6H12.392C14.36 6.6 15.584 7.716 15.584 9.408V9.432C15.584 11.316 14.072 12.3 12.224 12.3H10.556V15H9.08ZM10.556 10.968H12.272C13.388 10.968 14.084 10.344 14.084 9.468V9.444C14.084 8.46 13.376 7.944 12.272 7.944H10.556V10.968ZM17.0956 15V6.6H20.8396C21.8956 6.6 22.7236 6.912 23.2636 7.44C23.7076 7.896 23.9596 8.52 23.9596 9.252V9.276C23.9596 10.656 23.1316 11.484 21.9676 11.82L24.2356 15H22.4836L20.4196 12.072H18.5716V15H17.0956ZM18.5716 10.764H20.7316C21.7876 10.764 22.4596 10.212 22.4596 9.36V9.336C22.4596 8.436 21.8116 7.944 20.7196 7.944H18.5716V10.764ZM29.7755 15.144C27.1955 15.144 25.3955 13.188 25.3955 10.824V10.8C25.3955 8.436 27.2195 6.456 29.7995 6.456C32.3795 6.456 34.1795 8.412 34.1795 10.776V10.8C34.1795 13.164 32.3555 15.144 29.7755 15.144ZM29.7995 13.776C31.4675 13.776 32.6315 12.456 32.6315 10.824V10.8C32.6315 9.168 31.4435 7.812 29.7755 7.812C28.1075 7.812 26.9435 9.144 26.9435 10.776V10.8C26.9435 12.432 28.1315 13.776 29.7995 13.776Z" fill="white"></path></svg></a><a class="LatestNews-headline" href="https://www.cnbc.com/2024/08/21/analyst-calls-all-the-market-moving-wall-street-chatter-from-wednesday.html" title="Analyst calls: Texas Instruments upgraded, buy the dip on smartphone glass stock">Analyst calls: Texas Instruments upgraded, buy the dip on smartphone glass stock</a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-28"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">6 Hours Ago</time></span><a class="LatestNews-headline" href="https://www.cnbc.com/2024/08/21/us-treasurys-ahead-of-fed-meeting-minutes-release.html" title="10-year Treasury yield holds steady ahead of Fed meeting minutes release">10-year Treasury yield holds steady ahead of Fed meeting minutes release</a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-29"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">6 Hours Ago</time></span><a class="LatestNews-headline" href="https://www.cnbc.com/2024/08/21/mike-lynch-missing-search-for-sicily-yacht-passengers.html" title="Two bodies found in Sicily yacht wreckage as search for missing passengers continues">Two bodies found in Sicily yacht wreckage as search for missing passengers continues</a></div></div></li></ul><button class="LatestNews-button">View More</button></div></div></div></div></div><div class="PageBuilder-containerFluidWidths PageBuilder-pageRow"><div class="SidebarArticle-sidebar PageBuilder-sidebarLeft PageBuilder-sidebar" data-test="SidebarArticle"><div class="SidebarArticle-sticky" style="top:70px"><div style="margin-top:0px"></div><div></div><div><div class="QuoteFinder-container QuoteFinder-hideOnMobile" data-analytics="HomePageInternational-quoteFinder-9-2" data-test="quoteFinder-2"><h2 class="QuoteFinder-title">QUOTE FINDER</h2><div><form class="QuoteFinder-form" id="homePageInternational-quoteFinder-form"><input autocomplete="off" class="QuoteFinder-searchInput" id="QuoteFinder-searchInput" placeholder="Search" type="search"/><button class="QuoteFinder-submitBtn icon-search" data-analytic-id="Quote Finder Search" form="QuoteFinder-form" type="submit">Search</button></form></div><span class="DynamicLoadingIndicator-spinnerParent" data-test="DynamicLoadingIndicator" data-testid="DynamicLoadingIndicator"><span class="DynamicLoadingIndicator-spinner" style="width:40px;height:40px"></span></span></div></div><div><div class="MarketMoversPlus-container" data-analytics="HomePageInternational-marketMoversPlus-10-3" data-test="marketMoversPlus-3" id="HomePageInternational-MarketsMoversPlus-10"><div class="MarketMoversPlus-header"><div><a href="/us-market-movers/">Market Movers</a></div><div class="MarketMoversPlus-sponsorLogo"><div class="SponsorLogo-container" data-module="mps-slot" id="SponsorLogo-HomePageInternational-MarketsMoversPlus-10"></div></div></div><div class="MarketMoversMenu-moverContainer MarketMoversMenu-moverPlusContainer MarketMoversMenu-moverContainer"><button class="MarketMoversMenu-activeMarket MarketMoversMenu-marketOption">US</button><button class="MarketMoversMenu-marketOption">EUR</button><button class="MarketMoversMenu-marketOption">ASIA</button><button class="MarketMoversMenu-marketOption">COVID19</button></div></div></div></div></div><div class="PageBuilder-col-6 PageBuilder-col"><div class="RiverPlus-riverPlusContainer" data-analytics="HomePageInternational-riverPlus-11-0" data-test="riverPlus-0" id="Home Page International-riverPlus"><div id="HomePageInternational-riverPlus-11-0"><div class="RiverPlusCard-container"><div class="RiverPlusCard-cardLeft"><div class="RiverHeadline-headline RiverHeadline-hasThumbnail"><a href="https://www.cnbc.com/2024/08/21/ukraine-carries-out-one-of-largest-ever-drone-attacks-on-moscow.html">Ukraine carries out one of the largest ever drone attacks on Moscow as Kursk incursion continues</a></div><div class="RiverByline-bylineContainer RiverByline-hasSeparator"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-datePublished">6 hours ago</span><span class="RiverByline-separator">•</span><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/ruxandra-iordache/">Ruxandra Iordache</a></span></span></div></div></div><div class="RiverThumbnail-thumbnailContainer"><div class="RiverThumbnail-imageThumbnail"><a href="https://www.cnbc.com/2024/08/21/ukraine-carries-out-one-of-largest-ever-drone-attacks-on-moscow.html"><div class="lazyload-placeholder" style="height:100%"></div></a></div></div></div><div class="RiverByline-mobileBylineContainer RiverByline-hasSeparator"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-datePublished">6 hours ago</span><span class="RiverByline-separator">•</span><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/ruxandra-iordache/">Ruxandra Iordache</a></span></span></div></div></div><div id="HomePageInternational-riverPlus-11-1"><div class="RiverPlusCard-container"><div class="RiverPlusCard-cardLeft"><div class="RiverHeadline-headline RiverHeadline-hasThumbnail"><a class="ProPill-proPillLink" data-type="pro-button" href="/pro/"><svg alt="CNBC Pro" class="ProPill-proPill" height="16" viewbox="0 0 43 22"><rect fill="#047E2E" height="100%" width="100%"></rect><path d="M9.08 15V6.6H12.392C14.36 6.6 15.584 7.716 15.584 9.408V9.432C15.584 11.316 14.072 12.3 12.224 12.3H10.556V15H9.08ZM10.556 10.968H12.272C13.388 10.968 14.084 10.344 14.084 9.468V9.444C14.084 8.46 13.376 7.944 12.272 7.944H10.556V10.968ZM17.0956 15V6.6H20.8396C21.8956 6.6 22.7236 6.912 23.2636 7.44C23.7076 7.896 23.9596 8.52 23.9596 9.252V9.276C23.9596 10.656 23.1316 11.484 21.9676 11.82L24.2356 15H22.4836L20.4196 12.072H18.5716V15H17.0956ZM18.5716 10.764H20.7316C21.7876 10.764 22.4596 10.212 22.4596 9.36V9.336C22.4596 8.436 21.8116 7.944 20.7196 7.944H18.5716V10.764ZM29.7755 15.144C27.1955 15.144 25.3955 13.188 25.3955 10.824V10.8C25.3955 8.436 27.2195 6.456 29.7995 6.456C32.3795 6.456 34.1795 8.412 34.1795 10.776V10.8C34.1795 13.164 32.3555 15.144 29.7755 15.144ZM29.7995 13.776C31.4675 13.776 32.6315 12.456 32.6315 10.824V10.8C32.6315 9.168 31.4435 7.812 29.7755 7.812C28.1075 7.812 26.9435 9.144 26.9435 10.776V10.8C26.9435 12.432 28.1315 13.776 29.7995 13.776Z" fill="white"></path></svg></a><a href="https://www.cnbc.com/2024/08/21/shares-of-this-insurer-are-set-to-soar-100percent-as-interest-rates-fall-jefferies-says.html">Shares of this insurer are set to soar 100% as interest rates fall, Jefferies says</a></div><div class="RiverByline-bylineContainer"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/amala-balakrishner/">Amala Balakrishner</a></span></span></div></div></div><div class="RiverThumbnail-thumbnailContainer"><div class="RiverThumbnail-imageThumbnail"><a href="https://www.cnbc.com/2024/08/21/shares-of-this-insurer-are-set-to-soar-100percent-as-interest-rates-fall-jefferies-says.html"><div class="lazyload-placeholder" style="height:100%"></div></a></div></div></div><div class="RiverByline-mobileBylineContainer"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/amala-balakrishner/">Amala Balakrishner</a></span></span></div></div></div><div id="HomePageInternational-riverPlus-11-2"><div class="RiverPlusCard-container"><div class="RiverPlusCard-cardLeft"><div class="RiverHeadline-headline RiverHeadline-hasThumbnail"><a href="https://www.cnbc.com/2024/08/21/nonfarm-payroll-growth-revised-down-by-818000-labor-department-says.html">U.S. nonfarm payroll growth revised down by 818,000, Labor Department says</a></div><div class="RiverByline-bylineContainer RiverByline-hasSeparator"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-datePublished">6 min ago</span><span class="RiverByline-separator">•</span><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/jeff-cox/">Jeff Cox</a></span></span></div></div></div><div class="RiverThumbnail-thumbnailContainer"><div class="RiverThumbnail-imageThumbnail"><a href="https://www.cnbc.com/2024/08/21/nonfarm-payroll-growth-revised-down-by-818000-labor-department-says.html"><div class="lazyload-placeholder" style="height:100%"></div></a></div></div></div><div class="RiverByline-mobileBylineContainer RiverByline-hasSeparator"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-datePublished">6 min ago</span><span class="RiverByline-separator">•</span><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/jeff-cox/">Jeff Cox</a></span></span></div></div></div><div data-module="NativeRiver"><div class="NativeRiver-container" data-module="mps-slot" id="HomePageInternational-riverPlus-11-3"></div></div><div id="HomePageInternational-riverPlus-11-4"><div class="RiverPlusCard-container"><div class="RiverPlusCard-cardLeft"><div class="RiverHeadline-headline RiverHeadline-hasThumbnail"><a href="https://www.cnbc.com/2024/08/21/why-the-latest-mpox-outbreak-is-raising-alarm-among-health-experts.html">Why the latest mpox outbreak is raising alarm among health experts</a></div><div class="RiverByline-bylineContainer RiverByline-hasSeparator"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-datePublished">3 hours ago</span><span class="RiverByline-separator">•</span><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/karen-gilchrist/">Karen Gilchrist</a></span></span></div></div></div><div class="RiverThumbnail-thumbnailContainer"><div class="RiverThumbnail-imageThumbnail"><a href="https://www.cnbc.com/2024/08/21/why-the-latest-mpox-outbreak-is-raising-alarm-among-health-experts.html"><div class="lazyload-placeholder" style="height:100%"></div></a></div></div></div><div class="RiverByline-mobileBylineContainer RiverByline-hasSeparator"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-datePublished">3 hours ago</span><span class="RiverByline-separator">•</span><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/karen-gilchrist/">Karen Gilchrist</a></span></span></div></div></div><div id="HomePageInternational-riverPlus-11-5"><div class="RiverPlusCard-container"><div class="RiverPlusCard-cardLeft"><div class="RiverHeadline-headline RiverHeadline-hasThumbnail"><a href="https://www.cnbc.com/2024/08/21/swiftflation-taylor-swift-eras-tour-unlikely-to-impact-boe-rate-policy.html">Taylor Swift Eras Tour unlikely to move the needle on Bank of England's rate policy, analyst says</a></div><div class="RiverByline-bylineContainer RiverByline-hasSeparator"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-datePublished">3 hours ago</span><span class="RiverByline-separator">•</span><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/april-roach/">April Roach</a></span></span></div></div></div><div class="RiverThumbnail-thumbnailContainer"><div class="RiverThumbnail-imageThumbnail"><a href="https://www.cnbc.com/2024/08/21/swiftflation-taylor-swift-eras-tour-unlikely-to-impact-boe-rate-policy.html"><div class="lazyload-placeholder" style="height:100%"></div></a></div></div></div><div class="RiverByline-mobileBylineContainer RiverByline-hasSeparator"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-datePublished">3 hours ago</span><span class="RiverByline-separator">•</span><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/april-roach/">April Roach</a></span></span></div></div></div><div id="HomePageInternational-riverPlus-11-6"><div class="RiverPlusCard-container"><div class="RiverPlusCard-cardLeft"><div class="RiverHeadline-headline RiverHeadline-hasThumbnail"><a href="https://www.cnbc.com/2024/08/21/china-calls-eu-tariffs-on-evs-unfair-says-it-will-defend-industry.html">China calls EU tariffs on EVs unfair, says it will take necessary measures to defend industry</a></div><div class="RiverByline-bylineContainer RiverByline-hasSeparator"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-datePublished">5 hours ago</span><span class="RiverByline-separator">•</span><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/ryan-browne/">Ryan Browne</a></span></span></div></div></div><div class="RiverThumbnail-thumbnailContainer"><div class="RiverThumbnail-imageThumbnail"><a href="https://www.cnbc.com/2024/08/21/china-calls-eu-tariffs-on-evs-unfair-says-it-will-defend-industry.html"><div class="lazyload-placeholder" style="height:100%"></div></a></div></div></div><div class="RiverByline-mobileBylineContainer RiverByline-hasSeparator"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-datePublished">5 hours ago</span><span class="RiverByline-separator">•</span><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/ryan-browne/">Ryan Browne</a></span></span></div></div></div><div id="HomePageInternational-riverPlus-11-7"><div class="RiverPlusCard-container"><div class="RiverPlusCard-cardLeft"><div class="RiverHeadline-headline RiverHeadline-hasThumbnail"><a href="https://www.cnbc.com/2024/08/21/ford-delays-new-ev-plant-cancels-electric-three-row-suv.html">Ford delays new EV plant, cancels electric three-row SUV as it shifts strategy</a></div><div class="RiverByline-bylineContainer RiverByline-hasSeparator"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-datePublished">an hour ago</span><span class="RiverByline-separator">•</span><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/michael-wayland/">Michael Wayland</a></span></span></div></div></div><div class="RiverThumbnail-thumbnailContainer"><div class="RiverThumbnail-imageThumbnail"><a href="https://www.cnbc.com/2024/08/21/ford-delays-new-ev-plant-cancels-electric-three-row-suv.html"><div class="lazyload-placeholder" style="height:100%"></div></a></div></div></div><div class="RiverByline-mobileBylineContainer RiverByline-hasSeparator"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-datePublished">an hour ago</span><span class="RiverByline-separator">•</span><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/michael-wayland/">Michael Wayland</a></span></span></div></div></div><div class="RiverPlusBreaker-container"><div class="RiverPlusCard-breakerCardContainer" id="HomePageInternational-riverPlus-11-8"><div class="RiverThumbnail-breakerImage"><div class="RiverThumbnail-imageThumbnail"><a href="https://www.cnbc.com/2024/08/21/ship-that-travels-the-world-full-time-heres-how-much-it-costs.html"><div class="lazyload-placeholder" style="height:100%"></div></a></div></div><div class="RiverHeadline-headline RiverHeadline-hasThumbnail"><a href="https://www.cnbc.com/2024/08/21/ship-that-travels-the-world-full-time-heres-how-much-it-costs.html">This ship travels the world full time — here's how much an apartment on it costs</a></div></div><div class="RiverPlusCard-breakerCardContainer" id="HomePageInternational-riverPlus-11-9"><div class="RiverThumbnail-breakerImage"><div class="RiverThumbnail-imageThumbnail"><a href="https://www.cnbc.com/2024/08/21/michelle-obama-trump-harris-dnc-election.html"><div class="lazyload-placeholder" style="height:100%"></div></a></div></div><div class="RiverHeadline-headline RiverHeadline-hasThumbnail"><a href="https://www.cnbc.com/2024/08/21/michelle-obama-trump-harris-dnc-election.html">Michelle Obama: Trump used 'misogynistic, racist lies' to 'try to make people fear us'  </a></div></div></div><div id="HomePageInternational-riverPlus-11-10"><div class="RiverPlusCard-container"><div class="RiverPlusCard-cardLeft"><div class="RiverHeadline-headline RiverHeadline-hasThumbnail"><a href="https://www.cnbc.com/2024/08/21/chinas-antimony-export-controls-rattle-the-tungsten-industry.html">China’s new rules are worrying insiders about how far Beijing will go on controlling critical metals</a></div><div class="RiverByline-bylineContainer"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/evelyn-cheng/">Evelyn Cheng</a></span></span></div></div></div><div class="RiverThumbnail-thumbnailContainer"><div class="RiverThumbnail-imageThumbnail"><a href="https://www.cnbc.com/2024/08/21/chinas-antimony-export-controls-rattle-the-tungsten-industry.html"><div class="lazyload-placeholder" style="height:100%"></div></a></div></div></div><div class="RiverByline-mobileBylineContainer"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/evelyn-cheng/">Evelyn Cheng</a></span></span></div></div></div><div id="HomePageInternational-riverPlus-11-11"><div class="RiverPlusCard-container"><div class="RiverPlusCard-cardLeft"><div class="RiverHeadline-headline RiverHeadline-hasThumbnail"><a href="https://www.cnbc.com/2024/08/21/macys-m-q2-2024-earnings.html">Macy’s cuts sales forecast as department stores struggle to draw shoppers</a></div><div class="RiverByline-bylineContainer RiverByline-hasSeparator"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-datePublished">an hour ago</span><span class="RiverByline-separator">•</span><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/melissa-repko/">Melissa Repko</a></span></span></div></div></div><div class="RiverThumbnail-thumbnailContainer"><div class="RiverThumbnail-imageThumbnail"><a href="https://www.cnbc.com/2024/08/21/macys-m-q2-2024-earnings.html"><div class="lazyload-placeholder" style="height:100%"></div></a></div></div></div><div class="RiverByline-mobileBylineContainer RiverByline-hasSeparator"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-datePublished">an hour ago</span><span class="RiverByline-separator">•</span><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/melissa-repko/">Melissa Repko</a></span></span></div></div></div><div id="HomePageInternational-riverPlus-11-12"><div class="RiverPlusCard-container"><div class="RiverPlusCard-cardLeft"><div class="RiverHeadline-headline RiverHeadline-hasThumbnail"><a href="https://www.cnbc.com/2024/08/21/volatility-spike-was-a-huge-overreaction-but-more-could-be-ahead-strategist-says.html">Recent volatility spike was a 'huge overreaction,' but expect more ahead, UBS strategist says</a></div><div class="RiverByline-bylineContainer"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/sophie-kiderlin/">Sophie Kiderlin</a></span></span></div></div></div><div class="RiverThumbnail-thumbnailContainer"><div class="RiverThumbnail-imageThumbnail"><a href="https://www.cnbc.com/2024/08/21/volatility-spike-was-a-huge-overreaction-but-more-could-be-ahead-strategist-says.html"><div class="lazyload-placeholder" style="height:100%"></div></a></div></div></div><div class="RiverByline-mobileBylineContainer"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/sophie-kiderlin/">Sophie Kiderlin</a></span></span></div></div></div><div id="HomePageInternational-riverPlus-11-13"><div class="RiverPlusCard-container"><div class="RiverPlusCard-cardLeft"><div class="RiverHeadline-headline RiverHeadline-hasThumbnail"><a href="https://www.cnbc.com/2024/08/21/harris-record-shows-she-would-prioritize-the-indo-pacific-cfr-expert.html">Harris' record suggests she would prioritize the Indo-Pacific, CFR political scientist says</a></div><div class="RiverByline-bylineContainer"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/dylan-butts/">Dylan Butts</a></span></span></div></div></div><div class="RiverThumbnail-thumbnailContainer"><div class="RiverThumbnail-imageThumbnail"><a href="https://www.cnbc.com/2024/08/21/harris-record-shows-she-would-prioritize-the-indo-pacific-cfr-expert.html"><div class="lazyload-placeholder" style="height:100%"></div></a></div></div></div><div class="RiverByline-mobileBylineContainer"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/dylan-butts/">Dylan Butts</a></span></span></div></div></div><div id="HomePageInternational-riverPlus-11-14"><div class="RiverPlusCard-container"><div class="RiverPlusCard-cardLeft"><div class="RiverHeadline-headline RiverHeadline-hasThumbnail"><a href="https://www.cnbc.com/2024/08/21/the-worlds-largest-steel-industry-is-going-through-a-winter-amid-a-supply-glut-and-weak-demand-.html">The world's largest steel industry is going through a 'winter' amid a supply glut and weak demand </a></div><div class="RiverByline-bylineContainer RiverByline-hasSeparator"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-datePublished">6 hours ago</span><span class="RiverByline-separator">•</span><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/lee-ying-shan/">Lee Ying Shan</a></span></span></div></div></div><div class="RiverThumbnail-thumbnailContainer"><div class="RiverThumbnail-imageThumbnail"><a href="https://www.cnbc.com/2024/08/21/the-worlds-largest-steel-industry-is-going-through-a-winter-amid-a-supply-glut-and-weak-demand-.html"><div class="lazyload-placeholder" style="height:100%"></div></a></div></div></div><div class="RiverByline-mobileBylineContainer RiverByline-hasSeparator"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-datePublished">6 hours ago</span><span class="RiverByline-separator">•</span><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/lee-ying-shan/">Lee Ying Shan</a></span></span></div></div></div><div id="HomePageInternational-riverPlus-11-15"><div class="RiverPlusCard-container"><div class="RiverPlusCard-cardLeft"><div class="RiverHeadline-headline RiverHeadline-hasThumbnail"><a href="https://www.cnbc.com/2024/08/21/here-are-the-10-best-workcation-cities-in-the-world-for-hybrid-workers.html">These are the 10 best 'workcation' cities in the world for hybrid workers</a></div><div class="RiverByline-bylineContainer"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/ernestine-siu/">Ernestine Siu</a></span></span></div></div></div><div class="RiverThumbnail-thumbnailContainer"><div class="RiverThumbnail-imageThumbnail"><a href="https://www.cnbc.com/2024/08/21/here-are-the-10-best-workcation-cities-in-the-world-for-hybrid-workers.html"><div class="lazyload-placeholder" style="height:100%"></div></a></div></div></div><div class="RiverByline-mobileBylineContainer"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/ernestine-siu/">Ernestine Siu</a></span></span></div></div></div><div id="HomePageInternational-riverPlus-11-16"><div class="RiverPlusCard-container"><div class="RiverPlusCard-cardLeft"><div class="RiverHeadline-headline RiverHeadline-hasThumbnail"><a href="https://www.cnbc.com/2024/08/21/jdcom-shares-plunge-after-walmart-confirms-stake-sale.html">JD.com leads losses in Hong Kong, falling 10% after Walmart confirms stake sale</a></div><div class="RiverByline-bylineContainer"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/lim-hui-jie/">Lim Hui Jie</a></span></span></div></div></div><div class="RiverThumbnail-thumbnailContainer"><div class="RiverThumbnail-imageThumbnail"><a href="https://www.cnbc.com/2024/08/21/jdcom-shares-plunge-after-walmart-confirms-stake-sale.html"><div class="lazyload-placeholder" style="height:100%"></div></a></div></div></div><div class="RiverByline-mobileBylineContainer"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/lim-hui-jie/">Lim Hui Jie</a></span></span></div></div></div><div id="HomePageInternational-riverPlus-11-17"><div class="RiverPlusCard-container"><div class="RiverPlusCard-cardLeft"><div class="RiverHeadline-headline RiverHeadline-hasThumbnail"><a href="https://www.cnbc.com/2024/08/21/ev-company-nio-to-build-battery-chargers-swap-stations-across-china.html">EV company Nio aims to build battery chargers and swap stations in every county</a></div><div class="RiverByline-bylineContainer"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/evelyn-cheng/">Evelyn Cheng</a></span></span></div></div></div><div class="RiverThumbnail-thumbnailContainer"><div class="RiverThumbnail-imageThumbnail"><a href="https://www.cnbc.com/2024/08/21/ev-company-nio-to-build-battery-chargers-swap-stations-across-china.html"><div class="lazyload-placeholder" style="height:100%"></div></a></div></div></div><div class="RiverByline-mobileBylineContainer"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/evelyn-cheng/">Evelyn Cheng</a></span></span></div></div></div><div id="HomePageInternational-riverPlus-11-18"><div class="RiverPlusCard-container"><div class="RiverPlusCard-cardLeft"><div class="RiverHeadline-headline RiverHeadline-hasThumbnail"><a href="https://www.cnbc.com/2024/08/20/shein-sues-temu-over-copyright-infringement-trade-secret-theft.html">Shein sues Temu over copyright infringement, alleges rival loses money on every sale</a></div><div class="RiverByline-bylineContainer RiverByline-hasSeparator"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-datePublished">3 hours ago</span><span class="RiverByline-separator">•</span><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/gabrielle-fonrouge/">Gabrielle Fonrouge</a></span></span></div></div></div><div class="RiverThumbnail-thumbnailContainer"><div class="RiverThumbnail-imageThumbnail"><a href="https://www.cnbc.com/2024/08/20/shein-sues-temu-over-copyright-infringement-trade-secret-theft.html"><div class="lazyload-placeholder" style="height:100%"></div></a></div></div></div><div class="RiverByline-mobileBylineContainer RiverByline-hasSeparator"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-datePublished">3 hours ago</span><span class="RiverByline-separator">•</span><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/gabrielle-fonrouge/">Gabrielle Fonrouge</a></span></span></div></div></div><div id="HomePageInternational-riverPlus-11-19"><div class="RiverPlusCard-container"><div class="RiverPlusCard-cardLeft"><div class="RiverHeadline-headline RiverHeadline-hasThumbnail"><a href="https://www.cnbc.com/2024/08/21/jennifer-lopez-files-for-divorce-from-ben-affleck.html">Jennifer Lopez files for divorce from Ben Affleck</a></div><div class="RiverByline-bylineContainer"></div></div><div class="RiverThumbnail-thumbnailContainer"><div class="RiverThumbnail-imageThumbnail"><a href="https://www.cnbc.com/2024/08/21/jennifer-lopez-files-for-divorce-from-ben-affleck.html"><div class="lazyload-placeholder" style="height:100%"></div></a></div></div></div><div class="RiverByline-mobileBylineContainer"></div></div><div id="HomePageInternational-riverPlus-11-20"><div class="RiverPlusCard-container"><div class="RiverPlusCard-cardLeft"><div class="RiverHeadline-headline RiverHeadline-hasThumbnail"><a href="https://www.cnbc.com/2024/08/21/cnbc-daily-open-a-crazy-summer.html">CNBC Daily Open: A 'crazy' summer</a></div><div class="RiverByline-bylineContainer"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/abid-ali/">Abid Ali</a></span></span></div></div></div><div class="RiverThumbnail-thumbnailContainer"><div class="RiverThumbnail-imageThumbnail"><a href="https://www.cnbc.com/2024/08/21/cnbc-daily-open-a-crazy-summer.html"><div class="lazyload-placeholder" style="height:100%"></div></a></div></div></div><div class="RiverByline-mobileBylineContainer"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/abid-ali/">Abid Ali</a></span></span></div></div></div></div></div><div class="SidebarArticle-sidebar PageBuilder-sidebar" data-test="SidebarArticle"><div class="SidebarArticle-sticky" style="top:70px"><div style="margin-top:0px"></div></div></div></div><div class="PageBuilder-containerFluidWidths PageBuilder-pageRow"><div class="PageBuilder-col-12 PageBuilder-col"><section class="MarketsModule-container" data-analytics="HomePageInternational-marketsModule-13-0" data-test="marketsModule-0" id="HomePageInternational-MarketsModule-13"><section class="MarketsModule-top"><div class="MarketsModule-title"><h2><a href="//www.cnbc.com/us-market-movers/">Markets</a></h2><div class="SponsorLogo-container" data-module="mps-slot" id="SponsorLogo-HomePageInternational-MarketsModule-13"></div></div><section class="MarketMovers-container"><section class="MarketMovers-titleContainer"><h3 class="MarketMovers-title"><a href="/us-market-movers/">Market MOVERS</a></h3><div class="MarketMoversMenu-moverContainer"><button class="MarketMoversMenu-activeMarket MarketMoversMenu-marketOption">S&amp;P</button><button class="MarketMoversMenu-marketOption">NASDAQ</button><button class="MarketMoversMenu-marketOption">DOW</button><button class="MarketMoversMenu-marketOption">EUR</button><button class="MarketMoversMenu-marketOption">ASIA</button><button class="MarketMoversMenu-marketOption">COVID19</button><button class="MarketMoversMenu-marketOption"></button></div></section><section class="MarketMovers-marketTopContainer"><div class="MarketMovers-loadingContainer"><span class="DynamicLoadingIndicator-spinnerParent" data-test="DynamicLoadingIndicator" data-testid="DynamicLoadingIndicator"><span class="DynamicLoadingIndicator-spinner" style="width:40px;height:40px"></span></span></div></section></section></section><section class="MarketsModule-row"><section class="MarketsModule-leftColumn"><div class="MarketsModule-marketTable"><section class="TableHeader-container" data-test="TableHeader"><h3 class="TableHeader-title">Most Active</h3></section><div data-test="GdsMarketTable"><div class="BasicTable-basicTable" data-test="BasicTable"><div class="BasicTable-tableWrapper"><div class="BasicTable-container"><table class="BasicTable-table"><tbody class="BasicTable-tableBody"></tbody></table></div></div><div><br/></div></div></div></div><div class="MarketsModule-marketTable"><section class="TableHeader-container" data-test="TableHeader"><h3 class="TableHeader-title">Unusual Volume</h3></section><div data-test="GdsMarketTable"><div class="BasicTable-basicTable" data-test="BasicTable"><div class="BasicTable-tableWrapper"><div class="BasicTable-container"><table class="BasicTable-table"><tbody class="BasicTable-tableBody"></tbody></table></div></div><div><br/></div></div></div></div></section><section class="MarketsModule-rightColumn"><section class="MarketNews-container"><h3 class="MarketNews-title"><a href="/stocks/">Latest Market News</a></h3><div class="Card-standardBreakerCard Card-titleBylineNoBorder Card-card" data-test="Card"><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><div><a class="Card-title" href="https://www.cnbc.com/2024/08/21/us-treasurys-ahead-of-fed-meeting-minutes-release.html" target="">10-year Treasury yield holds steady ahead of Fed meeting minutes release</a></div></div></div><div class="Card-cardFooter"><span class="Card-byline"><div class="MarketNews-authorBylineContainer"><span class="MarketNews-datePublished">12 min ago</span><span class="MarketNews-separator">•</span><span><span><a href="https://www.cnbc.com/alex-harring/">Alex Harring</a><span class="MarketNews-bylineComma">,</span></span><span><a href="https://www.cnbc.com/sophie-kiderlin/">Sophie Kiderlin</a></span></span></div></span></div></div></div></div><div class="Card-standardBreakerCard Card-titleOnly Card-card" data-test="Card"><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><div><svg alt="Watch Live" class="Card-watchLivePill LivePill-watchLivePill" height="16" viewbox="0 0 57 22"><rect fill="#FF5053" height="100%" width="100%"></rect><path d="M12.9997 13.3192C14.2805 13.3192 15.3188 12.281 15.3188 11.0004C15.3188 9.71979 14.2805 8.68164 12.9997 8.68164C11.7189 8.68164 10.6807 9.71979 10.6807 11.0004C10.6807 12.281 11.7189 13.3192 12.9997 13.3192Z" fill="white"></path><path d="M8 11C8 13.7616 10.2387 16 13 16C15.7613 16 18 13.7616 18 11C18 8.23843 15.7613 6 13 6C10.2387 6 8 8.23843 8 11ZM17.2766 10.9997C17.2766 13.3606 15.3622 15.2748 13.0004 15.2748C10.6385 15.2748 8.72412 13.3606 8.72412 10.9997C8.72412 8.63877 10.6385 6.72461 13.0004 6.72461C15.3622 6.72461 17.2766 8.63877 17.2766 10.9997Z" fill="white"></path><path d="M22.08 15V6.6H23.556V13.656H27.972V15H22.08ZM29.3437 15V6.6H30.8197V15H29.3437ZM35.5903 15.06L32.0983 6.6H33.7303L36.2623 13.056L38.7823 6.6H40.3783L36.8983 15.06H35.5903ZM41.5683 15V6.6H47.7963V7.92H43.0443V10.104H47.2563V11.424H43.0443V13.68H47.8563V15H41.5683Z" fill="white"></path></svg><a class="Card-title" href="https://www.cnbc.com/2024/08/20/stock-market-today-live-updates.html" target="">S&amp;P 500 ticks higher as Wall Street awaits Fed minutes: Live updates</a></div></div></div><div class="Card-cardFooter"><span class="Card-byline"><div class="MarketNews-authorBylineContainer"><span class="MarketNews-datePublished">Moments Ago</span><span class="MarketNews-separator">•</span><span><span><a href="https://www.cnbc.com/alex-harring/">Alex Harring</a><span class="MarketNews-bylineComma">,</span></span><span><a href="https://www.cnbc.com/samantha-subin/">Samantha Subin</a></span></span></div></span></div></div></div></div><div class="Card-standardBreakerCard Card-titleOnly Card-card" data-test="Card"><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><div><a class="Card-title" href="https://www.cnbc.com/2024/08/20/stocks-making-the-biggest-moves-after-hours-tol-mchp-keys-and-more.html" target="">Stocks making the biggest moves after hours: Toll Brothers, Microchip Technology and more</a></div></div></div><div class="Card-cardFooter"><span class="Card-byline"><div class="MarketNews-authorBylineContainer"><span><span><a href="https://www.cnbc.com/samantha-subin/">Samantha Subin</a></span></span></div></span></div></div></div></div><div class="Card-standardBreakerCard Card-titleOnly Card-card" data-test="Card"><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-pro"><div><a class="ProPill-proPillLink" data-type="pro-button" href="/pro/"><svg alt="CNBC Pro" class="Card-proPill ProPill-proPill" height="16" viewbox="0 0 43 22"><rect fill="#047E2E" height="100%" width="100%"></rect><path d="M9.08 15V6.6H12.392C14.36 6.6 15.584 7.716 15.584 9.408V9.432C15.584 11.316 14.072 12.3 12.224 12.3H10.556V15H9.08ZM10.556 10.968H12.272C13.388 10.968 14.084 10.344 14.084 9.468V9.444C14.084 8.46 13.376 7.944 12.272 7.944H10.556V10.968ZM17.0956 15V6.6H20.8396C21.8956 6.6 22.7236 6.912 23.2636 7.44C23.7076 7.896 23.9596 8.52 23.9596 9.252V9.276C23.9596 10.656 23.1316 11.484 21.9676 11.82L24.2356 15H22.4836L20.4196 12.072H18.5716V15H17.0956ZM18.5716 10.764H20.7316C21.7876 10.764 22.4596 10.212 22.4596 9.36V9.336C22.4596 8.436 21.8116 7.944 20.7196 7.944H18.5716V10.764ZM29.7755 15.144C27.1955 15.144 25.3955 13.188 25.3955 10.824V10.8C25.3955 8.436 27.2195 6.456 29.7995 6.456C32.3795 6.456 34.1795 8.412 34.1795 10.776V10.8C34.1795 13.164 32.3555 15.144 29.7755 15.144ZM29.7995 13.776C31.4675 13.776 32.6315 12.456 32.6315 10.824V10.8C32.6315 9.168 31.4435 7.812 29.7755 7.812C28.1075 7.812 26.9435 9.144 26.9435 10.776V10.8C26.9435 12.432 28.1315 13.776 29.7995 13.776Z" fill="white"></path></svg></a><a class="Card-title" href="https://www.cnbc.com/2024/08/20/the-hidden-force-driving-the-stock-market-comeback.html" target="">The hidden force driving the stock market comeback</a></div></div></div><div class="Card-cardFooter Card-bylinePosition"><span class="Card-byline"><div class="MarketNews-authorBylineContainer"><span><span><a href="https://www.cnbc.com/alex-harring/">Alex Harring</a></span></span></div></span></div></div></div></div></section></section></section></section></div></div><div class="PageBuilder-containerWidth100 PageBuilder-pageRow"><div class="PageBuilder-col-full PageBuilder-col"></div></div><div class="PageBuilder-containerWidth100 PageBuilder-pageRow"><div class="PageBuilder-col-full PageBuilder-col"><div class="FeaturedBreaker-featuredBreaker" data-analytics="HomePageInternational-featuredBreaker-16-0" data-test="featuredBreaker-0" id="HomePageInternational-FeaturedBreaker-SpecialReports-16"><div class="FeaturedBreaker-wrapper"><div><div class="FeaturedBreaker-heading"><h3 class="FeaturedBreaker-headingText">Special Reports</h3></div><div class="FeaturedBreaker-arrowContainer"><button aria-label="previous-button" class="FeaturedBreaker-prevArrowInactive FeaturedBreaker-prevArrow FeaturedBreaker-arrow"><span class="icon-arrow-left"></span></button><button aria-label="next-button" class="FeaturedBreaker-nextArrow FeaturedBreaker-arrow"><span class="icon-arrow-right"></span></button></div></div><div class="FeaturedBreaker-slideContainer"><div class="FeaturedBreaker-leftSlide"><div class="FeaturedBreaker-slideRail" style="transform:translateX(-0%)"><div class="lazyload-placeholder" style="height:100%"></div><div class="lazyload-placeholder" style="height:100%"></div><div class="lazyload-placeholder" style="height:100%"></div><div class="lazyload-placeholder" style="height:100%"></div><div class="lazyload-placeholder" style="height:100%"></div><div class="lazyload-placeholder" style="height:100%"></div><div class="lazyload-placeholder" style="height:100%"></div><div class="lazyload-placeholder" style="height:100%"></div></div></div><div class="FeaturedBreaker-rightSlide"><div class="FeaturedBreaker-slideRail" style="transform:translateX(-100%)"><div class="lazyload-placeholder" style="height:100%"></div><div class="lazyload-placeholder" style="height:100%"></div><div class="lazyload-placeholder" style="height:100%"></div><div class="lazyload-placeholder" style="height:100%"></div><div class="lazyload-placeholder" style="height:100%"></div><div class="lazyload-placeholder" style="height:100%"></div><div class="lazyload-placeholder" style="height:100%"></div><div class="lazyload-placeholder" style="height:100%"></div></div></div></div></div></div></div></div><div class="PageBuilder-containerFluidWidths PageBuilder-pageRow"><div class="PageBuilder-col-12 PageBuilder-col"><div class="TrendingNowBreaker-pageRow" data-analytics="HomePageInternational-trendingNowBreaker-17-0" data-test="trendingNowBreaker-0" id="HomePageInternational-TrendingNowBreaker-17"><div class="TrendingNowBreaker-col-12 TrendingNowBreaker-col"><div class="TrendingNow-container"><div></div><h2 class="TrendingNow-heading">Trending Now</h2><ul class="TrendingNow-storyContainer"><li class="TrendingNowItem-storyItem"><div class="TrendingNowItem-number">1</div><div class="TrendingNowItem-linkWrap"><a class="TrendingNowItem-title" href="https://www.cnbc.com/2024/08/21/nonfarm-payroll-growth-revised-down-by-818000-labor-department-says.html">Nonfarm payroll growth revised down by 818,000, Labor Department says</a></div></li><li class="TrendingNowItem-storyItem"><div class="TrendingNowItem-number">2</div><div class="TrendingNowItem-linkWrap"><a class="TrendingNowItem-title" href="https://www.cnbc.com/2024/08/20/starbucks-new-ceo-brian-niccol-will-supercommute-to-seattle-instead-of-relocating.html">Starbucks' new CEO will supercommute 1,000 miles from California to Seattle office instead of relocating</a></div></li><li class="TrendingNowItem-storyItem"><div class="TrendingNowItem-number">3</div><div class="TrendingNowItem-linkWrap"><a class="TrendingNowItem-title" href="https://www.cnbc.com/2024/08/20/former-trump-supporters-tell-republicans-to-vote-harris-at-dnc.html">'No empathy, no morals': Three-time MAGA voter, former Trump aide on why they back Harris </a></div></li><li class="TrendingNowItem-storyItem"><div class="TrendingNowItem-number">4</div><div class="TrendingNowItem-linkWrap"><a class="TrendingNowItem-title" href="https://www.cnbc.com/2024/08/21/target-ceo-brian-cornell-weighs-in-on-price-gouging.html">Target CEO addresses 'price gouging' accusations in retail</a></div></li><li class="TrendingNowItem-storyItem"><div class="TrendingNowItem-number">5</div><div class="TrendingNowItem-linkWrap"><a class="TrendingNowItem-title" href="https://www.cnbc.com/2024/08/21/ford-delays-new-ev-plant-cancels-electric-three-row-suv.html">Ford delays new EV plant, cancels electric three-row SUV as it shifts strategy</a></div></li></ul></div></div></div></div></div><div class="PageBuilder-containerFluidWidths PageBuilder-pageRow"><div class="PageBuilder-col-9 PageBuilder-col"><div class="TwoColumnImageDense-pageRow TwoColumnImageDense-imageDense" data-analytics="HomePageInternational-twoColumnImageDense-18-0" data-test="twoColumnImageDense-0"><section class="SectionWrapper-container" data-test="SectionWrapper" id="HomePageInternational-TwoColumnImageDense-ProNewsandAnalysis-18"><header class="SectionWrapper-header"><span aria-hidden="true" class="SectionWrapper-decoration"></span><h2 class="SectionWrapper-title"><a href="https://www.cnbc.com/pro/news/">Pro News and Analysis</a></h2></header><div class="SectionWrapper-content"><div class="Layout-layout" data-test="Layout"><div class="Column-imageDenseModRight" data-test="Column"><div class="Card-standardBreakerCard Card-featuredRectangleMediaImagedense Card-featuredRectangleMedia Card-card" data-test="Card"><div class="Card-mediaContainer"><a href="https://www.cnbc.com/2024/08/21/lng-booming-as-asia-seeks-coal-substitutes-these-stocks-could-surge-.html" tabindex="-1" target=""><div class="Card-imageContainer"><div class="Card-rectangleMediaContainer Card-placeholder"><picture data-test="Picture"><source height="630" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/108000984-1719939951462-gettyimages-2155469807-2024_06_04_FSRU_Toscana_arr_DSC_9761_rJPG.jpeg?v=1724176648&amp;w=1260&amp;h=630&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="1260"/><source height="410" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/108000984-1719939951462-gettyimages-2155469807-2024_06_04_FSRU_Toscana_arr_DSC_9761_rJPG.jpeg?v=1724176648&amp;w=820&amp;h=410&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="820"/><source height="442" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/108000984-1719939951462-gettyimages-2155469807-2024_06_04_FSRU_Toscana_arr_DSC_9761_rJPG.jpeg?v=1724176648&amp;w=884&amp;h=442&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="884"/><source height="360" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/108000984-1719939951462-gettyimages-2155469807-2024_06_04_FSRU_Toscana_arr_DSC_9761_rJPG.jpeg?v=1724176648&amp;w=720&amp;h=360&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="720"/><img alt="Liquid natural gas is booming as Asia looks for alternatives to coal — these stocks could surge " class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/108000984-1719939951462-gettyimages-2155469807-2024_06_04_FSRU_Toscana_arr_DSC_9761_rJPG.jpeg?v=1724176648&amp;w=884&amp;h=442&amp;vtcrop=y"/></picture></div></div></a></div><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-pro"><div><a class="ProPill-proPillLink" data-type="pro-button" href="/pro/"><svg alt="CNBC Pro" class="Card-proPill ProPill-proPill" height="16" viewbox="0 0 43 22"><rect fill="#047E2E" height="100%" width="100%"></rect><path d="M9.08 15V6.6H12.392C14.36 6.6 15.584 7.716 15.584 9.408V9.432C15.584 11.316 14.072 12.3 12.224 12.3H10.556V15H9.08ZM10.556 10.968H12.272C13.388 10.968 14.084 10.344 14.084 9.468V9.444C14.084 8.46 13.376 7.944 12.272 7.944H10.556V10.968ZM17.0956 15V6.6H20.8396C21.8956 6.6 22.7236 6.912 23.2636 7.44C23.7076 7.896 23.9596 8.52 23.9596 9.252V9.276C23.9596 10.656 23.1316 11.484 21.9676 11.82L24.2356 15H22.4836L20.4196 12.072H18.5716V15H17.0956ZM18.5716 10.764H20.7316C21.7876 10.764 22.4596 10.212 22.4596 9.36V9.336C22.4596 8.436 21.8116 7.944 20.7196 7.944H18.5716V10.764ZM29.7755 15.144C27.1955 15.144 25.3955 13.188 25.3955 10.824V10.8C25.3955 8.436 27.2195 6.456 29.7995 6.456C32.3795 6.456 34.1795 8.412 34.1795 10.776V10.8C34.1795 13.164 32.3555 15.144 29.7755 15.144ZM29.7995 13.776C31.4675 13.776 32.6315 12.456 32.6315 10.824V10.8C32.6315 9.168 31.4435 7.812 29.7755 7.812C28.1075 7.812 26.9435 9.144 26.9435 10.776V10.8C26.9435 12.432 28.1315 13.776 29.7995 13.776Z" fill="white"></path></svg></a><a class="Card-title" href="https://www.cnbc.com/2024/08/21/lng-booming-as-asia-seeks-coal-substitutes-these-stocks-could-surge-.html" target="">Liquid natural gas is booming as Asia looks for alternatives to coal — these stocks could surge </a></div></div></div><div class="Card-cardFooter Card-bylinePosition"><span class="Card-byline"><a href="https://www.cnbc.com/spencer-kimball/">Spencer Kimball</a></span><span class="Card-time">an hour ago</span></div></div></div></div></div><div class="Column-imageDenseModLeft" data-test="Column"><div class="Card-standardBreakerCard Card-squareMediaImageDense Card-squareMedia Card-card" data-test="Card"><div class="Card-mediaContainer"><a href="https://www.cnbc.com/2024/08/21/this-payments-stock-has-broken-out-of-a-2-year-sideways-pattern-using-options-to-play-it.html" tabindex="-1" target=""><div class="Card-imageContainer"><div class="Card-squareMediaContainer Card-placeholder"><picture data-test="Picture"><source height="630" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107284067-1691604060169-gettyimages-1245948190-porzycki-payments230102_npNKs.jpeg?v=1724249179&amp;w=600&amp;h=630&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="600"/><source height="410" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107284067-1691604060169-gettyimages-1245948190-porzycki-payments230102_npNKs.jpeg?v=1724249179&amp;w=380&amp;h=410&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="380"/><source height="442" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107284067-1691604060169-gettyimages-1245948190-porzycki-payments230102_npNKs.jpeg?v=1724249179&amp;w=412&amp;h=442&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="412"/><source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107284067-1691604060169-gettyimages-1245948190-porzycki-payments230102_npNKs.jpeg?v=1724249179&amp;w=206&amp;h=206&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="206"/><img alt="This stock has broken out of a 2-year sideways pattern. Using options to play it" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107284067-1691604060169-gettyimages-1245948190-porzycki-payments230102_npNKs.jpeg?v=1724249179&amp;w=412&amp;h=442&amp;vtcrop=y"/></picture></div></div></a></div><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-pro"><div><a class="ProPill-proPillLink" data-type="pro-button" href="/pro/"><svg alt="CNBC Pro" class="Card-proPill ProPill-proPill" height="16" viewbox="0 0 43 22"><rect fill="#047E2E" height="100%" width="100%"></rect><path d="M9.08 15V6.6H12.392C14.36 6.6 15.584 7.716 15.584 9.408V9.432C15.584 11.316 14.072 12.3 12.224 12.3H10.556V15H9.08ZM10.556 10.968H12.272C13.388 10.968 14.084 10.344 14.084 9.468V9.444C14.084 8.46 13.376 7.944 12.272 7.944H10.556V10.968ZM17.0956 15V6.6H20.8396C21.8956 6.6 22.7236 6.912 23.2636 7.44C23.7076 7.896 23.9596 8.52 23.9596 9.252V9.276C23.9596 10.656 23.1316 11.484 21.9676 11.82L24.2356 15H22.4836L20.4196 12.072H18.5716V15H17.0956ZM18.5716 10.764H20.7316C21.7876 10.764 22.4596 10.212 22.4596 9.36V9.336C22.4596 8.436 21.8116 7.944 20.7196 7.944H18.5716V10.764ZM29.7755 15.144C27.1955 15.144 25.3955 13.188 25.3955 10.824V10.8C25.3955 8.436 27.2195 6.456 29.7995 6.456C32.3795 6.456 34.1795 8.412 34.1795 10.776V10.8C34.1795 13.164 32.3555 15.144 29.7755 15.144ZM29.7995 13.776C31.4675 13.776 32.6315 12.456 32.6315 10.824V10.8C32.6315 9.168 31.4435 7.812 29.7755 7.812C28.1075 7.812 26.9435 9.144 26.9435 10.776V10.8C26.9435 12.432 28.1315 13.776 29.7995 13.776Z" fill="white"></path></svg></a><a class="Card-title" href="https://www.cnbc.com/2024/08/21/this-payments-stock-has-broken-out-of-a-2-year-sideways-pattern-using-options-to-play-it.html" target="">This stock has broken out of a 2-year sideways pattern. Using options to play it</a></div></div></div><div class="Card-cardFooter Card-bylinePosition"><span class="Card-time">20 min ago</span></div></div></div></div></div></div><div class="Layout-layout" data-test="Layout"><div class="Column-threeUpUltraDense" data-test="Column"><div class="Card-standardBreakerCard Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card" data-test="Card"><div class="Card-mediaContainer"><a href="https://www.cnbc.com/2024/08/21/wednesdays-top-wall-street-stocks-to-watch.html" tabindex="-1" target=""><div class="Card-imageContainer"><div class="Card-squareMediaContainer Card-placeholder"><picture data-test="Picture"><source height="300" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/106858068-1616514233528solar-home4-jpg?v=1695904818&amp;w=600&amp;h=300&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="600"/><source height="190" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/106858068-1616514233528solar-home4-jpg?v=1695904818&amp;w=380&amp;h=190&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="380"/><source height="206" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/106858068-1616514233528solar-home4-jpg?v=1695904818&amp;w=412&amp;h=206&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="412"/><source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/106858068-1616514233528solar-home4-jpg?v=1695904818&amp;w=206&amp;h=206&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="206"/><img alt="Wednesday's top analyst calls: Nvidia, Apple, Netflix, Sunrun, Amazon" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/106858068-1616514233528solar-home4-jpg?v=1695904818&amp;w=412&amp;h=206&amp;vtcrop=y"/></picture></div></div></a></div><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-pro"><div><a class="ProPill-proPillLink" data-type="pro-button" href="/pro/"><svg alt="CNBC Pro" class="Card-proPill ProPill-proPill" height="16" viewbox="0 0 43 22"><rect fill="#047E2E" height="100%" width="100%"></rect><path d="M9.08 15V6.6H12.392C14.36 6.6 15.584 7.716 15.584 9.408V9.432C15.584 11.316 14.072 12.3 12.224 12.3H10.556V15H9.08ZM10.556 10.968H12.272C13.388 10.968 14.084 10.344 14.084 9.468V9.444C14.084 8.46 13.376 7.944 12.272 7.944H10.556V10.968ZM17.0956 15V6.6H20.8396C21.8956 6.6 22.7236 6.912 23.2636 7.44C23.7076 7.896 23.9596 8.52 23.9596 9.252V9.276C23.9596 10.656 23.1316 11.484 21.9676 11.82L24.2356 15H22.4836L20.4196 12.072H18.5716V15H17.0956ZM18.5716 10.764H20.7316C21.7876 10.764 22.4596 10.212 22.4596 9.36V9.336C22.4596 8.436 21.8116 7.944 20.7196 7.944H18.5716V10.764ZM29.7755 15.144C27.1955 15.144 25.3955 13.188 25.3955 10.824V10.8C25.3955 8.436 27.2195 6.456 29.7995 6.456C32.3795 6.456 34.1795 8.412 34.1795 10.776V10.8C34.1795 13.164 32.3555 15.144 29.7755 15.144ZM29.7995 13.776C31.4675 13.776 32.6315 12.456 32.6315 10.824V10.8C32.6315 9.168 31.4435 7.812 29.7755 7.812C28.1075 7.812 26.9435 9.144 26.9435 10.776V10.8C26.9435 12.432 28.1315 13.776 29.7995 13.776Z" fill="white"></path></svg></a><a class="Card-title" href="https://www.cnbc.com/2024/08/21/wednesdays-top-wall-street-stocks-to-watch.html" target="">Wednesday's top analyst calls: Nvidia, Apple, Netflix, Sunrun, Amazon</a></div></div></div><div class="Card-threeUpCardFooterStyle Card-bylinePosition"><span class="Card-threeUpBylineStyle"><a href="https://www.cnbc.com/michael-bloom/">Michael Bloom</a></span><span class="Card-time">3 hours ago</span></div></div></div></div></div><div class="Column-threeUpUltraDense" data-test="Column"><div class="Card-standardBreakerCard Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card" data-test="Card"><div class="Card-mediaContainer"><a href="https://www.cnbc.com/2024/08/21/stocks-to-buy-when-the-fed-starts-cutting-according-to-jefferies.html" tabindex="-1" target=""><div class="Card-imageContainer"><div class="Card-squareMediaContainer Card-placeholder"><picture data-test="Picture"><source height="300" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/108022829-1724162967851-gettyimages-2167560453-ms1_0760_91wsinss.jpeg?v=1724163162&amp;w=600&amp;h=300&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="600"/><source height="190" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/108022829-1724162967851-gettyimages-2167560453-ms1_0760_91wsinss.jpeg?v=1724163162&amp;w=380&amp;h=190&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="380"/><source height="206" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/108022829-1724162967851-gettyimages-2167560453-ms1_0760_91wsinss.jpeg?v=1724163162&amp;w=412&amp;h=206&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="412"/><source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/108022829-1724162967851-gettyimages-2167560453-ms1_0760_91wsinss.jpeg?v=1724163162&amp;w=206&amp;h=206&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="206"/><img alt="Stocks to buy when the Fed starts cutting interest rates, according to Jefferies" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/108022829-1724162967851-gettyimages-2167560453-ms1_0760_91wsinss.jpeg?v=1724163162&amp;w=412&amp;h=206&amp;vtcrop=y"/></picture></div></div></a></div><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-pro"><div><a class="ProPill-proPillLink" data-type="pro-button" href="/pro/"><svg alt="CNBC Pro" class="Card-proPill ProPill-proPill" height="16" viewbox="0 0 43 22"><rect fill="#047E2E" height="100%" width="100%"></rect><path d="M9.08 15V6.6H12.392C14.36 6.6 15.584 7.716 15.584 9.408V9.432C15.584 11.316 14.072 12.3 12.224 12.3H10.556V15H9.08ZM10.556 10.968H12.272C13.388 10.968 14.084 10.344 14.084 9.468V9.444C14.084 8.46 13.376 7.944 12.272 7.944H10.556V10.968ZM17.0956 15V6.6H20.8396C21.8956 6.6 22.7236 6.912 23.2636 7.44C23.7076 7.896 23.9596 8.52 23.9596 9.252V9.276C23.9596 10.656 23.1316 11.484 21.9676 11.82L24.2356 15H22.4836L20.4196 12.072H18.5716V15H17.0956ZM18.5716 10.764H20.7316C21.7876 10.764 22.4596 10.212 22.4596 9.36V9.336C22.4596 8.436 21.8116 7.944 20.7196 7.944H18.5716V10.764ZM29.7755 15.144C27.1955 15.144 25.3955 13.188 25.3955 10.824V10.8C25.3955 8.436 27.2195 6.456 29.7995 6.456C32.3795 6.456 34.1795 8.412 34.1795 10.776V10.8C34.1795 13.164 32.3555 15.144 29.7755 15.144ZM29.7995 13.776C31.4675 13.776 32.6315 12.456 32.6315 10.824V10.8C32.6315 9.168 31.4435 7.812 29.7755 7.812C28.1075 7.812 26.9435 9.144 26.9435 10.776V10.8C26.9435 12.432 28.1315 13.776 29.7995 13.776Z" fill="white"></path></svg></a><a class="Card-title" href="https://www.cnbc.com/2024/08/21/stocks-to-buy-when-the-fed-starts-cutting-according-to-jefferies.html" target="">Stocks to buy when the Fed starts cutting interest rates, according to Jefferies</a></div></div></div><div class="Card-threeUpCardFooterStyle Card-bylinePosition"><span class="Card-threeUpBylineStyle"><a href="https://www.cnbc.com/pia-singh/">Pia Singh</a></span><span class="Card-time">4 hours ago</span></div></div></div></div></div><div class="Column-threeUpUltraDense" data-test="Column"><div class="Card-standardBreakerCard Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card" data-test="Card"><div class="Card-mediaContainer"><a href="https://www.cnbc.com/2024/08/21/analyst-calls-all-the-market-moving-wall-street-chatter-from-wednesday.html" tabindex="-1" target=""><div class="Card-imageContainer"><div class="Card-squareMediaContainer Card-placeholder"><picture data-test="Picture"><source height="300" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/108020387-1723649974831-gettyimages-2166761547-wallst469429_txou1tvo.jpeg?v=1724232500&amp;w=600&amp;h=300&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="600"/><source height="190" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/108020387-1723649974831-gettyimages-2166761547-wallst469429_txou1tvo.jpeg?v=1724232500&amp;w=380&amp;h=190&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="380"/><source height="206" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/108020387-1723649974831-gettyimages-2166761547-wallst469429_txou1tvo.jpeg?v=1724232500&amp;w=412&amp;h=206&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="412"/><source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/108020387-1723649974831-gettyimages-2166761547-wallst469429_txou1tvo.jpeg?v=1724232500&amp;w=206&amp;h=206&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="206"/><img alt="Analyst calls: Texas Instruments upgraded, buy the dip on smartphone glass stock" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/108020387-1723649974831-gettyimages-2166761547-wallst469429_txou1tvo.jpeg?v=1724232500&amp;w=412&amp;h=206&amp;vtcrop=y"/></picture></div></div></a></div><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-pro"><div><a class="ProPill-proPillLink" data-type="pro-button" href="/pro/"><svg alt="CNBC Pro" class="Card-proPill ProPill-proPill" height="16" viewbox="0 0 43 22"><rect fill="#047E2E" height="100%" width="100%"></rect><path d="M9.08 15V6.6H12.392C14.36 6.6 15.584 7.716 15.584 9.408V9.432C15.584 11.316 14.072 12.3 12.224 12.3H10.556V15H9.08ZM10.556 10.968H12.272C13.388 10.968 14.084 10.344 14.084 9.468V9.444C14.084 8.46 13.376 7.944 12.272 7.944H10.556V10.968ZM17.0956 15V6.6H20.8396C21.8956 6.6 22.7236 6.912 23.2636 7.44C23.7076 7.896 23.9596 8.52 23.9596 9.252V9.276C23.9596 10.656 23.1316 11.484 21.9676 11.82L24.2356 15H22.4836L20.4196 12.072H18.5716V15H17.0956ZM18.5716 10.764H20.7316C21.7876 10.764 22.4596 10.212 22.4596 9.36V9.336C22.4596 8.436 21.8116 7.944 20.7196 7.944H18.5716V10.764ZM29.7755 15.144C27.1955 15.144 25.3955 13.188 25.3955 10.824V10.8C25.3955 8.436 27.2195 6.456 29.7995 6.456C32.3795 6.456 34.1795 8.412 34.1795 10.776V10.8C34.1795 13.164 32.3555 15.144 29.7755 15.144ZM29.7995 13.776C31.4675 13.776 32.6315 12.456 32.6315 10.824V10.8C32.6315 9.168 31.4435 7.812 29.7755 7.812C28.1075 7.812 26.9435 9.144 26.9435 10.776V10.8C26.9435 12.432 28.1315 13.776 29.7995 13.776Z" fill="white"></path></svg></a><a class="Card-title" href="https://www.cnbc.com/2024/08/21/analyst-calls-all-the-market-moving-wall-street-chatter-from-wednesday.html" target="">Analyst calls: Texas Instruments upgraded, buy the dip on smartphone glass stock</a></div></div></div><div class="Card-threeUpCardFooterStyle Card-bylinePosition"><span class="Card-threeUpBylineStyle"><a href="https://www.cnbc.com/hakyung-kim/">Hakyung Kim</a></span><span class="Card-time">3 hours ago</span></div></div></div></div></div></div></div></section></div><div class="TwoColumnImageDense-pageRow TwoColumnImageDense-imageDense" data-analytics="HomePageInternational-twoColumnImageDense-19-1" data-test="twoColumnImageDense-1"><section class="SectionWrapper-container" data-test="SectionWrapper" id="HomePageInternational-TwoColumnImageDense-UKVotes-19"><header class="SectionWrapper-header"><span aria-hidden="true" class="SectionWrapper-decoration"></span><h2 class="SectionWrapper-title"><a href="https://www.cnbc.com/uk-votes/">UK Votes</a></h2></header><div class="SectionWrapper-content"><div class="Layout-layout" data-test="Layout"><div class="Column-imageDenseModRight" data-test="Column"><div class="Card-standardBreakerCard Card-featuredRectangleMediaImagedense Card-featuredRectangleMedia Card-card" data-test="Card"><div class="Card-mediaContainer"><a href="https://www.cnbc.com/2024/07/08/uk-election-2024-rachel-reeves-announces-growth-measures.html" tabindex="-1" target=""><div class="Card-imageContainer"><div class="Card-rectangleMediaContainer Card-placeholder"><picture data-test="Picture"><source height="630" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/108002482-1720434673987-gettyimages-2160533321-AFP_363C7JU.jpeg?v=1720434690&amp;w=1260&amp;h=630&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="1260"/><source height="410" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/108002482-1720434673987-gettyimages-2160533321-AFP_363C7JU.jpeg?v=1720434690&amp;w=820&amp;h=410&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="820"/><source height="442" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/108002482-1720434673987-gettyimages-2160533321-AFP_363C7JU.jpeg?v=1720434690&amp;w=884&amp;h=442&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="884"/><source height="360" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/108002482-1720434673987-gettyimages-2160533321-AFP_363C7JU.jpeg?v=1720434690&amp;w=720&amp;h=360&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="720"/><img alt="'Get Britain building again': New UK finance chief restores housing targets" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/108002482-1720434673987-gettyimages-2160533321-AFP_363C7JU.jpeg?v=1720434690&amp;w=884&amp;h=442&amp;vtcrop=y"/></picture></div></div></a></div><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><div><a class="Card-title" href="https://www.cnbc.com/2024/07/08/uk-election-2024-rachel-reeves-announces-growth-measures.html" target="">'Get Britain building again': New UK finance chief restores housing targets</a></div></div></div><div class="Card-cardFooter"><span class="Card-byline"><a href="https://www.cnbc.com/ruxandra-iordache/">Ruxandra Iordache</a></span></div></div></div></div></div><div class="Column-imageDenseModLeft" data-test="Column"><div class="Card-standardBreakerCard Card-squareMediaImageDense Card-squareMedia Card-card" data-test="Card"><div class="Card-mediaContainer"><a href="https://www.cnbc.com/2024/07/05/uk-election-2024-britains-labour-pulled-off-a-thumping-election-victory.html" tabindex="-1" target=""><div class="Card-imageContainer"><div class="Card-squareMediaContainer Card-placeholder"><picture data-test="Picture"><source height="630" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/108002015-17201816812024-07-05t121340z_1952530657_rc20p8aur8xj_rtrmadp_0_britain-election.jpeg?v=1720181710&amp;w=600&amp;h=630&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="600"/><source height="410" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/108002015-17201816812024-07-05t121340z_1952530657_rc20p8aur8xj_rtrmadp_0_britain-election.jpeg?v=1720181710&amp;w=380&amp;h=410&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="380"/><source height="442" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/108002015-17201816812024-07-05t121340z_1952530657_rc20p8aur8xj_rtrmadp_0_britain-election.jpeg?v=1720181710&amp;w=412&amp;h=442&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="412"/><source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/108002015-17201816812024-07-05t121340z_1952530657_rc20p8aur8xj_rtrmadp_0_britain-election.jpeg?v=1720181710&amp;w=206&amp;h=206&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="206"/><img alt="Britain's Labour pulled off a thumping election victory with just 34% of the national vote" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/108002015-17201816812024-07-05t121340z_1952530657_rc20p8aur8xj_rtrmadp_0_britain-election.jpeg?v=1720181710&amp;w=412&amp;h=442&amp;vtcrop=y"/></picture></div></div></a></div><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><div><a class="Card-title" href="https://www.cnbc.com/2024/07/05/uk-election-2024-britains-labour-pulled-off-a-thumping-election-victory.html" target="">Britain's Labour pulled off a thumping election victory with just 34% of the national vote</a></div></div></div><div class="Card-cardFooter"><span class="Card-byline"><a href="https://www.cnbc.com/vicky-mckeever/">Vicky McKeever</a></span></div></div></div></div></div></div><div class="Layout-layout" data-test="Layout"><div class="Column-threeUpUltraDense" data-test="Column"><div class="Card-standardBreakerCard Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card Card-cnbcvideo" data-test="Card"><div class="Card-mediaContainer"><a href="https://www.cnbc.com/video/2024/07/05/uks-labour-party-secures-landslide-victory-in-general-election.html" tabindex="0" target=""><div class="Card-imageContainer"><div class="Card-squareMediaContainer Card-placeholder"><div class="PlayButton-container" data-test="PlayButton"><div class="PlayButton-base" data-type="play"><span class="PlayButton-flyout">watch now</span><span class="icon-play-triangle PlayButton-icon"></span></div></div><picture data-test="Picture"><source height="300" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/108001963-17201777531720177749-35245457556-1080pnbcnews.jpg?v=1720177752&amp;w=600&amp;h=300&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="600"/><source height="190" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/108001963-17201777531720177749-35245457556-1080pnbcnews.jpg?v=1720177752&amp;w=380&amp;h=190&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="380"/><source height="206" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/108001963-17201777531720177749-35245457556-1080pnbcnews.jpg?v=1720177752&amp;w=412&amp;h=206&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="412"/><source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/108001963-17201777531720177749-35245457556-1080pnbcnews.jpg?v=1720177752&amp;w=206&amp;h=206&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="206"/><img alt="UK's Labour Party secures landslide victory in general election" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/108001963-17201777531720177749-35245457556-1080pnbcnews.jpg?v=1720177752&amp;w=412&amp;h=206&amp;vtcrop=y"/></picture></div></div></a></div><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><div><a class="Card-title" href="https://www.cnbc.com/video/2024/07/05/uks-labour-party-secures-landslide-victory-in-general-election.html" target="">UK's Labour Party secures landslide victory in general election</a></div></div></div></div></div></div></div><div class="Column-threeUpUltraDense" data-test="Column"><div class="Card-standardBreakerCard Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card Card-cnbcvideo" data-test="Card"><div class="Card-mediaContainer"><a href="https://www.cnbc.com/video/2024/07/05/labour-does-not-have-much-headroom-in-terms-of-fiscal-changes-economist.html" tabindex="0" target=""><div class="Card-imageContainer"><div class="Card-squareMediaContainer Card-placeholder"><div class="PlayButton-container" data-test="PlayButton"><div class="PlayButton-base" data-type="play"><span class="PlayButton-flyout">watch now</span><span class="icon-play-triangle PlayButton-icon"></span></div></div><picture data-test="Picture"><source height="300" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/108001965-17201778751720177867-35245479726-1080pnbcnews.jpg?v=1720177873&amp;w=600&amp;h=300&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="600"/><source height="190" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/108001965-17201778751720177867-35245479726-1080pnbcnews.jpg?v=1720177873&amp;w=380&amp;h=190&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="380"/><source height="206" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/108001965-17201778751720177867-35245479726-1080pnbcnews.jpg?v=1720177873&amp;w=412&amp;h=206&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="412"/><source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/108001965-17201778751720177867-35245479726-1080pnbcnews.jpg?v=1720177873&amp;w=206&amp;h=206&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="206"/><img alt="Labour does not have much headroom in terms of fiscal changes, economist says" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/108001965-17201778751720177867-35245479726-1080pnbcnews.jpg?v=1720177873&amp;w=412&amp;h=206&amp;vtcrop=y"/></picture></div></div></a></div><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><div><a class="Card-title" href="https://www.cnbc.com/video/2024/07/05/labour-does-not-have-much-headroom-in-terms-of-fiscal-changes-economist.html" target="">Labour does not have much headroom in terms of fiscal changes, economist says</a></div></div></div></div></div></div></div><div class="Column-threeUpUltraDense" data-test="Column"><div class="Card-standardBreakerCard Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card" data-test="Card"><div class="Card-mediaContainer"><a href="https://www.cnbc.com/2024/07/05/uk-election-rishi-sunak-to-step-down-as-conservative-party-leader-.html" tabindex="-1" target=""><div class="Card-imageContainer"><div class="Card-squareMediaContainer Card-placeholder"><picture data-test="Picture"><source height="300" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/108001939-1720173219957-gettyimages-2159986031-ln3_9678.jpeg?v=1720173279&amp;w=600&amp;h=300&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="600"/><source height="190" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/108001939-1720173219957-gettyimages-2159986031-ln3_9678.jpeg?v=1720173279&amp;w=380&amp;h=190&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="380"/><source height="206" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/108001939-1720173219957-gettyimages-2159986031-ln3_9678.jpeg?v=1720173279&amp;w=412&amp;h=206&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="412"/><source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/108001939-1720173219957-gettyimages-2159986031-ln3_9678.jpeg?v=1720173279&amp;w=206&amp;h=206&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="206"/><img alt="Outgoing UK PM Rishi Sunak to step down as Conservative Party leader" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/108001939-1720173219957-gettyimages-2159986031-ln3_9678.jpeg?v=1720173279&amp;w=412&amp;h=206&amp;vtcrop=y"/></picture></div></div></a></div><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><div><a class="Card-title" href="https://www.cnbc.com/2024/07/05/uk-election-rishi-sunak-to-step-down-as-conservative-party-leader-.html" target="">Outgoing UK PM Rishi Sunak to step down as Conservative Party leader</a></div></div></div><div class="Card-threeUpCardFooterStyle"><span class="Card-threeUpBylineStyle"><a href="https://www.cnbc.com/april-roach/">April Roach</a></span></div></div></div></div></div></div></div></section></div><div class="TwoColumnImageDense-pageRow TwoColumnImageDense-imageDense" data-analytics="HomePageInternational-twoColumnImageDense-20-2" data-test="twoColumnImageDense-2"><section class="SectionWrapper-container" data-test="SectionWrapper" id="HomePageInternational-TwoColumnImageDense-SustainableFuture-20"><header class="SectionWrapper-header"><span aria-hidden="true" class="SectionWrapper-decoration"></span><h2 class="SectionWrapper-title"><a href="https://www.cnbc.com/sustainable-future/">Sustainable Future</a></h2></header><div class="SectionWrapper-content"><div class="Layout-layout" data-test="Layout"><div class="Column-imageDenseModRight" data-test="Column"><div class="Card-standardBreakerCard Card-featuredRectangleMediaImagedense Card-featuredRectangleMedia Card-card" data-test="Card"><div class="Card-mediaContainer"><a href="https://www.cnbc.com/2024/08/13/this-startup-will-sell-methane-eating-microbes-to-whole-foods.html" tabindex="-1" target=""><div class="Card-imageContainer"><div class="Card-rectangleMediaContainer Card-placeholder"><picture data-test="Picture"><source height="630" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/108019808-1723561528856-josh_silverman_still.jpg?v=1723561614&amp;w=1260&amp;h=630&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="1260"/><source height="410" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/108019808-1723561528856-josh_silverman_still.jpg?v=1723561614&amp;w=820&amp;h=410&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="820"/><source height="442" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/108019808-1723561528856-josh_silverman_still.jpg?v=1723561614&amp;w=884&amp;h=442&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="884"/><source height="360" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/108019808-1723561528856-josh_silverman_still.jpg?v=1723561614&amp;w=720&amp;h=360&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="720"/><img alt="This startup will sell methane-eating microbes to Whole Foods" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/108019808-1723561528856-josh_silverman_still.jpg?v=1723561614&amp;w=884&amp;h=442&amp;vtcrop=y"/></picture></div></div></a></div><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><div><a class="Card-title" href="https://www.cnbc.com/2024/08/13/this-startup-will-sell-methane-eating-microbes-to-whole-foods.html" target="">This startup will sell methane-eating microbes to Whole Foods</a></div></div></div><div class="Card-cardFooter"><span class="Card-byline"><a href="https://www.cnbc.com/diana-olick/">Diana Olick</a></span></div></div></div></div></div><div class="Column-imageDenseModLeft" data-test="Column"><div class="Card-standardBreakerCard Card-squareMediaImageDense Card-squareMedia Card-card" data-test="Card"><div class="Card-mediaContainer"><a href="https://www.cnbc.com/2024/07/30/air-new-zealand-becomes-first-major-airline-to-drop-2030-climate-goal.html" tabindex="-1" target=""><div class="Card-imageContainer"><div class="Card-squareMediaContainer Card-placeholder"><picture data-test="Picture"><source height="630" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/108013366-1722329883420-gettyimages-1848364916-New_Zealand_v_Pakistan_-_Womens_ODI_Game_2.jpeg?v=1722330013&amp;w=600&amp;h=630&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="600"/><source height="410" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/108013366-1722329883420-gettyimages-1848364916-New_Zealand_v_Pakistan_-_Womens_ODI_Game_2.jpeg?v=1722330013&amp;w=380&amp;h=410&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="380"/><source height="442" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/108013366-1722329883420-gettyimages-1848364916-New_Zealand_v_Pakistan_-_Womens_ODI_Game_2.jpeg?v=1722330013&amp;w=412&amp;h=442&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="412"/><source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/108013366-1722329883420-gettyimages-1848364916-New_Zealand_v_Pakistan_-_Womens_ODI_Game_2.jpeg?v=1722330013&amp;w=206&amp;h=206&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="206"/><img alt="Air New Zealand becomes first major airline to scrap its 2030 climate goal" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/108013366-1722329883420-gettyimages-1848364916-New_Zealand_v_Pakistan_-_Womens_ODI_Game_2.jpeg?v=1722330013&amp;w=412&amp;h=442&amp;vtcrop=y"/></picture></div></div></a></div><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><div><a class="Card-title" href="https://www.cnbc.com/2024/07/30/air-new-zealand-becomes-first-major-airline-to-drop-2030-climate-goal.html" target="">Air New Zealand becomes first major airline to scrap its 2030 climate goal</a></div></div></div><div class="Card-cardFooter"><span class="Card-byline"><a href="https://www.cnbc.com/sam-meredith/">Sam Meredith</a></span></div></div></div></div></div></div><div class="Layout-layout" data-test="Layout"><div class="Column-threeUpUltraDense" data-test="Column"><div class="Card-standardBreakerCard Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card" data-test="Card"><div class="Card-mediaContainer"><a href="https://www.cnbc.com/2024/07/24/climate-crisis-world-shatters-heat-record-for-second-consecutive-day.html" tabindex="-1" target=""><div class="Card-imageContainer"><div class="Card-squareMediaContainer Card-placeholder"><picture data-test="Picture"><source height="300" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/108010915-1721813857760-gettyimages-2162379754-AA_22072024_1783788.jpeg?v=1721814514&amp;w=600&amp;h=300&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="600"/><source height="190" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/108010915-1721813857760-gettyimages-2162379754-AA_22072024_1783788.jpeg?v=1721814514&amp;w=380&amp;h=190&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="380"/><source height="206" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/108010915-1721813857760-gettyimages-2162379754-AA_22072024_1783788.jpeg?v=1721814514&amp;w=412&amp;h=206&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="412"/><source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/108010915-1721813857760-gettyimages-2162379754-AA_22072024_1783788.jpeg?v=1721814514&amp;w=206&amp;h=206&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="206"/><img alt="World shatters heat record for the second time in just two days" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/108010915-1721813857760-gettyimages-2162379754-AA_22072024_1783788.jpeg?v=1721814514&amp;w=412&amp;h=206&amp;vtcrop=y"/></picture></div></div></a></div><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><div><a class="Card-title" href="https://www.cnbc.com/2024/07/24/climate-crisis-world-shatters-heat-record-for-second-consecutive-day.html" target="">World shatters heat record for the second time in just two days</a></div></div></div><div class="Card-threeUpCardFooterStyle"><span class="Card-threeUpBylineStyle"><a href="https://www.cnbc.com/sam-meredith/">Sam Meredith</a></span></div></div></div></div></div><div class="Column-threeUpUltraDense" data-test="Column"><div class="Card-standardBreakerCard Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card" data-test="Card"><div class="Card-mediaContainer"><a href="https://www.cnbc.com/2024/07/23/climate-crisis-world-logs-hottest-day-since-records-began.html" tabindex="-1" target=""><div class="Card-imageContainer"><div class="Card-squareMediaContainer Card-placeholder"><picture data-test="Picture"><source height="300" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/108010470-1721745633920-gettyimages-2162359156-valicchia-notitle240721_npXYf.jpeg?v=1721745865&amp;w=600&amp;h=300&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="600"/><source height="190" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/108010470-1721745633920-gettyimages-2162359156-valicchia-notitle240721_npXYf.jpeg?v=1721745865&amp;w=380&amp;h=190&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="380"/><source height="206" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/108010470-1721745633920-gettyimages-2162359156-valicchia-notitle240721_npXYf.jpeg?v=1721745865&amp;w=412&amp;h=206&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="412"/><source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/108010470-1721745633920-gettyimages-2162359156-valicchia-notitle240721_npXYf.jpeg?v=1721745865&amp;w=206&amp;h=206&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="206"/><img alt="World logs hottest day since records began, researchers say" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/108010470-1721745633920-gettyimages-2162359156-valicchia-notitle240721_npXYf.jpeg?v=1721745865&amp;w=412&amp;h=206&amp;vtcrop=y"/></picture></div></div></a></div><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><div><a class="Card-title" href="https://www.cnbc.com/2024/07/23/climate-crisis-world-logs-hottest-day-since-records-began.html" target="">World logs hottest day since records began, researchers say</a></div></div></div><div class="Card-threeUpCardFooterStyle"><span class="Card-threeUpBylineStyle"><a href="https://www.cnbc.com/sam-meredith/">Sam Meredith</a></span></div></div></div></div></div><div class="Column-threeUpUltraDense" data-test="Column"><div class="Card-standardBreakerCard Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card" data-test="Card"><div class="Card-mediaContainer"><a href="https://www.cnbc.com/2024/07/23/dark-oxygen-discovered-in-the-deep-sea-in-groundbreaking-study.html" tabindex="-1" target=""><div class="Card-imageContainer"><div class="Card-squareMediaContainer Card-placeholder"><picture data-test="Picture"><source height="300" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/108010242-1721728481401-gettyimages-1298585936-9756.jpeg?v=1721732710&amp;w=600&amp;h=300&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="600"/><source height="190" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/108010242-1721728481401-gettyimages-1298585936-9756.jpeg?v=1721732710&amp;w=380&amp;h=190&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="380"/><source height="206" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/108010242-1721728481401-gettyimages-1298585936-9756.jpeg?v=1721732710&amp;w=412&amp;h=206&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="412"/><source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/108010242-1721728481401-gettyimages-1298585936-9756.jpeg?v=1721732710&amp;w=206&amp;h=206&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="206"/><img alt="Scientists discover ‘dark oxygen’ in depths of Pacific Ocean in landmark study" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/108010242-1721728481401-gettyimages-1298585936-9756.jpeg?v=1721732710&amp;w=412&amp;h=206&amp;vtcrop=y"/></picture></div></div></a></div><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><div><a class="Card-title" href="https://www.cnbc.com/2024/07/23/dark-oxygen-discovered-in-the-deep-sea-in-groundbreaking-study.html" target="">Scientists discover ‘dark oxygen’ in depths of Pacific Ocean in landmark study</a></div></div></div><div class="Card-threeUpCardFooterStyle"><span class="Card-threeUpBylineStyle"><a href="https://www.cnbc.com/sam-meredith/">Sam Meredith</a></span></div></div></div></div></div></div></div></section></div><div class="TwoColumnImageDense-pageRow TwoColumnImageDense-imageDense" data-analytics="HomePageInternational-twoColumnImageDense-21-3" data-test="twoColumnImageDense-3"><section class="SectionWrapper-container" data-test="SectionWrapper" id="HomePageInternational-TwoColumnImageDense-CNBCTravel-21"><header class="SectionWrapper-header"><span aria-hidden="true" class="SectionWrapper-decoration"></span><h2 class="SectionWrapper-title"><a href="https://www.cnbc.com/cnbc-travel/">CNBC Travel</a></h2></header><div class="SectionWrapper-content"><div class="Layout-layout" data-test="Layout"><div class="Column-imageDenseModRight" data-test="Column"><div class="Card-standardBreakerCard Card-featuredRectangleMediaImagedense Card-featuredRectangleMedia Card-card" data-test="Card"><div class="Card-mediaContainer"><a href="https://www.cnbc.com/2024/08/21/ship-that-travels-the-world-full-time-heres-how-much-it-costs.html" tabindex="-1" target=""><div class="Card-imageContainer"><div class="Card-rectangleMediaContainer Card-placeholder"><picture data-test="Picture"><source height="630" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/108021324-1723780937913-20160908_Santorini_Greece_Chief_Officer_Drone_1.jpg?v=1724121843&amp;w=1260&amp;h=630&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="1260"/><source height="410" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/108021324-1723780937913-20160908_Santorini_Greece_Chief_Officer_Drone_1.jpg?v=1724121843&amp;w=820&amp;h=410&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="820"/><source height="442" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/108021324-1723780937913-20160908_Santorini_Greece_Chief_Officer_Drone_1.jpg?v=1724121843&amp;w=884&amp;h=442&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="884"/><source height="360" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/108021324-1723780937913-20160908_Santorini_Greece_Chief_Officer_Drone_1.jpg?v=1724121843&amp;w=720&amp;h=360&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="720"/><img alt="'The World' is a luxury ship that travels the world full time — here's how much an apartment on it costs" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/108021324-1723780937913-20160908_Santorini_Greece_Chief_Officer_Drone_1.jpg?v=1724121843&amp;w=884&amp;h=442&amp;vtcrop=y"/></picture></div></div></a></div><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><div><a class="Card-title" href="https://www.cnbc.com/2024/08/21/ship-that-travels-the-world-full-time-heres-how-much-it-costs.html" target="">'The World' is a luxury ship that travels the world full time — here's how much an apartment on it costs</a></div></div></div><div class="Card-cardFooter"><span class="Card-byline"><a href="https://www.cnbc.com/monica-pitrelli/">Monica Pitrelli</a></span></div></div></div></div></div><div class="Column-imageDenseModLeft" data-test="Column"><div class="Card-standardBreakerCard Card-squareMediaImageDense Card-squareMedia Card-card" data-test="Card"><div class="Card-mediaContainer"><a href="https://www.cnbc.com/2024/08/20/travel-is-too-expensive-now-travel-demand-falls-under-cost-concerns-.html" tabindex="-1" target=""><div class="Card-imageContainer"><div class="Card-squareMediaContainer Card-placeholder"><picture data-test="Picture"><source height="630" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/108022147-1724079839333-gettyimages-1459911859-inflation-woman-luggage.jpeg?v=1724079976&amp;w=600&amp;h=630&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="600"/><source height="410" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/108022147-1724079839333-gettyimages-1459911859-inflation-woman-luggage.jpeg?v=1724079976&amp;w=380&amp;h=410&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="380"/><source height="442" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/108022147-1724079839333-gettyimages-1459911859-inflation-woman-luggage.jpeg?v=1724079976&amp;w=412&amp;h=442&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="412"/><source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/108022147-1724079839333-gettyimages-1459911859-inflation-woman-luggage.jpeg?v=1724079976&amp;w=206&amp;h=206&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="206"/><img alt="'Travel is too expensive right now': Americans spend less or skip trips altogether  " class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/108022147-1724079839333-gettyimages-1459911859-inflation-woman-luggage.jpeg?v=1724079976&amp;w=412&amp;h=442&amp;vtcrop=y"/></picture></div></div></a></div><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><div><a class="Card-title" href="https://www.cnbc.com/2024/08/20/travel-is-too-expensive-now-travel-demand-falls-under-cost-concerns-.html" target="">'Travel is too expensive right now': Americans spend less or skip trips altogether  </a></div></div></div><div class="Card-cardFooter"><span class="Card-byline"><a href="https://www.cnbc.com/monica-pitrelli/">Monica Pitrelli</a></span></div></div></div></div></div></div><div class="Layout-layout" data-test="Layout"><div class="Column-threeUpUltraDense" data-test="Column"><div class="Card-standardBreakerCard Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card Card-cnbcvideo" data-test="Card"><div class="Card-mediaContainer"><a href="https://www.cnbc.com/video/2024/08/19/how-the-ultra-wealthy-travel-in-singapore.html" tabindex="0" target=""><div class="Card-imageContainer"><div class="Card-squareMediaContainer Card-placeholder"><div class="PlayButton-container" data-test="PlayButton"><div class="PlayButton-base" data-type="play"><span class="PlayButton-flyout">watch now</span><span class="icon-play-triangle PlayButton-icon"></span></div></div><picture data-test="Picture"><source height="300" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/108021557-GettyImages-170463228.jpg?v=1723821333&amp;w=600&amp;h=300&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="600"/><source height="190" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/108021557-GettyImages-170463228.jpg?v=1723821333&amp;w=380&amp;h=190&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="380"/><source height="206" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/108021557-GettyImages-170463228.jpg?v=1723821333&amp;w=412&amp;h=206&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="412"/><source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/108021557-GettyImages-170463228.jpg?v=1723821333&amp;w=206&amp;h=206&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="206"/><img alt="How the ultra wealthy travel in Singapore" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/108021557-GettyImages-170463228.jpg?v=1723821333&amp;w=412&amp;h=206&amp;vtcrop=y"/></picture></div></div></a></div><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><div><a class="Card-title" href="https://www.cnbc.com/video/2024/08/19/how-the-ultra-wealthy-travel-in-singapore.html" target="">How the ultra wealthy travel in Singapore</a></div></div></div></div></div></div></div><div class="Column-threeUpUltraDense" data-test="Column"><div class="Card-standardBreakerCard Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card" data-test="Card"><div class="Card-mediaContainer"><a href="https://www.cnbc.com/2024/08/19/where-to-stay-and-how-to-spend-your-money-in-singapore-.html" tabindex="-1" target=""><div class="Card-imageContainer"><div class="Card-squareMediaContainer Card-placeholder"><picture data-test="Picture"><source height="300" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/108021366-1723801006288-gettyimages-1525309580-tae01037.jpeg?v=1723801020&amp;w=600&amp;h=300&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="600"/><source height="190" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/108021366-1723801006288-gettyimages-1525309580-tae01037.jpeg?v=1723801020&amp;w=380&amp;h=190&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="380"/><source height="206" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/108021366-1723801006288-gettyimages-1525309580-tae01037.jpeg?v=1723801020&amp;w=412&amp;h=206&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="412"/><source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/108021366-1723801006288-gettyimages-1525309580-tae01037.jpeg?v=1723801020&amp;w=206&amp;h=206&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="206"/><img alt="Planning a luxury trip to Singapore? Here's where to stay, shop and eat" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/108021366-1723801006288-gettyimages-1525309580-tae01037.jpeg?v=1723801020&amp;w=412&amp;h=206&amp;vtcrop=y"/></picture></div></div></a></div><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><div><a class="Card-title" href="https://www.cnbc.com/2024/08/19/where-to-stay-and-how-to-spend-your-money-in-singapore-.html" target="">Planning a luxury trip to Singapore? Here's where to stay, shop and eat</a></div></div></div><div class="Card-threeUpCardFooterStyle"><span class="Card-threeUpBylineStyle"><a href="https://www.cnbc.com/zenith-wong/">Zenith Wong</a></span></div></div></div></div></div><div class="Column-threeUpUltraDense" data-test="Column"><div class="Card-standardBreakerCard Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card" data-test="Card"><div class="Card-mediaContainer"><a href="https://www.cnbc.com/2024/08/15/how-much-does-it-cost-to-rent-a-superyacht-try-1point4-million-per-week.html" tabindex="-1" target=""><div class="Card-imageContainer"><div class="Card-squareMediaContainer Card-placeholder"><picture data-test="Picture"><source height="300" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/108019578-1723537731798-7.jpg?v=1723546390&amp;w=600&amp;h=300&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="600"/><source height="190" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/108019578-1723537731798-7.jpg?v=1723546390&amp;w=380&amp;h=190&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="380"/><source height="206" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/108019578-1723537731798-7.jpg?v=1723546390&amp;w=412&amp;h=206&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="412"/><source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/108019578-1723537731798-7.jpg?v=1723546390&amp;w=206&amp;h=206&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="206"/><img alt="A $1.4 million vacation? Look inside a yacht that costs that much per week" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/108019578-1723537731798-7.jpg?v=1723546390&amp;w=412&amp;h=206&amp;vtcrop=y"/></picture></div></div></a></div><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><div><a class="Card-title" href="https://www.cnbc.com/2024/08/15/how-much-does-it-cost-to-rent-a-superyacht-try-1point4-million-per-week.html" target="">A $1.4 million vacation? Look inside a yacht that costs that much per week</a></div></div></div><div class="Card-threeUpCardFooterStyle"><span class="Card-threeUpBylineStyle">MaryLou Costa, contributor </span></div></div></div></div></div></div></div></section></div><div class="TwoColumnImageDense-pageRow TwoColumnImageDense-imageDense" data-analytics="HomePageInternational-twoColumnImageDense-22-4" data-test="twoColumnImageDense-4"><section class="SectionWrapper-container" data-test="SectionWrapper" id="HomePageInternational-TwoColumnImageDense-MakeIt-22"><header class="SectionWrapper-header"><span aria-hidden="true" class="SectionWrapper-decoration"></span><h2 class="SectionWrapper-title"><a href="https://www.cnbc.com/make-it/">Make It</a></h2></header><div class="SectionWrapper-content"><div class="Layout-layout" data-test="Layout"><div class="Column-imageDenseModRight" data-test="Column"><div class="Card-standardBreakerCard Card-featuredRectangleMediaImagedense Card-featuredRectangleMedia Card-card" data-test="Card"><div class="Card-mediaContainer"><a href="https://www.cnbc.com/2024/08/21/2-in-3-college-seniors-are-stressed-about-the-tight-job-market.html" tabindex="-1" target=""><div class="Card-imageContainer"><div class="Card-rectangleMediaContainer Card-placeholder"><picture data-test="Picture"><source height="630" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/108022982-1724174049290-gettyimages-1564758108-polina-003.jpeg?v=1724174082&amp;w=1260&amp;h=630&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="1260"/><source height="410" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/108022982-1724174049290-gettyimages-1564758108-polina-003.jpeg?v=1724174082&amp;w=820&amp;h=410&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="820"/><source height="442" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/108022982-1724174049290-gettyimages-1564758108-polina-003.jpeg?v=1724174082&amp;w=884&amp;h=442&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="884"/><source height="360" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/108022982-1724174049290-gettyimages-1564758108-polina-003.jpeg?v=1724174082&amp;w=720&amp;h=360&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="720"/><img alt="2 in 3 college seniors are stressed about the tight job market—how to stand out, says career counselor who’s..." class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/108022982-1724174049290-gettyimages-1564758108-polina-003.jpeg?v=1724174082&amp;w=884&amp;h=442&amp;vtcrop=y"/></picture></div></div></a></div><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><div><a class="Card-title" href="https://www.cnbc.com/2024/08/21/2-in-3-college-seniors-are-stressed-about-the-tight-job-market.html" target="">2 in 3 college seniors are stressed about the tight job market—how to stand out, says career counselor who’s...</a></div></div></div><div class="Card-cardFooter"><span class="Card-byline"><a href="https://www.cnbc.com/jennifer-liu/">Jennifer Liu</a></span><span class="Card-time">2 hours ago</span></div></div></div></div></div><div class="Column-imageDenseModLeft" data-test="Column"><div class="Card-standardBreakerCard Card-squareMediaImageDense Card-squareMedia Card-card" data-test="Card"><div class="Card-mediaContainer"><a href="https://www.cnbc.com/2024/08/21/it-analyst-lucrative-side-hustle-selling-houseplants-online-palmstreet.html" tabindex="-1" target=""><div class="Card-imageContainer"><div class="Card-squareMediaContainer Card-placeholder"><picture data-test="Picture"><source height="630" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/108023080-1724184412456-IMG_9144.jpg?v=1724188639&amp;w=600&amp;h=630&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="600"/><source height="410" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/108023080-1724184412456-IMG_9144.jpg?v=1724188639&amp;w=380&amp;h=410&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="380"/><source height="442" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/108023080-1724184412456-IMG_9144.jpg?v=1724188639&amp;w=412&amp;h=442&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="412"/><source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/108023080-1724184412456-IMG_9144.jpg?v=1724188639&amp;w=206&amp;h=206&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="206"/><img alt="44-year-old’s garage side hustle brings in $148K/year: 'Almost anyone can do it'" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/108023080-1724184412456-IMG_9144.jpg?v=1724188639&amp;w=412&amp;h=442&amp;vtcrop=y"/></picture></div></div></a></div><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><div><a class="Card-title" href="https://www.cnbc.com/2024/08/21/it-analyst-lucrative-side-hustle-selling-houseplants-online-palmstreet.html" target="">44-year-old’s garage side hustle brings in $148K/year: 'Almost anyone can do it'</a></div></div></div><div class="Card-cardFooter"><span class="Card-byline"><a href="https://www.cnbc.com/megan-sauer/">Megan Sauer</a></span><span class="Card-time">2 hours ago</span></div></div></div></div></div></div><div class="Layout-layout" data-test="Layout"><div class="Column-threeUpUltraDense" data-test="Column"><div class="Card-standardBreakerCard Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card" data-test="Card"><div class="Card-mediaContainer"><a href="https://www.cnbc.com/2024/08/21/map-how-far-your-money-goes-by-state.html" tabindex="-1" target=""><div class="Card-imageContainer"><div class="Card-squareMediaContainer Card-placeholder"><picture data-test="Picture"><source height="300" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/108022925-1724168979113-gettyimages-187137954-bld115327.jpeg?v=1724170055&amp;w=600&amp;h=300&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="600"/><source height="190" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/108022925-1724168979113-gettyimages-187137954-bld115327.jpeg?v=1724170055&amp;w=380&amp;h=190&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="380"/><source height="206" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/108022925-1724168979113-gettyimages-187137954-bld115327.jpeg?v=1724170055&amp;w=412&amp;h=206&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="412"/><source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/108022925-1724168979113-gettyimages-187137954-bld115327.jpeg?v=1724170055&amp;w=206&amp;h=206&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="206"/><img alt="Map: See how far $1,000 goes in every state" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/108022925-1724168979113-gettyimages-187137954-bld115327.jpeg?v=1724170055&amp;w=412&amp;h=206&amp;vtcrop=y"/></picture></div></div></a></div><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><div><a class="Card-title" href="https://www.cnbc.com/2024/08/21/map-how-far-your-money-goes-by-state.html" target="">Map: See how far $1,000 goes in every state</a></div></div></div><div class="Card-threeUpCardFooterStyle"><span class="Card-threeUpBylineStyle"><a href="https://www.cnbc.com/kamaron-mcnair/">Kamaron McNair</a></span><span class="Card-time">2 hours ago</span></div></div></div></div></div><div class="Column-threeUpUltraDense" data-test="Column"><div class="Card-standardBreakerCard Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card" data-test="Card"><div class="Card-mediaContainer"><a href="https://www.cnbc.com/2024/08/21/net-worth-needed-to-be-considered-wealthy-in-major-us-cities.html" tabindex="-1" target=""><div class="Card-imageContainer"><div class="Card-squareMediaContainer Card-placeholder"><picture data-test="Picture"><source height="300" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107421020-1716935073254-gettyimages-1449092908-hv6b0015.jpeg?v=1724188537&amp;w=600&amp;h=300&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="600"/><source height="190" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107421020-1716935073254-gettyimages-1449092908-hv6b0015.jpeg?v=1724188537&amp;w=380&amp;h=190&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="380"/><source height="206" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107421020-1716935073254-gettyimages-1449092908-hv6b0015.jpeg?v=1724188537&amp;w=412&amp;h=206&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="412"/><source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107421020-1716935073254-gettyimages-1449092908-hv6b0015.jpeg?v=1724188537&amp;w=206&amp;h=206&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="206"/><img alt="How much money it takes to be considered wealthy in 12 major U.S. cities" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107421020-1716935073254-gettyimages-1449092908-hv6b0015.jpeg?v=1724188537&amp;w=412&amp;h=206&amp;vtcrop=y"/></picture></div></div></a></div><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><div><a class="Card-title" href="https://www.cnbc.com/2024/08/21/net-worth-needed-to-be-considered-wealthy-in-major-us-cities.html" target="">How much money it takes to be considered wealthy in 12 major U.S. cities</a></div></div></div><div class="Card-threeUpCardFooterStyle"><span class="Card-threeUpBylineStyle"><a href="https://www.cnbc.com/mike-winters/">Mike Winters</a></span><span class="Card-time">2 hours ago</span></div></div></div></div></div><div class="Column-threeUpUltraDense" data-test="Column"><div class="Card-standardBreakerCard Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card" data-test="Card"><div class="Card-mediaContainer"><a href="https://www.cnbc.com/2024/07/10/achieve-financial-wellness-be-happier-wealthier-and-more-secure.html" tabindex="-1" target=""><div class="Card-imageContainer"><div class="Card-squareMediaContainer Card-placeholder"><picture data-test="Picture"><source height="300" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/108003471-Financial_Wellness_Social_Promo_Horz_Still_01.jpg?v=1720559241&amp;w=600&amp;h=300&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="600"/><source height="190" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/108003471-Financial_Wellness_Social_Promo_Horz_Still_01.jpg?v=1720559241&amp;w=380&amp;h=190&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="380"/><source height="206" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/108003471-Financial_Wellness_Social_Promo_Horz_Still_01.jpg?v=1720559241&amp;w=412&amp;h=206&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="412"/><source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/108003471-Financial_Wellness_Social_Promo_Horz_Still_01.jpg?v=1720559241&amp;w=206&amp;h=206&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="206"/><img alt="How to be happier, wealthier, and more financially secure by achieving financial wellness" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/108003471-Financial_Wellness_Social_Promo_Horz_Still_01.jpg?v=1720559241&amp;w=412&amp;h=206&amp;vtcrop=y"/></picture></div></div></a></div><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><div><a class="Card-title" href="https://www.cnbc.com/2024/07/10/achieve-financial-wellness-be-happier-wealthier-and-more-secure.html" target="">How to be happier, wealthier, and more financially secure by achieving financial wellness</a></div></div></div><div class="Card-threeUpCardFooterStyle"><span class="Card-threeUpBylineStyle"><a href="https://www.cnbc.com/jenna-goudreau/">CNBC Make It staff</a></span></div></div></div></div></div></div></div></section></div><div class="TwoColumnImageDense-pageRow TwoColumnImageDense-imageDense" data-analytics="HomePageInternational-twoColumnImageDense-23-5" data-test="twoColumnImageDense-5"><section class="SectionWrapper-container" data-test="SectionWrapper" id="HomePageInternational-TwoColumnImageDense-CNBCExplains-23"><header class="SectionWrapper-header"><span aria-hidden="true" class="SectionWrapper-decoration"></span><h2 class="SectionWrapper-title"><a href="https://www.cnbc.com/cnbc-explains/">CNBC Explains</a></h2></header><div class="SectionWrapper-content"><div class="Layout-layout" data-test="Layout"><div class="Column-imageDenseModRight" data-test="Column"><div class="Card-standardBreakerCard Card-featuredRectangleMediaImagedense Card-featuredRectangleMedia Card-card Card-cnbcvideo" data-test="Card"><div class="Card-mediaContainer"><a href="https://www.cnbc.com/video/2024/08/07/what-are-the-economics-of-war.html" tabindex="0" target=""><div class="Card-imageContainer"><div class="Card-rectangleMediaContainer Card-placeholder"><div class="PlayButton-container" data-test="PlayButton"><div class="PlayButton-base" data-type="play"><span class="PlayButton-flyout">watch now</span><span class="icon-play-triangle PlayButton-icon"></span></div></div><picture data-test="Picture"><source height="630" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/108016797-Thumbnail_Explains_Economics_of_War_04.jpg?v=1722952613&amp;w=1260&amp;h=630&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="1260"/><source height="410" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/108016797-Thumbnail_Explains_Economics_of_War_04.jpg?v=1722952613&amp;w=820&amp;h=410&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="820"/><source height="442" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/108016797-Thumbnail_Explains_Economics_of_War_04.jpg?v=1722952613&amp;w=884&amp;h=442&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="884"/><source height="360" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/108016797-Thumbnail_Explains_Economics_of_War_04.jpg?v=1722952613&amp;w=720&amp;h=360&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="720"/><img alt="What are the economics of war?" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/108016797-Thumbnail_Explains_Economics_of_War_04.jpg?v=1722952613&amp;w=884&amp;h=442&amp;vtcrop=y"/></picture></div></div></a></div><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><div><a class="Card-title" href="https://www.cnbc.com/video/2024/08/07/what-are-the-economics-of-war.html" target="">What are the economics of war?</a></div></div></div><div class="Card-cardFooter"><span class="Card-byline"><a href="https://www.cnbc.com/gaelle-legrand/">Gaelle Legrand</a></span></div></div></div></div></div><div class="Column-imageDenseModLeft" data-test="Column"><div class="Card-standardBreakerCard Card-squareMediaImageDense Card-squareMedia Card-card Card-cnbcvideo" data-test="Card"><div class="Card-mediaContainer"><a href="https://www.cnbc.com/video/2024/05/31/what-is-the-internet-of-bodies.html" tabindex="0" target=""><div class="Card-imageContainer"><div class="Card-squareMediaContainer Card-placeholder"><div class="PlayButton-container" data-test="PlayButton"><div class="PlayButton-base" data-type="play"><span class="PlayButton-flyout">watch now</span><span class="icon-play-triangle PlayButton-icon"></span></div></div><picture data-test="Picture"><source height="630" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107422026-Thumbnail_Explains_Internet_of_Bodies_V1_Clean.jpg?v=1717084220&amp;w=600&amp;h=630&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="600"/><source height="410" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107422026-Thumbnail_Explains_Internet_of_Bodies_V1_Clean.jpg?v=1717084220&amp;w=380&amp;h=410&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="380"/><source height="442" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107422026-Thumbnail_Explains_Internet_of_Bodies_V1_Clean.jpg?v=1717084220&amp;w=412&amp;h=442&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="412"/><source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107422026-Thumbnail_Explains_Internet_of_Bodies_V1_Clean.jpg?v=1717084220&amp;w=206&amp;h=206&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="206"/><img alt="What is the internet of bodies?" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107422026-Thumbnail_Explains_Internet_of_Bodies_V1_Clean.jpg?v=1717084220&amp;w=412&amp;h=442&amp;vtcrop=y"/></picture></div></div></a></div><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><div><a class="Card-title" href="https://www.cnbc.com/video/2024/05/31/what-is-the-internet-of-bodies.html" target="">What is the internet of bodies?</a></div></div></div><div class="Card-cardFooter"><span class="Card-byline"><a href="https://www.cnbc.com/arjun-kharpal/">Arjun Kharpal</a></span></div></div></div></div></div></div><div class="Layout-layout" data-test="Layout"><div class="Column-threeUpUltraDense" data-test="Column"><div class="Card-standardBreakerCard Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card Card-cnbcvideo" data-test="Card"><div class="Card-mediaContainer"><a href="https://www.cnbc.com/video/2024/05/28/how-the-world-got-into-315-trillion-of-debt.html" tabindex="0" target=""><div class="Card-imageContainer"><div class="Card-squareMediaContainer Card-placeholder"><div class="PlayButton-container" data-test="PlayButton"><div class="PlayButton-base" data-type="play"><span class="PlayButton-flyout">watch now</span><span class="icon-play-triangle PlayButton-icon"></span></div></div><picture data-test="Picture"><source height="300" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107420405-Thumbnail_Explains_Global_Debt_03_Clean.jpg?v=1716866317&amp;w=600&amp;h=300&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="600"/><source height="190" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107420405-Thumbnail_Explains_Global_Debt_03_Clean.jpg?v=1716866317&amp;w=380&amp;h=190&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="380"/><source height="206" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107420405-Thumbnail_Explains_Global_Debt_03_Clean.jpg?v=1716866317&amp;w=412&amp;h=206&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="412"/><source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107420405-Thumbnail_Explains_Global_Debt_03_Clean.jpg?v=1716866317&amp;w=206&amp;h=206&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="206"/><img alt="How the world got into $315 trillion of debt" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107420405-Thumbnail_Explains_Global_Debt_03_Clean.jpg?v=1716866317&amp;w=412&amp;h=206&amp;vtcrop=y"/></picture></div></div></a></div><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><div><a class="Card-title" href="https://www.cnbc.com/video/2024/05/28/how-the-world-got-into-315-trillion-of-debt.html" target="">How the world got into $315 trillion of debt</a></div></div></div><div class="Card-threeUpCardFooterStyle"><span class="Card-threeUpBylineStyle"><a href="https://www.cnbc.com/nessa-anwar-profile---cnbc/">Nessa Anwar</a></span></div></div></div></div></div><div class="Column-threeUpUltraDense" data-test="Column"><div class="Card-standardBreakerCard Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card Card-cnbcvideo" data-test="Card"><div class="Card-mediaContainer"><a href="https://www.cnbc.com/video/2024/03/28/evtols-how-flying-cars-are-becoming-reality.html" tabindex="0" target=""><div class="Card-imageContainer"><div class="Card-squareMediaContainer Card-placeholder"><div class="PlayButton-container" data-test="PlayButton"><div class="PlayButton-base" data-type="play"><span class="PlayButton-flyout">watch now</span><span class="icon-play-triangle PlayButton-icon"></span></div></div><picture data-test="Picture"><source height="300" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107396455-Lilium_FlightTest_Spain_FullTransition.png?v=1712176926&amp;w=600&amp;h=300&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="600"/><source height="190" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107396455-Lilium_FlightTest_Spain_FullTransition.png?v=1712176926&amp;w=380&amp;h=190&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="380"/><source height="206" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107396455-Lilium_FlightTest_Spain_FullTransition.png?v=1712176926&amp;w=412&amp;h=206&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="412"/><source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107396455-Lilium_FlightTest_Spain_FullTransition.png?v=1712176926&amp;w=206&amp;h=206&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="206"/><img alt="eVTOLS: Are flying cars finally becoming reality?" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107396455-Lilium_FlightTest_Spain_FullTransition.png?v=1712176926&amp;w=412&amp;h=206&amp;vtcrop=y"/></picture></div></div></a></div><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><div><a class="Card-title" href="https://www.cnbc.com/video/2024/03/28/evtols-how-flying-cars-are-becoming-reality.html" target="">eVTOLS: Are flying cars finally becoming reality?</a></div></div></div><div class="Card-threeUpCardFooterStyle"><span class="Card-threeUpBylineStyle"><a href="https://www.cnbc.com/arjun-kharpal/">Arjun Kharpal</a></span></div></div></div></div></div><div class="Column-threeUpUltraDense" data-test="Column"><div class="Card-standardBreakerCard Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card Card-cnbcvideo" data-test="Card"><div class="Card-mediaContainer"><a href="https://www.cnbc.com/video/2024/02/29/how-chinas-property-bubble-burst.html" tabindex="0" target=""><div class="Card-imageContainer"><div class="Card-squareMediaContainer Card-placeholder"><div class="PlayButton-container" data-test="PlayButton"><div class="PlayButton-base" data-type="play"><span class="PlayButton-flyout">watch now</span><span class="icon-play-triangle PlayButton-icon"></span></div></div><picture data-test="Picture"><source height="300" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107381660-EXPLAINS_China_Property_Clean_V2.jpg?v=1709555772&amp;w=600&amp;h=300&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="600"/><source height="190" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107381660-EXPLAINS_China_Property_Clean_V2.jpg?v=1709555772&amp;w=380&amp;h=190&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="380"/><source height="206" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107381660-EXPLAINS_China_Property_Clean_V2.jpg?v=1709555772&amp;w=412&amp;h=206&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="412"/><source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107381660-EXPLAINS_China_Property_Clean_V2.jpg?v=1709555772&amp;w=206&amp;h=206&amp;ffmt=webp&amp;vtcrop=y" type="image/webp" width="206"/><img alt="How China's property bubble burst" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107381660-EXPLAINS_China_Property_Clean_V2.jpg?v=1709555772&amp;w=412&amp;h=206&amp;vtcrop=y"/></picture></div></div></a></div><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><div><a class="Card-title" href="https://www.cnbc.com/video/2024/02/29/how-chinas-property-bubble-burst.html" target="">How China's property bubble burst</a></div></div></div><div class="Card-threeUpCardFooterStyle"><span class="Card-threeUpBylineStyle"><a href="https://www.cnbc.com/gaelle-legrand/">Gaelle Legrand</a></span></div></div></div></div></div></div></div></section></div></div><div class="SidebarArticle-sidebar PageBuilder-sidebar" data-test="SidebarArticle"><div class="SidebarArticle-sticky" style="top:70px"><div style="margin-top:0px"></div></div></div></div><div class="PageBuilder-containerFluidWidths PageBuilder-pageRow"><div class="PageBuilder-col-12 PageBuilder-col"><div class="lazyload-placeholder" style="height:100%"></div></div></div></div></div></div></div><div class="MobileAdhesion-container" data-module="mps-slot" id="MobileAdhesion-Homepage"></div><footer class="CNBCFooter-footer" data-analytics="HomePageInternational-GlobalFooter" data-mini-video-player-dont-scroll-beyond-here="true" data-test="GlobalFooter" id="GlobalFooter"><div class="CNBCFooter-wrapper"><div><a class="CNBCFooter-logo" href="//www.cnbc.com"><img alt="CNBC logo" class="CNBCFooter-logoImg" src="https://static-redesign.cnbcfm.com/dist/7821ea3cb72f88388591.svg"/></a></div><ul class="CNBCFooter-social"><li class="CNBCFooter-socialItem"><a aria-label="facebook" class="icon-social_facebook" href="https://www.facebook.com/cnbcinternational/" target="_blank"></a></li><li class="CNBCFooter-socialItem"><a aria-label="twitter" class="icon-social_twitter" href="https://www.twitter.com/cnbci?lang=en/" target="_blank"></a></li><li class="CNBCFooter-socialItem"><a aria-label="linkedin" class="icon-social_linkedin" href="https://www.linkedin.com/showcase/cnbc-international/" target="_blank"></a></li><li class="CNBCFooter-socialItem"><a aria-label="instagram" class="icon-social_instagram" href="https://www.instagram.com/cnbcinternational/?hl=en/" target="_blank"></a></li><li class="CNBCFooter-socialItem"><a aria-label="youtube" class="icon-social_youtube" href="https://www.youtube.com/user/CNBCInternational/" target="_blank"></a></li><li class="CNBCFooter-socialItem"><a aria-label="apple_news" class="icon-social_apple_news" href="https://apple.news/T3OtoXcxtRkuHRkM7SpFP_Q" target="_blank"></a></li><li class="CNBCFooter-socialItem"><a aria-label="rss" class="icon-social_rss" href="/rss-feeds/" target="_blank"></a></li></ul><div class="CNBCFooter-border"></div><ul class="CNBCFooter-list"><li class="CNBCFooter-listItem"><a href="/application/pro/?__source=pro|globalfooter">Subscribe to CNBC PRO</a></li><li class="CNBCFooter-listItem"><a href="/investingclub/subscribe?__source=investingclub|globalfooter">Subscribe to Investing Club</a></li><li class="CNBCFooter-listItem"><a href="/cnbc-reprints/">Licensing &amp; Reprints</a></li><li class="CNBCFooter-listItem"><a href="https://www.cnbccouncils.com/" target="_blank">CNBC Councils</a></li><li class="CNBCFooter-listItem"><a href="https://corporate.comcast.com/values/integrity" target="_blank">Supply Chain Values</a></li><li class="CNBCFooter-listItem"><a href="https://www.peacocktv.com/?cid=20200101evergreensymdisp009&amp;utm_source=cnbc&amp;utm_medium=symphony_editorial_brandawareness_footerlink&amp;utm_campaign=20200101evergreen&amp;utm_term=na&amp;utm_content=na_na/" target="_blank">CNBC on Peacock</a></li><li class="CNBCFooter-listItem"><a href="https://cnbcrsh.qualtrics.com/jfe/form/SV_dgRx5X1nYC0YjNI?Origin=cnbc" target="_blank">Join the CNBC Panel</a></li><li class="CNBCFooter-listItem"><a href="/digital-products/">Digital Products</a></li><li class="CNBCFooter-listItem"><a href="/cnbc-news-releases/">News Releases</a></li><li class="CNBCFooter-listItem"><a href="/closed-captioning/">Closed Captioning</a></li><li class="CNBCFooter-listItem"><a href="/corrections/">Corrections</a></li><li class="CNBCFooter-listItem"><a href="/about-cnbc-international/">About CNBC</a></li><li class="CNBCFooter-listItem"><a href="/cnbc-internship-program/">Internships</a></li><li class="CNBCFooter-listItem"><a href="/site-map/">Site Map</a></li><li class="CNBCFooter-listItem"><a href="https://www.nbcuniversal.com/privacy/cookies#accordionheader2" target="_blank">Ad Choices</a></li><li class="CNBCFooter-listItem"><a href="/cnbc-careers-and-employment/">Careers</a></li><li class="CNBCFooter-listItem"><a href="https://help.cnbc.com/" target="_blank">Help</a></li><li class="CNBCFooter-listItem"><a href="https://help.cnbc.com/contact/" target="_blank">Contact</a></li></ul><ul class="CNBCFooter-section"><li class="CNBCFooter-sectionItem"><h4 class="CNBCFooter-sectionTitle">News Tips</h4><p class="CNBCFooter-sectionText">Got a confidential news tip? We want to hear from you.</p><a class="CNBCFooter-sectionLink" href="/news-tips/">Get In Touch</a></li><li class="CNBCFooter-sectionItem"><h4 class="CNBCFooter-sectionTitle"><span class="icon-newsletter CNBCFooter-sectionIcon"></span>CNBC Newsletters</h4><p class="CNBCFooter-sectionText">Sign up for free newsletters and get more CNBC delivered to your inbox</p><a class="CNBCFooter-sectionLink" href="/sign-up-for-cnbc-newsletters/">Sign Up Now</a><p class="CNBCFooter-sectionSubText">Get this delivered to your inbox, and more info about our products and services.</p></li><li class="CNBCFooter-sectionItem"><h4 class="CNBCFooter-sectionTitle">Advertise With Us</h4><a class="CNBCFooter-sectionLink" href="https://together.nbcuni.com/advertise/?utm_source=cnbc&amp;utm_medium=referral&amp;utm_campaign=property_ad_pages" target="_blank">Please Contact Us</a></li></ul><ul class="CNBCFooter-legal"><li class="CNBCFooter-legalItem"><a href="https://www.nbcuniversal.com/privacy?intake=CNBC" target="_blank">Privacy Policy</a></li><li class="CNBCFooter-legalItem"><img alt="California Consumer Privacy Act (CCPA) Opt-Out Icon" class="CNBCFooter-legalIcon undefined" src="https://static-redesign.cnbcfm.com/dist/17269f1b6083fd5f61be.svg"/><a class="ot-sdk-show-settings undefined" rel="noopener noreferrer" target="_blank"></a></li><li class="CNBCFooter-legalItem"><a href="https://www.nbcuniversal.com/privacy/california-consumer-privacy-act?intake=CNBC" target="_blank">CA Notice</a></li><li class="CNBCFooter-legalItem"><a href="/terms" target="_blank">Terms of Service</a></li></ul><p class="CNBCFooter-info">© <!-- -->2024<!-- --> CNBC LLC. All Rights Reserved. <a href="https://www.nbcuniversal.com" target="_blank">A Division of NBCUniversal</a></p><p class="CNBCFooter-reutersInfo">
      Data is a real-time snapshot *Data is delayed at least 15 minutes.
      Global Business and Financial News, Stock Quotes, and Market Data
      and Analysis.
    </p><a class="CNBCFooter-reutersLink" href="/market-data-terms-of-service/">Market Data Terms of Use and Disclaimers</a><p class="CNBCFooter-reutersInfo">Data also provided by<a href="/market-data-terms-of-service/"><img alt="Reuters logo" class="CNBCFooter-reutersLogo" src="https://static-redesign.cnbcfm.com/dist/09c161b9810767a7849e.svg"/></a></p></div></footer></div><div class="UniversalVideoPlayer-videoContainer paused" style="top:-3000px;bottom:;left:-3000px;transform:;transform-origin:;transition:;position:;transition-property:;opacity:"></div><div class="App-proContentRecommendation"></div></div></div><script charset="UTF-8">window.__s_data={"routing":{"locationBeforeTransitions":null},"navStatus":{"pageType":"page","articleTitle":"","hasNewsAlert":false,"hasLiveAlert":false,"hasFiveThings":false,"hasLivePlayer":false,"hasCountDownClock":false,"hasPartnerExp":false,"articleSettings":{},"megaMenuToggleFlag":false,"isExpanded":false,"isIntraSiteLink":false,"hasLiveAlertAd":true,"HFS":null},"dataByMarketMover":{},"videoDataWithPosition":{"top":"-3000px","left":"-3000px","data":{},"videoAttributes":{}},"videoIsPreloader":{"isPreloader":true,"autoPlay":false,"firstVideoClickedOnPage":true},"videoPlayerInfo":{"position":"0","layout":"HIDDEN","playback":false,"adPlayback":false,"isMuted":true},"videoEventsInfo":{"position":0},"placeholderInfo":{"placeholderState":"INITIAL","replayVideo":false,"trackedIDs":[]},"videoRecommendationInfo":{"videoRecommendation":false},"videoEndCardInfo":{},"continuousPlayInfo":{"continuousToNextVideo":false,"playingIdx":0},"playBackInitiativeInfo":{"playBackInitiative":"Manual","isPlaylist":false},"dataByQuote":{},"metaTags":{"articleData":{},"pageData":{}},"dataByGDSMarketTable":{},"page":{"page":{"layout":[{"editable":false,"columns":[{"span":"full","editable":false,"modules":[{"name":"marketsBanner","source":"100000014","canChangeLayout":false,"canChangeSource":false,"serverRenderPolicy":null,"attributes":{},"options":{"marketCount":10,"securityCount":10,"articleCount":1},"data":{"markets":[{"id":10000528,"tabLabel":"EUR","securities":[{"id":3032894,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F.GDAXI","symbol":".GDAXI","__typename":"security"},{"id":3032893,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F.FTSE","symbol":".FTSE","__typename":"security"},{"id":3032327,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F.FCHI","symbol":".FCHI","__typename":"security"},{"id":100004804,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F.FTMIB","symbol":".FTMIB","__typename":"security"},{"id":100013666,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F.STOXX","symbol":".STOXX","__typename":"security"}],"articles":[{"id":108023333,"headline":"Europe markets tick higher with Fed in focus; UK net borrowing higher than expected","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Feurope-markets-head-for-higher-open-with-fed-in-focus.html","__typename":"article"}],"__typename":"market"},{"id":10000527,"tabLabel":"Asia","securities":[{"id":100483919,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F.AXJO","symbol":".AXJO","__typename":"security"},{"id":3032897,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F.N225","symbol":".N225","__typename":"security"},{"id":100004764,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F.KS11","symbol":".KS11","__typename":"security"},{"id":3032896,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F.HSI","symbol":".HSI","__typename":"security"},{"id":3032899,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F.SSEC","symbol":".SSEC","__typename":"security"}],"articles":[{"id":108023177,"headline":"Asia-Pacific markets mostly lower after Wall Street rally falters; Japan trade swings to deficit","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fasia-markets.html","__typename":"article"}],"__typename":"market"},{"id":100010799,"tabLabel":"Asia FX","securities":[{"id":100275528,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FJPY=","symbol":"JPY=","__typename":"security"},{"id":100286664,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FAUD=","symbol":"AUD=","__typename":"security"},{"id":100323588,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FSGD=","symbol":"SGD=","__typename":"security"},{"id":100347859,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FEURJPY=","symbol":"EURJPY=","__typename":"security"},{"id":100010262,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FNZD=","symbol":"NZD=","__typename":"security"}],"articles":[{"id":108023226,"headline":"Dollar ticks up from year low as traders await data and Powell ","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fdollar-hits-lowest-this-year-vs-euro-ahead-of-jobs-data-jackson-hole.html","__typename":"article"}],"__typename":"market"},{"id":17689937,"tabLabel":"Pre-Mkt","securities":[{"id":100007270,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F@DJ.1","symbol":"@DJ.1","__typename":"security"},{"id":100007266,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F@SP.1","symbol":"@SP.1","__typename":"security"},{"id":100007591,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F@ND.1","symbol":"@ND.1","__typename":"security"},{"id":100007484,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F@CL.1","symbol":"@CL.1","__typename":"security"},{"id":3032077,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FUS10Y","symbol":"US10Y","__typename":"security"}],"articles":[{"id":108023107,"headline":"S&P 500 ticks higher as Wall Street awaits Fed minutes","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F20\u002Fstock-market-today-live-updates.html","__typename":"article"}],"__typename":"market"},{"id":100003242,"tabLabel":"US","securities":[{"id":3031924,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F.DJI","symbol":".DJI","__typename":"security"},{"id":100271106,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F.SPX","symbol":".SPX","__typename":"security"},{"id":3031956,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F.IXIC","symbol":".IXIC","__typename":"security"},{"id":3032906,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F.RUT","symbol":".RUT","__typename":"security"},{"id":3031964,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F.VIX","symbol":".VIX","__typename":"security"}],"articles":[{"id":108023107,"headline":"S&P 500 ticks higher as Wall Street awaits Fed minutes","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F20\u002Fstock-market-today-live-updates.html","__typename":"article"}],"__typename":"market"},{"id":100010802,"tabLabel":"EUR FX","securities":[{"id":3032901,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FEUR=","symbol":"EUR=","__typename":"security"},{"id":3032903,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FGBP=","symbol":"GBP=","__typename":"security"},{"id":100013604,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FEURGBP=","symbol":"EURGBP=","__typename":"security"},{"id":3032904,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FCHF=","symbol":"CHF=","__typename":"security"},{"id":104887499,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FBTC.CB=","symbol":"BTC.CB=","__typename":"security"},{"id":100411752,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FEURAUD=","symbol":"EURAUD=","__typename":"security"}],"articles":[{"id":108023226,"headline":"Dollar ticks up from year low as traders await data and Powell ","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fdollar-hits-lowest-this-year-vs-euro-ahead-of-jobs-data-jackson-hole.html","__typename":"article"}],"__typename":"market"},{"id":15839203,"tabLabel":"Bonds","securities":[{"id":3032077,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FUS10Y","symbol":"US10Y","__typename":"security"},{"id":100013705,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FDE10Y-DE","symbol":"DE10Y-DE","__typename":"security"},{"id":100014122,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FJP10Y-JP","symbol":"JP10Y-JP","__typename":"security"},{"id":100013710,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FUK10Y-GB","symbol":"UK10Y-GB","__typename":"security"},{"id":100014115,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FFR10Y-FR","symbol":"FR10Y-FR","__typename":"security"}],"articles":[{"id":108023369,"headline":"10-year Treasury yield holds steady ahead of Fed meeting minutes release","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fus-treasurys-ahead-of-fed-meeting-minutes-release.html","__typename":"article"}],"__typename":"market"},{"id":10000728,"tabLabel":"Oil","securities":[{"id":100007484,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F@CL.1","symbol":"@CL.1","__typename":"security"},{"id":100007491,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F@LCO.1","symbol":"@LCO.1","__typename":"security"},{"id":100007487,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F@NG.1","symbol":"@NG.1","__typename":"security"},{"id":100007489,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F@RB.1","symbol":"@RB.1","__typename":"security"},{"id":100014681,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F@HO.1","symbol":"@HO.1","__typename":"security"}],"articles":[{"id":108023207,"headline":"Oil prices catch breath after days of losses","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Foil-prices-down-on-swelling-us-crude-stocks-easing-middle-east-tensions.html","__typename":"article"}],"__typename":"market"},{"id":33057388,"tabLabel":"Gold","securities":[{"id":100007526,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F@GC.1","symbol":"@GC.1","__typename":"security"},{"id":100007527,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F@SI.1","symbol":"@SI.1","__typename":"security"},{"id":100007528,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F@HG.1","symbol":"@HG.1","__typename":"security"},{"id":100007529,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F@PL.1","symbol":"@PL.1","__typename":"security"},{"id":100010455,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F@PA.1","symbol":"@PA.1","__typename":"security"}],"articles":[{"id":108023314,"headline":"Gold in consolidation mode in run-up to U.S. Fed minutes ","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fgold-holds-below-record-high-as-investors-await-clarity-on-fed-cuts.html","__typename":"article"}],"__typename":"market"},{"id":106826328,"tabLabel":"Crypto","securities":[{"id":106687112,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FBTC.CM=","symbol":"BTC.CM=","__typename":"security"},{"id":106827114,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FETH.CM=","symbol":"ETH.CM=","__typename":"security"},{"id":101231759,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FXRP.CM=","symbol":"XRP.CM=","__typename":"security"},{"id":106826292,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FLTC.CM=","symbol":"LTC.CM=","__typename":"security"},{"id":106827116,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FBCH.CM=","symbol":"BCH.CM=","__typename":"security"}],"articles":[],"__typename":"market"}],"__typename":"marketsBanner"},"__typename":"module"}],"__typename":"column"}],"__typename":"layout"},{"editable":false,"columns":[{"span":"full","editable":false,"modules":[{"name":"adHomepageTopBanner","source":null,"canChangeLayout":false,"canChangeSource":false,"serverRenderPolicy":null,"attributes":{},"options":null,"data":{"__typename":"asset"},"__typename":"module"}],"__typename":"column"}],"__typename":"layout"},{"editable":false,"columns":[{"span":"full","editable":false,"modules":[{"name":"quickLinks","source":"106278806","canChangeLayout":false,"canChangeSource":false,"serverRenderPolicy":null,"attributes":{"title":"Quick Links"},"options":{},"data":{"name":"quickLinks","quickLinksData":[{"title":"Europe market moves","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Feurope-markets-head-for-higher-open-with-fed-in-focus.html","href":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Feurope-markets-head-for-higher-open-with-fed-in-focus.html","__typename":"webresource"},{"title":"U.S. Treasurys","url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FUS10Y","href":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FUS10Y","__typename":"webresource"},{"title":"Mpox outbreak","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fwhy-the-latest-mpox-outbreak-is-raising-alarm-among-health-experts.html","href":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fwhy-the-latest-mpox-outbreak-is-raising-alarm-among-health-experts.html","__typename":"webresource"},{"title":"Blockchain startup","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fblockchain-startup-story-raises-funds-from-a16z-to-stop-ip-theft-by-ai.html","href":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fblockchain-startup-story-raises-funds-from-a16z-to-stop-ip-theft-by-ai.html","__typename":"webresource"},{"title":"Missing tech entrepreneur","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fmike-lynch-missing-search-for-sicily-yacht-passengers.html","href":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fmike-lynch-missing-search-for-sicily-yacht-passengers.html","__typename":"webresource"},{"title":"Swiftflation","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fswiftflation-taylor-swift-eras-tour-unlikely-to-impact-boe-rate-policy.html","href":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fswiftflation-taylor-swift-eras-tour-unlikely-to-impact-boe-rate-policy.html","__typename":"webresource"}],"__typename":"quickLinks"},"__typename":"module"}],"__typename":"column"}],"__typename":"layout"},{"editable":false,"columns":[{"span":"full","editable":false,"modules":[{"name":"legacyPlayerContainer","source":"106715758","canChangeLayout":false,"canChangeSource":false,"serverRenderPolicy":null,"attributes":{},"options":{"pageSize":5},"data":{"id":106715758,"assets":[{"id":108023504,"linkHeadline":null,"shorterHeadline":"This stock has broken out of a 2-year sideways pattern. Using options to play it","slug":"tony zhang options 21-aug-24","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fthis-payments-stock-has-broken-out-of-a-2-year-sideways-pattern-using-options-to-play-it.html","datePublished":"2024-08-21T14:38:18+0000","type":"cnbcnewsstory","promoImage":{"id":107284067,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107284067-1691604060169-gettyimages-1245948190-porzycki-payments230102_npNKs.jpeg?v=1724249179","__typename":"infographic"},"title":"This payments stock has broken out of a 2-year sideways pattern. Using options to play it","premium":true,"summary":"The stock finally broke out from its two-year consolidation and triggered a new bullish signal.","section":{"id":107299301,"title":"Options Investing Pro","url":"https:\u002F\u002Fwww.cnbc.com\u002Fpro\u002Foptions-investing\u002F","__typename":"franchise"},"__typename":"cnbcnewsstory"},{"id":108023366,"linkHeadline":null,"shorterHeadline":"Wednesday's top analyst calls: Nvidia, Apple, Netflix, Sunrun, Amazon","slug":"analyst calls wrap 21-aug-24","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fwednesdays-top-wall-street-stocks-to-watch.html","datePublished":"2024-08-21T12:10:48+0000","type":"cnbcnewsstory","promoImage":{"id":106858068,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F106858068-1616514233528solar-home4-jpg?v=1695904818","__typename":"infographic"},"title":"Here are Wednesday's biggest analyst calls: Nvidia, Apple, Netflix, Amazon, CrowdStrike & more","premium":true,"summary":"Here are Wednesday's biggest calls on Wall Street.","section":{"id":106605926,"title":"Analyst Calls","url":"https:\u002F\u002Fwww.cnbc.com\u002Fpro\u002Fanalyst-stock-picks\u002F","__typename":"franchise"},"__typename":"cnbcnewsstory"},{"id":108022845,"linkHeadline":null,"shorterHeadline":"Stocks to buy when the Fed starts cutting interest rates, according to Jefferies","slug":"Stocks to buy when the Fed starts cutting interest rates, according to Jefferies","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fstocks-to-buy-when-the-fed-starts-cutting-according-to-jefferies.html","datePublished":"2024-08-21T11:06:47+0000","type":"cnbcnewsstory","promoImage":{"id":108022829,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108022829-1724162967851-gettyimages-2167560453-ms1_0760_91wsinss.jpeg?v=1724163162","__typename":"infographic"},"title":"Stocks to buy when the Fed starts cutting interest rates, according to Jefferies","premium":true,"summary":"In the current market climate, investors should focus on value names backed by strong earnings momentum, the investment bank says. ","section":{"id":107065347,"title":"Stock Screener","url":"https:\u002F\u002Fwww.cnbc.com\u002Fpro\u002Fstock-screener\u002F","__typename":"franchise"},"__typename":"cnbcnewsstory"},{"id":108023380,"linkHeadline":null,"shorterHeadline":"Analyst calls: Texas Instruments upgraded, buy the dip on smartphone glass stock","slug":"calls blog 21-aug-24","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fanalyst-calls-all-the-market-moving-wall-street-chatter-from-wednesday.html","datePublished":"2024-08-21T09:47:06+0000","type":"cnbcnewsstory","promoImage":{"id":108020387,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108020387-1723649974831-gettyimages-2166761547-wallst469429_txou1tvo.jpeg?v=1724232500","__typename":"infographic"},"title":"Wednesday's analyst calls: Texas Instruments upgraded by Citi, buy the dip on smartphone glass stock","premium":true,"summary":"A chipmaker and a smartphone glass maker were among the stocks being talked about by analysts on Wednesday.","section":{"id":106605926,"title":"Analyst Calls","url":"https:\u002F\u002Fwww.cnbc.com\u002Fpro\u002Fanalyst-stock-picks\u002F","__typename":"franchise"},"__typename":"cnbcnewsstory"},{"id":108022026,"linkHeadline":null,"shorterHeadline":"Investors are doubling down on stocks — and there are 3 key reasons why","slug":"Investors are doubling down on stocks — and there are 3 key reasons why","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Finvestors-are-doubling-down-on-stocks-and-there-are-3-key-reasons-why.html","datePublished":"2024-08-20T23:16:16+0000","type":"cnbcnewsstory","promoImage":{"id":107398975,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107398975-1712700131484-gettyimages-1210464713-uspresidenttrumplookingforwardtoopenbusinessduringcovid-19.jpeg?v=1724069793","__typename":"infographic"},"title":"Investors are doubling down on stocks — and there are 3 key reasons why","premium":true,"summary":"One economist sees the S&P 500 at 7,000 by end of next year — up 26% from current levels.","section":{"id":106605962,"title":"Macro Insights for Investing","url":"https:\u002F\u002Fwww.cnbc.com\u002Fpro\u002Fmacro-insights-for-investing\u002F","__typename":"franchise"},"__typename":"cnbcnewsstory"}],"__typename":"legacyPlayerContainer"},"__typename":"module"}],"__typename":"column"}],"__typename":"layout"},{"editable":false,"columns":[{"span":"9","editable":false,"modules":[{"name":"featuredNewsHero","source":"100727362","canChangeLayout":false,"canChangeSource":true,"serverRenderPolicy":null,"attributes":{},"options":{"pageSize":3,"maintainOffset":true,"includePackagedItems":true,"offset":0},"data":{"id":100727362,"assets":[{"id":108023345,"type":"cnbcnewsstory","premium":false,"contentClassification":[],"description":"The ship was violently rocked by a storm around 4 a.m. local time Monday while it was anchored near the Sicilian port of Porticello.","brand":"cnbc","title":"Two bodies found in Sicily yacht wreckage as search for missing passengers continues","headline":"Two bodies found in Sicily yacht wreckage as search for missing passengers continues","shorterDescription":null,"coverageEndDate":null,"dateLastPublished":"2024-08-21T14:56:58+0000","creatorOverwrite":null,"author":[{"name":"Jenni Reid","url":"https:\u002F\u002Fwww.cnbc.com\u002Fjenni-reid\u002F","__typename":"creator"}],"section":{"eyebrow":"Europe News","url":"https:\u002F\u002Fwww.cnbc.com\u002Feurope-news\u002F","__typename":"franchise"},"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fmike-lynch-missing-search-for-sicily-yacht-passengers.html","promoImage":{"id":108023359,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108023359-1724225683417-gettyimages-2166881350-AFP_36EK4TE.jpeg?v=1724251936","__typename":"infographic"},"dateLastPublishedSixHr":"2 min ago","packageItems":[{"id":108023333,"type":"cnbcnewsstory","brand":"cnbc","premium":false,"contentClassification":["isDeveloping"],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Feurope-markets-head-for-higher-open-with-fed-in-focus.html","dateLastPublished":"2024-08-21T14:27:20+0000","dateLastPublishedSixHr":"31 min ago","coverageEndDate":null,"title":"Europe markets tick higher with Fed in focus; UK net borrowing higher than expected","headline":"Europe markets tick higher with Fed in focus; UK net borrowing higher than expected","eyebrow":"Europe stocks tick higher with Fed in focus; UK borrowing above expectations","__typename":"cnbcnewsstory"},{"id":108023107,"type":"live_story","brand":"cnbc","premium":false,"contentClassification":[],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F20\u002Fstock-market-today-live-updates.html","dateLastPublished":"2024-08-21T14:58:29+0000","dateLastPublishedSixHr":"Moments Ago","coverageEndDate":"2024-08-21T20:10:15+0000","title":"S&P 500 ticks higher as Wall Street awaits Fed minutes: Live updates","headline":"S&P 500 ticks higher as Wall Street awaits Fed minutes","eyebrow":"S&P 500 ticks higher as Wall Street awaits Fed minutes","__typename":"live_story"}],"__typename":"cnbcnewsstory"},{"id":108023381,"type":"cnbcnewsstory","premium":false,"contentClassification":[],"description":"The U.S. dollar is likely to continue to drift lower against the Japanese yen over the coming months, according to one market strategist.","brand":"cnbc","title":"'Pick a number': Strategist says the U.S. dollar will drift much lower against the Japanese yen","headline":"'Pick a number': Strategist says the U.S. dollar will drift much lower against the Japanese yen","shorterDescription":null,"coverageEndDate":null,"dateLastPublished":"2024-08-21T12:06:10+0000","creatorOverwrite":null,"author":[{"name":"Sam Meredith","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsam-meredith\u002F","__typename":"creator"}],"section":{"eyebrow":"Markets","url":"https:\u002F\u002Fwww.cnbc.com\u002Fmarkets\u002F","__typename":"franchise"},"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fusdjpy-strategist-expects-dollar-to-drift-much-lower-against-the-yen.html","promoImage":{"id":108016156,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108016156-1722861143183-gettyimages-2164867716-AFP_36A92LR.jpeg?v=1724234051","__typename":"infographic"},"dateLastPublishedSixHr":"3 hours ago","packageItems":[],"__typename":"cnbcnewsstory"},{"id":108021974,"type":"cnbcnewsstory","premium":false,"contentClassification":[],"description":"Technology startup Story has raised $80 million of funding for a blockchain designed to prevent artificial intelligence makers from stealing copyright.","brand":"cnbc","title":"Startup using blockchain to prevent copyright theft by AI is valued over $2 billion after fresh funding","headline":"Startup using blockchain to prevent copyright theft by AI valued over $2 billion after fresh funding","shorterDescription":null,"coverageEndDate":null,"dateLastPublished":"2024-08-21T12:00:07+0000","creatorOverwrite":null,"author":[{"name":"Ryan Browne","url":"https:\u002F\u002Fwww.cnbc.com\u002Fryan-browne\u002F","__typename":"creator"}],"section":{"eyebrow":"Tech","url":"https:\u002F\u002Fwww.cnbc.com\u002Ftechnology\u002F","__typename":"franchise"},"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fblockchain-startup-story-raises-funds-from-a16z-to-stop-ip-theft-by-ai.html","promoImage":{"id":108022033,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108022033-1724069949112-gettyimages-2013766961-Illustration_Sora.jpeg?v=1724070511","__typename":"infographic"},"dateLastPublishedSixHr":"3 hours ago","packageItems":[],"__typename":"cnbcnewsstory"}],"__typename":"featuredNewsHero"},"__typename":"module"}],"__typename":"column"},{"span":"3","editable":false,"modules":[{"name":"latestNews","source":"104524607","canChangeLayout":false,"canChangeSource":false,"serverRenderPolicy":null,"attributes":{"id":104524607,"title":"Latest News","latestNewsClass":true,"isIntlHomepage":true},"options":{"pageSize":30,"include":["cnbcnewsstory","event","partnerstory","sponsored","blogpost","wirestory","pressrelease","slideshow","cnbcvideo","live_story","webresource"]},"data":{"id":104524607,"type":"franchise","brand":"cnbc","url":"https:\u002F\u002Fwww.cnbc.com\u002Flatest\u002F","title":"Latest News","description":"Read the latest business headlines and today's market news coverage from CNBC.","name":"latestNews","assets":[{"id":108023504,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fthis-payments-stock-has-broken-out-of-a-2-year-sideways-pattern-using-options-to-play-it.html","title":"This payments stock has broken out of a 2-year sideways pattern. Using options to play it","headline":"This payments stock has broken out of a 2-year sideways pattern. Using options to play it","shorterHeadline":"This stock has broken out of a 2-year sideways pattern. Using options to play it","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Fpro\u002Foptions-investing\u002F","title":"Options Investing Pro","__typename":"franchise"},"datePublished":"2024-08-21T14:38:18+0000","dateLastPublishedSixHr":"20 min ago","coverageEndDate":null,"liveURL":"\u002F2024\u002F08\u002F21\u002Fthis-payments-stock-has-broken-out-of-a-2-year-sideways-pattern-using-options-to-play-it.html","premium":true,"contentClassification":["premium"],"__typename":"cnbcnewsstory"},{"id":108023492,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fnonfarm-payroll-growth-revised-down-by-818000-labor-department-says.html","title":"Nonfarm payroll growth revised down by 818,000, Labor Department says","headline":"U.S. nonfarm payroll growth revised down by 818,000, Labor Department says","shorterHeadline":"Nonfarm payroll growth revised down by 818,000, Labor Department says","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Feconomy\u002F","title":"Economy","__typename":"franchise"},"datePublished":"2024-08-21T14:37:12+0000","dateLastPublishedSixHr":"6 min ago","coverageEndDate":null,"liveURL":"\u002F2024\u002F08\u002F21\u002Fnonfarm-payroll-growth-revised-down-by-818000-labor-department-says.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":108022907,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Flng-booming-as-asia-seeks-coal-substitutes-these-stocks-could-surge-.html","title":"Liquid natural gas is booming as Asia looks for alternatives to coal — these stocks could surge ","headline":"Liquid natural gas is booming as Asia looks for alternatives to coal — these stocks could surge ","shorterHeadline":"LNG is booming as Asia looks for coal substitutes — these stocks could surge ","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Fpro\u002Fanalyst-stock-picks\u002F","title":"Analyst Calls","__typename":"franchise"},"datePublished":"2024-08-21T14:01:51+0000","dateLastPublishedSixHr":"an hour ago","coverageEndDate":null,"liveURL":"\u002F2024\u002F08\u002F21\u002Flng-booming-as-asia-seeks-coal-substitutes-these-stocks-could-surge-.html","premium":true,"contentClassification":["premium"],"__typename":"cnbcnewsstory"},{"id":108023474,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fthe-explosion-of-online-sports-betting-is-taking-a-toll-on-how-people-invest.html","title":"The explosion of online sports betting is taking a toll on how people invest ","headline":"The explosion of online sports betting is taking a toll on how people invest","shorterHeadline":"The explosion of online sports betting is taking a toll on how people invest","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Ftrader-talk\u002F","title":"Trader Talk with Bob Pisani","__typename":"franchise"},"datePublished":"2024-08-21T13:39:28+0000","dateLastPublishedSixHr":"an hour ago","coverageEndDate":null,"liveURL":"\u002F2024\u002F08\u002F21\u002Fthe-explosion-of-online-sports-betting-is-taking-a-toll-on-how-people-invest.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":108022362,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002F2-in-3-college-seniors-are-stressed-about-the-tight-job-market.html","title":"2 in 3 college seniors are stressed about the tight job market—how to stand out, says career counselor who’s advised thousands","headline":"2 in 3 college seniors are stressed about the tight job market—how to stand out, says career counselor","shorterHeadline":"2 in 3 college seniors are stressed about the tight job market","brand":"makeit","type":"cnbcnewsstory","section":{"liveURL":"\u002Fmake-it\u002Fwork\u002F","title":"Work","__typename":"franchise"},"datePublished":"2024-08-21T13:24:29+0000","dateLastPublishedSixHr":"2 hours ago","coverageEndDate":null,"liveURL":"\u002F2024\u002F08\u002F21\u002F2-in-3-college-seniors-are-stressed-about-the-tight-job-market.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":108021616,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fit-analyst-lucrative-side-hustle-selling-houseplants-online-palmstreet.html","title":"44-year-old’s garage side hustle brings in $148,600 a year: ‘You don’t have to have business experience’","headline":"44-year-old’s garage side hustle brings in $148K\u002Fyear: ‘You don’t have to have business experience’","shorterHeadline":"44-year-old’s garage side hustle brings in $148K\u002Fyear: 'Almost anyone can do it'","brand":"makeit","type":"cnbcnewsstory","section":{"liveURL":"\u002Fmake-it\u002Fsix-figure-side-hustle\u002F","title":"Six-Figure Side Hustle","__typename":"franchise"},"datePublished":"2024-08-21T13:15:02+0000","dateLastPublishedSixHr":"2 hours ago","coverageEndDate":null,"liveURL":"\u002F2024\u002F08\u002F21\u002Fit-analyst-lucrative-side-hustle-selling-houseplants-online-palmstreet.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":108022843,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fmap-how-far-your-money-goes-by-state.html","title":"See how far $1,000 goes in every state—you lose $100 of spending power in 3 places","headline":"See how far $1,000 goes in every state—you lose $100 of spending power in 3 places","shorterHeadline":"Map: See how far $1,000 goes in every state","brand":"makeit","type":"cnbcnewsstory","section":{"liveURL":"\u002Fmake-it\u002Fspend\u002F","title":"Spend","__typename":"franchise"},"datePublished":"2024-08-21T13:15:02+0000","dateLastPublishedSixHr":"2 hours ago","coverageEndDate":null,"liveURL":"\u002F2024\u002F08\u002F21\u002Fmap-how-far-your-money-goes-by-state.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":108023470,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fwall-street-tries-to-keep-momentum-with-fed-minutes-looming.html","title":"Wall Street tries to keep momentum with Fed minutes looming","headline":"Wall Street tries to keep momentum with Fed minutes looming","shorterHeadline":"Wall Street tries to keep momentum with Fed minutes looming","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Fcnbc-pro-playbooks-and-newsletters\u002F","title":"Playbooks","__typename":"franchise"},"datePublished":"2024-08-21T13:12:53+0000","dateLastPublishedSixHr":"2 hours ago","coverageEndDate":null,"liveURL":"\u002F2024\u002F08\u002F21\u002Fwall-street-tries-to-keep-momentum-with-fed-minutes-looming.html","premium":true,"contentClassification":["premium"],"__typename":"cnbcnewsstory"},{"id":108023461,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fjim-cramers-top-10-things-to-watch-in-the-stock-market-wednesday.html","title":"Jim Cramer's top 10 things to watch in the stock market Wednesday","headline":"Jim Cramer's top 10 things to watch in the stock market Wednesday","shorterHeadline":"Jim Cramer's top 10 things to watch in the stock market Wednesday","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Finvestingclub\u002Fcramers-morning-thoughts\u002F","title":"Jim's Top 10","__typename":"franchise"},"datePublished":"2024-08-21T13:09:51+0000","dateLastPublishedSixHr":"2 hours ago","coverageEndDate":null,"liveURL":"\u002F2024\u002F08\u002F21\u002Fjim-cramers-top-10-things-to-watch-in-the-stock-market-wednesday.html","premium":false,"contentClassification":["registeredOnly"],"__typename":"cnbcnewsstory"},{"id":108023009,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fnet-worth-needed-to-be-considered-wealthy-in-major-us-cities.html","title":"How much money it takes to be considered wealthy in 12 major U.S. cities","headline":"How much money it takes to be considered wealthy in 12 major U.S. cities","shorterHeadline":"How much money it takes to be considered wealthy in 12 major U.S. cities","brand":"makeit","type":"cnbcnewsstory","section":{"liveURL":"\u002Fmake-it\u002Fearn\u002F","title":"Earn","__typename":"franchise"},"datePublished":"2024-08-21T13:00:01+0000","dateLastPublishedSixHr":"2 hours ago","coverageEndDate":null,"liveURL":"\u002F2024\u002F08\u002F21\u002Fnet-worth-needed-to-be-considered-wealthy-in-major-us-cities.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":108022206,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fstrength-training-demand-fitness-industry-peloton-planet-fitness-ladder.html","title":"As strength training gets more popular, Peloton and Planet Fitness shift focus ","headline":"As strength training gets more popular, Peloton and Planet Fitness shift focus ","shorterHeadline":"As strength training gets more popular, Peloton and Planet Fitness shift focus ","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Fhealth-and-science\u002F","title":"Health and Science","__typename":"franchise"},"datePublished":"2024-08-21T13:00:01+0000","dateLastPublishedSixHr":"2 hours ago","coverageEndDate":null,"liveURL":"\u002F2024\u002F08\u002F21\u002Fstrength-training-demand-fitness-industry-peloton-planet-fitness-ladder.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":108023337,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fwhy-the-latest-mpox-outbreak-is-raising-alarm-among-health-experts.html","title":"Why the latest mpox outbreak is raising alarm among health experts","headline":"Why the latest mpox outbreak is raising alarm among health experts","shorterHeadline":"Why the latest mpox outbreak is raising alarm among health experts","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Fhealth-and-science\u002F","title":"Health and Science","__typename":"franchise"},"datePublished":"2024-08-21T12:25:14+0000","dateLastPublishedSixHr":"3 hours ago","coverageEndDate":null,"liveURL":"\u002F2024\u002F08\u002F21\u002Fwhy-the-latest-mpox-outbreak-is-raising-alarm-among-health-experts.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":108023418,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Ftarget-ceo-brian-cornell-weighs-in-on-price-gouging.html","title":"Target CEO addresses 'price gouging' accusations in retail","headline":"Target CEO addresses 'price gouging' accusations in retail","shorterHeadline":"Target CEO addresses 'price gouging' accusations in retail","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Fretail\u002F","title":"Retail","__typename":"franchise"},"datePublished":"2024-08-21T12:19:28+0000","dateLastPublishedSixHr":"26 min ago","coverageEndDate":null,"liveURL":"\u002F2024\u002F08\u002F21\u002Ftarget-ceo-brian-cornell-weighs-in-on-price-gouging.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":108023430,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fstocks-making-the-biggest-moves-premarket-tgt-jd-m.html","title":"Stocks making the biggest moves premarket: Target, JD.com, Macy's and more","headline":"Stocks making the biggest moves premarket: Target, JD.com, Macy's and more","shorterHeadline":"Stocks making the biggest moves premarket: Target, JD.com, Macy's and more","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Fmarkets\u002F","title":"Markets","__typename":"franchise"},"datePublished":"2024-08-21T12:13:39+0000","dateLastPublishedSixHr":"2 hours ago","coverageEndDate":null,"liveURL":"\u002F2024\u002F08\u002F21\u002Fstocks-making-the-biggest-moves-premarket-tgt-jd-m.html","premium":false,"contentClassification":["registeredOnly"],"__typename":"cnbcnewsstory"},{"id":108023366,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fwednesdays-top-wall-street-stocks-to-watch.html","title":"Here are Wednesday's biggest analyst calls: Nvidia, Apple, Netflix, Amazon, CrowdStrike & more","headline":"Here are Wednesday's biggest analyst calls: Nvidia, Apple, Netflix, Amazon, CrowdStrike & more","shorterHeadline":"Wednesday's top analyst calls: Nvidia, Apple, Netflix, Sunrun, Amazon","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Fpro\u002Fanalyst-stock-picks\u002F","title":"Analyst Calls","__typename":"franchise"},"datePublished":"2024-08-21T12:10:48+0000","dateLastPublishedSixHr":"3 hours ago","coverageEndDate":null,"liveURL":"\u002F2024\u002F08\u002F21\u002Fwednesdays-top-wall-street-stocks-to-watch.html","premium":true,"contentClassification":["premium"],"__typename":"cnbcnewsstory"},{"id":108023432,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fford-delays-new-ev-plant-cancels-electric-three-row-suv.html","title":"Ford delays new EV plant, cancels electric three-row SUV as it shifts strategy","headline":"Ford delays new EV plant, cancels electric three-row SUV as it shifts strategy","shorterHeadline":"Ford delays new EV plant, cancels electric three-row SUV ","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Fautos\u002F","title":"Autos","__typename":"franchise"},"datePublished":"2024-08-21T12:02:07+0000","dateLastPublishedSixHr":"an hour ago","coverageEndDate":null,"liveURL":"\u002F2024\u002F08\u002F21\u002Fford-delays-new-ev-plant-cancels-electric-three-row-suv.html","premium":false,"contentClassification":["isDeveloping"],"__typename":"cnbcnewsstory"},{"id":108021974,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fblockchain-startup-story-raises-funds-from-a16z-to-stop-ip-theft-by-ai.html","title":"Startup using blockchain to prevent copyright theft by AI is valued over $2 billion after fresh funding","headline":"Startup using blockchain to prevent copyright theft by AI valued over $2 billion after fresh funding","shorterHeadline":"Startup using blockchain to prevent AI copyright theft valued over $2 billion","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Ftechnology\u002F","title":"Tech","__typename":"franchise"},"datePublished":"2024-08-21T12:00:07+0000","dateLastPublishedSixHr":"3 hours ago","coverageEndDate":null,"liveURL":"\u002F2024\u002F08\u002F21\u002Fblockchain-startup-story-raises-funds-from-a16z-to-stop-ip-theft-by-ai.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":108023411,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Ftjx-companies-tjx-earnings-q2-2025.html","title":"TJX Companies raises full-year guidance, posts 5.6% sales gain for the most recent quarter","headline":"TJX Companies raises full-year guidance, posts 5.6% sales gain for the most recent quarter","shorterHeadline":"TJX Companies raises full-year guidance, posts 5.6% sales gain","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Fretail\u002F","title":"Retail","__typename":"franchise"},"datePublished":"2024-08-21T11:59:29+0000","dateLastPublishedSixHr":"23 min ago","coverageEndDate":null,"liveURL":"\u002F2024\u002F08\u002F21\u002Ftjx-companies-tjx-earnings-q2-2025.html","premium":false,"contentClassification":["isDeveloping"],"__typename":"cnbcnewsstory"},{"id":108022906,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002F5-things-to-know-before-the-stock-market-opens-wednesday-august-21.html","title":"5 things to know before the stock market opens Wednesday","headline":"5 things to know before the stock market opens Wednesday","shorterHeadline":"5 things to know before the stock market opens Wednesday","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002F5-things-to-know\u002F","title":"5 Things to Know","__typename":"franchise"},"datePublished":"2024-08-21T11:50:08+0000","dateLastPublishedSixHr":"3 hours ago","coverageEndDate":null,"liveURL":"\u002F2024\u002F08\u002F21\u002F5-things-to-know-before-the-stock-market-opens-wednesday-august-21.html","premium":false,"contentClassification":["isDeveloping"],"__typename":"cnbcnewsstory"},{"id":108023371,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fswiftflation-taylor-swift-eras-tour-unlikely-to-impact-boe-rate-policy.html","title":"Taylor Swift London Eras Tour unlikely to move the needle on the Bank of England's rate policy, analyst says","headline":"Taylor Swift Eras Tour unlikely to move the needle on Bank of England's rate policy, analyst says","shorterHeadline":"Swiftflation unlikely to impact the Bank of England's rate policy, analyst says","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Feurope-economy\u002F","title":"Europe Economy","__typename":"franchise"},"datePublished":"2024-08-21T11:38:40+0000","dateLastPublishedSixHr":"3 hours ago","coverageEndDate":null,"liveURL":"\u002F2024\u002F08\u002F21\u002Fswiftflation-taylor-swift-eras-tour-unlikely-to-impact-boe-rate-policy.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":108022845,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fstocks-to-buy-when-the-fed-starts-cutting-according-to-jefferies.html","title":"Stocks to buy when the Fed starts cutting interest rates, according to Jefferies","headline":"Stocks to buy when the Fed starts cutting interest rates, according to Jefferies","shorterHeadline":"Stocks to buy when the Fed starts cutting interest rates, according to Jefferies","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Fpro\u002Fstock-screener\u002F","title":"Stock Screener","__typename":"franchise"},"datePublished":"2024-08-21T11:06:47+0000","dateLastPublishedSixHr":"4 hours ago","coverageEndDate":null,"liveURL":"\u002F2024\u002F08\u002F21\u002Fstocks-to-buy-when-the-fed-starts-cutting-according-to-jefferies.html","premium":true,"contentClassification":["premium"],"__typename":"cnbcnewsstory"},{"id":108023169,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fmacys-m-q2-2024-earnings.html","title":"Macy’s cuts sales forecast as department stores struggle to draw shoppers","headline":"Macy’s cuts sales forecast as department stores struggle to draw shoppers","shorterHeadline":"Macy’s cuts sales forecast as department stores struggle to draw shoppers","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Fretail\u002F","title":"Retail","__typename":"franchise"},"datePublished":"2024-08-21T11:03:49+0000","dateLastPublishedSixHr":"an hour ago","coverageEndDate":null,"liveURL":"\u002F2024\u002F08\u002F21\u002Fmacys-m-q2-2024-earnings.html","premium":false,"contentClassification":["isDeveloping"],"__typename":"cnbcnewsstory"},{"id":108023180,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fafter-mini-boom-weekly-mortgage-refinance-demand-falls-back-15percent-heres-why.html","title":"After mini-boom, weekly mortgage refinance demand falls back 15%. Here's why.","headline":"After mini-boom, weekly mortgage refinance demand falls back 15%. Here's why.","shorterHeadline":"After mini-boom, weekly mortgage refinance demand falls back 15%. Here's why.","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Freal-estate\u002F","title":"Real Estate","__typename":"franchise"},"datePublished":"2024-08-21T11:00:01+0000","dateLastPublishedSixHr":"3 hours ago","coverageEndDate":null,"liveURL":"\u002F2024\u002F08\u002F21\u002Fafter-mini-boom-weekly-mortgage-refinance-demand-falls-back-15percent-heres-why.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":108023381,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fusdjpy-strategist-expects-dollar-to-drift-much-lower-against-the-yen.html","title":"'Pick a number': Strategist says the U.S. dollar will drift much lower against the Japanese yen","headline":"'Pick a number': Strategist says the U.S. dollar will drift much lower against the Japanese yen","shorterHeadline":"Strategist expects the U.S. dollar to drift much lower against the Japanese yen","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Fmarkets\u002F","title":"Markets","__typename":"franchise"},"datePublished":"2024-08-21T10:52:38+0000","dateLastPublishedSixHr":"3 hours ago","coverageEndDate":null,"liveURL":"\u002F2024\u002F08\u002F21\u002Fusdjpy-strategist-expects-dollar-to-drift-much-lower-against-the-yen.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":108023382,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fchina-calls-eu-tariffs-on-evs-unfair-says-it-will-defend-industry.html","title":"China calls EU tariffs on EVs unfair, says it will take necessary measures to defend industry","headline":"China calls EU tariffs on EVs unfair, says it will take necessary measures to defend industry","shorterHeadline":"China calls EU tariffs on EVs unfair, says it take measures to defend industry","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Ftechnology\u002F","title":"Tech","__typename":"franchise"},"datePublished":"2024-08-21T10:19:23+0000","dateLastPublishedSixHr":"5 hours ago","coverageEndDate":null,"liveURL":"\u002F2024\u002F08\u002F21\u002Fchina-calls-eu-tariffs-on-evs-unfair-says-it-will-defend-industry.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":108018854,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fhow-a-strong-dollar-can-backfire-on-american-consumers-businessess.html","title":"Why a weakening U.S. dollar can help the consumer","headline":"How a weakening dollar impacts American consumers and global trade","shorterHeadline":"How a weaker dollar can help on the U.S. economy","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Ffed-notes\u002F","title":"Fed Notes","__typename":"franchise"},"datePublished":"2024-08-21T10:02:01+0000","dateLastPublishedSixHr":"38 min ago","coverageEndDate":null,"liveURL":"\u002F2024\u002F08\u002F21\u002Fhow-a-strong-dollar-can-backfire-on-american-consumers-businessess.html","premium":false,"contentClassification":["applenewsautoplay"],"__typename":"cnbcnewsstory"},{"id":108023067,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fsesame-to-offer-compounded-wegovy-through-weight-loss-program.html","title":"Health-care system Sesame to offer compounded versions of Wegovy through new $249 weight loss program","headline":"Health-care system Sesame to offer compounded versions of Wegovy through new $249 weight loss program","shorterHeadline":"Sesame to offer compounded versions of Wegovy through $249 weight loss program","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Fhealth-and-science\u002F","title":"Health and Science","__typename":"franchise"},"datePublished":"2024-08-21T10:00:01+0000","dateLastPublishedSixHr":"5 hours ago","coverageEndDate":null,"liveURL":"\u002F2024\u002F08\u002F21\u002Fsesame-to-offer-compounded-wegovy-through-weight-loss-program.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":108023380,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fanalyst-calls-all-the-market-moving-wall-street-chatter-from-wednesday.html","title":"Wednesday's analyst calls: Texas Instruments upgraded by Citi, buy the dip on smartphone glass stock","headline":"Wednesday's analyst calls: Texas Instruments upgraded by Citi, buy the dip on smartphone glass stock","shorterHeadline":"Analyst calls: Texas Instruments upgraded, buy the dip on smartphone glass stock","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Fpro\u002Fanalyst-stock-picks\u002F","title":"Analyst Calls","__typename":"franchise"},"datePublished":"2024-08-21T09:47:06+0000","dateLastPublishedSixHr":"3 hours ago","coverageEndDate":null,"liveURL":"\u002F2024\u002F08\u002F21\u002Fanalyst-calls-all-the-market-moving-wall-street-chatter-from-wednesday.html","premium":true,"contentClassification":["premium"],"__typename":"cnbcnewsstory"},{"id":108023369,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fus-treasurys-ahead-of-fed-meeting-minutes-release.html","title":"10-year Treasury yield holds steady ahead of Fed meeting minutes release","headline":"10-year Treasury yield holds steady ahead of Fed meeting minutes release","shorterHeadline":"10-year Treasury yield holds steady ahead of Fed meeting minutes release","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Fbonds\u002F","title":"Bonds","__typename":"franchise"},"datePublished":"2024-08-21T09:01:58+0000","dateLastPublishedSixHr":"12 min ago","coverageEndDate":null,"liveURL":"\u002F2024\u002F08\u002F21\u002Fus-treasurys-ahead-of-fed-meeting-minutes-release.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":108023345,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fmike-lynch-missing-search-for-sicily-yacht-passengers.html","title":"Two bodies found in Sicily yacht wreckage as search for missing passengers continues","headline":"Two bodies found in Sicily yacht wreckage as search for missing passengers continues","shorterHeadline":"Two bodies found in Sicily yacht wreckage as search for missing passengers continues","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Feurope-news\u002F","title":"Europe News","__typename":"franchise"},"datePublished":"2024-08-21T09:01:16+0000","dateLastPublishedSixHr":"2 min ago","coverageEndDate":null,"liveURL":"\u002F2024\u002F08\u002F21\u002Fmike-lynch-missing-search-for-sicily-yacht-passengers.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"}],"__typename":"latestNews"},"__typename":"module"}],"__typename":"column"}],"__typename":"layout"},{"editable":false,"columns":[{"span":"3","editable":false,"modules":[{"name":"adBoxInline","source":"left","canChangeLayout":false,"canChangeSource":false,"serverRenderPolicy":"client","attributes":{"customStyles":"hpAdContainer"},"options":{},"data":{"__typename":"asset"},"__typename":"module"},{"name":"eventSignUpHP","source":null,"canChangeLayout":null,"canChangeSource":null,"serverRenderPolicy":null,"attributes":{},"options":null,"data":{"__typename":"asset"},"__typename":"module"},{"name":"quoteFinder","source":null,"canChangeLayout":null,"canChangeSource":null,"serverRenderPolicy":null,"attributes":{},"options":null,"data":{"__typename":"asset"},"__typename":"module"},{"name":"marketMoversPlus","source":"left","canChangeLayout":false,"canChangeSource":false,"serverRenderPolicy":null,"attributes":{},"options":{},"data":{"__typename":"asset"},"__typename":"module"}],"__typename":"column"},{"span":"6","editable":false,"modules":[{"name":"riverPlus","source":"100727362","canChangeLayout":false,"canChangeSource":true,"serverRenderPolicy":null,"attributes":{},"options":{"pageSize":20,"maintainOffset":true,"offset":3},"data":{"brand":"cnbc","assets":[{"id":108023347,"brand":"cnbc","type":"cnbcnewsstory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fukraine-carries-out-one-of-largest-ever-drone-attacks-on-moscow.html","native":false,"datePublished":"2024-08-21T08:17:27+0000","coverageEndDate":null,"contentClassification":[],"title":"Ukraine carries out one of the largest ever drone attacks on Moscow as Kursk incursion continues","headline":"Ukraine carries out one of the largest ever drone attacks on Moscow as Kursk incursion continues","premium":false,"section":{"eyebrow":"Politics","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Fpolitics\u002F","subType":"section","__typename":"franchise"},"author":[{"id":107163535,"name":"Ruxandra Iordache","url":"https:\u002F\u002Fwww.cnbc.com\u002Fruxandra-iordache\u002F","__typename":"creator"}],"dateLastPublishedSixHr":"6 hours ago","promoImage":{"id":108023358,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108023358-1724225602688-gettyimages-2166822302-AA_20082024_1827157.jpeg?v=1724225619","__typename":"infographic"},"__typename":"cnbcnewsstory"},{"id":108022684,"brand":"cnbc","type":"cnbcnewsstory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fshares-of-this-insurer-are-set-to-soar-100percent-as-interest-rates-fall-jefferies-says.html","native":false,"datePublished":"2024-08-20T23:15:31+0000","coverageEndDate":null,"contentClassification":["premium"],"title":"Shares of this insurer are set to soar 100% as interest rates fall, Jefferies says","headline":"Shares of this insurer are set to soar 100% as interest rates fall, Jefferies says","premium":true,"section":{"eyebrow":"Analyst Calls","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Fpro\u002Fanalyst-stock-picks\u002F","subType":"section","__typename":"franchise"},"author":[{"id":107295601,"name":"Amala Balakrishner","url":"https:\u002F\u002Fwww.cnbc.com\u002Famala-balakrishner\u002F","__typename":"creator"}],"dateLastPublishedSixHr":"","promoImage":{"id":108021521,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108021521-1723819260619-gettyimages-2166298470-AFP_36EC44K.jpeg?v=1724137742","__typename":"infographic"},"__typename":"cnbcnewsstory"},{"id":108023492,"brand":"cnbc","type":"cnbcnewsstory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fnonfarm-payroll-growth-revised-down-by-818000-labor-department-says.html","native":false,"datePublished":"2024-08-21T14:37:12+0000","coverageEndDate":null,"contentClassification":[],"title":"Nonfarm payroll growth revised down by 818,000, Labor Department says","headline":"U.S. nonfarm payroll growth revised down by 818,000, Labor Department says","premium":false,"section":{"eyebrow":"Economy","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Feconomy\u002F","subType":"section","__typename":"franchise"},"author":[{"id":36003787,"name":"Jeff Cox","url":"https:\u002F\u002Fwww.cnbc.com\u002Fjeff-cox\u002F","__typename":"creator"}],"dateLastPublishedSixHr":"6 min ago","promoImage":{"id":108015721,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108015721-1722615981231-gettyimages-2164978786-ms1_7610_henr27qq.jpeg?v=1722616109","__typename":"infographic"},"__typename":"cnbcnewsstory"},{"type":"InsertNativeUnit"},{"id":108023337,"brand":"cnbc","type":"cnbcnewsstory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fwhy-the-latest-mpox-outbreak-is-raising-alarm-among-health-experts.html","native":false,"datePublished":"2024-08-21T12:25:14+0000","coverageEndDate":null,"contentClassification":[],"title":"Why the latest mpox outbreak is raising alarm among health experts","headline":"Why the latest mpox outbreak is raising alarm among health experts","premium":false,"section":{"eyebrow":"Health and Science","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Fhealth-and-science\u002F","subType":"section","__typename":"franchise"},"author":[{"id":104254066,"name":"Karen Gilchrist","url":"https:\u002F\u002Fwww.cnbc.com\u002Fkaren-gilchrist\u002F","__typename":"creator"}],"dateLastPublishedSixHr":"3 hours ago","promoImage":{"id":108020956,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108020956-1723732033233-gettyimages-2163386402-941_04_bsip_016707_024.jpeg?v=1724236450","__typename":"infographic"},"__typename":"cnbcnewsstory"},{"id":108023371,"brand":"cnbc","type":"cnbcnewsstory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fswiftflation-taylor-swift-eras-tour-unlikely-to-impact-boe-rate-policy.html","native":false,"datePublished":"2024-08-21T11:38:40+0000","coverageEndDate":null,"contentClassification":[],"title":"Taylor Swift London Eras Tour unlikely to move the needle on the Bank of England's rate policy, analyst says","headline":"Taylor Swift Eras Tour unlikely to move the needle on Bank of England's rate policy, analyst says","premium":false,"section":{"eyebrow":"Europe Economy","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Feurope-economy\u002F","subType":"section","__typename":"franchise"},"author":[{"id":107401676,"name":"April Roach","url":"https:\u002F\u002Fwww.cnbc.com\u002Fapril-roach\u002F","__typename":"creator"}],"dateLastPublishedSixHr":"3 hours ago","promoImage":{"id":108023374,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108023374-1724230384289-gettyimages-2166943469-_gc32130_67mgucpp.jpeg?v=1724234738","__typename":"infographic"},"__typename":"cnbcnewsstory"},{"id":108023382,"brand":"cnbc","type":"cnbcnewsstory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fchina-calls-eu-tariffs-on-evs-unfair-says-it-will-defend-industry.html","native":false,"datePublished":"2024-08-21T10:19:23+0000","coverageEndDate":null,"contentClassification":[],"title":"China calls EU tariffs on EVs unfair, says it will take necessary measures to defend industry","headline":"China calls EU tariffs on EVs unfair, says it will take necessary measures to defend industry","premium":false,"section":{"eyebrow":"Tech","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Ftechnology\u002F","subType":"section","__typename":"franchise"},"author":[{"id":104551502,"name":"Ryan Browne","url":"https:\u002F\u002Fwww.cnbc.com\u002Fryan-browne\u002F","__typename":"creator"}],"dateLastPublishedSixHr":"5 hours ago","promoImage":{"id":108015935,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108015935-1722699462528-gettyimages-2147925825-fc_1156909.jpeg?v=1722699832","__typename":"infographic"},"__typename":"cnbcnewsstory"},{"id":108023432,"brand":"cnbc","type":"cnbcnewsstory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fford-delays-new-ev-plant-cancels-electric-three-row-suv.html","native":false,"datePublished":"2024-08-21T12:02:07+0000","coverageEndDate":null,"contentClassification":["isDeveloping"],"title":"Ford delays new EV plant, cancels electric three-row SUV as it shifts strategy","headline":"Ford delays new EV plant, cancels electric three-row SUV as it shifts strategy","premium":false,"section":{"eyebrow":"Autos","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Fautos\u002F","subType":"section","__typename":"franchise"},"author":[{"id":106023852,"name":"Michael Wayland","url":"https:\u002F\u002Fwww.cnbc.com\u002Fmichael-wayland\u002F","__typename":"creator"}],"dateLastPublishedSixHr":"an hour ago","promoImage":{"id":107395234,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107395234-1712009666456-IMG_2811.jpg?v=1717084838","__typename":"infographic"},"__typename":"cnbcnewsstory"},{"id":108021264,"brand":"cnbc","type":"cnbcnewsstory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fship-that-travels-the-world-full-time-heres-how-much-it-costs.html","native":false,"datePublished":"2024-08-21T01:34:13+0000","coverageEndDate":null,"contentClassification":[],"title":"'The World' is a luxury ship that travels the world full time — here's how much an apartment on it costs","headline":"This ship travels the world full time — here's how much an apartment on it costs","premium":false,"section":{"eyebrow":"CNBC Travel","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Fcnbc-travel\u002F","subType":"special_report","__typename":"franchise"},"author":[{"id":106203801,"name":"Monica Pitrelli","url":"https:\u002F\u002Fwww.cnbc.com\u002Fmonica-pitrelli\u002F","__typename":"creator"}],"dateLastPublishedSixHr":"","promoImage":{"id":108021324,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108021324-1723780937913-20160908_Santorini_Greece_Chief_Officer_Drone_1.jpg?v=1724121843","__typename":"infographic"},"__typename":"cnbcnewsstory"},{"id":108023155,"brand":"cnbc","type":"cnbcnewsstory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fmichelle-obama-trump-harris-dnc-election.html","native":false,"datePublished":"2024-08-21T05:07:33+0000","coverageEndDate":null,"contentClassification":["isDeveloping"],"title":"Michelle Obama: Trump used 'misogynistic, racist lies' to 'try to make people fear us'  ","headline":"Michelle Obama: Trump used 'misogynistic, racist lies' to 'try to make people fear us'  ","premium":false,"section":{"eyebrow":"Politics","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Fpolitics\u002F","subType":"section","__typename":"franchise"},"author":[{"id":107160526,"name":"Rebecca Picciotto","url":"https:\u002F\u002Fwww.cnbc.com\u002Frebecca-picciotto\u002F","__typename":"creator"}],"dateLastPublishedSixHr":"4 min ago","promoImage":{"id":108023282,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108023282-1724247982743-108023282-1724208326860-gettyimages-2166935705-AFP_36EL2G6.jpeg?v=1724248049","__typename":"infographic"},"__typename":"cnbcnewsstory"},{"id":108022680,"brand":"cnbc","type":"cnbcnewsstory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fchinas-antimony-export-controls-rattle-the-tungsten-industry.html","native":false,"datePublished":"2024-08-21T04:06:39+0000","coverageEndDate":null,"contentClassification":[],"title":"China’s new rules are worrying insiders about how far Beijing will go on controlling critical metals","headline":"China’s new rules are worrying insiders about how far Beijing will go on controlling critical metals","premium":false,"section":{"eyebrow":"China Economy","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Fchina-economy\u002F","subType":"section","__typename":"franchise"},"author":[{"id":101069441,"name":"Evelyn Cheng","url":"https:\u002F\u002Fwww.cnbc.com\u002Fevelyn-cheng\u002F","__typename":"creator"}],"dateLastPublishedSixHr":"","promoImage":{"id":108022698,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108022698-1724149176201-gettyimages-152203787-917_05_510011729.jpeg?v=1724149204","__typename":"infographic"},"__typename":"cnbcnewsstory"},{"id":108023169,"brand":"cnbc","type":"cnbcnewsstory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fmacys-m-q2-2024-earnings.html","native":false,"datePublished":"2024-08-21T11:03:49+0000","coverageEndDate":null,"contentClassification":["isDeveloping"],"title":"Macy’s cuts sales forecast as department stores struggle to draw shoppers","headline":"Macy’s cuts sales forecast as department stores struggle to draw shoppers","premium":false,"section":{"eyebrow":"Retail","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Fretail\u002F","subType":"section","__typename":"franchise"},"author":[{"id":106376814,"name":"Melissa Repko","url":"https:\u002F\u002Fwww.cnbc.com\u002Fmelissa-repko\u002F","__typename":"creator"}],"dateLastPublishedSixHr":"an hour ago","promoImage":{"id":108006095,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108006095-1721051152651-gettyimages-2160135074-zawrzel-business240705_npLTU.jpeg?v=1721051259","__typename":"infographic"},"__typename":"cnbcnewsstory"},{"id":108022794,"brand":"cnbc","type":"cnbcnewsstory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fvolatility-spike-was-a-huge-overreaction-but-more-could-be-ahead-strategist-says.html","native":false,"datePublished":"2024-08-21T05:09:25+0000","coverageEndDate":null,"contentClassification":[],"title":"Recent volatility spike was a 'huge overreaction,' but expect more ahead, UBS strategist says","headline":"Recent volatility spike was a 'huge overreaction,' but expect more ahead, UBS strategist says","premium":false,"section":{"eyebrow":"Markets","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Fmarkets\u002F","subType":"marketsection","__typename":"franchise"},"author":[{"id":107102341,"name":"Sophie Kiderlin","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsophie-kiderlin\u002F","__typename":"creator"}],"dateLastPublishedSixHr":"","promoImage":{"id":108016235,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108016235-1722868395396-gettyimages-2165384232-markets465335_akaj2bn3.jpeg?v=1724161544","__typename":"infographic"},"__typename":"cnbcnewsstory"},{"id":108023336,"brand":"cnbc","type":"cnbcnewsstory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fharris-record-shows-she-would-prioritize-the-indo-pacific-cfr-expert.html","native":false,"datePublished":"2024-08-21T07:57:11+0000","coverageEndDate":null,"contentClassification":[],"title":"Harris' record suggests she would prioritize the Indo-Pacific, CFR political scientist says","headline":"Harris' record suggests she would prioritize the Indo-Pacific, CFR political scientist says","premium":false,"section":{"eyebrow":"Politics","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Fpolitics\u002F","subType":"section","__typename":"franchise"},"author":[{"id":107370027,"name":"Dylan Butts","url":"https:\u002F\u002Fwww.cnbc.com\u002Fdylan-butts\u002F","__typename":"creator"}],"dateLastPublishedSixHr":"","promoImage":{"id":108023252,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108023252-17242048412024-08-21t014541z_468758164_rc21k9akz0zo_rtrmadp_0_usa-election-harris.jpeg?v=1724204891","__typename":"infographic"},"__typename":"cnbcnewsstory"},{"id":108022631,"brand":"cnbc","type":"cnbcnewsstory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fthe-worlds-largest-steel-industry-is-going-through-a-winter-amid-a-supply-glut-and-weak-demand-.html","native":false,"datePublished":"2024-08-21T04:34:59+0000","coverageEndDate":null,"contentClassification":[],"title":"The world's largest steel industry is going through a 'winter' amid a supply glut and weak demand ","headline":"The world's largest steel industry is going through a 'winter' amid a supply glut and weak demand ","premium":false,"section":{"eyebrow":"China Economy","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Fchina-economy\u002F","subType":"section","__typename":"franchise"},"author":[{"id":107099361,"name":"Lee Ying Shan","url":"https:\u002F\u002Fwww.cnbc.com\u002Flee-ying-shan\u002F","__typename":"creator"}],"dateLastPublishedSixHr":"6 hours ago","promoImage":{"id":107138295,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107138295-1666291563418-gettyimages-1244097601-China_Manufacturing_Industry.jpeg?v=1680244949","__typename":"infographic"},"__typename":"cnbcnewsstory"},{"id":108020760,"brand":"makeit","type":"cnbcnewsstory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fhere-are-the-10-best-workcation-cities-in-the-world-for-hybrid-workers.html","native":false,"datePublished":"2024-08-21T07:47:33+0000","coverageEndDate":null,"contentClassification":[],"title":"These are the 10 best 'workcation' cities in the world for hybrid workers","headline":"These are the 10 best 'workcation' cities in the world for hybrid workers","premium":false,"section":{"eyebrow":"Work","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Fmake-it\u002Fwork\u002F","subType":"section","__typename":"franchise"},"author":[{"id":107018705,"name":"Ernestine Siu","url":"https:\u002F\u002Fwww.cnbc.com\u002Fernestine-siu\u002F","__typename":"creator"}],"dateLastPublishedSixHr":"","promoImage":{"id":108021952,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108021952-1724048058097-gettyimages-1484097204-2019-budapest-sonya7r4-85-bearbeitet.jpeg?v=1724048193","__typename":"infographic"},"__typename":"cnbcnewsstory"},{"id":108023251,"brand":"cnbc","type":"cnbcnewsstory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fjdcom-shares-plunge-after-walmart-confirms-stake-sale.html","native":false,"datePublished":"2024-08-21T03:02:14+0000","coverageEndDate":null,"contentClassification":[],"title":"JD.com leads losses in Hong Kong, falling 10% after Walmart confirms stake sale","headline":"JD.com leads losses in Hong Kong, falling 10% after Walmart confirms stake sale","premium":false,"section":{"eyebrow":"E-Commerce","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Fe-commerce\u002F","subType":"section","__typename":"franchise"},"author":[{"id":107189829,"name":"Lim Hui Jie","url":"https:\u002F\u002Fwww.cnbc.com\u002Flim-hui-jie\u002F","__typename":"creator"}],"dateLastPublishedSixHr":"","promoImage":{"id":107056325,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107056325-1651717968347-gettyimages-1239062801-CHINA_JDCOM.jpeg?v=1683810901","__typename":"infographic"},"__typename":"cnbcnewsstory"},{"id":108023211,"brand":"cnbc","type":"cnbcnewsstory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fev-company-nio-to-build-battery-chargers-swap-stations-across-china.html","native":false,"datePublished":"2024-08-21T04:54:10+0000","coverageEndDate":null,"contentClassification":[],"title":"EV company Nio aims to build battery chargers and swap stations in every Chinese county","headline":"EV company Nio aims to build battery chargers and swap stations in every county","premium":false,"section":{"eyebrow":"China Economy","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Fchina-economy\u002F","subType":"section","__typename":"franchise"},"author":[{"id":101069441,"name":"Evelyn Cheng","url":"https:\u002F\u002Fwww.cnbc.com\u002Fevelyn-cheng\u002F","__typename":"creator"}],"dateLastPublishedSixHr":"","promoImage":{"id":108023254,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108023254-1724204845878-gettyimages-1790864397-vcg111464152137.jpeg?v=1724205269","__typename":"infographic"},"__typename":"cnbcnewsstory"},{"id":108023002,"brand":"cnbc","type":"cnbcnewsstory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F20\u002Fshein-sues-temu-over-copyright-infringement-trade-secret-theft.html","native":false,"datePublished":"2024-08-20T18:25:53+0000","coverageEndDate":null,"contentClassification":[],"title":"Shein sues Temu over copyright infringement, alleges rival loses money on every sale","headline":"Shein sues Temu over copyright infringement, alleges rival loses money on every sale","premium":false,"section":{"eyebrow":"Retail","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Fretail\u002F","subType":"section","__typename":"franchise"},"author":[{"id":107161060,"name":"Gabrielle Fonrouge","url":"https:\u002F\u002Fwww.cnbc.com\u002Fgabrielle-fonrouge\u002F","__typename":"creator"}],"dateLastPublishedSixHr":"3 hours ago","promoImage":{"id":108023023,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108023023-1724177843627-Shein_Temu.jpg?v=1724177981","__typename":"infographic"},"__typename":"cnbcnewsstory"},{"id":108023357,"brand":"cnbc","type":"partnerstory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fjennifer-lopez-files-for-divorce-from-ben-affleck.html","native":false,"datePublished":"2024-08-21T07:42:34+0000","coverageEndDate":null,"contentClassification":[],"title":"Jennifer Lopez files for divorce from Ben Affleck","headline":"Jennifer Lopez files for divorce from Ben Affleck","premium":false,"section":{"eyebrow":"Entertainment","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Fentertainment\u002F","subType":"section","__typename":"franchise"},"author":[],"dateLastPublishedSixHr":"","promoImage":{"id":108023360,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108023360-1724226118483-gettyimages-2001190261-AFP_34JD4VL.jpeg?v=1724226130","__typename":"infographic"},"__typename":"partnerstory"},{"id":108023324,"brand":"cnbc","type":"cnbcnewsstory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fcnbc-daily-open-a-crazy-summer.html","native":false,"datePublished":"2024-08-21T06:17:40+0000","coverageEndDate":null,"contentClassification":[],"title":"CNBC Daily Open: A 'crazy' summer","headline":"CNBC Daily Open: A 'crazy' summer","premium":false,"section":{"eyebrow":"Daily Open","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Fdaily-open\u002F","subType":"special_report","__typename":"franchise"},"author":[{"id":107403987,"name":"Abid Ali","url":"https:\u002F\u002Fwww.cnbc.com\u002Fabid-ali\u002F","__typename":"creator"}],"dateLastPublishedSixHr":"","promoImage":{"id":108022828,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108022828-1724162969343-gettyimages-2167560434-ms2_1196_adcvcrmz.jpeg?v=1724214795","__typename":"infographic"},"__typename":"cnbcnewsstory"}],"__typename":"riverPlus"},"__typename":"module"}],"__typename":"column"},{"span":"3","editable":false,"modules":[{"name":"adBoxRail","source":"right","canChangeLayout":false,"canChangeSource":false,"serverRenderPolicy":"client","attributes":{"placement":"right"},"options":{},"data":{"__typename":"asset"},"__typename":"module"}],"__typename":"column"}],"__typename":"layout"},{"editable":false,"columns":[{"span":"12","editable":false,"modules":[{"name":"marketsModule","source":"102","canChangeLayout":false,"canChangeSource":false,"serverRenderPolicy":null,"attributes":{"sponsorLogoURL":"dist\u002F6666ac3191776af4dd3a97f772e6709a.jpgv","pollRate":10000},"options":{},"data":{"id":102,"relatedContent":[{"widget":{"widgetType":"market_movers_cnbc","widgetParams":{"exchange_name":"S&P,NASDAQ,DOW,EUR,ASIA,COVID19","exchange_symbol":"SP500,NASDAQ100,DOW30,EUR,ASIA,COVID19,KNEX","count":"5","rank_property":"changePct","rank_order":"Both","top_header_label":"TOP","bottom_header_label":"BOTTOM","widgetlabel":"Market MOVERS","widgethref":"\u002Fus-market-movers\u002F"}},"__typename":"webservice"}],"assets":[{"id":108023369,"headline":"10-year Treasury yield holds steady ahead of Fed meeting minutes release","slug":"10-year Treasury yield holds steady ahead of Fed meeting minutes release","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fus-treasurys-ahead-of-fed-meeting-minutes-release.html","datePublished":"2024-08-21T09:01:58+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"12 min ago","type":"cnbcnewsstory","author":[{"id":106557494,"name":"Alex Harring","url":"https:\u002F\u002Fwww.cnbc.com\u002Falex-harring\u002F","__typename":"creator"},{"id":107102341,"name":"Sophie Kiderlin","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsophie-kiderlin\u002F","__typename":"creator"}],"title":"10-year Treasury yield holds steady ahead of Fed meeting minutes release","premium":false,"__typename":"cnbcnewsstory"},{"id":108023107,"headline":"S&P 500 ticks higher as Wall Street awaits Fed minutes","slug":"Subin futures 140820 EC","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F20\u002Fstock-market-today-live-updates.html","datePublished":"2024-08-20T22:01:53+0000","coverageEndDate":"2024-08-21T20:10:15+0000","contentClassification":[],"dateLastPublishedSixHr":"Moments Ago","type":"live_story","author":[{"id":106557494,"name":"Alex Harring","url":"https:\u002F\u002Fwww.cnbc.com\u002Falex-harring\u002F","__typename":"creator"},{"id":106822396,"name":"Samantha Subin","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsamantha-subin\u002F","__typename":"creator"}],"title":"S&P 500 ticks higher as Wall Street awaits Fed minutes: Live updates","premium":false,"__typename":"live_story"},{"id":108023094,"headline":"Stocks making the biggest moves after hours: Toll Brothers, Microchip Technology and more","slug":"Subin AH Movers 242008 EC","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F20\u002Fstocks-making-the-biggest-moves-after-hours-tol-mchp-keys-and-more.html","datePublished":"2024-08-20T21:05:31+0000","coverageEndDate":null,"contentClassification":["registeredOnly"],"dateLastPublishedSixHr":"","type":"cnbcnewsstory","author":[{"id":106822396,"name":"Samantha Subin","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsamantha-subin\u002F","__typename":"creator"}],"title":"Stocks making the biggest moves after hours: Toll Brothers, Microchip Technology and more","premium":false,"__typename":"cnbcnewsstory"},{"id":108022965,"headline":"The hidden force driving the stock market comeback","slug":"The hidden force driving the stock market comeback","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F20\u002Fthe-hidden-force-driving-the-stock-market-comeback.html","datePublished":"2024-08-20T19:55:13+0000","coverageEndDate":null,"contentClassification":["premium"],"dateLastPublishedSixHr":"","type":"cnbcnewsstory","author":[{"id":106557494,"name":"Alex Harring","url":"https:\u002F\u002Fwww.cnbc.com\u002Falex-harring\u002F","__typename":"creator"}],"title":"The hidden force driving the stock market comeback","premium":true,"__typename":"cnbcnewsstory"}],"__typename":"marketsModule"},"__typename":"module"},{"name":"adMidResponsive","source":null,"canChangeLayout":false,"canChangeSource":false,"serverRenderPolicy":"client","attributes":{},"options":null,"data":{"__typename":"asset"},"__typename":"module"}],"__typename":"column"}],"__typename":"layout"},{"editable":false,"columns":[{"span":"full","editable":false,"modules":[{"name":"videoBreakerFeatured","source":"105237801","canChangeLayout":false,"canChangeSource":false,"serverRenderPolicy":null,"attributes":{"mode":"lightMode","headerTitle":"CNBC TV","numberOfPlaylistItems":3,"fwPlayerConfig":{"advertising":{"freewheel":{"sectionid":"cnbc_inline_homepage_vod"}}},"fwPlayerConfigWithXfinity":{"advertising":{"freewheel":{"sectionid":"cnbc_xfinitycobrand_cnbc_homepage_vod"}}}},"options":{"page":1,"pageSize":3,"include":["cnbcvideo"]},"data":{"id":105237801,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20TV%20MODULE","more":[],"assets":[{"id":108021653,"contentClassification":[],"type":"cnbcvideo","title":"Big Tech: too big to split","seoTitle":"Big Tech: too big to split","premium":false,"native":false,"headline":"Big Tech: too big to split","shorterHeadline":"Big Tech: too big to split","tagName":null,"tagNameFormatted":"NA","tagNameFormattedFull":"NA","slug":"Big Tech: too big to split","url":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2024\u002F08\u002F16\u002Fbig-tech-too-big-to-split.html","description":"After losing a landmark antitrust case over its dominance in the search market, Google is now facing the real threat of a court-mandated breakup of the search giant. But on the heels of a flashy 'Made by Google' event showcasing new phones and AI features, Google is now more deeply integrated than ever – an ecosystem within search, cloud, streaming, hardware… and generative artificial intelligence is the thread tying it tightly together. It all means a potential breakup would be nearly impossible technically – and could hold true for other megacaps including Apple, Amazon and Meta, all of which are facing their own antitrust suits. This week on TechCheck, is big tech too big to split?","encodings":[{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002Fa19a6fbfaea44d069344705db0806ec5\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_1_HLSMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM08D16\u002F7000348982\u002F1723829566431-P-TECHCHECKWEEKLY81524_H264_126K.mp4","formatName":"mpeg4_200000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM08D16\u002F7000348982\u002F1723829566431-P-TECHCHECKWEEKLY81524_L.mp4","formatName":"mpeg4_500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM08D16\u002F7000348982\u002F1723829566431-P-TECHCHECKWEEKLY81524_mp3w_048K.mp3","formatName":"mpeg3_48000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM08D16\u002F7000348982\u002F1723829566431-P-TECHCHECKWEEKLY81524_mp3w_128K.mp3","formatName":"mpeg3_128000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM08D16\u002F7000348982\u002F1723829566431-P-TECHCHECKWEEKLY81524_H264_1M_720x405.mp4","formatName":"mpeg4_1100000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM08D16\u002F7000348982\u002F1723829566431-P-TECHCHECKWEEKLY81524.vtt","formatName":"WebVTT_0_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM08D16\u002F7000348982\u002F1723829566431-P-TECHCHECKWEEKLY81524_H264_480x270_25p_500K.mp4","formatName":"mpeg4_600000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM08D16\u002F7000348982\u002F1723829566431-P-TECHCHECKWEEKLY81524_MBR_4500.mp4","formatName":"mpeg4_4500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbc-hls.akamaized.net\u002F7000348982\u002FMBR\u002Fe9c37270-5bf5-11ef-bb56-53da3b31816e\u002F1723829566431-P-TECHCHECKWEEKLY81524.m3u8","formatName":"mpeg4_1_CMAFMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002Fa19a6fbfaea44d069344705db0806ec5\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_500000_HLSSBRStreaming","__typename":"encoding"}],"author":[{"id":105434766,"name":"Jasmine Wu","url":"https:\u002F\u002Fwww.cnbc.com\u002Fjasmine-wu\u002F","tagName":"Jasmine Wu","tagNameFormatted":"jasmine wu","__typename":"creator"},{"id":102671894,"name":"Deirdre Bosa","url":"https:\u002F\u002Fwww.cnbc.com\u002Fdeirdre-bosa\u002F","tagName":"Deirdre Bosa","tagNameFormatted":"deirdre bosa","__typename":"creator"}],"sourceOrganization":[{"id":80000022,"slug":"CNBC US Source","tagName":"CNBC US Source","tagNameFormatted":"cnbc us source","tagNameFormattedFull":"cnbc us source","__typename":"source"}],"projectTeamContent":[],"relatedTags":[{"id":105876724,"headline":null,"tagName":"Satya Nadella","tagNameFormatted":"satya nadella","tagNameFormattedFull":"satya nadella","type":"tag","__typename":"tag"},{"id":105056582,"headline":null,"tagName":"Start-up","tagNameFormatted":"startup","tagNameFormattedFull":"startup","type":"tag","__typename":"tag"},{"id":106487964,"headline":null,"tagName":"iPhone","tagNameFormatted":"iphone","tagNameFormattedFull":"iphone","type":"tag","__typename":"tag"},{"id":107379092,"headline":null,"tagName":"Sam Altman","tagNameFormatted":"sam altman","tagNameFormattedFull":"sam altman","type":"tag","__typename":"tag"},{"id":105877253,"headline":null,"tagName":"Tim Cook","tagNameFormatted":"tim cook","tagNameFormattedFull":"tim cook","type":"tag","__typename":"tag"},{"id":105056583,"headline":null,"tagName":"Computer hardware","tagNameFormatted":"computer hardwa","tagNameFormattedFull":"computer hardware","type":"tag","__typename":"tag"},{"id":107225518,"headline":null,"tagName":"Generative AI","tagNameFormatted":"generative ai","tagNameFormattedFull":"generative ai","type":"tag","__typename":"tag"},{"id":105056673,"headline":null,"tagName":"Media","tagNameFormatted":"media","tagNameFormattedFull":"media","type":"tag","__typename":"tag"},{"id":105056563,"headline":null,"tagName":"Technology","tagNameFormatted":"technology","tagNameFormattedFull":"technology","type":"tag","__typename":"tag"},{"id":105536972,"headline":null,"tagName":"Breaking News: Business","tagNameFormatted":"breaking news b","tagNameFormattedFull":"breaking news business","type":"tag","__typename":"tag"},{"id":1501792,"headline":null,"tagName":"Alphabet Inc","tagNameFormatted":"alphabet inc","tagNameFormattedFull":"alphabet inc","type":"company","__typename":"tag"},{"id":1510251,"headline":null,"tagName":"Microsoft Corp","tagNameFormatted":"microsoft corp","tagNameFormattedFull":"microsoft corp","type":"company","__typename":"tag"},{"id":1500014,"headline":null,"tagName":"Apple Inc","tagNameFormatted":"apple inc","tagNameFormattedFull":"apple inc","type":"company","__typename":"tag"},{"id":1511328,"headline":null,"tagName":"NVIDIA Corp","tagNameFormatted":"nvidia corp","tagNameFormattedFull":"nvidia corp","type":"company","__typename":"tag"},{"id":100005111,"headline":null,"tagName":"Meta Platforms Inc","tagNameFormatted":"meta platforms ","tagNameFormattedFull":"meta platforms inc","type":"company","__typename":"tag"},{"id":1502862,"headline":null,"tagName":"Amazon.com Inc","tagNameFormatted":"amazoncom inc","tagNameFormattedFull":"amazoncom inc","type":"company","__typename":"tag"},{"id":106717985,"headline":null,"tagName":"Sundar Pichai","tagNameFormatted":"sundar pichai","tagNameFormattedFull":"sundar pichai","type":"tag","__typename":"tag"},{"id":105056631,"headline":null,"tagName":"Software","tagNameFormatted":"software","tagNameFormattedFull":"software","type":"tag","__typename":"tag"},{"id":107416916,"headline":null,"tagName":"Jensen Huang","tagNameFormatted":"jensen huang","tagNameFormattedFull":"jensen huang","type":"tag","__typename":"tag"}],"relatedTagsFilteredFormatted":"satya nadella|startup|iphone|sam altman|tim cook|computer hardwa|generative ai|media|technology|breaking news b|alphabet inc|microsoft corp|apple inc|nvidia corp|meta platforms |amazoncom inc|sundar pichai|software|jensen huang","relatedTagsFilteredFormattedFull":"satya nadella|startup|iphone|sam altman|tim cook|computer hardware|generative ai|media|technology|breaking news business|alphabet inc|microsoft corp|apple inc|nvidia corp|meta platforms inc|amazoncom inc|sundar pichai|software|jensen huang","additionalSectionContent":[{"id":107230561,"headline":"AI - Artificial Intelligence","tagName":"AI - Artificial Intelligence","tagNameFormatted":"ai artificial i","tagNameFormattedFull":"ai artificial intelligence","type":"franchise","__typename":"tag"},{"id":107307016,"headline":"TechCheck Weekly","tagName":"TechCheck Weekly ","tagNameFormatted":"techcheck weekl","tagNameFormattedFull":"techcheck weekly","type":"franchise","__typename":"tag"},{"id":19854910,"headline":"Tech","tagName":"Technology","tagNameFormatted":"technology","tagNameFormattedFull":"technology","type":"franchise","__typename":"tag"},{"id":15839069,"headline":"Investing","tagName":"Investing","tagNameFormatted":"investing","tagNameFormattedFull":"investing","type":"franchise","__typename":"tag"},{"id":15839263,"headline":"Top Videos","tagName":"Top Videos","tagNameFormatted":"top videos","tagNameFormattedFull":"top videos","type":"franchise","__typename":"tag"}],"additionalSectionContentFormatted":"ai artificial i|techcheck weekl|technology|investing|top videos","additionalSectionContentFormattedFull":"ai artificial intelligence|techcheck weekly|technology|investing|top videos","relatedVideoContent":[],"datePublished":"2024-08-16T17:50:53+0000","dateLastPublished":"2024-08-16T17:50:53+0000","sectionHierarchy":[{"id":19854910,"tagName":"Technology","tagNameFormatted":"technology","tagNameFormattedFull":"technology","order":2,"__typename":"sectionHierarchy"},{"id":106865631,"tagName":"TechCheck","tagNameFormatted":"techcheck","tagNameFormattedFull":"techcheck","order":1,"__typename":"sectionHierarchy"}],"sectionHierarchyFormatted":"technology|techcheck","sectionHierarchyFormattedFull":"technology|techcheck","creatorOverwrite":null,"projectContent":[{"id":103998641,"headline":"Special Reports Project","tagName":"Special Reports Project","tagNameFormatted":"special reports","tagNameFormattedFull":"special reports project","__typename":"project"}],"promoImage":{"id":108021655,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108021655-22232502_TECH_CHECK_DIGITAL_THUMBNAIL_GOOGLE_2.jpg?v=1723829094","__typename":"infographic"},"image":null,"section":{"headline":"TechCheck","id":106865631,"subType":"special_report","tagName":"TechCheck","tagNameFormatted":"techcheck","tagNameFormattedFull":"techcheck","title":"TechCheck","url":"https:\u002F\u002Fwww.cnbc.com\u002Ftechcheck\u002F","__typename":"franchise"},"projectTeamContentFormatted":"NA","projectTeamContentFormattedFull":"NA","projectContentFormatted":"NA","projectContentFormattedFull":"NA","creatorOverwriteFormatted":"NA","sourceOrganizationFormatted":"cnbc us source","sourceOrganizationFormattedFull":"cnbc us source","authorFormatted":"jasmine wu|deirdre bosa","authorFormattedFull":"jasmine wu|deirdre bosa","dateFirstPublished":"2024-08-16T17:50:53+0000","subDomain":"https:\u002F\u002Fwww.cnbc.com","liveURL":"\u002Fvideo\u002F2024\u002F08\u002F16\u002Fbig-tech-too-big-to-split.html","pageName":"7000348982|video\u002F2024\u002F08\u002F16\u002Fbig-tech-too-big-to-split","shortDatePublished":"08\u002F16\u002F2024","shortDateLastPublished":"08\u002F16\u002F2024","shortDateFirstPublished":"08\u002F16\u002F2024","airDate":"8\u002F16\u002F2024","brand":"cnbc","comScoreC2":"1000004","comScoreC3":"*null","comScoreC4":"CNBC.com VOD","comScoreC6":"*null","dayPart":"Others","duration":437,"network":"CNBC","platform":"web","playbackURL":"\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002Fa19a6fbfaea44d069344705db0806ec5\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","playerConfig":{"autoPlay":false,"workflow":"VOD","sticky":true,"endCard":{"timer":5},"embedURL":"https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid={VID}","hlshtml":true,"primary":"html5","share":true,"parsely":true,"playbackRateControls":false,"fwassetId":"cnbc_7000348982","mediaid":"cnbc_7000348982","key":"+9o3ihbMIU8\u002FixFry35xlHnkQ9tikKg9TU0io1QbWXfpeR0q","playList":false,"sharing":{"sites":["facebook","twitter","linkedin"],"link":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2024\u002F08\u002F16\u002Fbig-tech-too-big-to-split.html","code":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000348982 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"mobileSFID":"7003948","IE11Profile":"169843:nbcu_web_flash_cs_moat_https","advertising":{"client":"freewheel","creativeTimeout":4000,"requestTimeout":4000,"vpaidcontrols":true,"freewheel":{"sectionid":"cnbc_inline_vod","networkid":169843,"profileid":"169843:nbcu_mobileweb_js_cs_moat_https","adManagerURL":"https:\u002F\u002Fmssl.fwmrm.net\u002Flibs\u002Fadm\u002F6.35.0\u002FAdManager.js","serverid":"\u002F\u002F29773.v.fwmrm.net\u002Fad\u002Fp\u002F1","sfid":"7006049","afid":"137705375","custom":{"metr":"1023","sfid":"7006049","afid":"137705375"}},"schedule":{"adbreak":{"offset":"pre","tag":"placeholder_preroll"}}},"analytics":{"onSite":true,"omniture":{"playername":"JW_Player","playerversion":"Universal","daypart":"Others","assetstatus":"Unrestricted","videoprogram":{"live":"iconic"},"videocontent":"Linear","title":"{partnername} Vod","guid":"{partnername} Vod","share":{"linksharepev2":"Video Control Rack","providerepev2":"Share","eVar15":"Video:Vod:","linktrknav":"video:share:Vod:","eVar14":": Share Published"}}},"embed":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000348982 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"playerTech":"JW Player","subType":"clips","thumbnail":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108021655-22232502_TECH_CHECK_DIGITAL_THUMBNAIL_GOOGLE_2.jpg?v=1723829094","usageRule":"NA","vcpsId":7000348982,"videoStatus":"Unrestricted","uploadDate":"2024-08-16T17:24:05+0000","__typename":"cnbcvideo"},{"id":108010575,"contentClassification":[],"type":"cnbcvideo","title":"Putin's Trader — How rich Russian hackers stole millions from U.S. investors","seoTitle":"Putin's Trader: How Russian hackers stole millions from U.S. investors","premium":false,"native":false,"headline":"Watch 'Putin's Trader' — the biggest insider trading ring on Wall Street was in Moscow","shorterHeadline":"Putin's Trader: How Russian hackers stole millions from U.S. investors","tagName":null,"tagNameFormatted":"NA","tagNameFormattedFull":"NA","slug":"Putin's Trader documentary 240801 JAVERS","url":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2024\u002F08\u002F01\u002Fputins-trader-how-russian-hackers-stole-millions-from-us-investors.html","description":"Russian oligarch Vladislav Klyushin was the owner of a cybersecurity company in Moscow called M-13, but the firm was secretly a front for a hacking and insider trading operation that plagued Wall Street for years, generating more than $90 million in illicit profits. With exclusive access to the investigators who chased Klyushin around the globe, and an interview with a former Russian spy, CNBC's Eamon Javers reveals the shocking details of this audacious criminal enterprise.","encodings":[{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F41c8ce034764467089958e2d5cf533b3\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_1_HLSMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM08D01\u002F7000347526\u002F1722529287493-240410-cn-23-tech-fbi-dirty-slate_SRT_SRT_H264_126K.mp4","formatName":"mpeg4_200000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM08D01\u002F7000347526\u002F1722529287493-240410-cn-23-tech-fbi-dirty-slate_SRT_SRT_L.mp4","formatName":"mpeg4_500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM08D01\u002F7000347526\u002F1722529287493-240410-cn-23-tech-fbi-dirty-slate_SRT_SRT_mp3w_048K.mp3","formatName":"mpeg3_48000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM08D01\u002F7000347526\u002F1722529287493-240410-cn-23-tech-fbi-dirty-slate_SRT_SRT_mp3w_128K.mp3","formatName":"mpeg3_128000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM08D01\u002F7000347526\u002F1722529287493-240410-cn-23-tech-fbi-dirty-slate_SRT_SRT_H264_1M_720x405.mp4","formatName":"mpeg4_1100000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM08D01\u002F7000347526\u002F1722529287493-240410-cn-23-tech-fbi-dirty-slate_SRT_SRT.vtt","formatName":"WebVTT_0_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM08D01\u002F7000347526\u002F1722529287493-240410-cn-23-tech-fbi-dirty-slate_SRT_SRT_H264_480x270_25p_500K.mp4","formatName":"mpeg4_600000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM08D01\u002F7000347526\u002F1722529287493-240410-cn-23-tech-fbi-dirty-slate_SRT_SRT_MBR_4500.mp4","formatName":"mpeg4_4500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbc-hls.akamaized.net\u002F7000347526\u002FMBR\u002Fec6ad100-504a-11ef-abaa-7712f570f5d9\u002F1722529287493-240410-cn-23-tech-fbi-dirty-slate_SRT_SRT.m3u8","formatName":"mpeg4_1_CMAFMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F41c8ce034764467089958e2d5cf533b3\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_500000_HLSSBRStreaming","__typename":"encoding"}],"author":[{"id":37691301,"name":"Eamon Javers","url":"https:\u002F\u002Fwww.cnbc.com\u002Feamon-javers\u002F","tagName":"Eamon Javers","tagNameFormatted":"eamon javers","__typename":"creator"},{"id":103125246,"name":"Jeniece Pettitt","url":"https:\u002F\u002Fwww.cnbc.com\u002Fjeniece-pettitt\u002F","tagName":"Jeniece Pettitt","tagNameFormatted":"jeniece pettitt","__typename":"creator"},{"id":104667029,"name":"Erin Black","url":"https:\u002F\u002Fwww.cnbc.com\u002Ferin-black\u002F","tagName":"Erin Black","tagNameFormatted":"erin black","__typename":"creator"},{"id":107041660,"name":"Paige Tortorelli","url":"https:\u002F\u002Fwww.cnbc.com\u002Fpaige-tortorelli\u002F","tagName":"Paige Tortorelli","tagNameFormatted":"paige tortorell","__typename":"creator"},{"id":105830703,"name":"Shawn Baldwin","url":"https:\u002F\u002Fwww.cnbc.com\u002Fshawn-baldwin\u002F","tagName":"Shawn Baldwin","tagNameFormatted":"shawn baldwin","__typename":"creator"},{"id":106873725,"name":"Bria Cousins","url":"https:\u002F\u002Fwww.cnbc.com\u002Fbria-cousins\u002F","tagName":"Bria Cousins","tagNameFormatted":"bria cousins","__typename":"creator"}],"sourceOrganization":[{"id":80000022,"slug":"CNBC US Source","tagName":"CNBC US Source","tagNameFormatted":"cnbc us source","tagNameFormattedFull":"cnbc us source","__typename":"source"}],"projectTeamContent":[{"id":105326775,"headline":null,"tagName":"CNBC Digital Original Video ","tagNameFormatted":"cnbc digital or","tagNameFormattedFull":"cnbc digital original video","__typename":"team"},{"id":105326781,"headline":"Tech Digital Original Video","tagName":"Tech Digital Original Video","tagNameFormatted":"tech digital or","tagNameFormattedFull":"tech digital original video","__typename":"team"}],"relatedTags":[{"id":105056578,"headline":null,"tagName":"Business","tagNameFormatted":"business","tagNameFormattedFull":"business","type":"tag","__typename":"tag"},{"id":105056626,"headline":null,"tagName":"Stock markets","tagNameFormatted":"stock markets","tagNameFormattedFull":"stock markets","type":"tag","__typename":"tag"},{"id":1514889,"headline":null,"tagName":"Tesla Inc","tagNameFormatted":"tesla inc","tagNameFormattedFull":"tesla inc","type":"company","__typename":"tag"},{"id":105062594,"headline":null,"tagName":"Hacking","tagNameFormatted":"hacking","tagNameFormattedFull":"hacking","type":"tag","__typename":"tag"},{"id":10000054,"headline":null,"tagName":"Russia","tagNameFormatted":"russia","tagNameFormattedFull":"russia","type":"place","__typename":"tag"},{"id":105877058,"headline":null,"tagName":"Vladimir Putin","tagNameFormatted":"vladimir putin","tagNameFormattedFull":"vladimir putin","type":"tag","__typename":"tag"},{"id":107317971,"headline":null,"tagName":"Neutral","tagNameFormatted":"neutral","tagNameFormattedFull":"neutral","type":"tag","__typename":"tag"},{"id":105064949,"headline":null,"tagName":"Cybersecurity","tagNameFormatted":"cybersecurity","tagNameFormattedFull":"cybersecurity","type":"tag","__typename":"tag"},{"id":100646105,"headline":null,"tagName":"U.S. Federal Bureau of Investigation","tagNameFormatted":"us federal bure","tagNameFormattedFull":"us federal bureau of investigation","type":"organization","__typename":"tag"}],"relatedTagsFilteredFormatted":"business|stock markets|tesla inc|hacking|russia|vladimir putin|neutral|cybersecurity|us federal bure","relatedTagsFilteredFormattedFull":"business|stock markets|tesla inc|hacking|russia|vladimir putin|neutral|cybersecurity|us federal bureau of investigation","additionalSectionContent":[{"id":100807029,"headline":"Cybersecurity","tagName":"Cybersecurity","tagNameFormatted":"cybersecurity","tagNameFormattedFull":"cybersecurity","type":"franchise","__typename":"tag"},{"id":105368872,"headline":"CNBC Digital Original Video","tagName":"CNBC Digital Original Video","tagNameFormatted":"cnbc digital or","tagNameFormattedFull":"cnbc digital original video","type":"franchise","__typename":"tag"},{"id":105368888,"headline":"Tech Digital Original Video","tagName":"Tech Digital Original Video","tagNameFormatted":"tech digital or","tagNameFormattedFull":"tech digital original video","type":"franchise","__typename":"tag"},{"id":100003242,"headline":"US Markets","tagName":"U.S. Markets","tagNameFormatted":"us markets","tagNameFormattedFull":"us markets","type":"franchise","__typename":"tag"},{"id":100746255,"headline":"CNBC International","tagName":"International Homepage","tagNameFormatted":"international h","tagNameFormattedFull":"international homepage","type":"franchise","__typename":"tag"},{"id":15837362,"headline":"U.S. News","tagName":"US: News","tagNameFormatted":"us news","tagNameFormattedFull":"us news","type":"franchise","__typename":"tag"},{"id":10001147,"headline":"Business News","tagName":"Business News","tagNameFormatted":"business news","tagNameFormattedFull":"business news","type":"franchise","__typename":"tag"}],"additionalSectionContentFormatted":"cybersecurity|cnbc digital or|tech digital or|us markets|international h|us news|business news","additionalSectionContentFormattedFull":"cybersecurity|cnbc digital original video|tech digital original video|us markets|international homepage|us news|business news","relatedVideoContent":[],"datePublished":"2024-08-01T16:49:59+0000","dateLastPublished":"2024-08-01T21:36:01+0000","sectionHierarchy":[{"id":10001147,"tagName":"Business News","tagNameFormatted":"business news","tagNameFormattedFull":"business news","order":2,"__typename":"sectionHierarchy"},{"id":105398946,"tagName":"CNBC Investigations","tagNameFormatted":"cnbc investigat","tagNameFormattedFull":"cnbc investigations","order":1,"__typename":"sectionHierarchy"}],"sectionHierarchyFormatted":"business news|cnbc investigat","sectionHierarchyFormattedFull":"business news|cnbc investigations","creatorOverwrite":null,"projectContent":[],"promoImage":{"id":108010628,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108010628-1721758387847-240722-cg-31-putins-trader-thumbnail-NOTEXT.png?v=1721758483","__typename":"infographic"},"image":null,"section":{"headline":"CNBC Investigations","id":105398946,"subType":"section","tagName":"CNBC Investigations","tagNameFormatted":"cnbc investigat","tagNameFormattedFull":"cnbc investigations","title":"CNBC Investigations","url":"https:\u002F\u002Fwww.cnbc.com\u002Fcnbc-investigations\u002F","__typename":"franchise"},"projectTeamContentFormatted":"cnbc digital or|tech digital or","projectTeamContentFormattedFull":"cnbc digital original video|tech digital original video","projectContentFormatted":"NA","projectContentFormattedFull":"NA","creatorOverwriteFormatted":"NA","sourceOrganizationFormatted":"cnbc us source","sourceOrganizationFormattedFull":"cnbc us source","authorFormatted":"eamon javers|jeniece pettitt|erin black|paige tortorell|shawn baldwin|bria cousins","authorFormattedFull":"eamon javers|jeniece pettitt|erin black|paige tortorelli|shawn baldwin|bria cousins","dateFirstPublished":"2024-08-01T16:49:59+0000","subDomain":"https:\u002F\u002Fwww.cnbc.com","liveURL":"\u002Fvideo\u002F2024\u002F08\u002F01\u002Fputins-trader-how-russian-hackers-stole-millions-from-us-investors.html","pageName":"7000347476|video\u002F2024\u002F08\u002F01\u002Fputins-trader-how-russian-hackers-stole-millions-from-us-investors","shortDatePublished":"08\u002F01\u002F2024","shortDateLastPublished":"08\u002F01\u002F2024","shortDateFirstPublished":"08\u002F01\u002F2024","airDate":"8\u002F1\u002F2024","brand":"cnbc","comScoreC2":"1000004","comScoreC3":"*null","comScoreC4":"CNBC.com VOD","comScoreC6":"*null","dayPart":"Others","duration":2593,"network":"CNBC","platform":"web","playbackURL":"\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F41c8ce034764467089958e2d5cf533b3\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","playerConfig":{"autoPlay":false,"workflow":"VOD","sticky":true,"endCard":{"timer":5},"embedURL":"https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid={VID}","hlshtml":true,"primary":"html5","share":true,"parsely":true,"playbackRateControls":false,"fwassetId":"cnbc_7000347476","mediaid":"cnbc_7000347476","key":"+9o3ihbMIU8\u002FixFry35xlHnkQ9tikKg9TU0io1QbWXfpeR0q","playList":false,"sharing":{"sites":["facebook","twitter","linkedin"],"link":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2024\u002F08\u002F01\u002Fputins-trader-how-russian-hackers-stole-millions-from-us-investors.html","code":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000347476 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"mobileSFID":"7003948","IE11Profile":"169843:nbcu_web_flash_cs_moat_https","advertising":{"client":"freewheel","creativeTimeout":4000,"requestTimeout":4000,"vpaidcontrols":true,"freewheel":{"sectionid":"cnbc_inline_vod","networkid":169843,"profileid":"169843:nbcu_mobileweb_js_cs_moat_https","adManagerURL":"https:\u002F\u002Fmssl.fwmrm.net\u002Flibs\u002Fadm\u002F6.35.0\u002FAdManager.js","serverid":"\u002F\u002F29773.v.fwmrm.net\u002Fad\u002Fp\u002F1","sfid":"7006049","afid":"137705375","custom":{"metr":"1023","sfid":"7006049","afid":"137705375"}},"schedule":{"adbreak":{"offset":"pre","tag":"placeholder_preroll"}}},"analytics":{"onSite":true,"omniture":{"playername":"JW_Player","playerversion":"Universal","daypart":"Others","assetstatus":"Unrestricted","videoprogram":{"live":"iconic"},"videocontent":"Linear","title":"{partnername} Vod","guid":"{partnername} Vod","share":{"linksharepev2":"Video Control Rack","providerepev2":"Share","eVar15":"Video:Vod:","linktrknav":"video:share:Vod:","eVar14":": Share Published"}}},"embed":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000347476 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"playerTech":"JW Player","subType":"clips","thumbnail":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108010628-1721758387847-240722-cg-31-putins-trader-thumbnail-NOTEXT.png?v=1721758483","usageRule":"NA","vcpsId":7000347476,"videoStatus":"Unrestricted","uploadDate":"2024-07-23T17:10:33+0000","__typename":"cnbcvideo"},{"id":108023480,"contentClassification":[],"type":"cnbcvideo","title":"Former House Majority Leader Eric Cantor on 2024 race: I think Donald Trump will win in the end","seoTitle":"Former House Majority Leader Eric Cantor on 2024 race: I think Donald Trump will win in the end","premium":false,"native":false,"headline":"Former House Majority Leader Eric Cantor on 2024 race: I think Donald Trump will win in the end","shorterHeadline":"Former House Majority Leader Eric Cantor on 2024 race: I think Donald Trump will win in the end","tagName":null,"tagNameFormatted":"NA","tagNameFormattedFull":"NA","slug":"Former House Majority Leader Eric Cantor on 2024 race: I think Donald Trump will win in the end 1724246082","url":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2024\u002F08\u002F21\u002Fformer-house-majority-leader-eric-cantor-on-2024-race-i-think-donald-trump-will-win-in-the-end.html","description":"Eric Cantor, Moelis and Company vice chairman and managing director and former House Majority Leader, joins 'Squawk Box' to discuss takeaways from this week's Democratic National Convention, the Harris economic agenda, state of the 2024 race, and more.","encodings":[{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002Feeacfe54b345491bb73ba41b8b5a4af7\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_1_HLSMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM08D21\u002F7000349338\u002F1724246082-35925526295-hd_H264_126K.mp4","formatName":"mpeg4_200000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM08D21\u002F7000349338\u002F1724246082-35925526295-hd_L.mp4","formatName":"mpeg4_500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM08D21\u002F7000349338\u002F1724246082-35925526295-hd_mp3w_048K.mp3","formatName":"mpeg3_48000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM08D21\u002F7000349338\u002F1724246082-35925526295-hd_mp3w_128K.mp3","formatName":"mpeg3_128000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM08D21\u002F7000349338\u002F1724246082-35925526295-hd_H264_1M_720x405.mp4","formatName":"mpeg4_1100000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM08D21\u002F7000349338\u002F1724246082-35925526295-hd.vtt","formatName":"WebVTT_0_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM08D21\u002F7000349338\u002F1724246082-35925526295-hd_H264_480x270_25p_500K.mp4","formatName":"mpeg4_600000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM08D21\u002F7000349338\u002F1724246082-35925526295-hd_MBR_4500.mp4","formatName":"mpeg4_4500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbc-hls.akamaized.net\u002F7000349338\u002FMBR\u002F5b68c5c0-5fbf-11ef-bfa2-778c12f98049\u002F1724246082-35925526295-hd.m3u8","formatName":"mpeg4_1_CMAFMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002Feeacfe54b345491bb73ba41b8b5a4af7\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_500000_HLSSBRStreaming","__typename":"encoding"}],"author":[],"sourceOrganization":[{"id":80000022,"slug":"CNBC US Source","tagName":"CNBC US Source","tagNameFormatted":"cnbc us source","tagNameFormattedFull":"cnbc us source","__typename":"source"}],"projectTeamContent":[],"relatedTags":[{"id":105321277,"headline":null,"tagName":"Breaking News: Politics","tagNameFormatted":"breaking news p","tagNameFormattedFull":"breaking news politics","type":"tag","__typename":"tag"},{"id":107317971,"headline":null,"tagName":"Neutral","tagNameFormatted":"neutral","tagNameFormattedFull":"neutral","type":"tag","__typename":"tag"},{"id":105056648,"headline":null,"tagName":"Politics","tagNameFormatted":"politics","tagNameFormattedFull":"politics","type":"tag","__typename":"tag"}],"relatedTagsFilteredFormatted":"breaking news p|neutral|politics","relatedTagsFilteredFormattedFull":"breaking news politics|neutral|politics","additionalSectionContent":[{"id":10000113,"headline":"Politics","tagName":"Politics","tagNameFormatted":"politics","tagNameFormattedFull":"politics","type":"franchise","__typename":"tag"}],"additionalSectionContentFormatted":"politics","additionalSectionContentFormattedFull":"politics","relatedVideoContent":[],"datePublished":"2024-08-21T13:27:23+0000","dateLastPublished":"2024-08-21T13:27:23+0000","sectionHierarchy":[{"id":15837856,"tagName":"CNBC TV","tagNameFormatted":"cnbc tv","tagNameFormattedFull":"cnbc tv","order":2,"__typename":"sectionHierarchy"},{"id":15838368,"tagName":"Squawk Box U.S.","tagNameFormatted":"squawk box us","tagNameFormattedFull":"squawk box us","order":1,"__typename":"sectionHierarchy"}],"sectionHierarchyFormatted":"cnbc tv|squawk box us","sectionHierarchyFormattedFull":"cnbc tv|squawk box us","creatorOverwrite":null,"projectContent":[],"promoImage":{"id":108023481,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108023481-17242460851724246082-35925526295-1080pnbcnews.jpg?v=1724246084","__typename":"infographic"},"image":null,"section":{"headline":"Squawk Box","id":15838368,"subType":"news_show","tagName":"Squawk Box U.S.","tagNameFormatted":"squawk box us","tagNameFormattedFull":"squawk box us","title":"Squawk Box","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsquawk-box-us\u002F","__typename":"franchise"},"projectTeamContentFormatted":"NA","projectTeamContentFormattedFull":"NA","projectContentFormatted":"NA","projectContentFormattedFull":"NA","creatorOverwriteFormatted":"NA","sourceOrganizationFormatted":"cnbc us source","sourceOrganizationFormattedFull":"cnbc us source","authorFormatted":"NA","authorFormattedFull":"NA","dateFirstPublished":"2024-08-21T13:27:23+0000","subDomain":"https:\u002F\u002Fwww.cnbc.com","liveURL":"\u002Fvideo\u002F2024\u002F08\u002F21\u002Fformer-house-majority-leader-eric-cantor-on-2024-race-i-think-donald-trump-will-win-in-the-end.html","pageName":"7000349338|video\u002F2024\u002F08\u002F21\u002Fformer-house-majority-leader-eric-cantor-on-2024-race-i-think-donald-trump-will-win-in-the-end","shortDatePublished":"08\u002F21\u002F2024","shortDateLastPublished":"08\u002F21\u002F2024","shortDateFirstPublished":"08\u002F21\u002F2024","airDate":"8\u002F21\u002F2024","brand":"cnbc","comScoreC2":"1000004","comScoreC3":"*null","comScoreC4":"CNBC.com VOD","comScoreC6":"*null","dayPart":"Others","duration":420,"network":"CNBC","platform":"web","playbackURL":"\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002Feeacfe54b345491bb73ba41b8b5a4af7\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","playerConfig":{"autoPlay":false,"workflow":"VOD","sticky":true,"endCard":{"timer":5},"embedURL":"https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid={VID}","hlshtml":true,"primary":"html5","share":true,"parsely":true,"playbackRateControls":false,"fwassetId":"cnbc_7000349338","mediaid":"cnbc_7000349338","key":"+9o3ihbMIU8\u002FixFry35xlHnkQ9tikKg9TU0io1QbWXfpeR0q","playList":false,"sharing":{"sites":["facebook","twitter","linkedin"],"link":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2024\u002F08\u002F21\u002Fformer-house-majority-leader-eric-cantor-on-2024-race-i-think-donald-trump-will-win-in-the-end.html","code":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000349338 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"mobileSFID":"7003948","IE11Profile":"169843:nbcu_web_flash_cs_moat_https","advertising":{"client":"freewheel","creativeTimeout":4000,"requestTimeout":4000,"vpaidcontrols":true,"freewheel":{"sectionid":"cnbc_inline_vod","networkid":169843,"profileid":"169843:nbcu_mobileweb_js_cs_moat_https","adManagerURL":"https:\u002F\u002Fmssl.fwmrm.net\u002Flibs\u002Fadm\u002F6.35.0\u002FAdManager.js","serverid":"\u002F\u002F29773.v.fwmrm.net\u002Fad\u002Fp\u002F1","sfid":"7006049","afid":"137705375","custom":{"metr":"1023","sfid":"7006049","afid":"137705375"}},"schedule":{"adbreak":{"offset":"pre","tag":"placeholder_preroll"}}},"analytics":{"onSite":true,"omniture":{"playername":"JW_Player","playerversion":"Universal","daypart":"Others","assetstatus":"Unrestricted","videoprogram":{"live":"iconic"},"videocontent":"Linear","title":"{partnername} Vod","guid":"{partnername} Vod","share":{"linksharepev2":"Video Control Rack","providerepev2":"Share","eVar15":"Video:Vod:","linktrknav":"video:share:Vod:","eVar14":": Share Published"}}},"embed":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000349338 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"playerTech":"JW Player","subType":"clips","thumbnail":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108023481-17242460851724246082-35925526295-1080pnbcnews.jpg?v=1724246084","usageRule":"NA","vcpsId":7000349338,"videoStatus":"Unrestricted","uploadDate":"2024-08-21T13:14:44+0000","__typename":"cnbcvideo"}],"__typename":"videoBreakerFeatured"},"__typename":"module"}],"__typename":"column"}],"__typename":"layout"},{"editable":false,"columns":[{"span":"full","editable":false,"modules":[{"name":"featuredBreaker","source":"105230157","canChangeLayout":false,"canChangeSource":false,"serverRenderPolicy":null,"attributes":{},"options":{},"data":{"url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=Special%20Reports","type":"collection","title":"Special Reports","subType":"package","sectionLabel":null,"logo":null,"shorterHeadline":"Special Reports","assets":[{"id":108022321,"brand":"cnbc","type":"cnbcnewsstory","premium":false,"native":false,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F20\u002Fop-ed-the-case-for-a-40-year-mortgage.html","datePublished":"2024-08-20T12:00:01+0000","dateLastPublishedSixHr":"","title":"Op-ed: The case for a 40-year mortgage","linkHeadline":"Op-ed: The case for a 40-year mortgage","shorterHeadline":"Op-ed: The case for a 40-year mortgage","slug":"Op-ed: The case for a 40-year mortgage","subType":null,"section":{"subType":"special_report","__typename":"franchise"},"sectionHierarchy":[{"tagName":"Investing","__typename":"sectionHierarchy"},{"tagName":"Personal Finance","__typename":"sectionHierarchy"},{"tagName":"Your Money","__typename":"sectionHierarchy"}],"promoImage":{"id":105390105,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F105390105-1533911683827gettyimages-844235780.jpeg?v=1724161959","__typename":"infographic"},"author":[{"name":"John Hope Bryant","__typename":"creator"}],"sourceOrganization":[{"name":"CNBC.com","__typename":"source"}],"creatorOverwrite":null,"__typename":"cnbcnewsstory"},{"id":108021646,"brand":"cnbc","type":"cnbcnewsstory","premium":false,"native":false,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F18\u002Fwith-harris-economic-plan-us-family-child-care-crisis-is-in-election.html","datePublished":"2024-08-18T13:41:34+0000","dateLastPublishedSixHr":"","title":"With Harris-Walz economic plan, America's family and child-care crisis is in the election","linkHeadline":"With Harris-Walz economic plan, America's family and child-care crisis is in the election","shorterHeadline":"With Harris economic plan, U.S. family and child-care crisis is in the election","slug":"With Harris-Walz economic plan, America's family and child-care crisis is in the election","subType":null,"section":{"subType":"special_report","__typename":"franchise"},"sectionHierarchy":[{"tagName":"Business News","__typename":"sectionHierarchy"},{"tagName":"Media","__typename":"sectionHierarchy"},{"tagName":"CNBC Changemakers","__typename":"sectionHierarchy"}],"promoImage":{"id":108017757,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108017757-17230643072024-08-07t205436z_799130835_rc28b9ap4ok2_rtrmadp_0_usa-election-harris.jpeg?v=1723064368","__typename":"infographic"},"author":[{"name":"Kaya Ginsky","__typename":"creator"}],"sourceOrganization":[{"name":"CNBC.com","__typename":"source"}],"creatorOverwrite":null,"__typename":"cnbcnewsstory"},{"id":108021540,"brand":"cnbc","type":"cnbcnewsstory","premium":false,"native":false,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F18\u002Ffast-casual-food-chains-are-rapidly-expanding-into-small-town-america.html","datePublished":"2024-08-18T13:00:01+0000","dateLastPublishedSixHr":"","title":"From Chipotle to Cava and Panda Express, more big restaurant chains are rapidly expanding into small town America","linkHeadline":"From Chipotle to Cava, Panda Express, more big restaurant chains rapidly expand into small town U.S.","shorterHeadline":"Big fast-casual restaurant chains are rapidly expanding into small town America","slug":"From Chipotle to Cava and Panda Express, more big restaurant chains are rapidly expanding into small town America","subType":null,"section":{"subType":"special_report","__typename":"franchise"},"sectionHierarchy":[{"tagName":"Markets","__typename":"sectionHierarchy"},{"tagName":"CNBC Global CFO Council","__typename":"sectionHierarchy"}],"promoImage":{"id":108021572,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108021572-1723822220159-gettyimages-1242106161-CHIPOTLE_EARNS.jpeg?v=1723822314","__typename":"infographic"},"author":[{"name":"Kevin Williams","__typename":"creator"}],"sourceOrganization":[{"name":"CNBC.com","__typename":"source"}],"creatorOverwrite":null,"__typename":"cnbcnewsstory"},{"id":108013158,"brand":"cnbc","type":"cnbcnewsstory","premium":false,"native":false,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F17\u002Fnew-privacy-battle-is-underway-as-tech-gadgets-capture-our-brain-waves.html","datePublished":"2024-08-17T12:30:01+0000","dateLastPublishedSixHr":"","title":"A wave of biological privacy laws may be coming as tech gadgets capture our brain waves","linkHeadline":"A wave of biological privacy laws may be coming as tech gadgets capture our brain waves","shorterHeadline":"Wave of biological privacy laws may be coming as gadgets capture our brain waves","slug":"A wave of biological privacy battle is underway as tech gadgets capture our brain waves","subType":null,"section":{"subType":"special_report","__typename":"franchise"},"sectionHierarchy":[{"tagName":"Technology","__typename":"sectionHierarchy"},{"tagName":"Cyber Report","__typename":"sectionHierarchy"}],"promoImage":{"id":108014382,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108014382-1722445318658-gettyimages-513688464-000087746241_Unapproved.jpeg?v=1722445333","__typename":"infographic"},"author":[{"name":"Trevor Laurence Jockims","__typename":"creator"}],"sourceOrganization":[{"name":"CNBC.com","__typename":"source"}],"creatorOverwrite":null,"__typename":"cnbcnewsstory"},{"id":108016908,"brand":"cnbc","type":"cnbcnewsstory","premium":false,"native":false,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F19\u002Fwhat-tiktoks-underconsumption-core-trend-means-for-your-money.html","datePublished":"2024-08-19T13:00:01+0000","dateLastPublishedSixHr":"","title":"What TikTok 'underconsumption core' trend means for your money: It's 'romanticizing being middle class,' content creator says","linkHeadline":"TikTok's 'underconsumption core' trend is 'romanticizing being middle class,' content creator says","shorterHeadline":"What TikTok's 'underconsumption core' trend means for your money","slug":"What TikTok 'underconsumption core' trend means for your money: It's 'romanticizing being middle class,' content creator says","subType":null,"section":{"subType":"section","__typename":"franchise"},"sectionHierarchy":[{"tagName":"Investing","__typename":"sectionHierarchy"},{"tagName":"Personal Finance","__typename":"sectionHierarchy"}],"promoImage":{"id":108016897,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108016897-1722959888996-Sophie_Hinn_-_Underconsumption.png?v=1723484475","__typename":"infographic"},"author":[],"sourceOrganization":[{"name":"CNBC.com","__typename":"source"}],"creatorOverwrite":"Victoria Feng, special to CNBC","__typename":"cnbcnewsstory"},{"id":108017091,"brand":"cnbc","type":"cnbcnewsstory","premium":false,"native":false,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F16\u002Fai-burnout-workers.html","datePublished":"2024-08-16T14:53:16+0000","dateLastPublishedSixHr":"","title":"Yes, AI burnout is already happening at work. Here's how to prevent it","linkHeadline":"Yes, AI burnout is already happening at work","shorterHeadline":"Yes, AI burnout is already happening at work","slug":"Yes, AI burnout is already happening at work. Here's how to prevent it","subType":null,"section":{"subType":"special_report","__typename":"franchise"},"sectionHierarchy":[{"tagName":"Technology","__typename":"sectionHierarchy"},{"tagName":"Technology Executive Council","__typename":"sectionHierarchy"}],"promoImage":{"id":108017102,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108017102-1722972300058-gettyimages-2028967888-bored2.jpeg?v=1722972371","__typename":"infographic"},"author":[{"name":"Bob Violino","__typename":"creator"}],"sourceOrganization":[{"name":"CNBC.com","__typename":"source"}],"creatorOverwrite":null,"__typename":"cnbcnewsstory"},{"id":108019967,"brand":"cnbc","type":"cnbcnewsstory","premium":false,"native":false,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F15\u002Finside-the-93-million-wall-street-heist-that-stemmed-from-russia.html","datePublished":"2024-08-15T10:00:01+0000","dateLastPublishedSixHr":"","title":"Inside the $93 million Wall Street heist that stemmed from Russia","linkHeadline":"Inside the $93 million Wall Street heist that stemmed from Russia","shorterHeadline":"Inside the $93 million Wall Street heist that stemmed from Russia","slug":"Inside the $93 million Wall Street heist that stemmed from Russia","subType":null,"section":{"subType":"section","__typename":"franchise"},"sectionHierarchy":[{"tagName":"Business News","__typename":"sectionHierarchy"},{"tagName":"CNBC Investigations","__typename":"sectionHierarchy"}],"promoImage":{"id":108020340,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108020340-1723646467602-gettyimages-615824148-000106946685_Unapproved.jpeg?v=1723646514","__typename":"infographic"},"author":[{"name":"CNBC.com staff","__typename":"creator"}],"sourceOrganization":[{"name":"CNBC.com","__typename":"source"}],"creatorOverwrite":null,"__typename":"cnbcnewsstory"},{"id":108010538,"brand":"cnbc","type":"cnbcnewsstory","premium":false,"native":false,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F14\u002Fwhat-it-really-takes-to-train-an-entire-workforce-on-gen-ai.html","datePublished":"2024-08-14T13:12:48+0000","dateLastPublishedSixHr":"","title":"What it really takes to train an entire workforce on gen AI","linkHeadline":"What it really takes to train an entire workforce on gen AI","shorterHeadline":"What it really takes to train an entire workforce on gen AI","slug":"What it really takes to train an entire workforce on gen AI","subType":null,"section":{"subType":"special_report","__typename":"franchise"},"sectionHierarchy":[{"tagName":"Technology","__typename":"sectionHierarchy"},{"tagName":"Technology Executive Council","__typename":"sectionHierarchy"}],"promoImage":{"id":107349230,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107349230-1702956942717-gettyimages-1455352989-abrf01036.jpeg?v=1721752125","__typename":"infographic"},"author":[{"name":"Rachel Curry","__typename":"creator"}],"sourceOrganization":[{"name":"CNBC.com","__typename":"source"}],"creatorOverwrite":null,"__typename":"cnbcnewsstory"}],"__typename":"featuredBreaker"},"__typename":"module"}],"__typename":"column"}],"__typename":"layout"},{"editable":false,"columns":[{"span":"12","editable":false,"modules":[{"name":"trendingNowBreaker","source":"100727362","canChangeLayout":false,"canChangeSource":false,"serverRenderPolicy":null,"attributes":{},"options":{},"data":{"brand":"cnbc","assets":[{"title":"Nonfarm payroll growth revised down by 818,000, Labor Department says","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fnonfarm-payroll-growth-revised-down-by-818000-labor-department-says.html","linkHeadline":"Nonfarm payroll growth revised down by 818,000, Labor Department says","contentClassification":[],"__typename":"cnbcnewsstory"},{"title":"Starbucks' new CEO will supercommute 1,000 miles from California to Seattle office instead of relocating","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F20\u002Fstarbucks-new-ceo-brian-niccol-will-supercommute-to-seattle-instead-of-relocating.html","linkHeadline":"Starbucks' new CEO will supercommute 1,000 miles from California to Seattle office instead of relocating","contentClassification":[],"__typename":"cnbcnewsstory"},{"title":"'No empathy, no morals': Three-time MAGA voter, former Trump aide, Arizona mayor on why they back Harris","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F20\u002Fformer-trump-supporters-tell-republicans-to-vote-harris-at-dnc.html","linkHeadline":"'No empathy, no morals': Three-time MAGA voter, former Trump aide on why they back Harris ","contentClassification":["isDeveloping"],"__typename":"cnbcnewsstory"},{"title":"Target CEO addresses 'price gouging' accusations in retail","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Ftarget-ceo-brian-cornell-weighs-in-on-price-gouging.html","linkHeadline":"Target CEO addresses 'price gouging' accusations in retail","contentClassification":[],"__typename":"cnbcnewsstory"},{"title":"Ford delays new EV plant, cancels electric three-row SUV as it shifts strategy","url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fford-delays-new-ev-plant-cancels-electric-three-row-suv.html","linkHeadline":"Ford delays new EV plant, cancels electric three-row SUV as it shifts strategy","contentClassification":["isDeveloping"],"__typename":"cnbcnewsstory"}],"__typename":"trendingNowBreaker"},"__typename":"module"}],"__typename":"column"}],"__typename":"layout"},{"editable":false,"columns":[{"span":"9","editable":false,"modules":[{"name":"twoColumnImageDense","source":"102138233","canChangeLayout":true,"canChangeSource":true,"serverRenderPolicy":null,"attributes":{"truncate":{"firstElement":130,"otherElements":110},"displayThumbnailPreviews":false},"options":{"pageSize":8,"promoted":true},"data":{"id":102138233,"brand":"cnbc","eyebrow":"Pro News and Analysis","url":"https:\u002F\u002Fwww.cnbc.com\u002Fpro\u002Fnews\u002F","assets":[{"id":108022907,"title":"Liquid natural gas is booming as Asia looks for alternatives to coal — these stocks could surge ","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":null,"shorterHeadline":"LNG is booming as Asia looks for coal substitutes — these stocks could surge ","premium":true,"native":false,"promoImage":{"id":108000984,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108000984-1719939951462-gettyimages-2155469807-2024_06_04_FSRU_Toscana_arr_DSC_9761_rJPG.jpeg?v=1724176648","__typename":"infographic"},"author":[{"id":104678681,"name":"Spencer Kimball","url":"https:\u002F\u002Fwww.cnbc.com\u002Fspencer-kimball\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Flng-booming-as-asia-seeks-coal-substitutes-these-stocks-could-surge-.html","creatorOverwrite":null,"datePublished":"2024-08-21T14:01:51+0000","coverageEndDate":null,"contentClassification":["premium"],"dateLastPublishedSixHr":"an hour ago","dateLastPublishedFormattedWithoutTime":"Wed, Aug 21st 2024","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":108023504,"title":"This payments stock has broken out of a 2-year sideways pattern. Using options to play it","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":null,"shorterHeadline":"This stock has broken out of a 2-year sideways pattern. Using options to play it","premium":true,"native":false,"promoImage":{"id":107284067,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107284067-1691604060169-gettyimages-1245948190-porzycki-payments230102_npNKs.jpeg?v=1724249179","__typename":"infographic"},"author":[],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fthis-payments-stock-has-broken-out-of-a-2-year-sideways-pattern-using-options-to-play-it.html","creatorOverwrite":null,"datePublished":"2024-08-21T14:38:18+0000","coverageEndDate":null,"contentClassification":["premium"],"dateLastPublishedSixHr":"20 min ago","dateLastPublishedFormattedWithoutTime":"Wed, Aug 21st 2024","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":108023366,"title":"Here are Wednesday's biggest analyst calls: Nvidia, Apple, Netflix, Amazon, CrowdStrike & more","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":null,"shorterHeadline":"Wednesday's top analyst calls: Nvidia, Apple, Netflix, Sunrun, Amazon","premium":true,"native":false,"promoImage":{"id":106858068,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F106858068-1616514233528solar-home4-jpg?v=1695904818","__typename":"infographic"},"author":[{"id":102249058,"name":"Michael Bloom","url":"https:\u002F\u002Fwww.cnbc.com\u002Fmichael-bloom\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fwednesdays-top-wall-street-stocks-to-watch.html","creatorOverwrite":null,"datePublished":"2024-08-21T12:10:48+0000","coverageEndDate":null,"contentClassification":["premium"],"dateLastPublishedSixHr":"3 hours ago","dateLastPublishedFormattedWithoutTime":"Wed, Aug 21st 2024","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":108022845,"title":"Stocks to buy when the Fed starts cutting interest rates, according to Jefferies","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":null,"shorterHeadline":"Stocks to buy when the Fed starts cutting interest rates, according to Jefferies","premium":true,"native":false,"promoImage":{"id":108022829,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108022829-1724162967851-gettyimages-2167560453-ms1_0760_91wsinss.jpeg?v=1724163162","__typename":"infographic"},"author":[{"id":106893858,"name":"Pia Singh","url":"https:\u002F\u002Fwww.cnbc.com\u002Fpia-singh\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fstocks-to-buy-when-the-fed-starts-cutting-according-to-jefferies.html","creatorOverwrite":null,"datePublished":"2024-08-21T11:06:47+0000","coverageEndDate":null,"contentClassification":["premium"],"dateLastPublishedSixHr":"4 hours ago","dateLastPublishedFormattedWithoutTime":"Wed, Aug 21st 2024","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":108023380,"title":"Wednesday's analyst calls: Texas Instruments upgraded by Citi, buy the dip on smartphone glass stock","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":null,"shorterHeadline":"Analyst calls: Texas Instruments upgraded, buy the dip on smartphone glass stock","premium":true,"native":false,"promoImage":{"id":108020387,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108020387-1723649974831-gettyimages-2166761547-wallst469429_txou1tvo.jpeg?v=1724232500","__typename":"infographic"},"author":[{"id":107176594,"name":"Hakyung Kim","url":"https:\u002F\u002Fwww.cnbc.com\u002Fhakyung-kim\u002F","__typename":"creator"},{"id":102270141,"name":"Fred Imbert","url":"https:\u002F\u002Fwww.cnbc.com\u002Ffred-imbert\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fanalyst-calls-all-the-market-moving-wall-street-chatter-from-wednesday.html","creatorOverwrite":null,"datePublished":"2024-08-21T09:47:06+0000","coverageEndDate":null,"contentClassification":["premium"],"dateLastPublishedSixHr":"3 hours ago","dateLastPublishedFormattedWithoutTime":"Wed, Aug 21st 2024","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":108022026,"title":"Investors are doubling down on stocks — and there are 3 key reasons why","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":null,"shorterHeadline":"Investors are doubling down on stocks — and there are 3 key reasons why","premium":true,"native":false,"promoImage":{"id":107398975,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107398975-1712700131484-gettyimages-1210464713-uspresidenttrumplookingforwardtoopenbusinessduringcovid-19.jpeg?v=1724069793","__typename":"infographic"},"author":[{"id":107121240,"name":"Ganesh Rao","url":"https:\u002F\u002Fwww.cnbc.com\u002Fganesh-rao\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Finvestors-are-doubling-down-on-stocks-and-there-are-3-key-reasons-why.html","creatorOverwrite":null,"datePublished":"2024-08-20T23:16:16+0000","coverageEndDate":null,"contentClassification":["premium"],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Tue, Aug 20th 2024","sourceOrganization":[{"id":100005495,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Europe","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":108022684,"title":"Shares of this insurer are set to soar 100% as interest rates fall, Jefferies says","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":null,"shorterHeadline":"Shares of this insurer are set to soar 100% as interest rates fall: Jefferies","premium":true,"native":false,"promoImage":{"id":108021521,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108021521-1723819260619-gettyimages-2166298470-AFP_36EC44K.jpeg?v=1724137742","__typename":"infographic"},"author":[{"id":107295601,"name":"Amala Balakrishner","url":"https:\u002F\u002Fwww.cnbc.com\u002Famala-balakrishner\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fshares-of-this-insurer-are-set-to-soar-100percent-as-interest-rates-fall-jefferies-says.html","creatorOverwrite":null,"datePublished":"2024-08-20T23:15:31+0000","coverageEndDate":null,"contentClassification":["premium"],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Tue, Aug 20th 2024","sourceOrganization":[{"id":100005495,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Europe","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":108023077,"title":"Why Goldman Sachs' Tony Pasquariello doesn't think the market is 'alluring' right now ","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":null,"shorterHeadline":"Why Goldman's Tony Pasquariello doesn't think the market is 'alluring' right now","premium":true,"native":false,"promoImage":{"id":108022810,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108022810-1724162462621-gettyimages-2167560357-ms1_0787_op8ur3bk.jpeg?v=1724162867","__typename":"infographic"},"author":[{"id":107022882,"name":"Sarah Min","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsarah-min\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F20\u002Fgoldmans-tony-pasquariello-doesnt-think-the-market-is-alluring-right-now.html","creatorOverwrite":null,"datePublished":"2024-08-20T21:15:31+0000","coverageEndDate":null,"contentClassification":["premium"],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Tue, Aug 20th 2024","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"}],"__typename":"twoColumnImageDense"},"__typename":"module"},{"name":"twoColumnImageDense","source":"107422700","canChangeLayout":true,"canChangeSource":true,"serverRenderPolicy":null,"attributes":{"truncate":{"firstElement":130,"otherElements":110},"displayThumbnailPreviews":false},"options":{"pageSize":8,"promoted":true},"data":{"id":107422700,"brand":"cnbc","eyebrow":"UK Votes","url":"https:\u002F\u002Fwww.cnbc.com\u002Fuk-votes\u002F","assets":[{"id":108002446,"title":"'Get Britain building again': New UK finance chief restores housing targets","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":null,"shorterHeadline":"'Get Britain building again': New UK finance chief restores housing targets","premium":false,"native":false,"promoImage":{"id":108002482,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108002482-1720434673987-gettyimages-2160533321-AFP_363C7JU.jpeg?v=1720434690","__typename":"infographic"},"author":[{"id":107163535,"name":"Ruxandra Iordache","url":"https:\u002F\u002Fwww.cnbc.com\u002Fruxandra-iordache\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F07\u002F08\u002Fuk-election-2024-rachel-reeves-announces-growth-measures.html","creatorOverwrite":null,"datePublished":"2024-07-08T10:08:59+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Mon, Jul 8th 2024","sourceOrganization":[{"id":100005495,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Europe","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":108001993,"title":"Britain's Labour pulled off a thumping election victory with just 34% of the national vote","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":null,"shorterHeadline":"Britain's Labour pulled off a thumping election victory with just 34% of the national vote","premium":false,"native":false,"promoImage":{"id":108002015,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108002015-17201816812024-07-05t121340z_1952530657_rc20p8aur8xj_rtrmadp_0_britain-election.jpeg?v=1720181710","__typename":"infographic"},"author":[{"id":106152463,"name":"Vicky McKeever","url":"https:\u002F\u002Fwww.cnbc.com\u002Fvicky-mckeever\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F07\u002F05\u002Fuk-election-2024-britains-labour-pulled-off-a-thumping-election-victory.html","creatorOverwrite":null,"datePublished":"2024-07-05T13:07:41+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Fri, Jul 5th 2024","sourceOrganization":[{"id":100005495,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Europe","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":108001962,"title":"UK's Labour Party secures landslide victory in general election","type":"cnbcvideo","brand":"cnbc","linkHeadline":null,"shorterHeadline":"UK's Labour Party secures landslide victory in general election","premium":false,"native":false,"promoImage":{"id":108001963,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108001963-17201777531720177749-35245457556-1080pnbcnews.jpg?v=1720177752","__typename":"infographic"},"author":[],"url":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2024\u002F07\u002F05\u002Fuks-labour-party-secures-landslide-victory-in-general-election.html","creatorOverwrite":null,"datePublished":"2024-07-05T11:20:15+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Fri, Jul 5th 2024","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source","slug":"CNBC US Source","tagName":"CNBC US Source","tagNameFormatted":"cnbc us source","tagNameFormattedFull":"cnbc us source"}],"seoTitle":"UK's Labour Party secures landslide victory in general election","headline":"UK's Labour Party secures landslide victory in general election","tagName":null,"tagNameFormatted":"NA","tagNameFormattedFull":"NA","slug":"UK's Labour Party secures landslide victory in general election 1720177749","description":"Sky News anchor Wilfred Frost joins 'Squawk Box' to break down the UK general election results.","encodings":[{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F4311eb6810e94d4dbccad8bfca49e2ab\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_1_HLSMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM07D05\u002F7000344861\u002F1720177749-35245457556-hd_H264_126K.mp4","formatName":"mpeg4_200000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM07D05\u002F7000344861\u002F1720177749-35245457556-hd_L.mp4","formatName":"mpeg4_500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM07D05\u002F7000344861\u002F1720177749-35245457556-hd_mp3w_048K.mp3","formatName":"mpeg3_48000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM07D05\u002F7000344861\u002F1720177749-35245457556-hd_mp3w_128K.mp3","formatName":"mpeg3_128000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM07D05\u002F7000344861\u002F1720177749-35245457556-hd_H264_1M_720x405.mp4","formatName":"mpeg4_1100000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM07D05\u002F7000344861\u002F1720177749-35245457556-hd.vtt","formatName":"WebVTT_0_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM07D05\u002F7000344861\u002F1720177749-35245457556-hd_H264_480x270_25p_500K.mp4","formatName":"mpeg4_600000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM07D05\u002F7000344861\u002F1720177749-35245457556-hd_MBR_4500.mp4","formatName":"mpeg4_4500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbc-hls.akamaized.net\u002F7000344861\u002FMBR\u002F06ddf9f0-3abf-11ef-887b-5f084e6fcefb\u002F1720177749-35245457556-hd.m3u8","formatName":"mpeg4_1_CMAFMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F4311eb6810e94d4dbccad8bfca49e2ab\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_500000_HLSSBRStreaming","__typename":"encoding"}],"projectTeamContent":[],"relatedTags":[{"id":105321277,"headline":null,"tagName":"Breaking News: Politics","tagNameFormatted":"breaking news p","tagNameFormattedFull":"breaking news politics","type":"tag","__typename":"tag"},{"id":107317971,"headline":null,"tagName":"Neutral","tagNameFormatted":"neutral","tagNameFormattedFull":"neutral","type":"tag","__typename":"tag"},{"id":105056648,"headline":null,"tagName":"Politics","tagNameFormatted":"politics","tagNameFormattedFull":"politics","type":"tag","__typename":"tag"}],"relatedTagsFilteredFormatted":"breaking news p|neutral|politics","relatedTagsFilteredFormattedFull":"breaking news politics|neutral|politics","additionalSectionContent":[{"id":10000113,"headline":"Politics","tagName":"Politics","tagNameFormatted":"politics","tagNameFormattedFull":"politics","type":"franchise","__typename":"tag"},{"id":105229305,"headline":"World Politics","tagName":"World Politics","tagNameFormatted":"world politics","tagNameFormattedFull":"world politics","type":"franchise","__typename":"tag"},{"id":15839263,"headline":"Top Videos","tagName":"Top Videos","tagNameFormatted":"top videos","tagNameFormattedFull":"top videos","type":"franchise","__typename":"tag"},{"id":107422700,"headline":"UK Votes","tagName":"UK Votes","tagNameFormatted":"uk votes","tagNameFormattedFull":"uk votes","type":"franchise","__typename":"tag"},{"id":105229267,"headline":"Europe Politics","tagName":"Europe Politics","tagNameFormatted":"europe politics","tagNameFormattedFull":"europe politics","type":"franchise","__typename":"tag"}],"additionalSectionContentFormatted":"politics|world politics|top videos|uk votes|europe politics","additionalSectionContentFormattedFull":"politics|world politics|top videos|uk votes|europe politics","relatedVideoContent":[],"dateLastPublished":"2024-07-05T11:20:15+0000","sectionHierarchy":[{"id":15837856,"tagName":"CNBC TV","tagNameFormatted":"cnbc tv","tagNameFormattedFull":"cnbc tv","order":2,"__typename":"sectionHierarchy"},{"id":15838368,"tagName":"Squawk Box U.S.","tagNameFormatted":"squawk box us","tagNameFormattedFull":"squawk box us","order":1,"__typename":"sectionHierarchy"}],"sectionHierarchyFormatted":"cnbc tv|squawk box us","sectionHierarchyFormattedFull":"cnbc tv|squawk box us","projectContent":[],"image":null,"section":{"headline":"Squawk Box","id":15838368,"subType":"news_show","tagName":"Squawk Box U.S.","tagNameFormatted":"squawk box us","tagNameFormattedFull":"squawk box us","title":"Squawk Box","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsquawk-box-us\u002F","__typename":"franchise"},"projectTeamContentFormatted":"NA","projectTeamContentFormattedFull":"NA","projectContentFormatted":"NA","projectContentFormattedFull":"NA","creatorOverwriteFormatted":"NA","sourceOrganizationFormatted":"cnbc us source","sourceOrganizationFormattedFull":"cnbc us source","authorFormatted":"NA","authorFormattedFull":"NA","dateFirstPublished":"2024-07-05T11:20:15+0000","subDomain":"https:\u002F\u002Fwww.cnbc.com","liveURL":"\u002Fvideo\u002F2024\u002F07\u002F05\u002Fuks-labour-party-secures-landslide-victory-in-general-election.html","pageName":"7000344861|video\u002F2024\u002F07\u002F05\u002Fuks-labour-party-secures-landslide-victory-in-general-election","shortDatePublished":"07\u002F05\u002F2024","shortDateLastPublished":"07\u002F05\u002F2024","shortDateFirstPublished":"07\u002F05\u002F2024","airDate":"7\u002F5\u002F2024","comScoreC2":"1000004","comScoreC3":"*null","comScoreC4":"CNBC.com VOD","comScoreC6":"*null","dayPart":"Others","duration":490,"network":"CNBC","platform":"web","playbackURL":"\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F4311eb6810e94d4dbccad8bfca49e2ab\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","playerConfig":{"autoPlay":false,"workflow":"VOD","sticky":true,"endCard":{"timer":5},"embedURL":"https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid={VID}","hlshtml":true,"primary":"html5","share":true,"parsely":true,"playbackRateControls":false,"fwassetId":"cnbc_7000344861","mediaid":"cnbc_7000344861","key":"+9o3ihbMIU8\u002FixFry35xlHnkQ9tikKg9TU0io1QbWXfpeR0q","playList":false,"sharing":{"sites":["facebook","twitter","linkedin"],"link":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2024\u002F07\u002F05\u002Fuks-labour-party-secures-landslide-victory-in-general-election.html","code":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000344861 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"mobileSFID":"7003948","IE11Profile":"169843:nbcu_web_flash_cs_moat_https","advertising":{"client":"freewheel","creativeTimeout":4000,"requestTimeout":4000,"vpaidcontrols":true,"freewheel":{"sectionid":"cnbc_inline_vod","networkid":169843,"profileid":"169843:nbcu_mobileweb_js_cs_moat_https","adManagerURL":"https:\u002F\u002Fmssl.fwmrm.net\u002Flibs\u002Fadm\u002F6.35.0\u002FAdManager.js","serverid":"\u002F\u002F29773.v.fwmrm.net\u002Fad\u002Fp\u002F1","sfid":"7006049","afid":"137705375","custom":{"metr":"1023","sfid":"7006049","afid":"137705375"}},"schedule":{"adbreak":{"offset":"pre","tag":"placeholder_preroll"}}},"analytics":{"onSite":true,"omniture":{"playername":"JW_Player","playerversion":"Universal","daypart":"Others","assetstatus":"Unrestricted","videoprogram":{"live":"iconic"},"videocontent":"Linear","title":"{partnername} Vod","guid":"{partnername} Vod","share":{"linksharepev2":"Video Control Rack","providerepev2":"Share","eVar15":"Video:Vod:","linktrknav":"video:share:Vod:","eVar14":": Share Published"}}},"embed":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000344861 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"playerTech":"JW Player","subType":"clips","thumbnail":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108001963-17201777531720177749-35245457556-1080pnbcnews.jpg?v=1720177752","usageRule":"NA","vcpsId":7000344861,"videoStatus":"Unrestricted","uploadDate":"2024-07-05T11:09:12+0000","__typename":"cnbcvideo"},{"id":108001964,"title":"Labour does not have much headroom in terms of fiscal changes, economist says","type":"cnbcvideo","brand":"cnbc","linkHeadline":null,"shorterHeadline":"Labour does not have much headroom in terms of fiscal changes, economist says","premium":false,"native":false,"promoImage":{"id":108001965,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108001965-17201778751720177867-35245479726-1080pnbcnews.jpg?v=1720177873","__typename":"infographic"},"author":[],"url":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2024\u002F07\u002F05\u002Flabour-does-not-have-much-headroom-in-terms-of-fiscal-changes-economist.html","creatorOverwrite":null,"datePublished":"2024-07-05T11:17:40+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Fri, Jul 5th 2024","sourceOrganization":[{"id":100005495,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Europe","__typename":"source","slug":"CNBC Europe Source","tagName":"CNBC Europe Source","tagNameFormatted":"cnbc europe sou","tagNameFormattedFull":"cnbc europe source"}],"seoTitle":"Labour does not have much headroom in terms of fiscal changes: economist","headline":"Labour does not have much headroom in terms of fiscal changes, economist says","tagName":null,"tagNameFormatted":"NA","tagNameFormattedFull":"NA","slug":"Labour does not have much headroom in terms of fiscal changes, economist says 1720177867","description":"Jari Stehn, chief European economist at Goldman Sachs, discusses the economic and fiscal landscape in the U.K. as Labour wins the 2024 general election.","encodings":[{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002Ffa0b56fe628b45f88c09f07c02c69150\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_1_HLSMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM07D05\u002F7000344862\u002F1720177867-35245479726-hd_H264_126K.mp4","formatName":"mpeg4_200000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM07D05\u002F7000344862\u002F1720177867-35245479726-hd_L.mp4","formatName":"mpeg4_500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM07D05\u002F7000344862\u002F1720177867-35245479726-hd_mp3w_048K.mp3","formatName":"mpeg3_48000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM07D05\u002F7000344862\u002F1720177867-35245479726-hd_mp3w_128K.mp3","formatName":"mpeg3_128000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM07D05\u002F7000344862\u002F1720177867-35245479726-hd_H264_1M_720x405.mp4","formatName":"mpeg4_1100000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM07D05\u002F7000344862\u002F1720177867-35245479726-hd.vtt","formatName":"WebVTT_0_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM07D05\u002F7000344862\u002F1720177867-35245479726-hd_H264_480x270_25p_500K.mp4","formatName":"mpeg4_600000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM07D05\u002F7000344862\u002F1720177867-35245479726-hd_MBR_4500.mp4","formatName":"mpeg4_4500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbc-hls.akamaized.net\u002F7000344862\u002FMBR\u002F4e7d6520-3abf-11ef-887b-5f084e6fcefb\u002F1720177867-35245479726-hd.m3u8","formatName":"mpeg4_1_CMAFMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002Ffa0b56fe628b45f88c09f07c02c69150\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_500000_HLSSBRStreaming","__typename":"encoding"}],"projectTeamContent":[],"relatedTags":[{"id":105062178,"headline":null,"tagName":"Economic outlook","tagNameFormatted":"economic outloo","tagNameFormattedFull":"economic outlook","type":"tag","__typename":"tag"},{"id":105065610,"headline":null,"tagName":"Economic policy","tagNameFormatted":"economic policy","tagNameFormattedFull":"economic policy","type":"tag","__typename":"tag"},{"id":105079883,"headline":null,"tagName":"Fiscal policy","tagNameFormatted":"fiscal policy","tagNameFormattedFull":"fiscal policy","type":"tag","__typename":"tag"},{"id":105056897,"headline":null,"tagName":"Economy","tagNameFormatted":"economy","tagNameFormattedFull":"economy","type":"tag","__typename":"tag"},{"id":105536990,"headline":null,"tagName":"Breaking News: Economy","tagNameFormatted":"breaking news e","tagNameFormattedFull":"breaking news economy","type":"tag","__typename":"tag"},{"id":107317971,"headline":null,"tagName":"Neutral","tagNameFormatted":"neutral","tagNameFormattedFull":"neutral","type":"tag","__typename":"tag"}],"relatedTagsFilteredFormatted":"economic outloo|economic policy|fiscal policy|economy|breaking news e|neutral","relatedTagsFilteredFormattedFull":"economic outlook|economic policy|fiscal policy|economy|breaking news economy|neutral","additionalSectionContent":[{"id":20910258,"headline":"Economy","tagName":"Economy","tagNameFormatted":"economy","tagNameFormattedFull":"economy","type":"franchise","__typename":"tag"},{"id":10000044,"headline":"Europe Economy","tagName":"Europe Economy","tagNameFormatted":"europe economy","tagNameFormattedFull":"europe economy","type":"franchise","__typename":"tag"},{"id":107422700,"headline":"UK Votes","tagName":"UK Votes","tagNameFormatted":"uk votes","tagNameFormattedFull":"uk votes","type":"franchise","__typename":"tag"},{"id":105229267,"headline":"Europe Politics","tagName":"Europe Politics","tagNameFormatted":"europe politics","tagNameFormattedFull":"europe politics","type":"franchise","__typename":"tag"},{"id":19794221,"headline":"Europe News","tagName":"Europe News","tagNameFormatted":"europe news","tagNameFormattedFull":"europe news","type":"franchise","__typename":"tag"}],"additionalSectionContentFormatted":"economy|europe economy|uk votes|europe politics|europe news","additionalSectionContentFormattedFull":"economy|europe economy|uk votes|europe politics|europe news","relatedVideoContent":[],"dateLastPublished":"2024-07-05T11:17:40+0000","sectionHierarchy":[{"id":15837856,"tagName":"CNBC TV","tagNameFormatted":"cnbc tv","tagNameFormattedFull":"cnbc tv","order":4,"__typename":"sectionHierarchy"},{"id":15839263,"tagName":"Top Videos","tagNameFormatted":"top videos","tagNameFormattedFull":"top videos","order":3,"__typename":"sectionHierarchy"},{"id":100010042,"tagName":"Europe Business Day","tagNameFormatted":"europe business","tagNameFormattedFull":"europe business day","order":2,"__typename":"sectionHierarchy"},{"id":15838652,"tagName":"Squawk Box Europe","tagNameFormatted":"squawk box euro","tagNameFormattedFull":"squawk box europe","order":1,"__typename":"sectionHierarchy"}],"sectionHierarchyFormatted":"cnbc tv|top videos|europe business|squawk box euro","sectionHierarchyFormattedFull":"cnbc tv|top videos|europe business day|squawk box europe","projectContent":[],"image":null,"section":{"headline":"Squawk Box Europe","id":15838652,"subType":"news_show","tagName":"Squawk Box Europe","tagNameFormatted":"squawk box euro","tagNameFormattedFull":"squawk box europe","title":"Squawk Box Europe","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsquawk-box-europe\u002F","__typename":"franchise"},"projectTeamContentFormatted":"NA","projectTeamContentFormattedFull":"NA","projectContentFormatted":"NA","projectContentFormattedFull":"NA","creatorOverwriteFormatted":"NA","sourceOrganizationFormatted":"cnbc europe sou","sourceOrganizationFormattedFull":"cnbc europe source","authorFormatted":"NA","authorFormattedFull":"NA","dateFirstPublished":"2024-07-05T11:17:40+0000","subDomain":"https:\u002F\u002Fwww.cnbc.com","liveURL":"\u002Fvideo\u002F2024\u002F07\u002F05\u002Flabour-does-not-have-much-headroom-in-terms-of-fiscal-changes-economist.html","pageName":"7000344862|video\u002F2024\u002F07\u002F05\u002Flabour-does-not-have-much-headroom-in-terms-of-fiscal-changes-economist","shortDatePublished":"07\u002F05\u002F2024","shortDateLastPublished":"07\u002F05\u002F2024","shortDateFirstPublished":"07\u002F05\u002F2024","airDate":"7\u002F5\u002F2024","comScoreC2":"1000004","comScoreC3":"*null","comScoreC4":"CNBC.com VOD","comScoreC6":"*null","dayPart":"Others","duration":248,"network":"CNBC","platform":"web","playbackURL":"\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002Ffa0b56fe628b45f88c09f07c02c69150\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","playerConfig":{"autoPlay":false,"workflow":"VOD","sticky":true,"endCard":{"timer":5},"embedURL":"https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid={VID}","hlshtml":true,"primary":"html5","share":true,"parsely":true,"playbackRateControls":false,"fwassetId":"cnbc_7000344862","mediaid":"cnbc_7000344862","key":"+9o3ihbMIU8\u002FixFry35xlHnkQ9tikKg9TU0io1QbWXfpeR0q","playList":false,"sharing":{"sites":["facebook","twitter","linkedin"],"link":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2024\u002F07\u002F05\u002Flabour-does-not-have-much-headroom-in-terms-of-fiscal-changes-economist.html","code":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000344862 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"mobileSFID":"7003948","IE11Profile":"169843:nbcu_web_flash_cs_moat_https","advertising":{"client":"freewheel","creativeTimeout":4000,"requestTimeout":4000,"vpaidcontrols":true,"freewheel":{"sectionid":"cnbc_inline_vod","networkid":169843,"profileid":"169843:nbcu_mobileweb_js_cs_moat_https","adManagerURL":"https:\u002F\u002Fmssl.fwmrm.net\u002Flibs\u002Fadm\u002F6.35.0\u002FAdManager.js","serverid":"\u002F\u002F29773.v.fwmrm.net\u002Fad\u002Fp\u002F1","sfid":"7006049","afid":"137705375","custom":{"metr":"1023","sfid":"7006049","afid":"137705375"}},"schedule":{"adbreak":{"offset":"pre","tag":"placeholder_preroll"}}},"analytics":{"onSite":true,"omniture":{"playername":"JW_Player","playerversion":"Universal","daypart":"Others","assetstatus":"Unrestricted","videoprogram":{"live":"iconic"},"videocontent":"Linear","title":"{partnername} Vod","guid":"{partnername} Vod","share":{"linksharepev2":"Video Control Rack","providerepev2":"Share","eVar15":"Video:Vod:","linktrknav":"video:share:Vod:","eVar14":": Share Published"}}},"embed":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000344862 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"playerTech":"JW Player","subType":"clips","thumbnail":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108001965-17201778751720177867-35245479726-1080pnbcnews.jpg?v=1720177873","usageRule":"NA","vcpsId":7000344862,"videoStatus":"Unrestricted","uploadDate":"2024-07-05T11:11:13+0000","__typename":"cnbcvideo"},{"id":108001704,"title":"Outgoing UK PM Rishi Sunak quits as Conservative Party leader after crushing election defeat","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":null,"shorterHeadline":"Outgoing UK PM Rishi Sunak to step down as Conservative Party leader","premium":false,"native":false,"promoImage":{"id":108001939,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108001939-1720173219957-gettyimages-2159986031-ln3_9678.jpeg?v=1720173279","__typename":"infographic"},"author":[{"id":107401676,"name":"April Roach","url":"https:\u002F\u002Fwww.cnbc.com\u002Fapril-roach\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F07\u002F05\u002Fuk-election-rishi-sunak-to-step-down-as-conservative-party-leader-.html","creatorOverwrite":null,"datePublished":"2024-07-05T10:04:24+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Fri, Jul 5th 2024","sourceOrganization":[{"id":100005495,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Europe","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":108001929,"title":"Goldman Sachs upgrades UK growth forecast after huge Labour election win","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":null,"shorterHeadline":"Goldman Sachs upgrades UK growth forecast after huge Labour election win","premium":false,"native":false,"promoImage":{"id":107272250,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107272250-1689590132264-gettyimages-1514461503-20230708_city_greenwich_view_002.jpeg?v=1720171750","__typename":"infographic"},"author":[{"id":106152463,"name":"Vicky McKeever","url":"https:\u002F\u002Fwww.cnbc.com\u002Fvicky-mckeever\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F07\u002F05\u002Fgoldman-sachs-upgrades-uk-growth-forecast-after-labour-election-win.html","creatorOverwrite":null,"datePublished":"2024-07-05T09:50:40+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Fri, Jul 5th 2024","sourceOrganization":[{"id":100005495,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Europe","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":108001890,"title":"UK's Labour could announce tax changes 'quicker than expected': Teneo","type":"cnbcvideo","brand":"cnbc","linkHeadline":null,"shorterHeadline":"UK's Labour could announce tax changes 'quicker than expected': Teneo","premium":false,"native":false,"promoImage":{"id":108001893,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108001893-17201612211720161219-35243006224-1080pnbcnews.jpg?v=1720161220","__typename":"infographic"},"author":[],"url":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2024\u002F07\u002F05\u002Fuks-labour-could-announce-tax-changes-quicker-than-expected-teneo.html","creatorOverwrite":null,"datePublished":"2024-07-05T07:09:53+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Fri, Jul 5th 2024","sourceOrganization":[{"id":100005489,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Asia","__typename":"source","slug":"CNBC Asia Source","tagName":"CNBC Asia Source","tagNameFormatted":"cnbc asia sourc","tagNameFormattedFull":"cnbc asia source"}],"seoTitle":"UK's Labour could announce tax changes 'quicker than expected': Teneo","headline":"UK's Labour could announce tax changes 'quicker than expected': Teneo","tagName":null,"tagNameFormatted":"NA","tagNameFormattedFull":"NA","slug":"Might expect announcements on taxes even before the UK Budget in 2024 1720161219","description":"Carsten Nickel of Teneo says a fragmented opposition could allow a new Labour government to deliver more tax announcements ahead of the U.K. budget in October.","encodings":[{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F672b7c1bed894759abd225bda87f4f76\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_1_HLSMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM07D05\u002F7000344851\u002F1720161219-35243006224-hd_H264_126K.mp4","formatName":"mpeg4_200000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM07D05\u002F7000344851\u002F1720161219-35243006224-hd_L.mp4","formatName":"mpeg4_500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM07D05\u002F7000344851\u002F1720161219-35243006224-hd_mp3w_048K.mp3","formatName":"mpeg3_48000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM07D05\u002F7000344851\u002F1720161219-35243006224-hd_mp3w_128K.mp3","formatName":"mpeg3_128000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM07D05\u002F7000344851\u002F1720161219-35243006224-hd_H264_1M_720x405.mp4","formatName":"mpeg4_1100000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM07D05\u002F7000344851\u002F1720161219-35243006224-hd.vtt","formatName":"WebVTT_0_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM07D05\u002F7000344851\u002F1720161219-35243006224-hd_H264_480x270_25p_500K.mp4","formatName":"mpeg4_600000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM07D05\u002F7000344851\u002F1720161219-35243006224-hd_MBR_4500.mp4","formatName":"mpeg4_4500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbc-hls.akamaized.net\u002F7000344851\u002FMBR\u002F899f4050-3a98-11ef-bbf3-911694976b4d\u002F1720161219-35243006224-hd.m3u8","formatName":"mpeg4_1_CMAFMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F672b7c1bed894759abd225bda87f4f76\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_500000_HLSSBRStreaming","__typename":"encoding"}],"projectTeamContent":[],"relatedTags":[{"id":105056707,"headline":null,"tagName":"Government taxation and revenue","tagNameFormatted":"government taxa","tagNameFormattedFull":"government taxation and revenue","type":"tag","__typename":"tag"},{"id":105060068,"headline":null,"tagName":"National taxes","tagNameFormatted":"national taxes","tagNameFormattedFull":"national taxes","type":"tag","__typename":"tag"},{"id":10000289,"headline":null,"tagName":"United Kingdom","tagNameFormatted":"united kingdom","tagNameFormattedFull":"united kingdom","type":"place","__typename":"tag"},{"id":107317971,"headline":null,"tagName":"Neutral","tagNameFormatted":"neutral","tagNameFormattedFull":"neutral","type":"tag","__typename":"tag"}],"relatedTagsFilteredFormatted":"government taxa|national taxes|united kingdom|neutral","relatedTagsFilteredFormattedFull":"government taxation and revenue|national taxes|united kingdom|neutral","additionalSectionContent":[{"id":10000527,"headline":"Asia Markets","tagName":"Asia Markets","tagNameFormatted":"asia markets","tagNameFormattedFull":"asia markets","type":"franchise","__typename":"tag"},{"id":107422700,"headline":"UK Votes","tagName":"UK Votes","tagNameFormatted":"uk votes","tagNameFormattedFull":"uk votes","type":"franchise","__typename":"tag"},{"id":100013937,"headline":"UK Government Bonds","tagName":"UK Government Bonds","tagNameFormatted":"uk government b","tagNameFormattedFull":"uk government bonds","type":"franchise","__typename":"tag"},{"id":10000861,"headline":"London Stock Exchange","tagName":"London Stock Exchange","tagNameFormatted":"london stock ex","tagNameFormattedFull":"london stock exchange","type":"franchise","__typename":"tag"},{"id":10001075,"headline":"Taxes","tagName":"Taxes","tagNameFormatted":"taxes","tagNameFormattedFull":"taxes","type":"franchise","__typename":"tag"}],"additionalSectionContentFormatted":"asia markets|uk votes|uk government b|london stock ex|taxes","additionalSectionContentFormattedFull":"asia markets|uk votes|uk government bonds|london stock exchange|taxes","relatedVideoContent":[],"dateLastPublished":"2024-07-05T07:09:53+0000","sectionHierarchy":[{"id":15837856,"tagName":"CNBC TV","tagNameFormatted":"cnbc tv","tagNameFormattedFull":"cnbc tv","order":4,"__typename":"sectionHierarchy"},{"id":15839263,"tagName":"Top Videos","tagNameFormatted":"top videos","tagNameFormattedFull":"top videos","order":3,"__typename":"sectionHierarchy"},{"id":100010039,"tagName":"Asia Business Day","tagNameFormatted":"asia business d","tagNameFormattedFull":"asia business day","order":2,"__typename":"sectionHierarchy"},{"id":15838831,"tagName":"Asia: Squawk Box","tagNameFormatted":"asia squawk box","tagNameFormattedFull":"asia squawk box","order":1,"__typename":"sectionHierarchy"}],"sectionHierarchyFormatted":"cnbc tv|top videos|asia business d|asia squawk box","sectionHierarchyFormattedFull":"cnbc tv|top videos|asia business day|asia squawk box","projectContent":[],"image":null,"section":{"headline":"Squawk Box Asia","id":15838831,"subType":"news_show","tagName":"Asia: Squawk Box","tagNameFormatted":"asia squawk box","tagNameFormattedFull":"asia squawk box","title":"Squawk Box (Asia) - CNBC","url":"https:\u002F\u002Fwww.cnbc.com\u002Fasia-squawk-box\u002F","__typename":"franchise"},"projectTeamContentFormatted":"NA","projectTeamContentFormattedFull":"NA","projectContentFormatted":"NA","projectContentFormattedFull":"NA","creatorOverwriteFormatted":"NA","sourceOrganizationFormatted":"cnbc asia sourc","sourceOrganizationFormattedFull":"cnbc asia source","authorFormatted":"NA","authorFormattedFull":"NA","dateFirstPublished":"2024-07-05T07:09:53+0000","subDomain":"https:\u002F\u002Fwww.cnbc.com","liveURL":"\u002Fvideo\u002F2024\u002F07\u002F05\u002Fuks-labour-could-announce-tax-changes-quicker-than-expected-teneo.html","pageName":"7000344850|video\u002F2024\u002F07\u002F05\u002Fuks-labour-could-announce-tax-changes-quicker-than-expected-teneo","shortDatePublished":"07\u002F05\u002F2024","shortDateLastPublished":"07\u002F05\u002F2024","shortDateFirstPublished":"07\u002F05\u002F2024","airDate":"7\u002F5\u002F2024","comScoreC2":"1000004","comScoreC3":"*null","comScoreC4":"CNBC.com VOD","comScoreC6":"*null","dayPart":"Others","duration":195,"network":"CNBC","platform":"web","playbackURL":"\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F672b7c1bed894759abd225bda87f4f76\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","playerConfig":{"autoPlay":false,"workflow":"VOD","sticky":true,"endCard":{"timer":5},"embedURL":"https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid={VID}","hlshtml":true,"primary":"html5","share":true,"parsely":true,"playbackRateControls":false,"fwassetId":"cnbc_7000344850","mediaid":"cnbc_7000344850","key":"+9o3ihbMIU8\u002FixFry35xlHnkQ9tikKg9TU0io1QbWXfpeR0q","playList":false,"sharing":{"sites":["facebook","twitter","linkedin"],"link":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2024\u002F07\u002F05\u002Fuks-labour-could-announce-tax-changes-quicker-than-expected-teneo.html","code":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000344850 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"mobileSFID":"7003948","IE11Profile":"169843:nbcu_web_flash_cs_moat_https","advertising":{"client":"freewheel","creativeTimeout":4000,"requestTimeout":4000,"vpaidcontrols":true,"freewheel":{"sectionid":"cnbc_inline_vod","networkid":169843,"profileid":"169843:nbcu_mobileweb_js_cs_moat_https","adManagerURL":"https:\u002F\u002Fmssl.fwmrm.net\u002Flibs\u002Fadm\u002F6.35.0\u002FAdManager.js","serverid":"\u002F\u002F29773.v.fwmrm.net\u002Fad\u002Fp\u002F1","sfid":"7006049","afid":"137705375","custom":{"metr":"1023","sfid":"7006049","afid":"137705375"}},"schedule":{"adbreak":{"offset":"pre","tag":"placeholder_preroll"}}},"analytics":{"onSite":true,"omniture":{"playername":"JW_Player","playerversion":"Universal","daypart":"Others","assetstatus":"Unrestricted","videoprogram":{"live":"iconic"},"videocontent":"Linear","title":"{partnername} Vod","guid":"{partnername} Vod","share":{"linksharepev2":"Video Control Rack","providerepev2":"Share","eVar15":"Video:Vod:","linktrknav":"video:share:Vod:","eVar14":": Share Published"}}},"embed":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000344850 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"playerTech":"JW Player","subType":"clips","thumbnail":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108001893-17201612211720161219-35243006224-1080pnbcnews.jpg?v=1720161220","usageRule":"NA","vcpsId":7000344850,"videoStatus":"Unrestricted","uploadDate":"2024-07-05T06:27:47+0000","__typename":"cnbcvideo"},{"id":108001901,"title":"House building sector to see most positive impact from Labour government, researcher says","type":"cnbcvideo","brand":"cnbc","linkHeadline":null,"shorterHeadline":"House building sector to see most positive impact from Labour government: researcher","premium":false,"native":false,"promoImage":{"id":108001902,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108001902-17201626451720162642-35243207598-1080pnbcnews.jpg?v=1720162644","__typename":"infographic"},"author":[],"url":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2024\u002F07\u002F05\u002Fhousebuilding-sector-to-see-most-positive-impact-from-labour-government-analyst-says.html","creatorOverwrite":null,"datePublished":"2024-07-05T07:02:11+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Fri, Jul 5th 2024","sourceOrganization":[{"id":100005495,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Europe","__typename":"source","slug":"CNBC Europe Source","tagName":"CNBC Europe Source","tagNameFormatted":"cnbc europe sou","tagNameFormattedFull":"cnbc europe source"}],"seoTitle":"Housebuilding sector to see most positive impact from Labour government: researcher","headline":"House building sector to see most positive impact from Labour government, researcher says","tagName":null,"tagNameFormatted":"NA","tagNameFormattedFull":"NA","slug":"Housebuilding sector to see most positive impact from Labour government, analyst says  1720162642","description":"Mark Fielding, head of European capital goods research at RBC Capital Markets, weighs in on the impact that the newly elected Labour government could have on stock markets.","encodings":[{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F070314de3b5c4936a4074e3199348514\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_1_HLSMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM07D05\u002F7000344853\u002F1720162642-35243207598-hd_H264_126K.mp4","formatName":"mpeg4_200000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM07D05\u002F7000344853\u002F1720162642-35243207598-hd_L.mp4","formatName":"mpeg4_500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM07D05\u002F7000344853\u002F1720162642-35243207598-hd_mp3w_048K.mp3","formatName":"mpeg3_48000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM07D05\u002F7000344853\u002F1720162642-35243207598-hd_mp3w_128K.mp3","formatName":"mpeg3_128000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM07D05\u002F7000344853\u002F1720162642-35243207598-hd_H264_1M_720x405.mp4","formatName":"mpeg4_1100000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM07D05\u002F7000344853\u002F1720162642-35243207598-hd.vtt","formatName":"WebVTT_0_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM07D05\u002F7000344853\u002F1720162642-35243207598-hd_H264_480x270_25p_500K.mp4","formatName":"mpeg4_600000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM07D05\u002F7000344853\u002F1720162642-35243207598-hd_MBR_4500.mp4","formatName":"mpeg4_4500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbc-hls.akamaized.net\u002F7000344853\u002FMBR\u002Fdbbaf7a0-3a9b-11ef-bbe3-8bb85ef41c74\u002F1720162642-35243207598-hd.m3u8","formatName":"mpeg4_1_CMAFMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F070314de3b5c4936a4074e3199348514\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_500000_HLSSBRStreaming","__typename":"encoding"}],"projectTeamContent":[],"relatedTags":[{"id":105083439,"headline":null,"tagName":"Stock indices and averages","tagNameFormatted":"stock indices a","tagNameFormattedFull":"stock indices and averages","type":"tag","__typename":"tag"},{"id":105089277,"headline":null,"tagName":"Corporate stock","tagNameFormatted":"corporate stock","tagNameFormattedFull":"corporate stock","type":"tag","__typename":"tag"},{"id":105056648,"headline":null,"tagName":"Politics","tagNameFormatted":"politics","tagNameFormattedFull":"politics","type":"tag","__typename":"tag"},{"id":105321277,"headline":null,"tagName":"Breaking News: Politics","tagNameFormatted":"breaking news p","tagNameFormattedFull":"breaking news politics","type":"tag","__typename":"tag"},{"id":105056716,"headline":null,"tagName":"Markets","tagNameFormatted":"markets","tagNameFormattedFull":"markets","type":"tag","__typename":"tag"},{"id":105536989,"headline":null,"tagName":"Breaking News: Markets","tagNameFormatted":"breaking news m","tagNameFormattedFull":"breaking news markets","type":"tag","__typename":"tag"},{"id":107317971,"headline":null,"tagName":"Neutral","tagNameFormatted":"neutral","tagNameFormattedFull":"neutral","type":"tag","__typename":"tag"}],"relatedTagsFilteredFormatted":"stock indices a|corporate stock|politics|breaking news p|markets|breaking news m|neutral","relatedTagsFilteredFormattedFull":"stock indices and averages|corporate stock|politics|breaking news politics|markets|breaking news markets|neutral","additionalSectionContent":[{"id":107422700,"headline":"UK Votes","tagName":"UK Votes","tagNameFormatted":"uk votes","tagNameFormattedFull":"uk votes","type":"franchise","__typename":"tag"},{"id":102,"headline":"Markets","tagName":"Markets","tagNameFormatted":"markets","tagNameFormattedFull":"markets","type":"franchise","__typename":"tag"},{"id":10000113,"headline":"Politics","tagName":"Politics","tagNameFormatted":"politics","tagNameFormattedFull":"politics","type":"franchise","__typename":"tag"},{"id":10000528,"headline":"Europe Markets","tagName":"Europe Markets","tagNameFormatted":"europe markets","tagNameFormattedFull":"europe markets","type":"franchise","__typename":"tag"}],"additionalSectionContentFormatted":"uk votes|markets|politics|europe markets","additionalSectionContentFormattedFull":"uk votes|markets|politics|europe markets","relatedVideoContent":[],"dateLastPublished":"2024-07-05T07:02:11+0000","sectionHierarchy":[{"id":15837856,"tagName":"CNBC TV","tagNameFormatted":"cnbc tv","tagNameFormattedFull":"cnbc tv","order":4,"__typename":"sectionHierarchy"},{"id":15839263,"tagName":"Top Videos","tagNameFormatted":"top videos","tagNameFormattedFull":"top videos","order":3,"__typename":"sectionHierarchy"},{"id":100010042,"tagName":"Europe Business Day","tagNameFormatted":"europe business","tagNameFormattedFull":"europe business day","order":2,"__typename":"sectionHierarchy"},{"id":15838652,"tagName":"Squawk Box Europe","tagNameFormatted":"squawk box euro","tagNameFormattedFull":"squawk box europe","order":1,"__typename":"sectionHierarchy"}],"sectionHierarchyFormatted":"cnbc tv|top videos|europe business|squawk box euro","sectionHierarchyFormattedFull":"cnbc tv|top videos|europe business day|squawk box europe","projectContent":[],"image":null,"section":{"headline":"Squawk Box Europe","id":15838652,"subType":"news_show","tagName":"Squawk Box Europe","tagNameFormatted":"squawk box euro","tagNameFormattedFull":"squawk box europe","title":"Squawk Box Europe","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsquawk-box-europe\u002F","__typename":"franchise"},"projectTeamContentFormatted":"NA","projectTeamContentFormattedFull":"NA","projectContentFormatted":"NA","projectContentFormattedFull":"NA","creatorOverwriteFormatted":"NA","sourceOrganizationFormatted":"cnbc europe sou","sourceOrganizationFormattedFull":"cnbc europe source","authorFormatted":"NA","authorFormattedFull":"NA","dateFirstPublished":"2024-07-05T07:02:11+0000","subDomain":"https:\u002F\u002Fwww.cnbc.com","liveURL":"\u002Fvideo\u002F2024\u002F07\u002F05\u002Fhousebuilding-sector-to-see-most-positive-impact-from-labour-government-analyst-says.html","pageName":"7000344853|video\u002F2024\u002F07\u002F05\u002Fhousebuilding-sector-to-see-most-positive-impact-from-labour-government-analyst-says","shortDatePublished":"07\u002F05\u002F2024","shortDateLastPublished":"07\u002F05\u002F2024","shortDateFirstPublished":"07\u002F05\u002F2024","airDate":"7\u002F5\u002F2024","comScoreC2":"1000004","comScoreC3":"*null","comScoreC4":"CNBC.com VOD","comScoreC6":"*null","dayPart":"Others","duration":240,"network":"CNBC","platform":"web","playbackURL":"\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F070314de3b5c4936a4074e3199348514\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","playerConfig":{"autoPlay":false,"workflow":"VOD","sticky":true,"endCard":{"timer":5},"embedURL":"https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid={VID}","hlshtml":true,"primary":"html5","share":true,"parsely":true,"playbackRateControls":false,"fwassetId":"cnbc_7000344853","mediaid":"cnbc_7000344853","key":"+9o3ihbMIU8\u002FixFry35xlHnkQ9tikKg9TU0io1QbWXfpeR0q","playList":false,"sharing":{"sites":["facebook","twitter","linkedin"],"link":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2024\u002F07\u002F05\u002Fhousebuilding-sector-to-see-most-positive-impact-from-labour-government-analyst-says.html","code":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000344853 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"mobileSFID":"7003948","IE11Profile":"169843:nbcu_web_flash_cs_moat_https","advertising":{"client":"freewheel","creativeTimeout":4000,"requestTimeout":4000,"vpaidcontrols":true,"freewheel":{"sectionid":"cnbc_inline_vod","networkid":169843,"profileid":"169843:nbcu_mobileweb_js_cs_moat_https","adManagerURL":"https:\u002F\u002Fmssl.fwmrm.net\u002Flibs\u002Fadm\u002F6.35.0\u002FAdManager.js","serverid":"\u002F\u002F29773.v.fwmrm.net\u002Fad\u002Fp\u002F1","sfid":"7006049","afid":"137705375","custom":{"metr":"1023","sfid":"7006049","afid":"137705375"}},"schedule":{"adbreak":{"offset":"pre","tag":"placeholder_preroll"}}},"analytics":{"onSite":true,"omniture":{"playername":"JW_Player","playerversion":"Universal","daypart":"Others","assetstatus":"Unrestricted","videoprogram":{"live":"iconic"},"videocontent":"Linear","title":"{partnername} Vod","guid":"{partnername} Vod","share":{"linksharepev2":"Video Control Rack","providerepev2":"Share","eVar15":"Video:Vod:","linktrknav":"video:share:Vod:","eVar14":": Share Published"}}},"embed":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000344853 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"playerTech":"JW Player","subType":"clips","thumbnail":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108001902-17201626451720162642-35243207598-1080pnbcnews.jpg?v=1720162644","usageRule":"NA","vcpsId":7000344853,"videoStatus":"Unrestricted","uploadDate":"2024-07-05T06:57:24+0000","__typename":"cnbcvideo"}],"__typename":"twoColumnImageDense"},"__typename":"module"},{"name":"twoColumnImageDense","source":"106858698","canChangeLayout":true,"canChangeSource":true,"serverRenderPolicy":null,"attributes":{"truncate":{"firstElement":130,"otherElements":110},"displayThumbnailPreviews":false},"options":{"pageSize":8,"promoted":true},"data":{"id":106858698,"brand":"cnbc","eyebrow":"Sustainable Future","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsustainable-future\u002F","assets":[{"id":108019435,"title":"This startup will sell methane-eating microbes to Whole Foods","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":null,"shorterHeadline":"This startup will sell methane-eating microbes to Whole Foods","premium":false,"native":false,"promoImage":{"id":108019808,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108019808-1723561528856-josh_silverman_still.jpg?v=1723561614","__typename":"infographic"},"author":[{"id":15838025,"name":"Diana Olick","url":"https:\u002F\u002Fwww.cnbc.com\u002Fdiana-olick\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F13\u002Fthis-startup-will-sell-methane-eating-microbes-to-whole-foods.html","creatorOverwrite":null,"datePublished":"2024-08-13T15:41:08+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Tue, Aug 13th 2024","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":108013364,"title":"Air New Zealand becomes first major airline to scrap its 2030 climate goal","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":null,"shorterHeadline":"Air New Zealand becomes first major airline to scrap its 2030 climate goal","premium":false,"native":false,"promoImage":{"id":108013366,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108013366-1722329883420-gettyimages-1848364916-New_Zealand_v_Pakistan_-_Womens_ODI_Game_2.jpeg?v=1722330013","__typename":"infographic"},"author":[{"id":104030578,"name":"Sam Meredith","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsam-meredith\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F07\u002F30\u002Fair-new-zealand-becomes-first-major-airline-to-drop-2030-climate-goal.html","creatorOverwrite":null,"datePublished":"2024-07-30T10:47:37+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Tue, Jul 30th 2024","sourceOrganization":[{"id":100005495,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Europe","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":108010918,"title":"World shatters heat record for the second time in just two days","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":null,"shorterHeadline":"World shatters heat record for the second time in just two days","premium":false,"native":false,"promoImage":{"id":108010915,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108010915-1721813857760-gettyimages-2162379754-AA_22072024_1783788.jpeg?v=1721814514","__typename":"infographic"},"author":[{"id":104030578,"name":"Sam Meredith","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsam-meredith\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F07\u002F24\u002Fclimate-crisis-world-shatters-heat-record-for-second-consecutive-day.html","creatorOverwrite":null,"datePublished":"2024-07-24T10:47:58+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Wed, Jul 24th 2024","sourceOrganization":[{"id":100005495,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Europe","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":108010466,"title":"World logs hottest day since records began — with fresh highs expected in the coming months","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":null,"shorterHeadline":"World logs hottest day since records began, researchers say","premium":false,"native":false,"promoImage":{"id":108010470,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108010470-1721745633920-gettyimages-2162359156-valicchia-notitle240721_npXYf.jpeg?v=1721745865","__typename":"infographic"},"author":[{"id":104030578,"name":"Sam Meredith","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsam-meredith\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F07\u002F23\u002Fclimate-crisis-world-logs-hottest-day-since-records-began.html","creatorOverwrite":null,"datePublished":"2024-07-23T15:57:33+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Fri, Jul 26th 2024","sourceOrganization":[{"id":100005495,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Europe","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":108010240,"title":"Scientists discover ‘dark oxygen’ being produced by seabed metals in ground-breaking study","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":null,"shorterHeadline":"Scientists discover ‘dark oxygen’ in depths of Pacific Ocean in landmark study","premium":false,"native":false,"promoImage":{"id":108010242,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108010242-1721728481401-gettyimages-1298585936-9756.jpeg?v=1721732710","__typename":"infographic"},"author":[{"id":104030578,"name":"Sam Meredith","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsam-meredith\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F07\u002F23\u002Fdark-oxygen-discovered-in-the-deep-sea-in-groundbreaking-study.html","creatorOverwrite":null,"datePublished":"2024-07-23T11:37:33+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Wed, Jul 24th 2024","sourceOrganization":[{"id":100005495,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Europe","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":108003928,"title":"This cement startup says it goes beyond net zero to true zero carbon emissions","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":null,"shorterHeadline":"This cement startup says it goes beyond net zero to true zero carbon emissions","premium":false,"native":false,"promoImage":{"id":108002797,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108002797-1720463879148-thumbnail_720.jpg?v=1720463907","__typename":"infographic"},"author":[{"id":15838025,"name":"Diana Olick","url":"https:\u002F\u002Fwww.cnbc.com\u002Fdiana-olick\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F07\u002F10\u002Fsublime-systems-says-its-cement-made-with-zero-carbon-emissions.html","creatorOverwrite":null,"datePublished":"2024-07-10T16:11:58+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Wed, Jul 10th 2024","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107434427,"title":"Composting could be set for U.S. boom, and it needs one, decades behind recycling","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":null,"shorterHeadline":"Composting set for U.S. boom, and it needs one, decades behind recycling","premium":false,"native":false,"promoImage":{"id":107434491,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107434491-1719524509288-gettyimages-825882022-compostbucket.jpeg?v=1719524529","__typename":"infographic"},"author":[{"id":107064572,"name":"Cheryl Winokur Munk","url":"https:\u002F\u002Fwww.cnbc.com\u002Fcheryl-winokur-munk\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F29\u002Fcomposting-food-waste-set-for-boom-decades-behind-recycling.html","creatorOverwrite":null,"datePublished":"2024-06-29T13:01:05+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Sun, Jun 30th 2024","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107431071,"title":"Extreme heat is turning electricity cutoffs into new political battle for power companies","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":null,"shorterHeadline":"Heat waves turn electricity cutoff into new political battle for power companies","premium":false,"native":false,"promoImage":{"id":107431099,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107431099-1718889444778-gettyimages-1519801297-AFP_33NG9VR.jpeg?v=1718889456","__typename":"infographic"},"author":[{"id":107345540,"name":"Kevin Williams","url":"https:\u002F\u002Fwww.cnbc.com\u002Fkevin-williams\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F06\u002F21\u002Fheat-waves-make-residential-power-cutoff-matter-of-life-and-death.html","creatorOverwrite":null,"datePublished":"2024-06-21T12:06:05+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Fri, Jun 21st 2024","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"}],"__typename":"twoColumnImageDense"},"__typename":"module"},{"name":"twoColumnImageDense","source":"105749512","canChangeLayout":true,"canChangeSource":true,"serverRenderPolicy":null,"attributes":{"truncate":{"firstElement":130,"otherElements":110},"displayThumbnailPreviews":false},"options":{"pageSize":8,"promoted":true},"data":{"id":105749512,"brand":"cnbc","eyebrow":"CNBC Travel","url":"https:\u002F\u002Fwww.cnbc.com\u002Fcnbc-travel\u002F","assets":[{"id":108021264,"title":"'The World' is a luxury ship that travels the world full time — here's how much an apartment on it costs","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":null,"shorterHeadline":"This ship travels the world full time — here's how much an apartment on it costs","premium":false,"native":false,"promoImage":{"id":108021324,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108021324-1723780937913-20160908_Santorini_Greece_Chief_Officer_Drone_1.jpg?v=1724121843","__typename":"infographic"},"author":[{"id":106203801,"name":"Monica Pitrelli","url":"https:\u002F\u002Fwww.cnbc.com\u002Fmonica-pitrelli\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fship-that-travels-the-world-full-time-heres-how-much-it-costs.html","creatorOverwrite":null,"datePublished":"2024-08-21T01:34:13+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Wed, Aug 21st 2024","sourceOrganization":[{"id":100005489,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Asia","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":108022125,"title":"'Travel is too expensive right now': Americans are spending less or skipping trips altogether  ","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":null,"shorterHeadline":"'Travel is too expensive right now': Americans spend less or skip trips altogether  ","premium":false,"native":false,"promoImage":{"id":108022147,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108022147-1724079839333-gettyimages-1459911859-inflation-woman-luggage.jpeg?v=1724079976","__typename":"infographic"},"author":[{"id":106203801,"name":"Monica Pitrelli","url":"https:\u002F\u002Fwww.cnbc.com\u002Fmonica-pitrelli\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F20\u002Ftravel-is-too-expensive-now-travel-demand-falls-under-cost-concerns-.html","creatorOverwrite":null,"datePublished":"2024-08-20T04:10:09+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Tue, Aug 20th 2024","sourceOrganization":[{"id":100005489,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Asia","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":108020842,"title":"How the ultra wealthy travel in Singapore","type":"cnbcvideo","brand":"cnbc","linkHeadline":null,"shorterHeadline":"How the ultra wealthy travel in Singapore","premium":false,"native":false,"promoImage":{"id":108021557,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108021557-GettyImages-170463228.jpg?v=1723821333","__typename":"infographic"},"author":[],"url":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2024\u002F08\u002F19\u002Fhow-the-ultra-wealthy-travel-in-singapore.html","creatorOverwrite":null,"datePublished":"2024-08-18T23:21:43+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Mon, Aug 19th 2024","sourceOrganization":[{"id":100005489,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Asia","__typename":"source","slug":"CNBC Asia Source","tagName":"CNBC Asia Source","tagNameFormatted":"cnbc asia sourc","tagNameFormattedFull":"cnbc asia source"}],"seoTitle":"How the ultra wealthy travel in Singapore","headline":"How the ultra wealthy travel in Singapore","tagName":null,"tagNameFormatted":"NA","tagNameFormattedFull":"NA","slug":"How the ultra wealthy travel in Singapore","description":"Locals call it the \"little red dot,\" after its diminutive proportions on world maps, but Singapore punches above its weight when it comes to offering travelers luxury living.","encodings":[{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F92929ee6e4f14f5baf2f8f67f2dae6b1\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_1_HLSMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM08D19\u002F7000349093\u002F1723727854338-FIRSTCLASSSINGAPOREFULLSEQUENCECUTDOWN_SRT_H264_126K.mp4","formatName":"mpeg4_200000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM08D19\u002F7000349093\u002F1723727854338-FIRSTCLASSSINGAPOREFULLSEQUENCECUTDOWN_SRT_L.mp4","formatName":"mpeg4_500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM08D19\u002F7000349093\u002F1723727854338-FIRSTCLASSSINGAPOREFULLSEQUENCECUTDOWN_SRT_mp3w_048K.mp3","formatName":"mpeg3_48000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM08D19\u002F7000349093\u002F1723727854338-FIRSTCLASSSINGAPOREFULLSEQUENCECUTDOWN_SRT_mp3w_128K.mp3","formatName":"mpeg3_128000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM08D19\u002F7000349093\u002F1723727854338-FIRSTCLASSSINGAPOREFULLSEQUENCECUTDOWN_SRT_H264_1M_720x405.mp4","formatName":"mpeg4_1100000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM08D19\u002F7000349093\u002F1723727854338-FIRSTCLASSSINGAPOREFULLSEQUENCECUTDOWN_SRT.vtt","formatName":"WebVTT_0_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM08D19\u002F7000349093\u002F1723727854338-FIRSTCLASSSINGAPOREFULLSEQUENCECUTDOWN_SRT_H264_480x270_25p_500K.mp4","formatName":"mpeg4_600000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM08D19\u002F7000349093\u002F1723727854338-FIRSTCLASSSINGAPOREFULLSEQUENCECUTDOWN_SRT_MBR_4500.mp4","formatName":"mpeg4_4500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbc-hls.akamaized.net\u002F7000349093\u002FMBR\u002F6de72ad0-5e47-11ef-85d2-0d76772f7366\u002F1723727854338-FIRSTCLASSSINGAPOREFULLSEQUENCECUTDOWN_SRT.m3u8","formatName":"mpeg4_1_CMAFMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F92929ee6e4f14f5baf2f8f67f2dae6b1\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_500000_HLSSBRStreaming","__typename":"encoding"}],"projectTeamContent":[{"id":105745767,"headline":"CNBC International Digital Original Video","tagName":"CNBC International Digital Original Video","tagNameFormatted":"cnbc internatio","tagNameFormattedFull":"cnbc international digital original video","__typename":"team"}],"relatedTags":[{"id":10000530,"headline":null,"tagName":"Singapore","tagNameFormatted":"singapore","tagNameFormattedFull":"singapore","type":"place","__typename":"tag"},{"id":10000050,"headline":null,"tagName":"France","tagNameFormatted":"france","tagNameFormattedFull":"france","type":"place","__typename":"tag"},{"id":105056562,"headline":null,"tagName":"Travel","tagNameFormatted":"travel","tagNameFormattedFull":"travel","type":"tag","__typename":"tag"},{"id":107317971,"headline":null,"tagName":"Neutral","tagNameFormatted":"neutral","tagNameFormattedFull":"neutral","type":"tag","__typename":"tag"},{"id":105056578,"headline":null,"tagName":"Business","tagNameFormatted":"business","tagNameFormattedFull":"business","type":"tag","__typename":"tag"},{"id":106910802,"headline":null,"tagName":"Intl Digital Video","tagNameFormatted":"intl digital vi","tagNameFormattedFull":"intl digital video","type":"tag","__typename":"tag"}],"relatedTagsFilteredFormatted":"singapore|france|travel|neutral|business|intl digital vi","relatedTagsFilteredFormattedFull":"singapore|france|travel|neutral|business|intl digital video","additionalSectionContent":[{"id":104266428,"headline":"Digital Original","tagName":"Digital Original","tagNameFormatted":"digital origina","tagNameFormattedFull":"digital original","type":"franchise","__typename":"tag"},{"id":15839263,"headline":"Top Videos","tagName":"Top Videos","tagNameFormatted":"top videos","tagNameFormattedFull":"top videos","type":"franchise","__typename":"tag"},{"id":46,"headline":"Video","tagName":"Video","tagNameFormatted":"video","tagNameFormattedFull":"video","type":"franchise","__typename":"tag"},{"id":15837856,"headline":"CNBC TV","tagName":"CNBC TV","tagNameFormatted":"cnbc tv","tagNameFormattedFull":"cnbc tv","type":"franchise","__typename":"tag"},{"id":103470373,"headline":"International Digital Originals","tagName":"International Digital Originals","tagNameFormatted":"international d","tagNameFormattedFull":"international digital originals","type":"franchise","__typename":"tag"},{"id":100860757,"headline":"Art and Culture","tagName":"Art and Culture","tagNameFormatted":"art and culture","tagNameFormattedFull":"art and culture","type":"franchise","__typename":"tag"},{"id":104732712,"headline":"CNBC First Class","tagName":"Make It - CNBC First Class","tagNameFormatted":"make it cnbc fi","tagNameFormattedFull":"make it cnbc first class","type":"franchise","__typename":"tag"},{"id":105749725,"headline":null,"tagName":null,"tagNameFormatted":"NA","tagNameFormattedFull":"NA","type":null,"__typename":"tag"},{"id":10000739,"headline":"Travel","tagName":"Travel","tagNameFormatted":"travel","tagNameFormattedFull":"travel","type":"franchise","__typename":"tag"},{"id":106196474,"headline":"Video","tagName":"CNBC Travel: Video","tagNameFormatted":"cnbc travel vid","tagNameFormattedFull":"cnbc travel video","type":"franchise","__typename":"tag"}],"additionalSectionContentFormatted":"digital origina|top videos|video|cnbc tv|international d|art and culture|make it cnbc fi|travel|cnbc travel vid","additionalSectionContentFormattedFull":"digital original|top videos|video|cnbc tv|international digital originals|art and culture|make it cnbc first class|travel|cnbc travel video","relatedVideoContent":[],"dateLastPublished":"2024-08-19T16:31:01+0000","sectionHierarchy":[{"id":10001147,"tagName":"Business News","tagNameFormatted":"business news","tagNameFormattedFull":"business news","order":3,"__typename":"sectionHierarchy"},{"id":10001150,"tagName":"Life","tagNameFormatted":"life","tagNameFormattedFull":"life","order":2,"__typename":"sectionHierarchy"},{"id":105749512,"tagName":"CNBC Travel","tagNameFormatted":"cnbc travel","tagNameFormattedFull":"cnbc travel","order":1,"__typename":"sectionHierarchy"}],"sectionHierarchyFormatted":"business news|life|cnbc travel","sectionHierarchyFormattedFull":"business news|life|cnbc travel","projectContent":[],"image":null,"section":{"headline":"CNBC Travel","id":105749512,"subType":"special_report","tagName":"CNBC Travel","tagNameFormatted":"cnbc travel","tagNameFormattedFull":"cnbc travel","title":"CNBC Travel","url":"https:\u002F\u002Fwww.cnbc.com\u002Fcnbc-travel\u002F","__typename":"franchise"},"projectTeamContentFormatted":"cnbc internatio","projectTeamContentFormattedFull":"cnbc international digital original video","projectContentFormatted":"NA","projectContentFormattedFull":"NA","creatorOverwriteFormatted":"NA","sourceOrganizationFormatted":"cnbc asia sourc","sourceOrganizationFormattedFull":"cnbc asia source","authorFormatted":"NA","authorFormattedFull":"NA","dateFirstPublished":"2024-08-18T23:21:43+0000","subDomain":"https:\u002F\u002Fwww.cnbc.com","liveURL":"\u002Fvideo\u002F2024\u002F08\u002F19\u002Fhow-the-ultra-wealthy-travel-in-singapore.html","pageName":"7000348806|video\u002F2024\u002F08\u002F19\u002Fhow-the-ultra-wealthy-travel-in-singapore","shortDatePublished":"08\u002F18\u002F2024","shortDateLastPublished":"08\u002F19\u002F2024","shortDateFirstPublished":"08\u002F18\u002F2024","airDate":"8\u002F18\u002F2024","comScoreC2":"1000004","comScoreC3":"*null","comScoreC4":"CNBC.com VOD","comScoreC6":"*null","dayPart":"Others","duration":917,"network":"CNBC","platform":"web","playbackURL":"\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F92929ee6e4f14f5baf2f8f67f2dae6b1\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","playerConfig":{"autoPlay":false,"workflow":"VOD","sticky":true,"endCard":{"timer":5},"embedURL":"https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid={VID}","hlshtml":true,"primary":"html5","share":true,"parsely":true,"playbackRateControls":false,"fwassetId":"cnbc_7000348806","mediaid":"cnbc_7000348806","key":"+9o3ihbMIU8\u002FixFry35xlHnkQ9tikKg9TU0io1QbWXfpeR0q","playList":false,"sharing":{"sites":["facebook","twitter","linkedin"],"link":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2024\u002F08\u002F19\u002Fhow-the-ultra-wealthy-travel-in-singapore.html","code":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000348806 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"mobileSFID":"7003948","IE11Profile":"169843:nbcu_web_flash_cs_moat_https","advertising":{"client":"freewheel","creativeTimeout":4000,"requestTimeout":4000,"vpaidcontrols":true,"freewheel":{"sectionid":"cnbc_inline_vod","networkid":169843,"profileid":"169843:nbcu_mobileweb_js_cs_moat_https","adManagerURL":"https:\u002F\u002Fmssl.fwmrm.net\u002Flibs\u002Fadm\u002F6.35.0\u002FAdManager.js","serverid":"\u002F\u002F29773.v.fwmrm.net\u002Fad\u002Fp\u002F1","sfid":"7006049","afid":"137705375","custom":{"metr":"1023","sfid":"7006049","afid":"137705375"}},"schedule":{"adbreak":{"offset":"pre","tag":"placeholder_preroll"}}},"analytics":{"onSite":true,"omniture":{"playername":"JW_Player","playerversion":"Universal","daypart":"Others","assetstatus":"Unrestricted","videoprogram":{"live":"iconic"},"videocontent":"Linear","title":"{partnername} Vod","guid":"{partnername} Vod","share":{"linksharepev2":"Video Control Rack","providerepev2":"Share","eVar15":"Video:Vod:","linktrknav":"video:share:Vod:","eVar14":": Share Published"}}},"embed":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000348806 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"playerTech":"JW Player","subType":"digital_original","thumbnail":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108021557-GettyImages-170463228.jpg?v=1723821333","usageRule":"NA","vcpsId":7000348806,"videoStatus":"Unrestricted","uploadDate":"2024-08-15T12:07:43+0000","__typename":"cnbcvideo"},{"id":108020688,"title":"Planning a luxury trip to Singapore? Here's where to stay, shop and eat","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":null,"shorterHeadline":"Planning a luxury trip to Singapore? Here's where to stay, shop and eat","premium":false,"native":false,"promoImage":{"id":108021366,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108021366-1723801006288-gettyimages-1525309580-tae01037.jpeg?v=1723801020","__typename":"infographic"},"author":[{"id":107432097,"name":"Zenith Wong","url":"https:\u002F\u002Fwww.cnbc.com\u002Fzenith-wong\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F19\u002Fwhere-to-stay-and-how-to-spend-your-money-in-singapore-.html","creatorOverwrite":null,"datePublished":"2024-08-18T23:04:28+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Mon, Aug 19th 2024","sourceOrganization":[{"id":100005489,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Asia","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":108019521,"title":"A $1.4 million vacation? Take a look inside a yacht that costs that much per week","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":null,"shorterHeadline":"A $1.4 million vacation? Look inside a yacht that costs that much per week","premium":false,"native":false,"promoImage":{"id":108019578,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108019578-1723537731798-7.jpg?v=1723546390","__typename":"infographic"},"author":[],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F15\u002Fhow-much-does-it-cost-to-rent-a-superyacht-try-1point4-million-per-week.html","creatorOverwrite":"MaryLou Costa, contributor ","datePublished":"2024-08-15T23:00:01+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Thu, Aug 15th 2024","sourceOrganization":[{"id":100005489,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Asia","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":108020724,"title":"North Korea to reopen for international visitors, tour operators say","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":null,"shorterHeadline":"North Korea to reopen for international visitors, tour operators say","premium":false,"native":false,"promoImage":{"id":108020744,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108020744-1723701751024-gettyimages-626226146-AFP_II6M9.jpeg?v=1723701885","__typename":"infographic"},"author":[{"id":107370027,"name":"Dylan Butts","url":"https:\u002F\u002Fwww.cnbc.com\u002Fdylan-butts\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F15\u002Fnorth-korea-to-reopen-to-international-visitors-tour-operators-say.html","creatorOverwrite":null,"datePublished":"2024-08-15T06:14:56+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Thu, Aug 15th 2024","sourceOrganization":[{"id":100005489,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Asia","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":108019718,"title":"Monaco is 1 of 6 locations hosting the star-studded E1 — a race thought ‘impossible’ before it began","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":null,"shorterHeadline":"Monaco is 1 of 6 spots hosting the E1 — a race once thought to be ‘impossible’","premium":false,"native":false,"promoImage":{"id":108020026,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108020026-1723582455203-gettyimages-2152480017-11may-dv3_6145_zqyndfky.jpeg?v=1723582765","__typename":"infographic"},"author":[],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F14\u002Fmonaco-hosts-e1-a-new-racing-competition-using-all-electric-boats-.html","creatorOverwrite":"MaryLou Costa, contributer ","datePublished":"2024-08-14T01:50:23+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Tue, Aug 13th 2024","sourceOrganization":[{"id":100005489,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Asia","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":108015348,"title":"An airline now allows women to avoid sitting next to men. Here's how travelers are reacting","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":null,"shorterHeadline":"An airline allows women to avoid sitting next to men. Here's what travelers are saying","premium":false,"native":false,"promoImage":{"id":108017251,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108017251-1722997821565-gettyimages-1510563459-3z6a34534.jpeg?v=1723001485","__typename":"infographic"},"author":[{"id":106915801,"name":"Charmaine Jacob","url":"https:\u002F\u002Fwww.cnbc.com\u002Fcharmaine-jacob\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F07\u002Findigo-allows-women-to-avoid-booking-seats-next-to-men-on-flights.html","creatorOverwrite":null,"datePublished":"2024-08-07T04:14:10+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Wed, Aug 7th 2024","sourceOrganization":[{"id":100005489,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Asia","__typename":"source"}],"__typename":"cnbcnewsstory"}],"__typename":"twoColumnImageDense"},"__typename":"module"},{"name":"twoColumnImageDense","source":"103395579","canChangeLayout":true,"canChangeSource":true,"serverRenderPolicy":null,"attributes":{"truncate":{"firstElement":130,"otherElements":110},"displayThumbnailPreviews":false},"options":{"pageSize":8,"promoted":true},"data":{"id":103395579,"brand":"makeit","eyebrow":"Make It","url":"https:\u002F\u002Fwww.cnbc.com\u002Fmake-it\u002F","assets":[{"id":108022362,"title":"2 in 3 college seniors are stressed about the tight job market—how to stand out, says career counselor who’s advised thousands","type":"cnbcnewsstory","brand":"makeit","linkHeadline":null,"shorterHeadline":"2 in 3 college seniors are stressed about the tight job market","premium":false,"native":false,"promoImage":{"id":108022982,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108022982-1724174049290-gettyimages-1564758108-polina-003.jpeg?v=1724174082","__typename":"infographic"},"author":[{"id":106065560,"name":"Jennifer Liu","url":"https:\u002F\u002Fwww.cnbc.com\u002Fjennifer-liu\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002F2-in-3-college-seniors-are-stressed-about-the-tight-job-market.html","creatorOverwrite":null,"datePublished":"2024-08-21T13:24:29+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"2 hours ago","dateLastPublishedFormattedWithoutTime":"Wed, Aug 21st 2024","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":108021616,"title":"44-year-old’s garage side hustle brings in $148,600 a year: ‘You don’t have to have business experience’","type":"cnbcnewsstory","brand":"makeit","linkHeadline":null,"shorterHeadline":"44-year-old’s garage side hustle brings in $148K\u002Fyear: 'Almost anyone can do it'","premium":false,"native":false,"promoImage":{"id":108023080,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108023080-1724184412456-IMG_9144.jpg?v=1724188639","__typename":"infographic"},"author":[{"id":106988472,"name":"Megan Sauer","url":"https:\u002F\u002Fwww.cnbc.com\u002Fmegan-sauer\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fit-analyst-lucrative-side-hustle-selling-houseplants-online-palmstreet.html","creatorOverwrite":null,"datePublished":"2024-08-21T13:15:02+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"2 hours ago","dateLastPublishedFormattedWithoutTime":"Wed, Aug 21st 2024","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":108022843,"title":"See how far $1,000 goes in every state—you lose $100 of spending power in 3 places","type":"cnbcnewsstory","brand":"makeit","linkHeadline":null,"shorterHeadline":"Map: See how far $1,000 goes in every state","premium":false,"native":false,"promoImage":{"id":108022925,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108022925-1724168979113-gettyimages-187137954-bld115327.jpeg?v=1724170055","__typename":"infographic"},"author":[{"id":107129808,"name":"Kamaron McNair","url":"https:\u002F\u002Fwww.cnbc.com\u002Fkamaron-mcnair\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fmap-how-far-your-money-goes-by-state.html","creatorOverwrite":null,"datePublished":"2024-08-21T13:15:02+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"2 hours ago","dateLastPublishedFormattedWithoutTime":"Wed, Aug 21st 2024","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":108023009,"title":"How much money it takes to be considered wealthy in 12 major U.S. cities","type":"cnbcnewsstory","brand":"makeit","linkHeadline":null,"shorterHeadline":"How much money it takes to be considered wealthy in 12 major U.S. cities","premium":false,"native":false,"promoImage":{"id":107421020,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107421020-1716935073254-gettyimages-1449092908-hv6b0015.jpeg?v=1724188537","__typename":"infographic"},"author":[{"id":106977691,"name":"Mike Winters","url":"https:\u002F\u002Fwww.cnbc.com\u002Fmike-winters\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fnet-worth-needed-to-be-considered-wealthy-in-major-us-cities.html","creatorOverwrite":null,"datePublished":"2024-08-21T13:00:01+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"2 hours ago","dateLastPublishedFormattedWithoutTime":"Wed, Aug 21st 2024","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":108002864,"title":"How to be happier, wealthier, and more financially secure by achieving financial wellness","type":"cnbcnewsstory","brand":"makeit","linkHeadline":null,"shorterHeadline":"How to be happier, wealthier, and more financially secure by achieving financial wellness","premium":false,"native":false,"promoImage":{"id":108003471,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108003471-Financial_Wellness_Social_Promo_Horz_Still_01.jpg?v=1720559241","__typename":"infographic"},"author":[{"id":104072488,"name":"Jenna Goudreau","url":"https:\u002F\u002Fwww.cnbc.com\u002Fjenna-goudreau\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F07\u002F10\u002Fachieve-financial-wellness-be-happier-wealthier-and-more-secure.html","creatorOverwrite":"CNBC Make It staff","datePublished":"2024-07-10T16:58:13+0000","coverageEndDate":null,"contentClassification":["evergreen"],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Tue, Jul 30th 2024","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":108020760,"title":"These are the 10 best 'workcation' cities in the world for hybrid workers","type":"cnbcnewsstory","brand":"makeit","linkHeadline":null,"shorterHeadline":"These are the 10 best 'workcation' cities in the world for hybrid workers","premium":false,"native":false,"promoImage":{"id":108021952,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108021952-1724048058097-gettyimages-1484097204-2019-budapest-sonya7r4-85-bearbeitet.jpeg?v=1724048193","__typename":"infographic"},"author":[{"id":107018705,"name":"Ernestine Siu","url":"https:\u002F\u002Fwww.cnbc.com\u002Fernestine-siu\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F21\u002Fhere-are-the-10-best-workcation-cities-in-the-world-for-hybrid-workers.html","creatorOverwrite":null,"datePublished":"2024-08-21T07:47:33+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Wed, Aug 21st 2024","sourceOrganization":[{"id":100005489,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Asia","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":108022865,"title":"Blue Zones are home to the longest-living people—4 seamless ways to incorporate their daily habits into your routine","type":"cnbcnewsstory","brand":"makeit","linkHeadline":null,"shorterHeadline":"4 daily habits of the longest-living people you can to your own routine","premium":false,"native":false,"promoImage":{"id":108022953,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108022953-1724171276911-gettyimages-1444231968-derrick-karla-2672-edit.jpeg?v=1724171334","__typename":"infographic"},"author":[{"id":107077230,"name":"Renée Onque","url":"https:\u002F\u002Fwww.cnbc.com\u002Frenee-onque\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F20\u002F4-seamless-ways-to-add-blue-zone-practices-to-your-daily-routine.html","creatorOverwrite":null,"datePublished":"2024-08-20T19:18:48+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Tue, Aug 20th 2024","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":108021037,"title":"'You have to think long-term': Young people should aim to avoid these 3 common money mistakes, say financial experts","type":"cnbcnewsstory","brand":"makeit","linkHeadline":null,"shorterHeadline":"Young people should aim to avoid these 3 money mistakes, say financial experts","premium":false,"native":false,"promoImage":{"id":107337885,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107337885-1700662984810-gettyimages-1226994628-_mg_5665-edit.jpeg?v=1723739281","__typename":"infographic"},"author":[{"id":107431814,"name":"Jade Thomas","url":"https:\u002F\u002Fwww.cnbc.com\u002Fjade-thomas\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2024\u002F08\u002F20\u002Fyoung-people-should-aim-to-avoid-these-money-mistakes.html","creatorOverwrite":null,"datePublished":"2024-08-20T19:03:58+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Tue, Aug 20th 2024","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"}],"__typename":"twoColumnImageDense"},"__typename":"module"},{"name":"twoColumnImageDense","source":"41585735","canChangeLayout":true,"canChangeSource":true,"serverRenderPolicy":null,"attributes":{"truncate":{"firstElement":130,"otherElements":110},"displayThumbnailPreviews":false},"options":{"pageSize":8,"promoted":true},"data":{"id":41585735,"brand":"cnbc","eyebrow":"CNBC Explains","url":"https:\u002F\u002Fwww.cnbc.com\u002Fcnbc-explains\u002F","assets":[{"id":108016787,"title":"What are the economics of war?","type":"cnbcvideo","brand":"cnbc","linkHeadline":null,"shorterHeadline":"What are the economics of war?","premium":false,"native":false,"promoImage":{"id":108016797,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108016797-Thumbnail_Explains_Economics_of_War_04.jpg?v=1722952613","__typename":"infographic"},"author":[{"id":107223011,"name":"Gaelle Legrand","url":"https:\u002F\u002Fwww.cnbc.com\u002Fgaelle-legrand\u002F","__typename":"creator","tagName":"Gaelle Legrand","tagNameFormatted":"gaelle legrand"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2024\u002F08\u002F07\u002Fwhat-are-the-economics-of-war.html","creatorOverwrite":null,"datePublished":"2024-08-07T01:33:52+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Tue, Aug 13th 2024","sourceOrganization":[{"id":100005495,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Europe","__typename":"source","slug":"CNBC Europe Source","tagName":"CNBC Europe Source","tagNameFormatted":"cnbc europe sou","tagNameFormattedFull":"cnbc europe source"}],"seoTitle":"What are the economics of war?","headline":"What are the economics of war?","tagName":null,"tagNameFormatted":"NA","tagNameFormattedFull":"NA","slug":"What are the economics of war?","description":"More countries are boosting their defense industries, calling for a shift to \"war economy mode.\" But what exactly is a war economy?","encodings":[{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F9740644da100428eb5dc54f42bc5fa9a\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_1_HLSMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM08D13\u002F7000348494\u002F1723547556566-WARECONOMYV5_H264_126K.mp4","formatName":"mpeg4_200000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM08D13\u002F7000348494\u002F1723547556566-WARECONOMYV5_L.mp4","formatName":"mpeg4_500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM08D13\u002F7000348494\u002F1723547556566-WARECONOMYV5_mp3w_048K.mp3","formatName":"mpeg3_48000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM08D13\u002F7000348494\u002F1723547556566-WARECONOMYV5_mp3w_128K.mp3","formatName":"mpeg3_128000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM08D13\u002F7000348494\u002F1723547556566-WARECONOMYV5_H264_1M_720x405.mp4","formatName":"mpeg4_1100000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM08D13\u002F7000348494\u002F1723547556566-WARECONOMYV5.vtt","formatName":"WebVTT_0_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM08D13\u002F7000348494\u002F1723547556566-WARECONOMYV5_H264_480x270_25p_500K.mp4","formatName":"mpeg4_600000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM08D13\u002F7000348494\u002F1723547556566-WARECONOMYV5_MBR_4500.mp4","formatName":"mpeg4_4500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbc-hls.akamaized.net\u002F7000348494\u002FMBR\u002F16e637d0-5965-11ef-b539-47d81f4b28ec\u002F1723547556566-WARECONOMYV5.m3u8","formatName":"mpeg4_1_CMAFMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F9740644da100428eb5dc54f42bc5fa9a\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_500000_HLSSBRStreaming","__typename":"encoding"}],"projectTeamContent":[{"id":105745767,"headline":"CNBC International Digital Original Video","tagName":"CNBC International Digital Original Video","tagNameFormatted":"cnbc internatio","tagNameFormattedFull":"cnbc international digital original video","__typename":"team"}],"relatedTags":[{"id":105536990,"headline":null,"tagName":"Breaking News: Economy","tagNameFormatted":"breaking news e","tagNameFormattedFull":"breaking news economy","type":"tag","__typename":"tag"},{"id":105056941,"headline":null,"tagName":"Aerospace and defense industry","tagNameFormatted":"aerospace and d","tagNameFormattedFull":"aerospace and defense industry","type":"tag","__typename":"tag"},{"id":105056610,"headline":null,"tagName":"Defense","tagNameFormatted":"defense","tagNameFormattedFull":"defense","type":"tag","__typename":"tag"},{"id":107317971,"headline":null,"tagName":"Neutral","tagNameFormatted":"neutral","tagNameFormattedFull":"neutral","type":"tag","__typename":"tag"},{"id":106910802,"headline":null,"tagName":"Intl Digital Video","tagNameFormatted":"intl digital vi","tagNameFormattedFull":"intl digital video","type":"tag","__typename":"tag"},{"id":105056897,"headline":null,"tagName":"Economy","tagNameFormatted":"economy","tagNameFormattedFull":"economy","type":"tag","__typename":"tag"}],"relatedTagsFilteredFormatted":"breaking news e|aerospace and d|defense|neutral|intl digital vi|economy","relatedTagsFilteredFormattedFull":"breaking news economy|aerospace and defense industry|defense|neutral|intl digital video|economy","additionalSectionContent":[{"id":104266428,"headline":"Digital Original","tagName":"Digital Original","tagNameFormatted":"digital origina","tagNameFormattedFull":"digital original","type":"franchise","__typename":"tag"},{"id":103470373,"headline":"International Digital Originals","tagName":"International Digital Originals","tagNameFormatted":"international d","tagNameFormattedFull":"international digital originals","type":"franchise","__typename":"tag"},{"id":10001078,"headline":"Wars and Military Conflicts","tagName":"Wars and Military Conflicts","tagNameFormatted":"wars and milita","tagNameFormattedFull":"wars and military conflicts","type":"franchise","__typename":"tag"},{"id":10001059,"headline":"Defense","tagName":"Defense","tagNameFormatted":"defense","tagNameFormattedFull":"defense","type":"franchise","__typename":"tag"},{"id":103775554,"headline":"Money","tagName":"Make It - Money","tagNameFormatted":"make it money","tagNameFormattedFull":"make it money","type":"franchise","__typename":"tag"},{"id":10000693,"headline":"Aerospace & Defense","tagName":"Aerospace & Defense","tagNameFormatted":"aerospace defen","tagNameFormattedFull":"aerospace defense","type":"franchise","__typename":"tag"},{"id":10000044,"headline":"Europe Economy","tagName":"Europe Economy","tagNameFormatted":"europe economy","tagNameFormattedFull":"europe economy","type":"franchise","__typename":"tag"},{"id":20910258,"headline":"Economy","tagName":"Economy","tagNameFormatted":"economy","tagNameFormattedFull":"economy","type":"franchise","__typename":"tag"}],"additionalSectionContentFormatted":"digital origina|international d|wars and milita|defense|make it money|aerospace defen|europe economy|economy","additionalSectionContentFormattedFull":"digital original|international digital originals|wars and military conflicts|defense|make it money|aerospace defense|europe economy|economy","relatedVideoContent":[],"dateLastPublished":"2024-08-13T11:51:44+0000","sectionHierarchy":[{"id":15837856,"tagName":"CNBC TV","tagNameFormatted":"cnbc tv","tagNameFormattedFull":"cnbc tv","order":3,"__typename":"sectionHierarchy"},{"id":104266428,"tagName":"Digital Original","tagNameFormatted":"digital origina","tagNameFormattedFull":"digital original","order":2,"__typename":"sectionHierarchy"},{"id":41585735,"tagName":"CNBC Explains","tagNameFormatted":"cnbc explains","tagNameFormattedFull":"cnbc explains","order":1,"__typename":"sectionHierarchy"}],"sectionHierarchyFormatted":"cnbc tv|digital origina|cnbc explains","sectionHierarchyFormattedFull":"cnbc tv|digital original|cnbc explains","projectContent":[],"image":null,"section":{"headline":"CNBC Explains","id":41585735,"subType":"section","tagName":"CNBC Explains","tagNameFormatted":"cnbc explains","tagNameFormattedFull":"cnbc explains","title":"CNBC Explains","url":"https:\u002F\u002Fwww.cnbc.com\u002Fcnbc-explains\u002F","__typename":"franchise"},"projectTeamContentFormatted":"cnbc internatio","projectTeamContentFormattedFull":"cnbc international digital original video","projectContentFormatted":"NA","projectContentFormattedFull":"NA","creatorOverwriteFormatted":"NA","sourceOrganizationFormatted":"cnbc europe sou","sourceOrganizationFormattedFull":"cnbc europe source","authorFormatted":"gaelle legrand","authorFormattedFull":"gaelle legrand","dateFirstPublished":"2024-08-07T01:33:52+0000","subDomain":"https:\u002F\u002Fwww.cnbc.com","liveURL":"\u002Fvideo\u002F2024\u002F08\u002F07\u002Fwhat-are-the-economics-of-war.html","pageName":"7000347861|video\u002F2024\u002F08\u002F07\u002Fwhat-are-the-economics-of-war","shortDatePublished":"08\u002F06\u002F2024","shortDateLastPublished":"08\u002F13\u002F2024","shortDateFirstPublished":"08\u002F06\u002F2024","airDate":"8\u002F6\u002F2024","comScoreC2":"1000004","comScoreC3":"*null","comScoreC4":"CNBC.com VOD","comScoreC6":"*null","dayPart":"Others","duration":502,"network":"CNBC","platform":"web","playbackURL":"\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F9740644da100428eb5dc54f42bc5fa9a\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","playerConfig":{"autoPlay":false,"workflow":"VOD","sticky":true,"endCard":{"timer":5},"embedURL":"https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid={VID}","hlshtml":true,"primary":"html5","share":true,"parsely":true,"playbackRateControls":false,"fwassetId":"cnbc_7000347861","mediaid":"cnbc_7000347861","key":"+9o3ihbMIU8\u002FixFry35xlHnkQ9tikKg9TU0io1QbWXfpeR0q","playList":false,"sharing":{"sites":["facebook","twitter","linkedin"],"link":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2024\u002F08\u002F07\u002Fwhat-are-the-economics-of-war.html","code":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000347861 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"mobileSFID":"7003948","IE11Profile":"169843:nbcu_web_flash_cs_moat_https","advertising":{"client":"freewheel","creativeTimeout":4000,"requestTimeout":4000,"vpaidcontrols":true,"freewheel":{"sectionid":"cnbc_inline_vod","networkid":169843,"profileid":"169843:nbcu_mobileweb_js_cs_moat_https","adManagerURL":"https:\u002F\u002Fmssl.fwmrm.net\u002Flibs\u002Fadm\u002F6.35.0\u002FAdManager.js","serverid":"\u002F\u002F29773.v.fwmrm.net\u002Fad\u002Fp\u002F1","sfid":"7006049","afid":"137705375","custom":{"metr":"1023","sfid":"7006049","afid":"137705375"}},"schedule":{"adbreak":{"offset":"pre","tag":"placeholder_preroll"}}},"analytics":{"onSite":true,"omniture":{"playername":"JW_Player","playerversion":"Universal","daypart":"Others","assetstatus":"Unrestricted","videoprogram":{"live":"iconic"},"videocontent":"Linear","title":"{partnername} Vod","guid":"{partnername} Vod","share":{"linksharepev2":"Video Control Rack","providerepev2":"Share","eVar15":"Video:Vod:","linktrknav":"video:share:Vod:","eVar14":": Share Published"}}},"embed":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000347861 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"playerTech":"JW Player","subType":"digital_original","thumbnail":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F108016797-Thumbnail_Explains_Economics_of_War_04.jpg?v=1722952613","usageRule":"NA","vcpsId":7000347861,"videoStatus":"Unrestricted","uploadDate":"2024-08-06T13:45:52+0000","__typename":"cnbcvideo"},{"id":107421981,"title":"What is the internet of bodies?","type":"cnbcvideo","brand":"cnbc","linkHeadline":null,"shorterHeadline":"What is the internet of bodies?","premium":false,"native":false,"promoImage":{"id":107422026,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107422026-Thumbnail_Explains_Internet_of_Bodies_V1_Clean.jpg?v=1717084220","__typename":"infographic"},"author":[{"id":101091325,"name":"Arjun Kharpal","url":"https:\u002F\u002Fwww.cnbc.com\u002Farjun-kharpal\u002F","__typename":"creator","tagName":"Arjun Kharpal","tagNameFormatted":"arjun kharpal"},{"id":107421225,"name":"Maria Gomez De Sicart","url":"https:\u002F\u002Fwww.cnbc.com\u002Fmaria-gomez-de-sicart\u002F","__typename":"creator","tagName":"Maria Gomez De Sicart","tagNameFormatted":"maria gomez de "}],"url":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2024\u002F05\u002F31\u002Fwhat-is-the-internet-of-bodies.html","creatorOverwrite":null,"datePublished":"2024-05-31T03:31:20+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Fri, May 31st 2024","sourceOrganization":[{"id":100005495,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Europe","__typename":"source","slug":"CNBC Europe Source","tagName":"CNBC Europe Source","tagNameFormatted":"cnbc europe sou","tagNameFormattedFull":"cnbc europe source"}],"seoTitle":"What is the internet of bodies?","headline":"What is the internet of bodies?","tagName":null,"tagNameFormatted":"NA","tagNameFormattedFull":"NA","slug":"What is the internet of bodies?","description":"Technological devices and the human body are no strangers. From glasses to hearing aids to pacemakers, we've been wearing, ingesting and implanting technology for decades. But soon, these devices will have the capacity to completely merge with the body while maintaining a real-time connection to an external machine. CNBC explains the \"Internet of Bodies.\"","encodings":[{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002Fa9026ccf968a4e208d22f0d200d3b33a\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_1_HLSMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM05D30\u002F7000341687\u002F1717087570992-TechExplains_IOB_FINALv1_H264_126K.mp4","formatName":"mpeg4_200000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM05D30\u002F7000341687\u002F1717087570992-TechExplains_IOB_FINALv1_L.mp4","formatName":"mpeg4_500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM05D30\u002F7000341687\u002F1717087570992-TechExplains_IOB_FINALv1_mp3w_048K.mp3","formatName":"mpeg3_48000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM05D30\u002F7000341687\u002F1717087570992-TechExplains_IOB_FINALv1_mp3w_128K.mp3","formatName":"mpeg3_128000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM05D30\u002F7000341687\u002F1717087570992-TechExplains_IOB_FINALv1_H264_1M_720x405.mp4","formatName":"mpeg4_1100000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM05D30\u002F7000341687\u002F1717087570992-TechExplains_IOB_FINALv1.vtt","formatName":"WebVTT_0_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM05D30\u002F7000341687\u002F1717087570992-TechExplains_IOB_FINALv1_H264_480x270_25p_500K.mp4","formatName":"mpeg4_600000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM05D30\u002F7000341687\u002F1717087570992-TechExplains_IOB_FINALv1_MBR_4500.mp4","formatName":"mpeg4_4500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbc-hls.akamaized.net\u002F7000341687\u002FMBR\u002F57e7bed0-1ea4-11ef-ae31-15af24cb1af5\u002F1717087570992-TechExplains_IOB_FINALv1.m3u8","formatName":"mpeg4_1_CMAFMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002Fa9026ccf968a4e208d22f0d200d3b33a\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_500000_HLSSBRStreaming","__typename":"encoding"}],"projectTeamContent":[{"id":105745767,"headline":"CNBC International Digital Original Video","tagName":"CNBC International Digital Original Video","tagNameFormatted":"cnbc internatio","tagNameFormattedFull":"cnbc international digital original video","__typename":"team"}],"relatedTags":[{"id":105059757,"headline":null,"tagName":"Internet technology","tagNameFormatted":"internet techno","tagNameFormattedFull":"internet technology","type":"tag","__typename":"tag"},{"id":105056563,"headline":null,"tagName":"Technology","tagNameFormatted":"technology","tagNameFormattedFull":"technology","type":"tag","__typename":"tag"},{"id":105056578,"headline":null,"tagName":"Business","tagNameFormatted":"business","tagNameFormattedFull":"business","type":"tag","__typename":"tag"},{"id":107317971,"headline":null,"tagName":"Neutral","tagNameFormatted":"neutral","tagNameFormattedFull":"neutral","type":"tag","__typename":"tag"}],"relatedTagsFilteredFormatted":"internet techno|technology|business|neutral","relatedTagsFilteredFormattedFull":"internet technology|technology|business|neutral","additionalSectionContent":[{"id":104266428,"headline":"Digital Original","tagName":"Digital Original","tagNameFormatted":"digital origina","tagNameFormattedFull":"digital original","type":"franchise","__typename":"tag"},{"id":103470373,"headline":"International Digital Originals","tagName":"International Digital Originals","tagNameFormatted":"international d","tagNameFormattedFull":"international digital originals","type":"franchise","__typename":"tag"},{"id":41585735,"headline":"CNBC Explains","tagName":"CNBC Explains","tagNameFormatted":"cnbc explains","tagNameFormattedFull":"cnbc explains","type":"franchise","__typename":"tag"},{"id":19854910,"headline":"Tech","tagName":"Technology","tagNameFormatted":"technology","tagNameFormattedFull":"technology","type":"franchise","__typename":"tag"},{"id":106376905,"headline":"Tech Trends","tagName":"Tech Trends","tagNameFormatted":"tech trends","tagNameFormattedFull":"tech trends","type":"franchise","__typename":"tag"},{"id":49242736,"headline":"Tech Edge ","tagName":"Tech Edge ","tagNameFormatted":"tech edge","tagNameFormattedFull":"tech edge","type":"franchise","__typename":"tag"}],"additionalSectionContentFormatted":"digital origina|international d|cnbc explains|technology|tech trends|tech edge","additionalSectionContentFormattedFull":"digital original|international digital originals|cnbc explains|technology|tech trends|tech edge","relatedVideoContent":[],"dateLastPublished":"2024-05-31T17:16:26+0000","sectionHierarchy":[{"id":19854910,"tagName":"Technology","tagNameFormatted":"technology","tagNameFormattedFull":"technology","order":2,"__typename":"sectionHierarchy"},{"id":101003572,"tagName":"The Edge","tagNameFormatted":"the edge","tagNameFormattedFull":"the edge","order":1,"__typename":"sectionHierarchy"}],"sectionHierarchyFormatted":"technology|the edge","sectionHierarchyFormattedFull":"technology|the edge","projectContent":[],"image":null,"section":{"headline":"The Edge","id":101003572,"subType":"special_report","tagName":"The Edge","tagNameFormatted":"the edge","tagNameFormattedFull":"the edge","title":"The Edge","url":"https:\u002F\u002Fwww.cnbc.com\u002Fthe-edge\u002F","__typename":"franchise"},"projectTeamContentFormatted":"cnbc internatio","projectTeamContentFormattedFull":"cnbc international digital original video","projectContentFormatted":"NA","projectContentFormattedFull":"NA","creatorOverwriteFormatted":"NA","sourceOrganizationFormatted":"cnbc europe sou","sourceOrganizationFormattedFull":"cnbc europe source","authorFormatted":"arjun kharpal|maria gomez de ","authorFormattedFull":"arjun kharpal|maria gomez de sicart","dateFirstPublished":"2024-05-31T03:31:20+0000","subDomain":"https:\u002F\u002Fwww.cnbc.com","liveURL":"\u002Fvideo\u002F2024\u002F05\u002F31\u002Fwhat-is-the-internet-of-bodies.html","pageName":"7000341687|video\u002F2024\u002F05\u002F31\u002Fwhat-is-the-internet-of-bodies","shortDatePublished":"05\u002F30\u002F2024","shortDateLastPublished":"05\u002F31\u002F2024","shortDateFirstPublished":"05\u002F30\u002F2024","airDate":"5\u002F30\u002F2024","comScoreC2":"1000004","comScoreC3":"*null","comScoreC4":"CNBC.com VOD","comScoreC6":"*null","dayPart":"Others","duration":258,"network":"CNBC","platform":"web","playbackURL":"\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002Fa9026ccf968a4e208d22f0d200d3b33a\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","playerConfig":{"autoPlay":false,"workflow":"VOD","sticky":true,"endCard":{"timer":5},"embedURL":"https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid={VID}","hlshtml":true,"primary":"html5","share":true,"parsely":true,"playbackRateControls":false,"fwassetId":"cnbc_7000341687","mediaid":"cnbc_7000341687","key":"+9o3ihbMIU8\u002FixFry35xlHnkQ9tikKg9TU0io1QbWXfpeR0q","playList":false,"sharing":{"sites":["facebook","twitter","linkedin"],"link":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2024\u002F05\u002F31\u002Fwhat-is-the-internet-of-bodies.html","code":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000341687 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"mobileSFID":"7003948","IE11Profile":"169843:nbcu_web_flash_cs_moat_https","advertising":{"client":"freewheel","creativeTimeout":4000,"requestTimeout":4000,"vpaidcontrols":true,"freewheel":{"sectionid":"cnbc_inline_vod","networkid":169843,"profileid":"169843:nbcu_mobileweb_js_cs_moat_https","adManagerURL":"https:\u002F\u002Fmssl.fwmrm.net\u002Flibs\u002Fadm\u002F6.35.0\u002FAdManager.js","serverid":"\u002F\u002F29773.v.fwmrm.net\u002Fad\u002Fp\u002F1","sfid":"7006049","afid":"137705375","custom":{"metr":"1023","sfid":"7006049","afid":"137705375"}},"schedule":{"adbreak":{"offset":"pre","tag":"placeholder_preroll"}}},"analytics":{"onSite":true,"omniture":{"playername":"JW_Player","playerversion":"Universal","daypart":"Others","assetstatus":"Unrestricted","videoprogram":{"live":"iconic"},"videocontent":"Linear","title":"{partnername} Vod","guid":"{partnername} Vod","share":{"linksharepev2":"Video Control Rack","providerepev2":"Share","eVar15":"Video:Vod:","linktrknav":"video:share:Vod:","eVar14":": Share Published"}}},"embed":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000341687 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"playerTech":"JW Player","subType":"digital_original","thumbnail":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107422026-Thumbnail_Explains_Internet_of_Bodies_V1_Clean.jpg?v=1717084220","usageRule":"NA","vcpsId":7000341687,"videoStatus":"Unrestricted","uploadDate":"2024-05-30T14:52:27+0000","__typename":"cnbcvideo"},{"id":107415030,"title":"How the world got into $315 trillion of debt","type":"cnbcvideo","brand":"cnbc","linkHeadline":null,"shorterHeadline":"How the world got into $315 trillion of debt","premium":false,"native":false,"promoImage":{"id":107420405,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107420405-Thumbnail_Explains_Global_Debt_03_Clean.jpg?v=1716866317","__typename":"infographic"},"author":[{"id":106229681,"name":"Nessa Anwar","url":"https:\u002F\u002Fwww.cnbc.com\u002Fnessa-anwar-profile---cnbc\u002F","__typename":"creator","tagName":"Nessa Anwar","tagNameFormatted":"nessa anwar"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2024\u002F05\u002F28\u002Fhow-the-world-got-into-315-trillion-of-debt.html","creatorOverwrite":null,"datePublished":"2024-05-28T04:06:07+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Tue, May 28th 2024","sourceOrganization":[{"id":100005489,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Asia","__typename":"source","slug":"CNBC Asia Source","tagName":"CNBC Asia Source","tagNameFormatted":"cnbc asia sourc","tagNameFormattedFull":"cnbc asia source"}],"seoTitle":"How the world got into $315 trillion of debt","headline":"How the world got into $315 trillion of debt","tagName":null,"tagNameFormatted":"NA","tagNameFormattedFull":"NA","slug":"How the world got into $315 trillion of debt","description":"According to the Institute of International Finance, the world is $315 trillion in debt. This combines borrowings from households, businesses and governments. With global debt at a record high, should we be concerned?","encodings":[{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F16f4822d27de4f3dadf338c5091f9be0\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_1_HLSMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM05D28\u002F7000341370\u002F1716882947473-GlobalDebt_FinalDraftmp4_H264_126K.mp4","formatName":"mpeg4_200000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM05D28\u002F7000341370\u002F1716882947473-GlobalDebt_FinalDraftmp4_L.mp4","formatName":"mpeg4_500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM05D28\u002F7000341370\u002F1716882947473-GlobalDebt_FinalDraftmp4_mp3w_048K.mp3","formatName":"mpeg3_48000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM05D28\u002F7000341370\u002F1716882947473-GlobalDebt_FinalDraftmp4_mp3w_128K.mp3","formatName":"mpeg3_128000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM05D28\u002F7000341370\u002F1716882947473-GlobalDebt_FinalDraftmp4_H264_1M_720x405.mp4","formatName":"mpeg4_1100000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM05D28\u002F7000341370\u002F1716882947473-GlobalDebt_FinalDraftmp4.vtt","formatName":"WebVTT_0_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM05D28\u002F7000341370\u002F1716882947473-GlobalDebt_FinalDraftmp4_H264_480x270_25p_500K.mp4","formatName":"mpeg4_600000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM05D28\u002F7000341370\u002F1716882947473-GlobalDebt_FinalDraftmp4_MBR_4500.mp4","formatName":"mpeg4_4500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbc-hls.akamaized.net\u002F7000341370\u002FMBR\u002F2d584050-1cc8-11ef-a69d-cf0e16660a12\u002F1716882947473-GlobalDebt_FinalDraftmp4.m3u8","formatName":"mpeg4_1_CMAFMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F16f4822d27de4f3dadf338c5091f9be0\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_500000_HLSSBRStreaming","__typename":"encoding"}],"projectTeamContent":[{"id":105745767,"headline":"CNBC International Digital Original Video","tagName":"CNBC International Digital Original Video","tagNameFormatted":"cnbc internatio","tagNameFormattedFull":"cnbc international digital original video","__typename":"team"}],"relatedTags":[{"id":107317971,"headline":null,"tagName":"Neutral","tagNameFormatted":"neutral","tagNameFormattedFull":"neutral","type":"tag","__typename":"tag"},{"id":106910802,"headline":null,"tagName":"Intl Digital Video","tagNameFormatted":"intl digital vi","tagNameFormattedFull":"intl digital video","type":"tag","__typename":"tag"}],"relatedTagsFilteredFormatted":"neutral|intl digital vi","relatedTagsFilteredFormattedFull":"neutral|intl digital video","additionalSectionContent":[{"id":15837856,"headline":"CNBC TV","tagName":"CNBC TV","tagNameFormatted":"cnbc tv","tagNameFormattedFull":"cnbc tv","type":"franchise","__typename":"tag"},{"id":46,"headline":"Video","tagName":"Video","tagNameFormatted":"video","tagNameFormattedFull":"video","type":"franchise","__typename":"tag"},{"id":15839263,"headline":"Top Videos","tagName":"Top Videos","tagNameFormatted":"top videos","tagNameFormattedFull":"top videos","type":"franchise","__typename":"tag"},{"id":104266428,"headline":"Digital Original","tagName":"Digital Original","tagNameFormatted":"digital origina","tagNameFormattedFull":"digital original","type":"franchise","__typename":"tag"},{"id":103470373,"headline":"International Digital Originals","tagName":"International Digital Originals","tagNameFormatted":"international d","tagNameFormattedFull":"international digital originals","type":"franchise","__typename":"tag"}],"additionalSectionContentFormatted":"cnbc tv|video|top videos|digital origina|international d","additionalSectionContentFormattedFull":"cnbc tv|video|top videos|digital original|international digital originals","relatedVideoContent":[],"dateLastPublished":"2024-05-28T09:55:11+0000","sectionHierarchy":[{"id":15837856,"tagName":"CNBC TV","tagNameFormatted":"cnbc tv","tagNameFormattedFull":"cnbc tv","order":3,"__typename":"sectionHierarchy"},{"id":104266428,"tagName":"Digital Original","tagNameFormatted":"digital origina","tagNameFormattedFull":"digital original","order":2,"__typename":"sectionHierarchy"},{"id":41585735,"tagName":"CNBC Explains","tagNameFormatted":"cnbc explains","tagNameFormattedFull":"cnbc explains","order":1,"__typename":"sectionHierarchy"}],"sectionHierarchyFormatted":"cnbc tv|digital origina|cnbc explains","sectionHierarchyFormattedFull":"cnbc tv|digital original|cnbc explains","projectContent":[],"image":null,"section":{"headline":"CNBC Explains","id":41585735,"subType":"section","tagName":"CNBC Explains","tagNameFormatted":"cnbc explains","tagNameFormattedFull":"cnbc explains","title":"CNBC Explains","url":"https:\u002F\u002Fwww.cnbc.com\u002Fcnbc-explains\u002F","__typename":"franchise"},"projectTeamContentFormatted":"cnbc internatio","projectTeamContentFormattedFull":"cnbc international digital original video","projectContentFormatted":"NA","projectContentFormattedFull":"NA","creatorOverwriteFormatted":"NA","sourceOrganizationFormatted":"cnbc asia sourc","sourceOrganizationFormattedFull":"cnbc asia source","authorFormatted":"nessa anwar","authorFormattedFull":"nessa anwar","dateFirstPublished":"2024-05-28T04:06:07+0000","subDomain":"https:\u002F\u002Fwww.cnbc.com","liveURL":"\u002Fvideo\u002F2024\u002F05\u002F28\u002Fhow-the-world-got-into-315-trillion-of-debt.html","pageName":"7000341360|video\u002F2024\u002F05\u002F28\u002Fhow-the-world-got-into-315-trillion-of-debt","shortDatePublished":"05\u002F28\u002F2024","shortDateLastPublished":"05\u002F28\u002F2024","shortDateFirstPublished":"05\u002F28\u002F2024","airDate":"5\u002F28\u002F2024","comScoreC2":"1000004","comScoreC3":"*null","comScoreC4":"CNBC.com VOD","comScoreC6":"*null","dayPart":"Others","duration":398,"network":"CNBC","platform":"web","playbackURL":"\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F16f4822d27de4f3dadf338c5091f9be0\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","playerConfig":{"autoPlay":false,"workflow":"VOD","sticky":true,"endCard":{"timer":5},"embedURL":"https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid={VID}","hlshtml":true,"primary":"html5","share":true,"parsely":true,"playbackRateControls":false,"fwassetId":"cnbc_7000341360","mediaid":"cnbc_7000341360","key":"+9o3ihbMIU8\u002FixFry35xlHnkQ9tikKg9TU0io1QbWXfpeR0q","playList":false,"sharing":{"sites":["facebook","twitter","linkedin"],"link":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2024\u002F05\u002F28\u002Fhow-the-world-got-into-315-trillion-of-debt.html","code":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000341360 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"mobileSFID":"7003948","IE11Profile":"169843:nbcu_web_flash_cs_moat_https","advertising":{"client":"freewheel","creativeTimeout":4000,"requestTimeout":4000,"vpaidcontrols":true,"freewheel":{"sectionid":"cnbc_inline_vod","networkid":169843,"profileid":"169843:nbcu_mobileweb_js_cs_moat_https","adManagerURL":"https:\u002F\u002Fmssl.fwmrm.net\u002Flibs\u002Fadm\u002F6.35.0\u002FAdManager.js","serverid":"\u002F\u002F29773.v.fwmrm.net\u002Fad\u002Fp\u002F1","sfid":"7006049","afid":"137705375","custom":{"metr":"1023","sfid":"7006049","afid":"137705375"}},"schedule":{"adbreak":{"offset":"pre","tag":"placeholder_preroll"}}},"analytics":{"onSite":true,"omniture":{"playername":"JW_Player","playerversion":"Universal","daypart":"Others","assetstatus":"Unrestricted","videoprogram":{"live":"iconic"},"videocontent":"Linear","title":"{partnername} Vod","guid":"{partnername} Vod","share":{"linksharepev2":"Video Control Rack","providerepev2":"Share","eVar15":"Video:Vod:","linktrknav":"video:share:Vod:","eVar14":": Share Published"}}},"embed":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000341360 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"playerTech":"JW Player","subType":"digital_original","thumbnail":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107420405-Thumbnail_Explains_Global_Debt_03_Clean.jpg?v=1716866317","usageRule":"NA","vcpsId":7000341360,"videoStatus":"Unrestricted","uploadDate":"2024-05-15T03:09:15+0000","__typename":"cnbcvideo"},{"id":107393688,"title":"eVTOLS: Are flying cars finally becoming reality?","type":"cnbcvideo","brand":"cnbc","linkHeadline":null,"shorterHeadline":"eVTOLS: Are flying cars finally becoming reality?","premium":false,"native":false,"promoImage":{"id":107396455,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107396455-Lilium_FlightTest_Spain_FullTransition.png?v=1712176926","__typename":"infographic"},"author":[{"id":101091325,"name":"Arjun Kharpal","url":"https:\u002F\u002Fwww.cnbc.com\u002Farjun-kharpal\u002F","__typename":"creator","tagName":"Arjun Kharpal","tagNameFormatted":"arjun kharpal"},{"id":107104352,"name":"Cristy Garratt","url":"https:\u002F\u002Fwww.cnbc.com\u002Fcristy-garratt\u002F","__typename":"creator","tagName":"Cristy Garratt","tagNameFormatted":"cristy garratt"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2024\u002F03\u002F28\u002Fevtols-how-flying-cars-are-becoming-reality.html","creatorOverwrite":null,"datePublished":"2024-03-28T03:15:17+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Thu, Apr 4th 2024","sourceOrganization":[{"id":100005495,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Europe","__typename":"source","slug":"CNBC Europe Source","tagName":"CNBC Europe Source","tagNameFormatted":"cnbc europe sou","tagNameFormattedFull":"cnbc europe source"}],"seoTitle":"eVTOLS: How flying cars are becoming reality","headline":"eVTOLS: Are flying cars finally becoming reality?","tagName":null,"tagNameFormatted":"NA","tagNameFormattedFull":"NA","slug":"eVTOLS: Are flying cars finally becoming reality?","description":"Most innovators and investors tend to reject the term flying car. Instead, the acronym eVTOL, which stands for electric vertical take-off and landing, has taken off.","encodings":[{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F9db95e5d6bf04c2ea304d650baf91296\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_1_HLSMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM03D27\u002F7000335697\u002F1711559250226-CNBCTech-Thefutureofflying_FINAL_WITHENDBOARD__H264_126K.mp4","formatName":"mpeg4_200000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM03D27\u002F7000335697\u002F1711559250226-CNBCTech-Thefutureofflying_FINAL_WITHENDBOARD__L.mp4","formatName":"mpeg4_500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM03D27\u002F7000335697\u002F1711559250226-CNBCTech-Thefutureofflying_FINAL_WITHENDBOARD__mp3w_048K.mp3","formatName":"mpeg3_48000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM03D27\u002F7000335697\u002F1711559250226-CNBCTech-Thefutureofflying_FINAL_WITHENDBOARD__mp3w_128K.mp3","formatName":"mpeg3_128000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM03D27\u002F7000335697\u002F1711559250226-CNBCTech-Thefutureofflying_FINAL_WITHENDBOARD__H264_1M_720x405.mp4","formatName":"mpeg4_1100000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM03D27\u002F7000335697\u002F1711559250226-CNBCTech-Thefutureofflying_FINAL_WITHENDBOARD_.vtt","formatName":"WebVTT_0_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM03D27\u002F7000335697\u002F1711559250226-CNBCTech-Thefutureofflying_FINAL_WITHENDBOARD__H264_480x270_25p_500K.mp4","formatName":"mpeg4_600000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbc-hls.akamaized.net\u002F7000335697\u002FMBR\u002Fb9235170-ec5c-11ee-85ad-2d39a8f954a1\u002F1711559250226-CNBCTech-Thefutureofflying_FINAL_WITHENDBOARD_.m3u8","formatName":"mpeg4_1_CMAFMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM03D27\u002F7000335697\u002F1711559250226-CNBCTech-Thefutureofflying_FINAL_WITHENDBOARD__MBR_4500.mp4","formatName":"mpeg4_4500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F9db95e5d6bf04c2ea304d650baf91296\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_500000_HLSSBRStreaming","__typename":"encoding"}],"projectTeamContent":[{"id":105745767,"headline":"CNBC International Digital Original Video","tagName":"CNBC International Digital Original Video","tagNameFormatted":"cnbc internatio","tagNameFormattedFull":"cnbc international digital original video","__typename":"team"}],"relatedTags":[{"id":107317971,"headline":null,"tagName":"Neutral","tagNameFormatted":"neutral","tagNameFormattedFull":"neutral","type":"tag","__typename":"tag"},{"id":105056578,"headline":null,"tagName":"Business","tagNameFormatted":"business","tagNameFormattedFull":"business","type":"tag","__typename":"tag"},{"id":105056563,"headline":null,"tagName":"Technology","tagNameFormatted":"technology","tagNameFormattedFull":"technology","type":"tag","__typename":"tag"},{"id":105060143,"headline":null,"tagName":"Electric vehicles","tagNameFormatted":"electric vehicl","tagNameFormattedFull":"electric vehicles","type":"tag","__typename":"tag"},{"id":105056933,"headline":null,"tagName":"Autos","tagNameFormatted":"autos","tagNameFormattedFull":"autos","type":"tag","__typename":"tag"}],"relatedTagsFilteredFormatted":"neutral|business|technology|electric vehicl|autos","relatedTagsFilteredFormattedFull":"neutral|business|technology|electric vehicles|autos","additionalSectionContent":[{"id":104266428,"headline":"Digital Original","tagName":"Digital Original","tagNameFormatted":"digital origina","tagNameFormattedFull":"digital original","type":"franchise","__typename":"tag"},{"id":103470373,"headline":"International Digital Originals","tagName":"International Digital Originals","tagNameFormatted":"international d","tagNameFormattedFull":"international digital originals","type":"franchise","__typename":"tag"},{"id":105229289,"headline":"China Politics","tagName":"China Politics","tagNameFormatted":"china politics","tagNameFormattedFull":"china politics","type":"franchise","__typename":"tag"},{"id":41585735,"headline":"CNBC Explains","tagName":"CNBC Explains","tagNameFormatted":"cnbc explains","tagNameFormattedFull":"cnbc explains","type":"franchise","__typename":"tag"},{"id":19854910,"headline":"Tech","tagName":"Technology","tagNameFormatted":"technology","tagNameFormattedFull":"technology","type":"franchise","__typename":"tag"},{"id":106376905,"headline":"Tech Trends","tagName":"Tech Trends","tagNameFormatted":"tech trends","tagNameFormattedFull":"tech trends","type":"franchise","__typename":"tag"},{"id":49242736,"headline":"Tech Edge ","tagName":"Tech Edge ","tagNameFormatted":"tech edge","tagNameFormattedFull":"tech edge","type":"franchise","__typename":"tag"}],"additionalSectionContentFormatted":"digital origina|international d|china politics|cnbc explains|technology|tech trends|tech edge","additionalSectionContentFormattedFull":"digital original|international digital originals|china politics|cnbc explains|technology|tech trends|tech edge","relatedVideoContent":[],"dateLastPublished":"2024-04-04T06:14:24+0000","sectionHierarchy":[{"id":19854910,"tagName":"Technology","tagNameFormatted":"technology","tagNameFormattedFull":"technology","order":2,"__typename":"sectionHierarchy"},{"id":101003572,"tagName":"The Edge","tagNameFormatted":"the edge","tagNameFormattedFull":"the edge","order":1,"__typename":"sectionHierarchy"}],"sectionHierarchyFormatted":"technology|the edge","sectionHierarchyFormattedFull":"technology|the edge","projectContent":[],"image":null,"section":{"headline":"The Edge","id":101003572,"subType":"special_report","tagName":"The Edge","tagNameFormatted":"the edge","tagNameFormattedFull":"the edge","title":"The Edge","url":"https:\u002F\u002Fwww.cnbc.com\u002Fthe-edge\u002F","__typename":"franchise"},"projectTeamContentFormatted":"cnbc internatio","projectTeamContentFormattedFull":"cnbc international digital original video","projectContentFormatted":"NA","projectContentFormattedFull":"NA","creatorOverwriteFormatted":"NA","sourceOrganizationFormatted":"cnbc europe sou","sourceOrganizationFormattedFull":"cnbc europe source","authorFormatted":"arjun kharpal|cristy garratt","authorFormattedFull":"arjun kharpal|cristy garratt","dateFirstPublished":"2024-03-28T03:15:17+0000","subDomain":"https:\u002F\u002Fwww.cnbc.com","liveURL":"\u002Fvideo\u002F2024\u002F03\u002F28\u002Fevtols-how-flying-cars-are-becoming-reality.html","pageName":"7000335697|video\u002F2024\u002F03\u002F28\u002Fevtols-how-flying-cars-are-becoming-reality","shortDatePublished":"03\u002F27\u002F2024","shortDateLastPublished":"04\u002F04\u002F2024","shortDateFirstPublished":"03\u002F27\u002F2024","airDate":"3\u002F27\u002F2024","comScoreC2":"1000004","comScoreC3":"*null","comScoreC4":"CNBC.com VOD","comScoreC6":"*null","dayPart":"Others","duration":359,"network":"CNBC","platform":"web","playbackURL":"\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F9db95e5d6bf04c2ea304d650baf91296\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","playerConfig":{"autoPlay":false,"workflow":"VOD","sticky":true,"endCard":{"timer":5},"embedURL":"https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid={VID}","hlshtml":true,"primary":"html5","share":true,"parsely":true,"playbackRateControls":false,"fwassetId":"cnbc_7000335697","mediaid":"cnbc_7000335697","key":"+9o3ihbMIU8\u002FixFry35xlHnkQ9tikKg9TU0io1QbWXfpeR0q","playList":false,"sharing":{"sites":["facebook","twitter","linkedin"],"link":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2024\u002F03\u002F28\u002Fevtols-how-flying-cars-are-becoming-reality.html","code":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000335697 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"mobileSFID":"7003948","IE11Profile":"169843:nbcu_web_flash_cs_moat_https","advertising":{"client":"freewheel","creativeTimeout":4000,"requestTimeout":4000,"vpaidcontrols":true,"freewheel":{"sectionid":"cnbc_inline_vod","networkid":169843,"profileid":"169843:nbcu_mobileweb_js_cs_moat_https","adManagerURL":"https:\u002F\u002Fmssl.fwmrm.net\u002Flibs\u002Fadm\u002F6.35.0\u002FAdManager.js","serverid":"\u002F\u002F29773.v.fwmrm.net\u002Fad\u002Fp\u002F1","sfid":"7006049","afid":"137705375","custom":{"metr":"1023","sfid":"7006049","afid":"137705375"}},"schedule":{"adbreak":{"offset":"pre","tag":"placeholder_preroll"}}},"analytics":{"onSite":true,"omniture":{"playername":"JW_Player","playerversion":"Universal","daypart":"Others","assetstatus":"Unrestricted","videoprogram":{"live":"iconic"},"videocontent":"Linear","title":"{partnername} Vod","guid":"{partnername} Vod","share":{"linksharepev2":"Video Control Rack","providerepev2":"Share","eVar15":"Video:Vod:","linktrknav":"video:share:Vod:","eVar14":": Share Published"}}},"embed":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000335697 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"playerTech":"JW Player","subType":"digital_original","thumbnail":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107396455-Lilium_FlightTest_Spain_FullTransition.png?v=1712176926","usageRule":"NA","vcpsId":7000335697,"videoStatus":"Unrestricted","uploadDate":"2024-03-27T16:25:22+0000","__typename":"cnbcvideo"},{"id":107379819,"title":"How China's property bubble burst","type":"cnbcvideo","brand":"cnbc","linkHeadline":null,"shorterHeadline":"How China's property bubble burst","premium":false,"native":false,"promoImage":{"id":107381660,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107381660-EXPLAINS_China_Property_Clean_V2.jpg?v=1709555772","__typename":"infographic"},"author":[{"id":107223011,"name":"Gaelle Legrand","url":"https:\u002F\u002Fwww.cnbc.com\u002Fgaelle-legrand\u002F","__typename":"creator","tagName":"Gaelle Legrand","tagNameFormatted":"gaelle legrand"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2024\u002F02\u002F29\u002Fhow-chinas-property-bubble-burst.html","creatorOverwrite":null,"datePublished":"2024-02-29T02:59:29+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Mon, Mar 4th 2024","sourceOrganization":[{"id":100005495,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Europe","__typename":"source","slug":"CNBC Europe Source","tagName":"CNBC Europe Source","tagNameFormatted":"cnbc europe sou","tagNameFormattedFull":"cnbc europe source"}],"seoTitle":"How China's property bubble burst","headline":"How China's property bubble burst","tagName":null,"tagNameFormatted":"NA","tagNameFormattedFull":"NA","slug":"How China's property bubble burst","description":"China's top real estate developers, Evergrande and Country Garden, have defaulted on their debts. But the issues in China's property market have much deeper roots.","encodings":[{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F42d686cfe606426995cf7da96d96e96e\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_1_HLSMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM03D01\u002F7000333141\u002F1709312599616-ChinaPropertyBubbleFINAL2_H264_126K.mp4","formatName":"mpeg4_200000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM03D01\u002F7000333141\u002F1709312599616-ChinaPropertyBubbleFINAL2_L.mp4","formatName":"mpeg4_500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM03D01\u002F7000333141\u002F1709312599616-ChinaPropertyBubbleFINAL2_mp3w_048K.mp3","formatName":"mpeg3_48000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM03D01\u002F7000333141\u002F1709312599616-ChinaPropertyBubbleFINAL2_mp3w_128K.mp3","formatName":"mpeg3_128000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM03D01\u002F7000333141\u002F1709312599616-ChinaPropertyBubbleFINAL2_H264_1M_720x405.mp4","formatName":"mpeg4_1100000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM03D01\u002F7000333141\u002F1709312599616-ChinaPropertyBubbleFINAL2.vtt","formatName":"WebVTT_0_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM03D01\u002F7000333141\u002F1709312599616-ChinaPropertyBubbleFINAL2_H264_480x270_25p_500K.mp4","formatName":"mpeg4_600000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM03D01\u002F7000333141\u002F1709312599616-ChinaPropertyBubbleFINAL2_MBR_4500.mp4","formatName":"mpeg4_4500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbc-hls.akamaized.net\u002F7000333141\u002FMBR\u002Fd1dfcc30-d7ed-11ee-a8e3-e32e186e2161\u002F1709312599616-ChinaPropertyBubbleFINAL2.m3u8","formatName":"mpeg4_1_CMAFMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F42d686cfe606426995cf7da96d96e96e\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_500000_HLSSBRStreaming","__typename":"encoding"}],"projectTeamContent":[{"id":105745767,"headline":"CNBC International Digital Original Video","tagName":"CNBC International Digital Original Video","tagNameFormatted":"cnbc internatio","tagNameFormattedFull":"cnbc international digital original video","__typename":"team"}],"relatedTags":[{"id":105056579,"headline":null,"tagName":"Asia Economy","tagNameFormatted":"asia economy","tagNameFormattedFull":"asia economy","type":"tag","__typename":"tag"},{"id":107317971,"headline":null,"tagName":"Neutral","tagNameFormatted":"neutral","tagNameFormattedFull":"neutral","type":"tag","__typename":"tag"},{"id":105056578,"headline":null,"tagName":"Business","tagNameFormatted":"business","tagNameFormattedFull":"business","type":"tag","__typename":"tag"},{"id":105056593,"headline":null,"tagName":"Leadership","tagNameFormatted":"leadership","tagNameFormattedFull":"leadership","type":"tag","__typename":"tag"},{"id":105056641,"headline":null,"tagName":"Real estate","tagNameFormatted":"real estate","tagNameFormattedFull":"real estate","type":"tag","__typename":"tag"},{"id":10000018,"headline":null,"tagName":"China","tagNameFormatted":"china","tagNameFormattedFull":"china","type":"place","__typename":"tag"},{"id":105073432,"headline":null,"tagName":"Housing policy","tagNameFormatted":"housing policy","tagNameFormattedFull":"housing policy","type":"tag","__typename":"tag"},{"id":106829078,"headline":null,"tagName":"Evergrande Property Services Group Ltd","tagNameFormatted":"evergrande prop","tagNameFormattedFull":"evergrande property services group ltd","type":"company","__typename":"tag"},{"id":1516409,"headline":null,"tagName":"Country Garden Holdings Co Ltd","tagNameFormatted":"country garden ","tagNameFormattedFull":"country garden holdings co ltd","type":"company","__typename":"tag"},{"id":1516404,"headline":null,"tagName":"China Evergrande Group","tagNameFormatted":"china evergrand","tagNameFormattedFull":"china evergrande group","type":"company","__typename":"tag"}],"relatedTagsFilteredFormatted":"asia economy|neutral|business|leadership|real estate|china|housing policy|evergrande prop|country garden |china evergrand","relatedTagsFilteredFormattedFull":"asia economy|neutral|business|leadership|real estate|china|housing policy|evergrande property services group ltd|country garden holdings co ltd|china evergrande group","additionalSectionContent":[{"id":104266428,"headline":"Digital Original","tagName":"Digital Original","tagNameFormatted":"digital origina","tagNameFormattedFull":"digital original","type":"franchise","__typename":"tag"},{"id":103470373,"headline":"International Digital Originals","tagName":"International Digital Originals","tagNameFormatted":"international d","tagNameFormattedFull":"international digital originals","type":"franchise","__typename":"tag"},{"id":105229289,"headline":"China Politics","tagName":"China Politics","tagNameFormatted":"china politics","tagNameFormattedFull":"china politics","type":"franchise","__typename":"tag"},{"id":105228996,"headline":"China Economy","tagName":"China Economy","tagNameFormatted":"china economy","tagNameFormattedFull":"china economy","type":"franchise","__typename":"tag"},{"id":10000115,"headline":"Real Estate","tagName":"Real Estate","tagNameFormatted":"real estate","tagNameFormattedFull":"real estate","type":"franchise","__typename":"tag"},{"id":10001092,"headline":"Real Estate Development","tagName":"Real Estate Development","tagNameFormatted":"real estate dev","tagNameFormattedFull":"real estate development","type":"franchise","__typename":"tag"},{"id":19832390,"headline":"Asia-Pacific News","tagName":"Asia News","tagNameFormatted":"asia news","tagNameFormattedFull":"asia news","type":"franchise","__typename":"tag"},{"id":10000008,"headline":"Asia Economy","tagName":"Asia Economy","tagNameFormatted":"asia economy","tagNameFormattedFull":"asia economy","type":"franchise","__typename":"tag"},{"id":105229295,"headline":"Asia Politics","tagName":"Asia Politics","tagNameFormatted":"asia politics","tagNameFormattedFull":"asia politics","type":"franchise","__typename":"tag"},{"id":10000807,"headline":"Existing Home Sales","tagName":"Existing Home Sales","tagNameFormatted":"existing home s","tagNameFormattedFull":"existing home sales","type":"franchise","__typename":"tag"}],"additionalSectionContentFormatted":"digital origina|international d|china politics|china economy|real estate|real estate dev|asia news|asia economy|asia politics|existing home s","additionalSectionContentFormattedFull":"digital original|international digital originals|china politics|china economy|real estate|real estate development|asia news|asia economy|asia politics|existing home sales","relatedVideoContent":[],"dateLastPublished":"2024-03-04T12:37:15+0000","sectionHierarchy":[{"id":15837856,"tagName":"CNBC TV","tagNameFormatted":"cnbc tv","tagNameFormattedFull":"cnbc tv","order":3,"__typename":"sectionHierarchy"},{"id":104266428,"tagName":"Digital Original","tagNameFormatted":"digital origina","tagNameFormattedFull":"digital original","order":2,"__typename":"sectionHierarchy"},{"id":41585735,"tagName":"CNBC Explains","tagNameFormatted":"cnbc explains","tagNameFormattedFull":"cnbc explains","order":1,"__typename":"sectionHierarchy"}],"sectionHierarchyFormatted":"cnbc tv|digital origina|cnbc explains","sectionHierarchyFormattedFull":"cnbc tv|digital original|cnbc explains","projectContent":[],"image":null,"section":{"headline":"CNBC Explains","id":41585735,"subType":"section","tagName":"CNBC Explains","tagNameFormatted":"cnbc explains","tagNameFormattedFull":"cnbc explains","title":"CNBC Explains","url":"https:\u002F\u002Fwww.cnbc.com\u002Fcnbc-explains\u002F","__typename":"franchise"},"projectTeamContentFormatted":"cnbc internatio","projectTeamContentFormattedFull":"cnbc international digital original video","projectContentFormatted":"NA","projectContentFormattedFull":"NA","creatorOverwriteFormatted":"NA","sourceOrganizationFormatted":"cnbc europe sou","sourceOrganizationFormattedFull":"cnbc europe source","authorFormatted":"gaelle legrand","authorFormattedFull":"gaelle legrand","dateFirstPublished":"2024-02-29T02:59:29+0000","subDomain":"https:\u002F\u002Fwww.cnbc.com","liveURL":"\u002Fvideo\u002F2024\u002F02\u002F29\u002Fhow-chinas-property-bubble-burst.html","pageName":"7000332893|video\u002F2024\u002F02\u002F29\u002Fhow-chinas-property-bubble-burst","shortDatePublished":"02\u002F28\u002F2024","shortDateLastPublished":"03\u002F04\u002F2024","shortDateFirstPublished":"02\u002F28\u002F2024","airDate":"2\u002F28\u002F2024","comScoreC2":"1000004","comScoreC3":"*null","comScoreC4":"CNBC.com VOD","comScoreC6":"*null","dayPart":"Others","duration":525,"network":"CNBC","platform":"web","playbackURL":"\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F42d686cfe606426995cf7da96d96e96e\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","playerConfig":{"autoPlay":false,"workflow":"VOD","sticky":true,"endCard":{"timer":5},"embedURL":"https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid={VID}","hlshtml":true,"primary":"html5","share":true,"parsely":true,"playbackRateControls":false,"fwassetId":"cnbc_7000332893","mediaid":"cnbc_7000332893","key":"+9o3ihbMIU8\u002FixFry35xlHnkQ9tikKg9TU0io1QbWXfpeR0q","playList":false,"sharing":{"sites":["facebook","twitter","linkedin"],"link":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2024\u002F02\u002F29\u002Fhow-chinas-property-bubble-burst.html","code":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000332893 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"mobileSFID":"7003948","IE11Profile":"169843:nbcu_web_flash_cs_moat_https","advertising":{"client":"freewheel","creativeTimeout":4000,"requestTimeout":4000,"vpaidcontrols":true,"freewheel":{"sectionid":"cnbc_inline_vod","networkid":169843,"profileid":"169843:nbcu_mobileweb_js_cs_moat_https","adManagerURL":"https:\u002F\u002Fmssl.fwmrm.net\u002Flibs\u002Fadm\u002F6.35.0\u002FAdManager.js","serverid":"\u002F\u002F29773.v.fwmrm.net\u002Fad\u002Fp\u002F1","sfid":"7006049","afid":"137705375","custom":{"metr":"1023","sfid":"7006049","afid":"137705375"}},"schedule":{"adbreak":{"offset":"pre","tag":"placeholder_preroll"}}},"analytics":{"onSite":true,"omniture":{"playername":"JW_Player","playerversion":"Universal","daypart":"Others","assetstatus":"Unrestricted","videoprogram":{"live":"iconic"},"videocontent":"Linear","title":"{partnername} Vod","guid":"{partnername} Vod","share":{"linksharepev2":"Video Control Rack","providerepev2":"Share","eVar15":"Video:Vod:","linktrknav":"video:share:Vod:","eVar14":": Share Published"}}},"embed":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000332893 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"playerTech":"JW Player","subType":"digital_original","thumbnail":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107381660-EXPLAINS_China_Property_Clean_V2.jpg?v=1709555772","usageRule":"NA","vcpsId":7000332893,"videoStatus":"Unrestricted","uploadDate":"2024-02-28T18:07:49+0000","__typename":"cnbcvideo"},{"id":107358912,"title":"What is the World Economic Forum?","type":"cnbcvideo","brand":"cnbc","linkHeadline":null,"shorterHeadline":"What is the World Economic Forum?","premium":false,"native":false,"promoImage":{"id":107381642,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107381642-EXPLAINS_WEF_Clean_V4.jpg?v=1709553581","__typename":"infographic"},"author":[{"id":107223011,"name":"Gaelle Legrand","url":"https:\u002F\u002Fwww.cnbc.com\u002Fgaelle-legrand\u002F","__typename":"creator","tagName":"Gaelle Legrand","tagNameFormatted":"gaelle legrand"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2024\u002F01\u002F15\u002Fwhat-is-the-world-economic-forum.html","creatorOverwrite":null,"datePublished":"2024-01-15T14:38:11+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Mon, Mar 4th 2024","sourceOrganization":[{"id":100005495,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Europe","__typename":"source","slug":"CNBC Europe Source","tagName":"CNBC Europe Source","tagNameFormatted":"cnbc europe sou","tagNameFormattedFull":"cnbc europe source"}],"seoTitle":"What is the World Economic Forum?","headline":"What is the World Economic Forum?","tagName":null,"tagNameFormatted":"NA","tagNameFormattedFull":"NA","slug":"What is the World Economic Forum?","description":"What does the World Economic Forum do once its annual meeting in Davos is over? CNBC explains.","encodings":[{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F0867c7073f104612a6e5cb0eead73081\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_1_HLSMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM01D15\u002F7000328451\u002F1705328759934-WhatisWEFFINAL_H264_126K.mp4","formatName":"mpeg4_200000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM01D15\u002F7000328451\u002F1705328759934-WhatisWEFFINAL_L.mp4","formatName":"mpeg4_500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM01D15\u002F7000328451\u002F1705328759934-WhatisWEFFINAL_mp3w_048K.mp3","formatName":"mpeg3_48000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM01D15\u002F7000328451\u002F1705328759934-WhatisWEFFINAL_mp3w_128K.mp3","formatName":"mpeg3_128000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM01D15\u002F7000328451\u002F1705328759934-WhatisWEFFINAL_H264_1M_720x405.mp4","formatName":"mpeg4_1100000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM01D15\u002F7000328451\u002F1705328759934-WhatisWEFFINAL.vtt","formatName":"WebVTT_0_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM01D15\u002F7000328451\u002F1705328759934-WhatisWEFFINAL_H264_480x270_25p_500K.mp4","formatName":"mpeg4_600000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbc-hls.akamaized.net\u002F7000328451\u002FMBR\u002F1b09c600-b3b2-11ee-9898-39c5e5b871dd\u002F1705328759934-WhatisWEFFINAL.m3u8","formatName":"mpeg4_1_CMAFMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2024\u002FM01D15\u002F7000328451\u002F1705328759934-WhatisWEFFINAL_MBR_4500.mp4","formatName":"mpeg4_4500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F0867c7073f104612a6e5cb0eead73081\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_500000_HLSSBRStreaming","__typename":"encoding"}],"projectTeamContent":[{"id":105745767,"headline":"CNBC International Digital Original Video","tagName":"CNBC International Digital Original Video","tagNameFormatted":"cnbc internatio","tagNameFormattedFull":"cnbc international digital original video","__typename":"team"}],"relatedTags":[{"id":107317971,"headline":null,"tagName":"Neutral","tagNameFormatted":"neutral","tagNameFormattedFull":"neutral","type":"tag","__typename":"tag"},{"id":105056600,"headline":null,"tagName":"Davos - World Economic Forum","tagNameFormatted":"davos world eco","tagNameFormattedFull":"davos world economic forum","type":"organization","__typename":"tag"},{"id":105633551,"headline":null,"tagName":"Klaus Schwab","tagNameFormatted":"klaus schwab","tagNameFormattedFull":"klaus schwab","type":"tag","__typename":"tag"},{"id":105670795,"headline":null,"tagName":"Davos","tagNameFormatted":"davos","tagNameFormattedFull":"davos","type":"place","__typename":"tag"},{"id":105632958,"headline":null,"tagName":"World Economic Forum Annual Meeting","tagNameFormatted":"world economic ","tagNameFormattedFull":"world economic forum annual meeting","type":"tag","__typename":"tag"},{"id":105058481,"headline":null,"tagName":"Taxes","tagNameFormatted":"taxes","tagNameFormattedFull":"taxes","type":"tag","__typename":"tag"},{"id":105355965,"headline":null,"tagName":"Events","tagNameFormatted":"events","tagNameFormattedFull":"events","type":"tag","__typename":"tag"},{"id":105056578,"headline":null,"tagName":"Business","tagNameFormatted":"business","tagNameFormattedFull":"business","type":"tag","__typename":"tag"},{"id":105056593,"headline":null,"tagName":"Leadership","tagNameFormatted":"leadership","tagNameFormattedFull":"leadership","type":"tag","__typename":"tag"}],"relatedTagsFilteredFormatted":"neutral|davos world eco|klaus schwab|davos|world economic |taxes|events|business|leadership","relatedTagsFilteredFormattedFull":"neutral|davos world economic forum|klaus schwab|davos|world economic forum annual meeting|taxes|events|business|leadership","additionalSectionContent":[{"id":104266428,"headline":"Digital Original","tagName":"Digital Original","tagNameFormatted":"digital origina","tagNameFormattedFull":"digital original","type":"franchise","__typename":"tag"},{"id":41585735,"headline":"CNBC Explains","tagName":"CNBC Explains","tagNameFormatted":"cnbc explains","tagNameFormattedFull":"cnbc explains","type":"franchise","__typename":"tag"},{"id":103470373,"headline":"International Digital Originals","tagName":"International Digital Originals","tagNameFormatted":"international d","tagNameFormattedFull":"international digital originals","type":"franchise","__typename":"tag"}],"additionalSectionContentFormatted":"digital origina|cnbc explains|international d","additionalSectionContentFormattedFull":"digital original|cnbc explains|international digital originals","relatedVideoContent":[],"dateLastPublished":"2024-03-04T12:00:04+0000","sectionHierarchy":[{"id":16903222,"tagName":"Special Reports","tagNameFormatted":"special reports","tagNameFormattedFull":"special reports","order":2,"__typename":"sectionHierarchy"},{"id":102314545,"tagName":"Davos WEF","tagNameFormatted":"davos wef","tagNameFormattedFull":"davos wef","order":1,"__typename":"sectionHierarchy"}],"sectionHierarchyFormatted":"special reports|davos wef","sectionHierarchyFormattedFull":"special reports|davos wef","projectContent":[],"image":null,"section":{"headline":"Davos 2024: World Economic Forum","id":102314545,"subType":"special_report","tagName":"Davos WEF","tagNameFormatted":"davos wef","tagNameFormattedFull":"davos wef","title":"Davos 2024: World Economic Forum","url":"https:\u002F\u002Fwww.cnbc.com\u002Fdavos-world-economic-forum\u002F","__typename":"franchise"},"projectTeamContentFormatted":"cnbc internatio","projectTeamContentFormattedFull":"cnbc international digital original video","projectContentFormatted":"NA","projectContentFormattedFull":"NA","creatorOverwriteFormatted":"NA","sourceOrganizationFormatted":"cnbc europe sou","sourceOrganizationFormattedFull":"cnbc europe source","authorFormatted":"gaelle legrand","authorFormattedFull":"gaelle legrand","dateFirstPublished":"2024-01-15T14:38:11+0000","subDomain":"https:\u002F\u002Fwww.cnbc.com","liveURL":"\u002Fvideo\u002F2024\u002F01\u002F15\u002Fwhat-is-the-world-economic-forum.html","pageName":"7000328451|video\u002F2024\u002F01\u002F15\u002Fwhat-is-the-world-economic-forum","shortDatePublished":"01\u002F15\u002F2024","shortDateLastPublished":"03\u002F04\u002F2024","shortDateFirstPublished":"01\u002F15\u002F2024","airDate":"1\u002F15\u002F2024","comScoreC2":"1000004","comScoreC3":"*null","comScoreC4":"CNBC.com VOD","comScoreC6":"*null","dayPart":"Others","duration":421,"network":"CNBC","platform":"web","playbackURL":"\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F0867c7073f104612a6e5cb0eead73081\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","playerConfig":{"autoPlay":false,"workflow":"VOD","sticky":true,"endCard":{"timer":5},"embedURL":"https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid={VID}","hlshtml":true,"primary":"html5","share":true,"parsely":true,"playbackRateControls":false,"fwassetId":"cnbc_7000328451","mediaid":"cnbc_7000328451","key":"+9o3ihbMIU8\u002FixFry35xlHnkQ9tikKg9TU0io1QbWXfpeR0q","playList":false,"sharing":{"sites":["facebook","twitter","linkedin"],"link":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2024\u002F01\u002F15\u002Fwhat-is-the-world-economic-forum.html","code":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000328451 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"mobileSFID":"7003948","IE11Profile":"169843:nbcu_web_flash_cs_moat_https","advertising":{"client":"freewheel","creativeTimeout":4000,"requestTimeout":4000,"vpaidcontrols":true,"freewheel":{"sectionid":"cnbc_inline_vod","networkid":169843,"profileid":"169843:nbcu_mobileweb_js_cs_moat_https","adManagerURL":"https:\u002F\u002Fmssl.fwmrm.net\u002Flibs\u002Fadm\u002F6.35.0\u002FAdManager.js","serverid":"\u002F\u002F29773.v.fwmrm.net\u002Fad\u002Fp\u002F1","sfid":"7006049","afid":"137705375","custom":{"metr":"1023","sfid":"7006049","afid":"137705375"}},"schedule":{"adbreak":{"offset":"pre","tag":"placeholder_preroll"}}},"analytics":{"onSite":true,"omniture":{"playername":"JW_Player","playerversion":"Universal","daypart":"Others","assetstatus":"Unrestricted","videoprogram":{"live":"iconic"},"videocontent":"Linear","title":"{partnername} Vod","guid":"{partnername} Vod","share":{"linksharepev2":"Video Control Rack","providerepev2":"Share","eVar15":"Video:Vod:","linktrknav":"video:share:Vod:","eVar14":": Share Published"}}},"embed":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000328451 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"playerTech":"JW Player","subType":"digital_original","thumbnail":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107381642-EXPLAINS_WEF_Clean_V4.jpg?v=1709553581","usageRule":"NA","vcpsId":7000328451,"videoStatus":"Unrestricted","uploadDate":"2024-01-15T14:06:44+0000","__typename":"cnbcvideo"},{"id":107082944,"title":"The Quad is going beyond military exercises — and China is watching","type":"cnbcvideo","brand":"cnbc","linkHeadline":null,"shorterHeadline":"The Quad is going beyond military exercises — and China is watching","premium":false,"native":false,"promoImage":{"id":107082945,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107082945-Thumbnail_Digital_Originals_QUAD_V3_Clean.jpg?v=1656576009","__typename":"infographic"},"author":[{"id":106229681,"name":"Nessa Anwar","url":"https:\u002F\u002Fwww.cnbc.com\u002Fnessa-anwar-profile---cnbc\u002F","__typename":"creator","tagName":"Nessa Anwar","tagNameFormatted":"nessa anwar"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2022\u002F07\u002F04\u002Fthe-quad-expands-beyond-naval-military-exercises-and-china-watches.html","creatorOverwrite":null,"datePublished":"2022-07-04T01:39:09+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Tue, Oct 24th 2023","sourceOrganization":[{"id":100005489,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Asia","__typename":"source","slug":"CNBC Asia Source","tagName":"CNBC Asia Source","tagNameFormatted":"cnbc asia sourc","tagNameFormattedFull":"cnbc asia source"}],"seoTitle":"The Quad expands beyond naval military exercises — and China watches","headline":"The Quad is going beyond military exercises — and China is watching","tagName":null,"tagNameFormatted":"NA","tagNameFormattedFull":"NA","slug":"Quad - the big security alignment China is worried about - 107082944","description":"Over the years, the Quad has been incorrectly called an \"Asian NATO,\" especially when it comes to security concerns about another big power in the region — China.","encodings":[{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002Fe436d26f1a51448caadfc8c6d09cf159\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_1_HLSMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2022\u002FM07D03\u002F7000251960\u002F1656897859287-NAQuad_Final_H264_126K.mp4","formatName":"mpeg4_200000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2022\u002FM07D03\u002F7000251960\u002F1656897859287-NAQuad_Final_L.mp4","formatName":"mpeg4_500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2022\u002FM07D03\u002F7000251960\u002F1656897859287-NAQuad_Final_mp3w_048K.mp3","formatName":"mpeg3_48000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2022\u002FM07D03\u002F7000251960\u002F1656897859287-NAQuad_Final_mp3w_128K.mp3","formatName":"mpeg3_128000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2022\u002FM07D03\u002F7000251960\u002F1656897859287-NAQuad_Final_H264_1M_720x405.mp4","formatName":"mpeg4_1100000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2022\u002FM07D03\u002F7000251960\u002F1656897859287-NAQuad_Final.vtt","formatName":"WebVTT_0_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2022\u002FM07D03\u002F7000251960\u002F1656897859287-NAQuad_Final_H264_480x270_25p_500K.mp4","formatName":"mpeg4_600000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbc-hls.akamaized.net\u002F7000251960\u002FMBR\u002F0e51a640-2289-11ee-9d01-6f3d7e5db76c\u002F1656897859287-NAQuad_Final.m3u8","formatName":"mpeg4_1_CMAFMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2022\u002FM07D03\u002F7000251960\u002F1656897859287-NAQuad_Final_MBR_4500.mp4","formatName":"mpeg4_4500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002Fe436d26f1a51448caadfc8c6d09cf159\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_500000_HLSSBRStreaming","__typename":"encoding"}],"projectTeamContent":[{"id":105745767,"headline":"CNBC International Digital Original Video","tagName":"CNBC International Digital Original Video","tagNameFormatted":"cnbc internatio","tagNameFormattedFull":"cnbc international digital original video","__typename":"team"}],"relatedTags":[{"id":10001247,"headline":null,"tagName":"Ukraine","tagNameFormatted":"ukraine","tagNameFormattedFull":"ukraine","type":"place","__typename":"tag"},{"id":105056579,"headline":null,"tagName":"Asia Economy","tagNameFormatted":"asia economy","tagNameFormattedFull":"asia economy","type":"tag","__typename":"tag"},{"id":105056941,"headline":null,"tagName":"Aerospace and defense industry","tagNameFormatted":"aerospace and d","tagNameFormattedFull":"aerospace and defense industry","type":"tag","__typename":"tag"},{"id":105056610,"headline":null,"tagName":"Defense","tagNameFormatted":"defense","tagNameFormattedFull":"defense","type":"tag","__typename":"tag"},{"id":106910802,"headline":null,"tagName":"Intl Digital Video","tagNameFormatted":"intl digital vi","tagNameFormattedFull":"intl digital video","type":"tag","__typename":"tag"},{"id":10000385,"headline":null,"tagName":"United States","tagNameFormatted":"united states","tagNameFormattedFull":"united states","type":"place","__typename":"tag"},{"id":10000019,"headline":null,"tagName":"India","tagNameFormatted":"india","tagNameFormattedFull":"india","type":"place","__typename":"tag"},{"id":10000020,"headline":null,"tagName":"Japan","tagNameFormatted":"japan","tagNameFormattedFull":"japan","type":"place","__typename":"tag"},{"id":10000018,"headline":null,"tagName":"China","tagNameFormatted":"china","tagNameFormattedFull":"china","type":"place","__typename":"tag"},{"id":105060810,"headline":null,"tagName":"Australia","tagNameFormatted":"australia","tagNameFormattedFull":"australia","type":"place","__typename":"tag"},{"id":105876642,"headline":null,"tagName":"Shinzo Abe","tagNameFormatted":"shinzo abe","tagNameFormattedFull":"shinzo abe","type":"tag","__typename":"tag"},{"id":105314466,"headline":null,"tagName":"Kevin Rudd","tagNameFormatted":"kevin rudd","tagNameFormattedFull":"kevin rudd","type":"tag","__typename":"tag"},{"id":105876643,"headline":null,"tagName":"Narendra Modi","tagNameFormatted":"narendra modi","tagNameFormattedFull":"narendra modi","type":"tag","__typename":"tag"},{"id":105877117,"headline":null,"tagName":"Joe Biden","tagNameFormatted":"joe biden","tagNameFormattedFull":"joe biden","type":"tag","__typename":"tag"},{"id":105876935,"headline":null,"tagName":"Xi Jinping","tagNameFormatted":"xi jinping","tagNameFormattedFull":"xi jinping","type":"tag","__typename":"tag"},{"id":105140593,"headline":null,"tagName":"U.S. Navy","tagNameFormatted":"us navy","tagNameFormattedFull":"us navy","type":"organization","__typename":"tag"},{"id":105116134,"headline":null,"tagName":"East China Sea","tagNameFormatted":"east china sea","tagNameFormattedFull":"east china sea","type":"place","__typename":"tag"},{"id":105084885,"headline":null,"tagName":"South China Sea","tagNameFormatted":"south china sea","tagNameFormattedFull":"south china sea","type":"place","__typename":"tag"},{"id":105223066,"headline":null,"tagName":"Military events","tagNameFormatted":"military events","tagNameFormattedFull":"military events","type":"tag","__typename":"tag"},{"id":105140592,"headline":null,"tagName":"Navy","tagNameFormatted":"navy","tagNameFormattedFull":"navy","type":"tag","__typename":"tag"},{"id":105234580,"headline":null,"tagName":"Territorial disputes","tagNameFormatted":"territorial dis","tagNameFormattedFull":"territorial disputes","type":"tag","__typename":"tag"},{"id":105056897,"headline":null,"tagName":"Economy","tagNameFormatted":"economy","tagNameFormattedFull":"economy","type":"tag","__typename":"tag"},{"id":105217841,"headline":null,"tagName":"Pacific Ocean","tagNameFormatted":"pacific ocean","tagNameFormattedFull":"pacific ocean","type":"place","__typename":"tag"},{"id":105562424,"headline":null,"tagName":"Indian Ocean","tagNameFormatted":"indian ocean","tagNameFormattedFull":"indian ocean","type":"place","__typename":"tag"},{"id":105090501,"headline":null,"tagName":"2004 Indian Ocean tsunami","tagNameFormatted":"2004 indian oce","tagNameFormattedFull":"2004 indian ocean tsunami","type":"tag","__typename":"tag"},{"id":10000054,"headline":null,"tagName":"Russia","tagNameFormatted":"russia","tagNameFormattedFull":"russia","type":"place","__typename":"tag"},{"id":105056648,"headline":null,"tagName":"Politics","tagNameFormatted":"politics","tagNameFormattedFull":"politics","type":"tag","__typename":"tag"}],"relatedTagsFilteredFormatted":"ukraine|asia economy|aerospace and d|defense|intl digital vi|united states|india|japan|china|australia|shinzo abe|kevin rudd|narendra modi|joe biden|xi jinping|us navy|east china sea|south china sea|military events|navy|territorial dis|economy|pacific ocean|indian ocean|2004 indian oce|russia|politics","relatedTagsFilteredFormattedFull":"ukraine|asia economy|aerospace and defense industry|defense|intl digital video|united states|india|japan|china|australia|shinzo abe|kevin rudd|narendra modi|joe biden|xi jinping|us navy|east china sea|south china sea|military events|navy|territorial disputes|economy|pacific ocean|indian ocean|2004 indian ocean tsunami|russia|politics","additionalSectionContent":[{"id":15837856,"headline":"CNBC TV","tagName":"CNBC TV","tagNameFormatted":"cnbc tv","tagNameFormattedFull":"cnbc tv","type":"franchise","__typename":"tag"},{"id":46,"headline":"Video","tagName":"Video","tagNameFormatted":"video","tagNameFormattedFull":"video","type":"franchise","__typename":"tag"},{"id":15839263,"headline":"Top Videos","tagName":"Top Videos","tagNameFormatted":"top videos","tagNameFormattedFull":"top videos","type":"franchise","__typename":"tag"},{"id":104266428,"headline":"Digital Original","tagName":"Digital Original","tagNameFormatted":"digital origina","tagNameFormattedFull":"digital original","type":"franchise","__typename":"tag"},{"id":10001059,"headline":"Defense","tagName":"Defense","tagNameFormatted":"defense","tagNameFormattedFull":"defense","type":"franchise","__typename":"tag"},{"id":10000693,"headline":"Aerospace & Defense","tagName":"Aerospace & Defense","tagNameFormatted":"aerospace defen","tagNameFormattedFull":"aerospace defense","type":"franchise","__typename":"tag"},{"id":41369691,"headline":"CNBC Asia-Pacific","tagName":"Asia-Pacific Homepage","tagNameFormatted":"asiapacific hom","tagNameFormattedFull":"asiapacific homepage","type":"franchise","__typename":"tag"},{"id":10000004,"headline":"Asia-Pacific Markets Headlines","tagName":null,"tagNameFormatted":"NA","tagNameFormattedFull":"NA","type":"franchise","__typename":"tag"},{"id":19794221,"headline":"Europe News","tagName":"Europe News","tagNameFormatted":"europe news","tagNameFormattedFull":"europe news","type":"franchise","__typename":"tag"},{"id":105229289,"headline":"China Politics","tagName":"China Politics","tagNameFormatted":"china politics","tagNameFormattedFull":"china politics","type":"franchise","__typename":"tag"},{"id":105228996,"headline":"China Economy","tagName":"China Economy","tagNameFormatted":"china economy","tagNameFormattedFull":"china economy","type":"franchise","__typename":"tag"},{"id":19832390,"headline":"Asia-Pacific News","tagName":"Asia News","tagNameFormatted":"asia news","tagNameFormattedFull":"asia news","type":"franchise","__typename":"tag"},{"id":10000008,"headline":"Asia Economy","tagName":"Asia Economy","tagNameFormatted":"asia economy","tagNameFormattedFull":"asia economy","type":"franchise","__typename":"tag"},{"id":105229295,"headline":"Asia Politics","tagName":"Asia Politics","tagNameFormatted":"asia politics","tagNameFormattedFull":"asia politics","type":"franchise","__typename":"tag"},{"id":41585735,"headline":"CNBC Explains","tagName":"CNBC Explains","tagNameFormatted":"cnbc explains","tagNameFormattedFull":"cnbc explains","type":"franchise","__typename":"tag"},{"id":10000113,"headline":"Politics","tagName":"Politics","tagNameFormatted":"politics","tagNameFormattedFull":"politics","type":"franchise","__typename":"tag"},{"id":20910258,"headline":"Economy","tagName":"Economy","tagNameFormatted":"economy","tagNameFormattedFull":"economy","type":"franchise","__typename":"tag"},{"id":10001034,"headline":"Political Leaders","tagName":"Political Leaders","tagNameFormatted":"political leade","tagNameFormattedFull":"political leaders","type":"franchise","__typename":"tag"}],"additionalSectionContentFormatted":"cnbc tv|video|top videos|digital origina|defense|aerospace defen|asiapacific hom|europe news|china politics|china economy|asia news|asia economy|asia politics|cnbc explains|politics|economy|political leade","additionalSectionContentFormattedFull":"cnbc tv|video|top videos|digital original|defense|aerospace defense|asiapacific homepage|europe news|china politics|china economy|asia news|asia economy|asia politics|cnbc explains|politics|economy|political leaders","relatedVideoContent":[],"dateLastPublished":"2023-10-25T01:38:53+0000","sectionHierarchy":[{"id":15837856,"tagName":"CNBC TV","tagNameFormatted":"cnbc tv","tagNameFormattedFull":"cnbc tv","order":5,"__typename":"sectionHierarchy"},{"id":15839263,"tagName":"Top Videos","tagNameFormatted":"top videos","tagNameFormattedFull":"top videos","order":4,"__typename":"sectionHierarchy"},{"id":100004038,"tagName":"Video: All","tagNameFormatted":"video all","tagNameFormattedFull":"video all","order":3,"__typename":"sectionHierarchy"},{"id":100004035,"tagName":"Europe Video","tagNameFormatted":"europe video","tagNameFormattedFull":"europe video","order":2,"__typename":"sectionHierarchy"},{"id":103470373,"tagName":"International Digital Originals","tagNameFormatted":"international d","tagNameFormattedFull":"international digital originals","order":1,"__typename":"sectionHierarchy"}],"sectionHierarchyFormatted":"cnbc tv|top videos|video all|europe video|international d","sectionHierarchyFormattedFull":"cnbc tv|top videos|video all|europe video|international digital originals","projectContent":[],"image":null,"section":{"headline":"International Digital Originals","id":103470373,"subType":"special_report","tagName":"International Digital Originals","tagNameFormatted":"international d","tagNameFormattedFull":"international digital originals","title":"International Digital Originals","url":"https:\u002F\u002Fwww.cnbc.com\u002Finternational-digital-originals\u002F","__typename":"franchise"},"projectTeamContentFormatted":"cnbc internatio","projectTeamContentFormattedFull":"cnbc international digital original video","projectContentFormatted":"NA","projectContentFormattedFull":"NA","creatorOverwriteFormatted":"NA","sourceOrganizationFormatted":"cnbc asia sourc","sourceOrganizationFormattedFull":"cnbc asia source","authorFormatted":"nessa anwar","authorFormattedFull":"nessa anwar","dateFirstPublished":"2022-07-04T01:39:09+0000","subDomain":"https:\u002F\u002Fwww.cnbc.com","liveURL":"\u002Fvideo\u002F2022\u002F07\u002F04\u002Fthe-quad-expands-beyond-naval-military-exercises-and-china-watches.html","pageName":"7000251960|video\u002F2022\u002F07\u002F04\u002Fthe-quad-expands-beyond-naval-military-exercises-and-china-watches","shortDatePublished":"07\u002F03\u002F2022","shortDateLastPublished":"10\u002F24\u002F2023","shortDateFirstPublished":"07\u002F03\u002F2022","airDate":"7\u002F3\u002F2022","comScoreC2":"1000004","comScoreC3":"*null","comScoreC4":"CNBC.com VOD","comScoreC6":"*null","dayPart":"Others","duration":825,"network":"CNBC","platform":"web","playbackURL":"\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002Fe436d26f1a51448caadfc8c6d09cf159\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","playerConfig":{"autoPlay":false,"workflow":"VOD","sticky":true,"endCard":{"timer":5},"embedURL":"https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid={VID}","hlshtml":true,"primary":"html5","share":true,"parsely":true,"playbackRateControls":false,"fwassetId":"cnbc_7000251960","mediaid":"cnbc_7000251960","key":"+9o3ihbMIU8\u002FixFry35xlHnkQ9tikKg9TU0io1QbWXfpeR0q","playList":false,"sharing":{"sites":["facebook","twitter","linkedin"],"link":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2022\u002F07\u002F04\u002Fthe-quad-expands-beyond-naval-military-exercises-and-china-watches.html","code":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000251960 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"mobileSFID":"7003948","IE11Profile":"169843:nbcu_web_flash_cs_moat_https","advertising":{"client":"freewheel","creativeTimeout":4000,"requestTimeout":4000,"vpaidcontrols":true,"freewheel":{"sectionid":"cnbc_inline_vod","networkid":169843,"profileid":"169843:nbcu_mobileweb_js_cs_moat_https","adManagerURL":"https:\u002F\u002Fmssl.fwmrm.net\u002Flibs\u002Fadm\u002F6.35.0\u002FAdManager.js","serverid":"\u002F\u002F29773.v.fwmrm.net\u002Fad\u002Fp\u002F1","sfid":"7006049","afid":"137705375","custom":{"metr":"1023","sfid":"7006049","afid":"137705375"}},"schedule":{"adbreak":{"offset":"pre","tag":"placeholder_preroll"}}},"analytics":{"onSite":true,"omniture":{"playername":"JW_Player","playerversion":"Universal","daypart":"Others","assetstatus":"Unrestricted","videoprogram":{"live":"iconic"},"videocontent":"Linear","title":"{partnername} Vod","guid":"{partnername} Vod","share":{"linksharepev2":"Video Control Rack","providerepev2":"Share","eVar15":"Video:Vod:","linktrknav":"video:share:Vod:","eVar14":": Share Published"}}},"embed":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000251960 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"playerTech":"JW Player","subType":"digital_original","thumbnail":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107082945-Thumbnail_Digital_Originals_QUAD_V3_Clean.jpg?v=1656576009","usageRule":"NA","vcpsId":7000251960,"videoStatus":"Unrestricted","uploadDate":"2022-06-30T07:13:24+0000","__typename":"cnbcvideo"},{"id":106989446,"title":"Why a coup in Guinea was felt around the world","type":"cnbcvideo","brand":"cnbc","linkHeadline":null,"shorterHeadline":"Why a coup in Guinea was felt around the world","premium":false,"native":false,"promoImage":{"id":106990143,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F106990143-GettyImages-1235315196.jpg?v=1707312666","__typename":"infographic"},"author":[{"id":105841342,"name":"Timothyna Afua Duncan","url":"https:\u002F\u002Fwww.cnbc.com\u002Ftimothyna-duncan\u002F","__typename":"creator","tagName":"Timothyna Duncan","tagNameFormatted":"timothyna dunca"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2021\u002F12\u002F16\u002Fwhy-a-coup-in-guinea-was-felt-around-the-world.html","creatorOverwrite":null,"datePublished":"2021-12-16T08:33:46+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Fri, Jul 14th 2023","sourceOrganization":[{"id":100005495,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Europe","__typename":"source","slug":"CNBC Europe Source","tagName":"CNBC Europe Source","tagNameFormatted":"cnbc europe sou","tagNameFormattedFull":"cnbc europe source"}],"seoTitle":"Why a coup in Guinea was felt around the world","headline":"Why a coup in Guinea was felt around the world","tagName":null,"tagNameFormatted":"NA","tagNameFormattedFull":"NA","slug":"Why a coup in Guinea was felt around the world","description":"A coup in mineral-rich Guinea has rattled markets and disrupted mining operations beyond West Africa. The coastal country boasts some of the world's largest reserves of many minerals, including bauxite and iron ore. The military's overthrow of Guinea's long-serving president, Alpha Conde, has added further pressure to already strained supply chains.","encodings":[{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F48efa1fc20f64904945d3e8d40d4117f\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_1_HLSMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2021\u002FM12D15\u002F7000224309\u002F1639629186567-20211215_CNBCExplains_Guinea_v02f_H264_126K.mp4","formatName":"mpeg4_200000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2021\u002FM12D15\u002F7000224309\u002F1639629186567-20211215_CNBCExplains_Guinea_v02f_L.mp4","formatName":"mpeg4_500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2021\u002FM12D15\u002F7000224309\u002F1639629186567-20211215_CNBCExplains_Guinea_v02f_mp3w_048K.mp3","formatName":"mpeg3_48000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2021\u002FM12D15\u002F7000224309\u002F1639629186567-20211215_CNBCExplains_Guinea_v02f_mp3w_128K.mp3","formatName":"mpeg3_128000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2021\u002FM12D15\u002F7000224309\u002F1639629186567-20211215_CNBCExplains_Guinea_v02f_H264_1M_720x405.mp4","formatName":"mpeg4_1100000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2021\u002FM12D15\u002F7000224309\u002F1639629186567-20211215_CNBCExplains_Guinea_v02f.vtt","formatName":"WebVTT_0_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2021\u002FM12D15\u002F7000224309\u002F1639629186567-20211215_CNBCExplains_Guinea_v02f_H264_480x270_25p_500K.mp4","formatName":"mpeg4_600000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fpdl-iphone-cnbc-com.akamaized.net\u002FVCPS\u002FY2021\u002FM12D15\u002F7000224309\u002F1639629186567-20211215_CNBCExplains_Guinea_v02f_MBR_4500.mp4","formatName":"mpeg4_4500000_Download","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbc-hls.akamaized.net\u002F7000224309\u002FMBR\u002F9382f080-2289-11ee-9d01-6f3d7e5db76c\u002F1639629186567-20211215_CNBCExplains_Guinea_v02f.m3u8","formatName":"mpeg4_1_CMAFMBRStreaming","__typename":"encoding"},{"url":"https:\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F48efa1fc20f64904945d3e8d40d4117f\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","formatName":"mpeg4_500000_HLSSBRStreaming","__typename":"encoding"}],"projectTeamContent":[{"id":105745767,"headline":"CNBC International Digital Original Video","tagName":"CNBC International Digital Original Video","tagNameFormatted":"cnbc internatio","tagNameFormattedFull":"cnbc international digital original video","__typename":"team"}],"relatedTags":[{"id":105056599,"headline":null,"tagName":"World economy","tagNameFormatted":"world economy","tagNameFormattedFull":"world economy","type":"tag","__typename":"tag"},{"id":106910802,"headline":null,"tagName":"Intl Digital Video","tagNameFormatted":"intl digital vi","tagNameFormattedFull":"intl digital video","type":"tag","__typename":"tag"},{"id":105056669,"headline":null,"tagName":"Metal Commodities","tagNameFormatted":"metal commoditi","tagNameFormattedFull":"metal commodities","type":"tag","__typename":"tag"},{"id":105056674,"headline":null,"tagName":"Metals and minerals industry","tagNameFormatted":"metals and mine","tagNameFormattedFull":"metals and minerals industry","type":"tag","__typename":"tag"},{"id":105638309,"headline":null,"tagName":"Guinea","tagNameFormatted":"guinea","tagNameFormattedFull":"guinea","type":"place","__typename":"tag"},{"id":106480095,"headline":null,"tagName":"African Union","tagNameFormatted":"african union","tagNameFormattedFull":"african union","type":"organization","__typename":"tag"},{"id":105060986,"headline":null,"tagName":"West Africa","tagNameFormatted":"west africa","tagNameFormattedFull":"west africa","type":"place","__typename":"tag"},{"id":105058746,"headline":null,"tagName":"Aluminum mining and refining","tagNameFormatted":"aluminum mining","tagNameFormattedFull":"aluminum mining and refining","type":"tag","__typename":"tag"},{"id":105178564,"headline":null,"tagName":"Base metal markets","tagNameFormatted":"base metal mark","tagNameFormattedFull":"base metal markets","type":"tag","__typename":"tag"},{"id":105654930,"headline":null,"tagName":"Precious metals industry","tagNameFormatted":"precious metals","tagNameFormattedFull":"precious metals industry","type":"tag","__typename":"tag"},{"id":105065737,"headline":null,"tagName":"Metals","tagNameFormatted":"metals","tagNameFormattedFull":"metals","type":"tag","__typename":"tag"},{"id":105222403,"headline":null,"tagName":"Iron markets","tagNameFormatted":"iron markets","tagNameFormattedFull":"iron markets","type":"tag","__typename":"tag"},{"id":105882821,"headline":null,"tagName":"Coups d'etat","tagNameFormatted":"coups detat","tagNameFormattedFull":"coups detat","type":"tag","__typename":"tag"}],"relatedTagsFilteredFormatted":"world economy|intl digital vi|metal commoditi|metals and mine|guinea|african union|west africa|aluminum mining|base metal mark|precious metals|metals|iron markets|coups detat","relatedTagsFilteredFormattedFull":"world economy|intl digital video|metal commodities|metals and minerals industry|guinea|african union|west africa|aluminum mining and refining|base metal markets|precious metals industry|metals|iron markets|coups detat","additionalSectionContent":[{"id":15837856,"headline":"CNBC TV","tagName":"CNBC TV","tagNameFormatted":"cnbc tv","tagNameFormattedFull":"cnbc tv","type":"franchise","__typename":"tag"},{"id":46,"headline":"Video","tagName":"Video","tagNameFormatted":"video","tagNameFormattedFull":"video","type":"franchise","__typename":"tag"},{"id":15839263,"headline":"Top Videos","tagName":"Top Videos","tagNameFormatted":"top videos","tagNameFormattedFull":"top videos","type":"franchise","__typename":"tag"},{"id":104266428,"headline":"Digital Original","tagName":"Digital Original","tagNameFormatted":"digital origina","tagNameFormattedFull":"digital original","type":"franchise","__typename":"tag"},{"id":103470373,"headline":"International Digital Originals","tagName":"International Digital Originals","tagNameFormatted":"international d","tagNameFormattedFull":"international digital originals","type":"franchise","__typename":"tag"},{"id":10001019,"headline":"Precious Metals and Mining","tagName":"Precious Metals and Minerals Mining","tagNameFormatted":"precious metals","tagNameFormattedFull":"precious metals and minerals mining","type":"franchise","__typename":"tag"},{"id":10001016,"headline":"Aluminum Producers","tagName":"Aluminum Producers","tagNameFormatted":"aluminum produc","tagNameFormattedFull":"aluminum producers","type":"franchise","__typename":"tag"},{"id":10000681,"headline":"Supply Chain Management","tagName":"Supply Chain Management","tagNameFormatted":"supply chain ma","tagNameFormattedFull":"supply chain management","type":"franchise","__typename":"tag"},{"id":10000824,"headline":"Supply and Demand","tagName":"Supply and Demand","tagNameFormatted":"supply and dema","tagNameFormattedFull":"supply and demand","type":"franchise","__typename":"tag"},{"id":33057388,"headline":"Metal Commodities","tagName":"Metal Commodities","tagNameFormatted":"metal commoditi","tagNameFormattedFull":"metal commodities","type":"franchise","__typename":"tag"},{"id":10001004,"headline":"Metals","tagName":"Metals","tagNameFormatted":"metals","tagNameFormattedFull":"metals","type":"franchise","__typename":"tag"},{"id":10001017,"headline":"Diversified Metals and Mining","tagName":"Diversified Metals and Mining","tagNameFormatted":"diversified met","tagNameFormattedFull":"diversified metals and mining","type":"franchise","__typename":"tag"},{"id":10001136,"headline":"Semiconductors and Semiconductor Equipment","tagName":"Semiconductors and Semiconductor Equipment","tagNameFormatted":"semiconductors ","tagNameFormattedFull":"semiconductors and semiconductor equipment","type":"franchise","__typename":"tag"},{"id":10000074,"headline":"Semiconductors","tagName":"Semiconductors","tagNameFormatted":"semiconductors","tagNameFormattedFull":"semiconductors","type":"franchise","__typename":"tag"},{"id":10001106,"headline":"Semiconductor Equipment","tagName":"Semiconductor Equipment","tagNameFormatted":"semiconductor e","tagNameFormattedFull":"semiconductor equipment","type":"franchise","__typename":"tag"},{"id":104958552,"headline":"Along the Belt and Road","tagName":"Along the Belt and Road","tagNameFormatted":"along the belt ","tagNameFormattedFull":"along the belt and road","type":"franchise","__typename":"tag"},{"id":101758233,"headline":"World News","tagName":"World News","tagNameFormatted":"world news","tagNameFormattedFull":"world news","type":"franchise","__typename":"tag"},{"id":10000834,"headline":"World Economy","tagName":"World Economy","tagNameFormatted":"world economy","tagNameFormattedFull":"world economy","type":"franchise","__typename":"tag"},{"id":105229305,"headline":"World Politics","tagName":"World Politics","tagNameFormatted":"world politics","tagNameFormattedFull":"world politics","type":"franchise","__typename":"tag"}],"additionalSectionContentFormatted":"cnbc tv|video|top videos|digital origina|international d|precious metals|aluminum produc|supply chain ma|supply and dema|metal commoditi|metals|diversified met|semiconductors |semiconductors|semiconductor e|along the belt |world news|world economy|world politics","additionalSectionContentFormattedFull":"cnbc tv|video|top videos|digital original|international digital originals|precious metals and minerals mining|aluminum producers|supply chain management|supply and demand|metal commodities|metals|diversified metals and mining|semiconductors and semiconductor equipment|semiconductors|semiconductor equipment|along the belt and road|world news|world economy|world politics","relatedVideoContent":[],"dateLastPublished":"2023-07-14T21:11:01+0000","sectionHierarchy":[{"id":15837856,"tagName":"CNBC TV","tagNameFormatted":"cnbc tv","tagNameFormattedFull":"cnbc tv","order":3,"__typename":"sectionHierarchy"},{"id":104266428,"tagName":"Digital Original","tagNameFormatted":"digital origina","tagNameFormattedFull":"digital original","order":2,"__typename":"sectionHierarchy"},{"id":41585735,"tagName":"CNBC Explains","tagNameFormatted":"cnbc explains","tagNameFormattedFull":"cnbc explains","order":1,"__typename":"sectionHierarchy"}],"sectionHierarchyFormatted":"cnbc tv|digital origina|cnbc explains","sectionHierarchyFormattedFull":"cnbc tv|digital original|cnbc explains","projectContent":[],"image":null,"section":{"headline":"CNBC Explains","id":41585735,"subType":"section","tagName":"CNBC Explains","tagNameFormatted":"cnbc explains","tagNameFormattedFull":"cnbc explains","title":"CNBC Explains","url":"https:\u002F\u002Fwww.cnbc.com\u002Fcnbc-explains\u002F","__typename":"franchise"},"projectTeamContentFormatted":"cnbc internatio","projectTeamContentFormattedFull":"cnbc international digital original video","projectContentFormatted":"NA","projectContentFormattedFull":"NA","creatorOverwriteFormatted":"NA","sourceOrganizationFormatted":"cnbc europe sou","sourceOrganizationFormattedFull":"cnbc europe source","authorFormatted":"timothyna dunca","authorFormattedFull":"timothyna duncan","dateFirstPublished":"2021-12-16T08:33:46+0000","subDomain":"https:\u002F\u002Fwww.cnbc.com","liveURL":"\u002Fvideo\u002F2021\u002F12\u002F16\u002Fwhy-a-coup-in-guinea-was-felt-around-the-world.html","pageName":"7000224309|video\u002F2021\u002F12\u002F16\u002Fwhy-a-coup-in-guinea-was-felt-around-the-world","shortDatePublished":"12\u002F16\u002F2021","shortDateLastPublished":"07\u002F14\u002F2023","shortDateFirstPublished":"12\u002F16\u002F2021","airDate":"12\u002F16\u002F2021","comScoreC2":"1000004","comScoreC3":"*null","comScoreC4":"CNBC.com VOD","comScoreC6":"*null","dayPart":"Others","duration":584,"network":"CNBC","platform":"web","playbackURL":"\u002F\u002Fcnbcawsmpvod.akamaized.net\u002Fout\u002Fv1\u002F48efa1fc20f64904945d3e8d40d4117f\u002F54fbf64382f04b94bb69340d5528ff8b\u002F26cdcccd8cb84f5398bc0124836d47ee\u002Fmaster.m3u8","playerConfig":{"autoPlay":false,"workflow":"VOD","sticky":true,"endCard":{"timer":5},"embedURL":"https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid={VID}","hlshtml":true,"primary":"html5","share":true,"parsely":true,"playbackRateControls":false,"fwassetId":"cnbc_7000224309","mediaid":"cnbc_7000224309","key":"+9o3ihbMIU8\u002FixFry35xlHnkQ9tikKg9TU0io1QbWXfpeR0q","playList":false,"sharing":{"sites":["facebook","twitter","linkedin"],"link":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2021\u002F12\u002F16\u002Fwhy-a-coup-in-guinea-was-felt-around-the-world.html","code":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000224309 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"mobileSFID":"7003948","IE11Profile":"169843:nbcu_web_flash_cs_moat_https","advertising":{"client":"freewheel","creativeTimeout":4000,"requestTimeout":4000,"vpaidcontrols":true,"freewheel":{"sectionid":"cnbc_inline_vod","networkid":169843,"profileid":"169843:nbcu_mobileweb_js_cs_moat_https","adManagerURL":"https:\u002F\u002Fmssl.fwmrm.net\u002Flibs\u002Fadm\u002F6.35.0\u002FAdManager.js","serverid":"\u002F\u002F29773.v.fwmrm.net\u002Fad\u002Fp\u002F1","sfid":"7006049","afid":"137705375","custom":{"metr":"1023","sfid":"7006049","afid":"137705375"}},"schedule":{"adbreak":{"offset":"pre","tag":"placeholder_preroll"}}},"analytics":{"onSite":true,"omniture":{"playername":"JW_Player","playerversion":"Universal","daypart":"Others","assetstatus":"Unrestricted","videoprogram":{"live":"iconic"},"videocontent":"Linear","title":"{partnername} Vod","guid":"{partnername} Vod","share":{"linksharepev2":"Video Control Rack","providerepev2":"Share","eVar15":"Video:Vod:","linktrknav":"video:share:Vod:","eVar14":": Share Published"}}},"embed":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000224309 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"playerTech":"JW Player","subType":"digital_original","thumbnail":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F106990143-GettyImages-1235315196.jpg?v=1707312666","usageRule":"NA","vcpsId":7000224309,"videoStatus":"Unrestricted","uploadDate":"2021-12-15T09:09:27+0000","__typename":"cnbcvideo"}],"__typename":"twoColumnImageDense"},"__typename":"module"}],"__typename":"column"},{"span":"3","editable":false,"modules":[{"name":"adBoxRail","source":"right","canChangeLayout":false,"canChangeSource":false,"serverRenderPolicy":"client","attributes":{"placement":"right"},"options":{},"data":{"__typename":"asset"},"__typename":"module"}],"__typename":"column"}],"__typename":"layout"},{"editable":false,"columns":[{"span":"12","editable":false,"modules":[{"name":"halfHalfBreaker","source":"100004038","canChangeLayout":false,"canChangeSource":false,"serverRenderPolicy":"client","attributes":{},"options":{},"data":{"__typename":"asset"},"__typename":"module"}],"__typename":"column"}],"__typename":"layout"}],"aboutThisSection":null,"additionalMetadata":null,"additionalSectionContentFormatted":"NA","additionalSectionContentFormattedFull":"NA","authorFormatted":"NA","authorFormattedFull":"NA","brand":"cnbc","color":null,"contentClassification":[],"cmsTemplate":"Topic Template","creatorOverwrite":null,"creatorOverwriteFormatted":"NA","dateFirstPublished":"2013-05-10T14:41:50+0000","dateLastPublished":"2024-08-21T14:43:49+0000","datePublished":"2016-09-27T13:00:09+0000","description":"CNBC International is the world leader for news on business, technology, China, trade, oil prices, the Middle East and markets.","expires":null,"headline":"World News & Analysis","id":100727362,"liveURL":"\u002Fworld-top-news\u002F","native":false,"pageName":"100727362|world-top-news","premium":false,"projectContentFormatted":"NA","projectContentFormattedFull":"NA","projectTeamContentFormatted":"cnbc europe tea|cnbc asia team","projectTeamContentFormattedFull":"cnbc europe team|cnbc asia team","relatedTagsFilteredFormatted":"cnbc meets|charting asia","relatedTagsFilteredFormattedFull":"cnbc meets|charting asia","sectionHierarchyFormatted":"international t","sectionHierarchyFormattedFull":"international top news and analysis","seoTitle":"International Business, World News & Global Stock Market Analysis","shortDateFirstPublished":"05\u002F10\u002F2013","shortDateLastPublished":"08\u002F21\u002F2024","shortDatePublished":"9\u002F27\u002F2016","shortenedUrls":null,"slug":"International: Top News and Analysis","sourceOrganizationFormatted":"NA","sourceOrganizationFormattedFull":"NA","subDomain":"https:\u002F\u002Fwww.cnbc.com","subType":"section","tagName":"International: Top News And Analysis","tagNameFormatted":"international t","tagNameFormattedFull":"international top news and analysis","template":"Home Page International","title":"International: Top News And Analysis","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Fworld\u002F","canonicalUrlOverride":null,"vcpsId":null,"additionalSectionContent":[],"author":[],"featuredMedia":null,"projectContent":[],"projectTeamContent":[{"headline":null,"id":100002778,"tagName":"CNBC Europe Team","tagNameFormatted":"cnbc europe tea","tagNameFormattedFull":"cnbc europe team","__typename":"team"},{"headline":null,"id":100002784,"tagName":"CNBC Asia Team","tagNameFormatted":"cnbc asia team","tagNameFormattedFull":"cnbc asia team","__typename":"team"}],"promoImage":null,"publisher":{"logo":"https:\u002F\u002Fsc.cnbcfm.com\u002Fapplications\u002Fcnbc.com\u002Fstaticcontent\u002Fimg\u002Fcnbc-hdr-logo2.png","name":"CNBC","__typename":"publisher"},"relatedContent":[{"headline":"U.S. News","id":15837362,"tagName":"US: News","tagNameFormatted":"us news","tagNameFormattedFull":"us news","type":"franchise","__typename":"tag"},{"headline":"Asia-Pacific News","id":19832390,"tagName":"Asia News","tagNameFormatted":"asia news","tagNameFormattedFull":"asia news","type":"franchise","__typename":"tag"},{"headline":"Europe News","id":19794221,"tagName":"Europe News","tagNameFormatted":"europe news","tagNameFormattedFull":"europe news","type":"franchise","__typename":"tag"}],"relatedTags":[{"id":43025367,"name":"CNBC Meets","tagName":"CNBC Meets","__typename":"tag"},{"id":23103686,"name":"Charting Asia with Daryl Guppy","tagName":"Charting Asia","__typename":"tag"}],"relatedTagsFiltered":[{"headline":"CNBC Meets","id":43025367,"name":"CNBC Meets","tagName":"CNBC Meets","tagNameFormatted":"cnbc meets","tagNameFormattedFull":"cnbc meets","type":"franchise","__typename":"tag"},{"headline":"Charting Asia with Daryl Guppy","id":23103686,"name":"Charting Asia with Daryl Guppy","tagName":"Charting Asia","tagNameFormatted":"charting asia","tagNameFormattedFull":"charting asia","type":"franchise","__typename":"tag"}],"section":{"eyebrow":"CNBC Utilities Page","headline":"CNBC Utilities Page","id":101050794,"subType":"section","tagName":"CNBC Utilities Page","tagNameFormatted":"cnbc utilities ","tagNameFormattedFull":"cnbc utilities page","title":"CNBC Utilities Page","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Futility-page\u002F","__typename":"franchise"},"sectionHierarchy":[{"id":100727362,"order":1,"tagName":"International: Top News And Analysis","tagNameFormatted":"international t","tagNameFormattedFull":"international top news and analysis","__typename":"sectionHierarchy"}],"sourceOrganization":null,"__typename":"page","queryParams":{}}},"menu":{"menu":{"header":{"expanded":[{"hideInSitemap":true,"name":"subscribe","label":"Subscribe","host":"","path":"","items":[{"name":"subscribe_investing_club","label":"Investing Club","host":"","path":"\u002Finvestingclub\u002Fsubscribe\u002F?__source=InvestingClub%7Consite%7Cmarketing%7Csignup%7Cglobalnav&tpcc=InvestingClub%7Consite%7Cmarketing%7Csignup%7Cglobalnav%7Csubscribebutton"},{"name":"subscribe_pro","label":"Pro","host":"","path":"\u002Fapplication\u002Fpro?__source=Pro%7Consite%7Cmarketing%7Csignup%7Cglobalnav&tpcc=Pro%7Consite%7Cmarketing%7Csignup%7Cglobalnav%7Csubscribebutton"}]},{"name":"markets","label":"Markets","host":"","path":"\u002Fmarkets\u002F","items":[{"name":"pre_markets","label":"Pre-Markets","host":"","path":"\u002Fpre-markets\u002F","items":[]},{"name":"us_markets","label":"U.S. Markets","host":"","path":"\u002Fus-markets\u002F","items":[]},{"name":"europe_markets","label":"Europe Markets","host":"","path":"\u002Fmarkets-europe\u002F","region":"WORLD","items":[]},{"name":"china_markets","label":"China Markets","host":"","path":"\u002Fchina-markets\u002F","region":"WORLD","items":[]},{"name":"asia_markets","label":"Asia Markets","host":"","path":"\u002Fmarkets-asia-pacific\u002F","region":"WORLD","items":[]},{"name":"world_markets","label":"World Markets","host":"","path":"\u002Fworld-markets\u002F","region":"WORLD","items":[]},{"name":"currencies","label":"Currencies","host":"","path":"\u002Fcurrencies\u002F","items":[]},{"name":"cryptocurrency","label":"Cryptocurrency","host":"","path":"\u002Fcryptocurrency\u002F","items":[]},{"name":"futures & commodities","label":"Futures & Commodities","host":"","path":"\u002Ffutures-and-commodities\u002F","items":[]},{"name":"bonds","label":"Bonds","host":"","path":"\u002Fbonds\u002F","items":[]},{"name":"funds & etfs","label":"Funds & ETFs","host":"","path":"\u002Ffunds-and-etfs\u002F","items":[]}]},{"name":"business_news","label":"Business","host":"","path":"\u002Fbusiness\u002F","items":[{"name":"economy","label":"Economy","host":"","path":"\u002Feconomy\u002F","items":[]},{"name":"finance","label":"Finance","host":"","path":"\u002Ffinance\u002F","items":[]},{"name":"health & science","label":"Health & Science","host":"","path":"\u002Fhealth-and-science\u002F","items":[]},{"name":"media","label":"Media","host":"","path":"\u002Fmedia\u002F","items":[]},{"name":"real_estate","label":"Real Estate","host":"","path":"\u002Freal-estate\u002F","items":[]},{"name":"energy","label":"Energy","host":"","path":"\u002Fenergy\u002F","items":[]},{"name":"climate","label":"Climate","host":"","path":"\u002Fclimate\u002F","items":[]},{"name":"transportation","label":"Transportation","host":"","path":"\u002Ftransportation\u002F","items":[]},{"name":"industrials","label":"Industrials","host":"","path":"\u002Findustrials\u002F","items":[]},{"name":"retail","label":"Retail","host":"","path":"\u002Fretail\u002F","items":[]},{"name":"wealth","label":"Wealth","host":"","path":"\u002Fwealth\u002F","items":[]},{"name":"sports","label":"Sports","host":"","path":"\u002Fsports\u002F","items":[]},{"name":"life","label":"Life","host":"","path":"\u002Flife\u002F","items":[]},{"name":"small_business","label":"Small Business","host":"","path":"\u002Fsmall-business\u002F","items":[]}]},{"name":"investing","label":"Investing","host":"","path":"\u002Finvesting\u002F","items":[{"name":"fintech","label":"Fintech","host":"","path":"\u002Ffintech\u002F","items":[]},{"name":"financial_advisors","label":"Financial Advisors","host":"","path":"\u002Ffinancial-advisors\u002F","items":[]},{"name":"options_action","label":"Options Action","host":"","path":"\u002Foptions-action\u002F","items":[]},{"name":"etf_street","label":"ETF Street","host":"","path":"\u002Fetf-street\u002F","items":[]},{"name":"buffett_archive","label":"Buffett Archive","host":"https:\u002F\u002Fbuffett.cnbc.com","path":"","items":[]},{"name":"earnings","label":"Earnings","host":"","path":"\u002Fearnings\u002F","items":[]},{"name":"trader_talk","label":"Trader Talk","host":"","path":"\u002Ftrader-talk\u002F","items":[]}]},{"name":"personal_finance","label":"Personal Finance","host":"","path":"\u002Fpersonal-finance\u002F","items":[{"name":"advisor_council","label":"Advisor Council","path":"\u002Fadvisor-council\u002F","host":"","items":[]},{"name":"ask_an_advisor","label":"Ask an Advisor","path":"\u002Fask-an-advisor\u002F","host":"","items":[]},{"name":"etf_strategist","label":"ETF Strategist","path":"\u002Fetf-strategist\u002F","host":"","items":[]},{"name":"fa_hub","label":"FA Hub","path":"\u002Ffinancial-advisors\u002F","host":"","items":[]},{"name":"fa_100","label":"FA 100","path":"\u002Ftop-rated-wealth-management-firms\u002F","host":"","items":[]},{"name":"fa_playbook","label":"FA Playbook","path":"\u002Ffa-playbook\u002F","host":"","items":[]},{"name":"life_changes","label":"Life Changes","path":"\u002Flife-changes\u002F","host":"","items":[]},{"name":"the_new_road_to_retirement","label":"The New Road to Retirement","path":"\u002Fnew-road-to-retirement\u002F","host":"","items":[]},{"name":"year-end_planning","label":"Year-End Planning","path":"\u002Fyear-end-planning\u002F","host":"","items":[]},{"name":"your_money","label":"Your Money","path":"\u002Fyour-money\u002F","host":"","items":[]},{"name":"women_and_health","label":"Women and Wealth","path":"\u002Fwomen-and-wealth\u002F","host":"","items":[]}]},{"name":"tech","label":"Tech","host":"","path":"\u002Ftechnology\u002F","items":[{"name":"cybersecurity","label":"Cybersecurity","host":"","path":"\u002Fcybersecurity\u002F","items":[]},{"name":"enterprise","label":"Enterprise","host":"","path":"\u002Fenterprise\u002F","items":[]},{"name":"internet","label":"Internet","host":"","path":"\u002Finternet\u002F","items":[]},{"name":"media","label":"Media","host":"","path":"\u002Fmedia\u002F","items":[]},{"name":"mobile","label":"Mobile","host":"","path":"\u002Fmobile\u002F","items":[]},{"name":"social_media","label":"Social Media","host":"","path":"\u002Fsocial-media\u002F","items":[]},{"name":"cnbc_disruptors","label":"CNBC Disruptor 50","host":"","path":"\u002Fcnbc-disruptors\u002F","items":[]},{"name":"tech_guide","label":"Tech Guide","host":"","path":"\u002Ftech-guide\u002F","items":[]}]},{"name":"politics","label":"Politics","host":"","path":"\u002Fpolitics\u002F","items":[{"name":"white_house","label":"White House","host":"","path":"\u002Fwhite-house\u002F","items":[]},{"name":"policy","label":"Policy","host":"","path":"\u002Fpolicy\u002F","items":[]},{"name":"defense","label":"Defense","host":"","path":"\u002Fdefense\u002F","items":[]},{"name":"congress","label":"Congress","host":"","path":"\u002Fcongress\u002F","items":[]},{"name":"equity_opportunity","label":"Equity and Opportunity","host":"","path":"\u002Fequity-opportunity\u002F","items":[]},{"name":"europe","label":"Europe Politics","host":"","path":"\u002Feurope-politics\u002F","region":"WORLD","items":[]},{"name":"china","label":"China Politics","host":"","path":"\u002Fchina-politics\u002F","region":"WORLD","items":[]},{"name":"asia","label":"Asia Politics","host":"","path":"\u002Fasia-politics\u002F","region":"WORLD","items":[]},{"name":"world","label":"World Politics","host":"","path":"\u002Fworld-politics\u002F","region":"WORLD","items":[]}]},{"name":"video","label":"Video","host":"","path":"\u002Ftv\u002F","items":[{"name":"latest_videos","label":"Latest Video","host":"","path":"\u002Flatest-video\u002F","items":[]},{"name":"full_episodes","label":"Full Episodes","host":"","path":"\u002Flive-tv\u002Ffull-episodes\u002F","items":[]},{"name":"livestream","label":"Livestream","host":"","path":"\u002Flive-tv\u002F","items":[]},{"name":"top_video","label":"Top Video","host":"","path":"\u002Ftop-video\u002F","items":[]},{"name":"live_audio","label":"Live Audio","host":"","path":"\u002Flive-audio\u002F","items":[]},{"name":"europe_tv","label":"Europe TV","host":"","path":"\u002Feurope-television\u002F","region":"WORLD","items":[]},{"name":"asia_tv","label":"Asia TV","host":"","path":"\u002Fasia-business-day\u002F","region":"WORLD","items":[]},{"name":"cnbc_podcasts","label":"CNBC Podcasts","host":"","path":"\u002Fpodcast\u002F","items":[]},{"name":"ceo_interviews","label":"CEO Interviews","host":"","path":"\u002Fvideo-ceo-interviews\u002F","items":[]},{"name":"digital_originals","label":"Digital Originals","host":"","path":"\u002Fdigital-original\u002F","items":[]}]},{"name":"investing_club","label":"Investing Club","host":"","path":"\u002Finvestingclub\u002F","items":[{"name":"trust_portfolio","label":"Trust Portfolio","host":"","path":"\u002Finvestingclub\u002Fcharitable-trust\u002F","items":[]},{"name":"analysis","label":"Analysis","host":"","path":"\u002Finvestingclub\u002Fanalysis\u002F","items":[]},{"name":"trade_alerts","label":"Trade Alerts","host":"","path":"\u002Finvestingclub\u002Ftrade-alerts\u002F","items":[]},{"name":"meeting_videos","label":"Meeting Videos","host":"","path":"\u002Finvestingclub\u002Fvideo\u002F","items":[]},{"name":"homestretch","label":"Homestretch","host":"","path":"\u002Finvestingclub\u002Fhomestretch\u002F","items":[]},{"name":"jims_comlumns","label":"Jim's Columns","host":"","path":"\u002Finvestingclub\u002Fjim-cramer-columns\u002F","items":[]},{"name":"education","label":"Education","host":"","path":"\u002Finvestingclub\u002Feducation\u002F","items":[]},{"name":"subscribe_to_investing_club","label":"Subscribe","host":"","path":"\u002Finvestingclub\u002Fsubscribe","items":[]},{"name":"user_signin_investing_club","label":"Sign In","host":"","items":[]}]},{"name":"pro","label":"PRO","host":"","path":"\u002Fpro\u002F","items":[{"name":"pro_news","label":"Pro News","host":"","path":"\u002Fpro\u002Fnews\u002F","items":[]},{"name":"pro_livestream","label":"Livestream","host":"","path":"\u002Flive-tv\u002F","items":[]},{"name":"full_episodes","label":"Full Episodes","host":"","path":"\u002Flive-tv\u002Ffull-episodes\u002F","items":[]},{"name":"pro_stock_screener","label":"Stock Screener","host":"","path":"\u002Fpro-stock-screener\u002F","items":[]},{"name":"market_forecast","label":"Market Forecast","host":"","path":"\u002F2023\u002F05\u002F11\u002Fmarket-strategist-survey-forecast.html","items":[]},{"name":"options_investing","label":"Options Investing","host":"","path":"\u002Fpro\u002Foptions-investing\u002F","items":[]},{"name":"chart_investing_pro","label":"Chart Investing","host":"","path":"\u002Fcnbc-pro-chart-investing\u002F","items":[]},{"name":"subscribe_to_pro","label":"Subscribe","host":"","path":"\u002Fapplication\u002Fpro","items":[]},{"name":"user_signin_pro","label":"Sign In","host":"","items":[]}]},{"name":"newsletters","label":"Newsletters","host":"","path":"\u002Fsign-up-for-cnbc-newsletters\u002F","items":[]},{"name":"select","label":"Select","host":"","path":"\u002Fselect\u002F","items":[{"name":"credit-cards","label":"Credit Cards","host":"","path":"\u002Fselect\u002Fcredit-cards\u002F","items":[{"name":"find-the-credit-card-for-you","label":"Find the Credit Card for You","host":"","path":"\u002Fselect\u002Fcredit-card-marketplace\u002F","items":[]},{"name":"best-credit-cards","label":"Best Credit Cards","host":"","path":"\u002Fselect\u002Fbest-credit-cards\u002F","items":[]},{"name":"best-rewards-credit-cards","label":"Best Rewards Credit Cards","host":"","path":"\u002Fselect\u002Fbest-rewards-credit-cards\u002F","items":[]},{"name":"best-travel-credit-cards","label":"Best Travel Credit Cards","host":"","path":"\u002Fselect\u002Fbest-travel-credit-cards\u002F","items":[]},{"name":"best-0%-apr-credit-cards","label":"Best 0% APR Credit Cards","host":"","path":"\u002Fselect\u002Fbest-zero-interest-credit-cards\u002F","items":[]},{"name":"best-balance-transfer-credit-cards","label":"Best Balance Transfer Credit Cards","host":"","path":"\u002Fselect\u002Fbest-balance-transfer-credit-cards\u002F","items":[]},{"name":"best-cash-back-credit-cards","label":"Best Cash Back Credit Cards","host":"","path":"\u002Fselect\u002Fbest-cash-back-credit-cards\u002F","items":[]},{"name":"best-credit-card-welcome-bonuses","label":"Best Credit Card Welcome Bonuses","host":"","path":"\u002Fselect\u002Fbest-credit-card-sign-up-bonuses\u002F","items":[]},{"name":"best-credit-cards-to-build-credit","label":"Best Credit Cards to Build Credit","host":"","path":"\u002Fselect\u002Fthe-best-credit-cards-for-building-credit\u002F","items":[]}]},{"name":"loans","label":"Loans","host":"","path":"\u002Fselect\u002Floans\u002F","items":[{"name":"find-the-best-personal-loan-for-you","label":"Find the Best Personal Loan for You","host":"","path":"\u002Fselect\u002Fpersonal-loan-marketplace\u002F","items":[]},{"name":"best-personal-loans","label":"Best Personal Loans","host":"","path":"\u002Fselect\u002Fbest-personal-loans\u002F","items":[]},{"name":"best-debt-consolidation-loans","label":"Best Debt Consolidation Loans","host":"","path":"\u002Fselect\u002Fbest-debt-consolidation-loans\u002F","items":[]},{"name":"best-loans-to-refinance-credit-card-debt","label":"Best Loans to Refinance Credit Card Debt","host":"","path":"\u002Fselect\u002Fbest-loans-for-refinancing-credit-card-debt\u002F","items":[]},{"name":"best-loans-with-fast-funding","label":"Best Loans with Fast Funding","host":"","path":"\u002Fselect\u002F6-personal-loans-thatll-get-you-funded-in-as-little-as-1-business-day\u002F","items":[]},{"name":"best-small-personal-loans","label":"Best Small Personal Loans","host":"","path":"\u002Fselect\u002Fbest-small-personal-loans\u002F","items":[]},{"name":"best-large-personal-loans","label":"Best Large Personal Loans","host":"","path":"\u002Fselect\u002Fpersonal-loan-lenders-borrow-50000\u002F","items":[]},{"name":"best-personal-loans-to-apply-online-","label":"Best Personal Loans to Apply Online","host":"","path":"\u002Fselect\u002Fpersonal-loan-online-applications\u002F","items":[]},{"name":"best-student-loan-refinance","label":"Best Student Loan Refinance","host":"","path":"\u002Fselect\u002Fbest-student-loan-refinance-companies\u002F","items":[]}]},{"name":"banking","label":"Banking","host":"","path":"\u002Fselect\u002Fbanking\u002F","items":[{"name":"find-the-savings-account-for-you","label":"Find the Savings Account for You","host":"","path":"\u002Fselect\u002Fsavings-marketplace\u002F","items":[]},{"name":"best-high-yield-savings-accounts","label":"Best High Yield Savings Accounts","host":"","path":"\u002Fselect\u002Fbest-high-yield-savings-accounts\u002F","items":[]},{"name":"best-big-bank-savings-accounts-","label":"Best Big Bank Savings Accounts","host":"","path":"\u002Fselect\u002Fbest-brick-and-mortar-savings-accounts\u002F","items":[]},{"name":"best-big-bank-checking-accounts","label":"Best Big Bank Checking Accounts","host":"","path":"\u002Fselect\u002Fbest-brick-mortar-checking-accounts\u002F","items":[]},{"name":"best-no-fee-checking-accounts","label":"Best No Fee Checking Accounts","host":"","path":"\u002Fselect\u002Fbest-no-fee-checking-accounts\u002F","items":[]},{"name":"no-overdraft-fee-checking-accounts-","label":"No Overdraft Fee Checking Accounts","host":"","path":"\u002Fselect\u002Fchecking-accounts-with-no-overdraft-fees\u002F","items":[]},{"name":"best-checking-account-bonuses","label":"Best Checking Account Bonuses","host":"","path":"\u002Fselect\u002Fbest-checking-account-bonuses\u002F","items":[]},{"name":"best-money-market-accounts","label":"Best Money Market Accounts","host":"","path":"\u002Fselect\u002Fbest-money-market-accounts\u002F","items":[]},{"name":"best-cds","label":"Best CDs","host":"","path":"\u002Fselect\u002Fbest-certificates-of-deposits\u002F","items":[]},{"name":"best-credit-unions","label":"Best Credit Unions","host":"","path":"\u002Fselect\u002Fbest-credit-unions\u002F","items":[]}]},{"name":"mortgages","label":"Mortgages","host":"","path":"\u002Fselect\u002Fmortgages\u002F","items":[{"name":"best-mortgages","label":"Best Mortgages","host":"","path":"\u002Fselect\u002Fbest-mortgage-lenders\u002F","items":[]},{"name":"best-mortgages-for-small-down-payment","label":"Best Mortgages for Small Down Payment","host":"","path":"\u002Fselect\u002Fmortgage-lenders-for-a-small-down-payment\u002F","items":[]},{"name":"best-mortgages-for-no-down-payment","label":"Best Mortgages for No Down Payment","host":"","path":"\u002Fselect\u002Fbest-mortgage-lenders-va-loans-usda-loans\u002F","items":[]},{"name":"best-mortgages-with-no-origination-fee","label":"Best Mortgages with No Origination Fee","host":"","path":"\u002Fselect\u002Fbest-mortgage-lenders-that-dont-charge-origination-fees\u002F","items":[]},{"name":"best-mortgages-for-average-credit-score","label":"Best Mortgages for Average Credit Score","host":"","path":"\u002Fselect\u002Fbest-mortgage-lenders-average-credit-score\u002F","items":[]},{"name":"adjustable-rate-mortgages","label":"Adjustable Rate Mortgages","host":"","path":"\u002Fselect\u002Fadjustable-rate-mortgage-pros-and-cons\u002F","items":[]},{"name":"affording-a-mortgage-","label":"Affording a Mortgage","host":"","path":"\u002Fselect\u002Fmortgage-affordability\u002F","items":[]}]},{"name":"insurance","label":"Insurance","host":"","path":"\u002Fselect\u002Finsurance\u002F","items":[{"name":"best-life-insurance-","label":"Best Life Insurance","host":"","path":"\u002Fselect\u002Fbest-life-insurance-companies\u002F","items":[]},{"name":"best-homeowners-insurance-","label":"Best Homeowners Insurance","host":"","path":"\u002Fselect\u002Fbest-homeowners-insurance-companies\u002F","items":[]},{"name":"best-renters-insurance-","label":"Best Renters Insurance","host":"","path":"\u002Fselect\u002Fbest-renters-insurance-companies\u002F","items":[]},{"name":"best-car-insurance-","label":"Best Car Insurance","host":"","path":"\u002Fselect\u002Fbest-car-insurance-companies\u002F","items":[]},{"name":"travel-insurance-","label":"Travel Insurance","host":"","path":"\u002Fselect\u002Ftravel-insurance-guide\u002F","items":[]}]},{"name":"credit-monitoring","label":"Credit Monitoring","host":"","path":"\u002Fselect\u002Fcredit-monitoring\u002F","items":[{"name":"best-credit-monitoring-services","label":"Best Credit Monitoring Services","host":"","path":"\u002Fselect\u002Fbest-credit-monitoring-services\u002F","items":[]},{"name":"best-identity-theft-protection","label":"Best Identity Theft Protection","host":"","path":"\u002Fselect\u002Fbest-identity-theft-protection-services\u002F","items":[]},{"name":"how-to-boost-your-credit-score","label":"How to Boost Your Credit Score","host":"","path":"\u002Fselect\u002Fhow-experian-boost-works\u002F","items":[]},{"name":"credit-repair-services","label":"Credit Repair Services","host":"","path":"\u002Fselect\u002Fhow-do-credit-repair-services-work\u002F","items":[]}]},{"name":"personal-finance","label":"Personal Finance","host":"","path":"\u002Fselect\u002Fpersonal-finance\u002F","items":[{"name":"best-budgeting-apps","label":"Best Budgeting Apps","host":"","path":"\u002Fselect\u002Fbest-budgeting-apps\u002F","items":[]},{"name":"best-expense-tracker-apps","label":"Best Expense Tracker Apps","host":"","path":"\u002Fselect\u002Fbest-expense-tracker-apps\u002F","items":[]},{"name":"best-money-transfer-apps","label":"Best Money Transfer Apps","host":"","path":"\u002Fselect\u002Fbest-money-transfer-payment-apps\u002F","items":[]},{"name":"best-resale-apps-and-sites","label":"Best Resale Apps and Sites","host":"","path":"\u002Fselect\u002Fbest-resale-apps-and-websites\u002F","items":[]},{"name":"buy-now-pay-later-(bnpl)-apps","label":"Buy Now Pay Later (BNPL) Apps","host":"","path":"\u002Fselect\u002Fbest-buy-now-pay-later-apps\u002F","items":[]},{"name":"best-debt-relief-","label":"Best Debt Relief","host":"","path":"\u002Fselect\u002Fbest-debt-relief-companies\u002F","items":[]}]},{"name":"small-business","label":"Small Business","host":"","path":"\u002Fselect\u002Fsmall-business\u002F","items":[{"name":"best-small-business-savings-accounts","label":"Best Small Business Savings Accounts","host":"","path":"\u002Fselect\u002Fbest-small-business-savings-accounts\u002F","items":[]},{"name":"best-small-business-checking-accounts","label":"Best Small Business Checking Accounts","host":"","path":"\u002Fselect\u002Fbest-business-checking-accounts\u002F","items":[]},{"name":"best-credit-cards-for-small-business","label":"Best Credit Cards for Small Business","host":"","path":"\u002Fselect\u002Fbest-small-business-credit-cards\u002F","items":[]},{"name":"best-small-business-loans","label":"Best Small Business Loans","host":"","path":"\u002Fselect\u002Fbest-small-business-loans\u002F","items":[]},{"name":"best-tax-software-for-small-business","label":"Best Tax Software for Small Business","host":"","path":"\u002Fselect\u002Fbest-tax-software-for-small-businesses\u002F","items":[]}]},{"name":"taxes","label":"Taxes","host":"","path":"\u002Fselect\u002Ftaxes\u002F","items":[{"name":"filing-for-free","label":"Filing For Free","host":"","path":"\u002Fselect\u002Fhow-to-file-your-taxes-for-free\u002F","items":[]},{"name":"best-tax-software","label":"Best Tax Software","host":"","path":"\u002Fselect\u002Fbest-tax-software\u002F","items":[]},{"name":"best-tax-software-for-small-businesses","label":"Best Tax Software for Small Businesses","host":"","path":"\u002Fselect\u002Fbest-tax-software-for-small-businesses\u002F","items":[]},{"name":"tax-refunds","label":"Tax Refunds","host":"","path":"\u002Fselect\u002Fhow-to-check-the-status-of-your-2020-tax-refund\u002F","items":[]},{"name":"tax-brackets","label":"Tax Brackets","host":"","path":"\u002Fselect\u002Ffederal-income-tax-brackets-tax-rates\u002F","items":[]},{"name":"tax-tips","label":"Tax Tips","host":"","path":"\u002Fselect\u002Fhow-to-reduce-taxable-income\u002F","items":[]},{"name":"tax-by-state","label":"Tax By State","host":"","path":"\u002Fselect\u002Fstates-with-no-income-tax\u002F","items":[]},{"name":"tax-payment-plans","label":"Tax Payment Plans","host":"","path":"\u002Fselect\u002Ftax-payment-plan-options\u002F","items":[]}]},{"name":"help-for-low-credit-scores","label":"Help for Low Credit Scores","host":"","path":"\u002Fselect\u002Flow-credit-scores\u002F","items":[{"name":"best-credit-cards-for-bad-credit","label":"Best Credit Cards for Bad Credit","host":"","path":"\u002Fselect\u002Fbest-credit-cards-for-bad-credit\u002F","items":[]},{"name":"best-personal-loans-for-bad-credit","label":"Best Personal Loans for Bad Credit","host":"","path":"\u002Fselect\u002Fbest-personal-loans-for-bad-credit\u002F","items":[]},{"name":"best-debt-consolidation-loans-for-bad-credit","label":"Best Debt Consolidation Loans for Bad Credit","host":"","path":"\u002Fselect\u002Fbest-debt-consolidation-loans-for-bad-credit\u002F","items":[]},{"name":"personal-loans-if-you-don't-have-credit","label":"Personal Loans if You Don't Have Credit","host":"","path":"\u002Fselect\u002Fpersonal-loan-lenders-to-consider-if-you-dont-have-credit-score\u002F","items":[]},{"name":"best-credit-cards-for-building-credit","label":"Best Credit Cards for Building Credit","host":"","path":"\u002Fselect\u002Fthe-best-credit-cards-for-building-credit\u002F","items":[]},{"name":"personal-loans-for-580-credit-score-or-lower","label":"Personal Loans for 580 Credit Score or Lower","host":"","path":"\u002Fselect\u002Fpersonal-loans-to-apply-credit-score-580-or-lower\u002F","items":[]},{"name":"personal-loans-for-670-credit-score-or-lower","label":"Personal Loans for 670 Credit Score or Lower","host":"","path":"\u002Fselect\u002Fpersonal-loan-lenders-credit-score-below-670\u002F","items":[]},{"name":"best-mortgages-for-bad-credit","label":"Best Mortgages for Bad Credit","host":"","path":"\u002Fselect\u002Fbest-mortgage-lenders-bad-credit-score\u002F","items":[]},{"name":"best-hardship-loans","label":"Best Hardship Loans","host":"","path":"\u002Fselect\u002Fbest-hardship-loans\u002F","items":[]},{"name":"how-to-boost-your-credit-score","label":"How to Boost Your Credit Score","host":"","path":"\u002Fselect\u002Fhow-experian-boost-works\u002F","items":[]}]},{"name":"investing","label":"Investing","host":"","path":"\u002Fselect\u002Finvesting\u002F","items":[{"name":"best-ira-accounts","label":"Best IRA Accounts","host":"","path":"\u002Fselect\u002Fbest-ira-accounts\u002F","items":[]},{"name":"best-roth-ira-accounts","label":"Best Roth IRA Accounts","host":"","path":"\u002Fselect\u002Fbest-roth-ira-accounts\u002F","items":[]},{"name":"best-investing-apps","label":"Best Investing Apps","host":"","path":"\u002Fselect\u002Fbest-investing-apps\u002F","items":[]},{"name":"best-free-stock-trading-platforms","label":"Best Free Stock Trading Platforms","host":"","path":"\u002Fselect\u002Fbest-brokerage-free-stock-trading\u002F","items":[]},{"name":"best-robo-advisors","label":"Best Robo-Advisors","host":"","path":"\u002Fselect\u002Fbest-robo-advisors\u002F","items":[]},{"name":"index-funds","label":"Index Funds","host":"","path":"\u002Fselect\u002Fwhat-are-index-funds\u002F","items":[]},{"name":"mutual-funds","label":"Mutual Funds","host":"","path":"\u002Fselect\u002Fwhat-are-mutual-funds\u002F","items":[]},{"name":"etfs","label":"ETFs","host":"","path":"\u002Fselect\u002Fwhat-are-etfs-should-you-invest\u002F","items":[]},{"name":"bonds","label":"Bonds","host":"","path":"\u002Fselect\u002Fwhat-are-bonds\u002F","items":[]}]}]},{"name":"make-it","label":"Make It","host":"","path":"\u002Fmake-it\u002F","items":[]},{"name":"watchlist","label":"Watchlist","host":"","path":"\u002Fwatchlist\u002F","items":[]},{"name":"user_signin","label":"Sign In","host":"","path":"javascript:void(0);","items":[]},{"hideInSitemap":true,"name":"user_notifications","label":"Notifications","host":"","path":"#","items":[]},{"name":"account","label":"My Account","host":"","path":"","items":[{"name":"email","label":"","host":"","path":"","items":[]},{"name":"profile","label":"Profile","host":"","path":"\u002Faccount\u002F#profile","items":[]},{"name":"notifications","label":"Notifications","host":"","path":"\u002Faccount\u002F#notifications","items":[]},{"name":"subscriptions","label":"Subscriptions","host":"","path":"\u002Faccount\u002F#subscriptions","items":[]},{"name":"help","label":"Help","host":"","path":"\u002Faccount\u002F#help","items":[]},{"name":"user_signout","label":"Sign Out","host":"","path":"\u002Fpro\u002F","items":[]}]},{"name":"advertise_with_us","label":"Advertise With Us","host":"https:\u002F\u002Ftogether.nbcuni.com\u002Fadvertise\u002F?utm_source=cnbc&utm_medium=referral&utm_campaign=property_ad_pages&utm_content=header","path":"","items":[]},{"name":"Events","label":"Events","host":"www.cnbc.com","path":"\u002Fevents-nav-menu\u002F","items":[{"name":"Game Plan","label":"Game Plan","host":"www.cnbcevents.com","path":"\u002Fgame-plan-2024\u002F?__source=meganav|events","capacity":0,"items":[]},{"name":"CNBC Your Money","label":"CNBC Your Money","host":"www.cnbcevents.com","path":"\u002Fyour-money-2024\u002F?__source=meganav|events","capacity":0,"items":[]},{"name":"Delivering Alpha","label":"Delivering Alpha","host":"www.cnbcevents.com","path":"\u002Fdelivering-alpha-2023\u002F?__source=meganav|events","capacity":0,"startDate":"2023-09-28T04:00:00+0000","items":[]}]},{"name":"Special Reports","label":"Special Reports","host":"www.cnbc.com","path":"\u002Fspecial-reports\u002F","items":[{"name":"America's Top States for Business","label":"America's Top States for Business","host":"www.cnbc.com","path":"\u002Famericas-top-states-for-business\u002F","items":[]},{"name":"CNBC Changemakers","label":"CNBC Changemakers","host":"www.cnbc.com","path":"\u002Fcnbc-changemakers\u002F","items":[]},{"name":"CNBC Disruptor 50","label":"CNBC Disruptor 50","host":"www.cnbc.com","path":"\u002Fcnbc-disruptors\u002F","items":[]},{"name":"Crypto World","label":"Crypto World","host":"www.cnbc.com","path":"\u002Fcryptoworld\u002F","items":[]},{"name":"Sustainable Future","label":"Sustainable Future","host":"www.cnbc.com","path":"\u002Fsustainable-future\u002F","items":[]},{"name":"Cyber Report","label":"Cyber Report","host":"www.cnbc.com","path":"\u002Fcyber-report\u002F","items":[]},{"name":"The Bottom Line","label":"The Bottom Line","host":"www.cnbc.com","path":"\u002Fglobal-cfo-council\u002F","items":[]},{"name":"ETF Edge","label":"ETF Edge","host":"www.cnbc.com","path":"\u002Fetf-edge\u002F","items":[]},{"name":"Leadership Insights","label":"Leadership Insights","host":"www.cnbc.com","path":"\u002Fleadership-insights\u002F","items":[]},{"name":"Executive Edge","label":"Executive Edge","host":"www.cnbc.com","path":"\u002Fexecutive-edge\u002F","items":[]},{"name":"Aspen Ideas Festival","label":"Aspen Ideas Festival","host":"www.cnbc.com","path":"\u002Faspen\u002F","items":[]},{"name":"Technology Executive Council","label":"Technology Executive Council","host":"www.cnbc.com","path":"\u002Ftec\u002F","items":[]},{"name":"CNBC Work","label":"CNBC Work","host":"www.cnbc.com","path":"\u002Fwork\u002F","items":[]},{"name":"Small Business Playbook","label":"Small Business Playbook","host":"www.cnbc.com","path":"\u002Fsmall-business-playbook\u002F","items":[]},{"name":"Your Money","label":"Your Money","host":"www.cnbc.com","path":"\u002Fyour-money\u002F","items":[]},{"name":"Equity and Opportunity","label":"Equity and Opportunity","host":"www.cnbc.com","path":"\u002Fequity-opportunity\u002F","items":[]},{"name":"The Javers Files","label":"The Javers Files","host":"www.cnbc.com","path":"\u002Fthe-javers-files\u002F","items":[]},{"name":"AI Impact","label":"AI Impact","host":"www.cnbc.com","path":"\u002Fai-impact\u002F","items":[]},{"name":"TechCheck","label":"TechCheck","host":"www.cnbc.com","path":"\u002Ftechcheck\u002F","items":[]},{"name":"State of Freight","label":"State of Freight","host":"www.cnbc.com","path":"\u002Fstate-of-freight\u002F","items":[]}]},{"name":"Podcasts","label":"Podcasts","host":"www.cnbc.com","path":"\u002Fpodcast\u002F","items":[{"label":"Worldwide Exchange Podcast","host":"www.cnbc.com","path":"\u002F2020\u002F12\u002F11\u002Fworldwide-exchange-podcast.html","items":[]},{"label":"Squawk Pod","host":"www.cnbc.com","path":"\u002F2019\u002F09\u002F24\u002Fsquawk-pod.html","items":[]},{"label":"Squawk on the Street Podcast","host":"www.cnbc.com","path":"\u002F2019\u002F08\u002F01\u002Fsquawk-on-the-street-podcast.html","items":[]},{"label":"Money Movers Podcast","host":"www.cnbc.com","path":"\u002F2023\u002F12\u002F11\u002Fmoney-movers-podcast.html","items":[]},{"label":"Halftime Report Podcast","host":"www.cnbc.com","path":"\u002F2020\u002F07\u002F28\u002Fhalftime-report-podcast.html","items":[]},{"label":"The Exchange Podcast","host":"www.cnbc.com","path":"\u002F2019\u002F12\u002F30\u002Fthe-exchange-podcast.html","items":[]},{"label":"Power Lunch Podcast","host":"www.cnbc.com","path":"\u002F2022\u002F04\u002F11\u002Fpower-lunch-podcast.html","items":[]},{"label":"Closing Bell Podcast","host":"www.cnbc.com","path":"\u002F2022\u002F03\u002F10\u002Fclosing-bell-podcast.html","items":[]},{"label":"Fast Money Podcast","host":"www.cnbc.com","path":"\u002F2018\u002F03\u002F01\u002Ffast-money-podcast.html","items":[]},{"label":"Mad Money with Jim Cramer Podcast","host":"www.cnbc.com","path":"\u002F2018\u002F03\u002F01\u002Fmad-money-with-jim-cramer-podcast.html","items":[]},{"label":"Business News Update Podcast","host":"www.cnbc.com","path":"\u002F2024\u002F01\u002F15\u002Fbusiness-news-update-podcast.html","items":[]},{"label":"American Greed Podcast","host":"www.cnbc.com","path":"\u002F2018\u002F09\u002F04\u002Famerican-greed-podcast.html","items":[]},{"label":"Manifest Space with Morgan Brennan","host":"www.cnbc.com","path":"\u002F2023\u002F04\u002F13\u002Fmanifest-space-with-morgan-brennan.html","items":[]},{"label":"TechCheck Podcast","host":"www.cnbc.com","path":"\u002F2021\u002F04\u002F09\u002Ftechcheck-podcast.html","items":[]},{"label":"Your Money Minute","host":"www.cnbc.com","path":"\u002F2020\u002F06\u002F05\u002Fyour-money-minute.html","items":[]},{"label":"ETF Edge Podcast","host":"www.cnbc.com","path":"\u002F2020\u002F04\u002F21\u002Fetf-edge-podcast.html","items":[]},{"label":"The Keynote by CNBC Events","host":"www.cnbc.com","path":"\u002F2020\u002F01\u002F06\u002Fthe-keynote-by-cnbc-events.html","items":[]},{"label":"CNBC Special Podcast: China’s Corporate Spy War","host":"www.cnbc.com","path":"\u002F2024\u002F02\u002F06\u002Fcnbc-special-podcast-chinas-corporate-spy-war.html","items":[]},{"label":"CNBC Special Podcast: Charlie Munger - A Life of Wit and Wisdom","host":"www.cnbc.com","path":"\u002F2023\u002F12\u002F12\u002Fcnbc-special-podcast-charlie-munger-a-life-of-wit-and-wisdom.html","items":[]},{"label":"CNBC Special Podcast: Inside Track - The Business of Formula 1","host":"www.cnbc.com","path":"\u002F2023\u002F11\u002F17\u002Fcnbc-special-podcast-inside-track-the-business-of-formula-1.html","items":[]}]}],"collapsed":[{"name":"markets","label":"Markets","host":"","path":"\u002Fmarkets\u002F","items":[{"name":"pre_markets","label":"Pre-Markets","host":"","path":"\u002Fpre-markets\u002F","items":[]},{"name":"us_markets","label":"U.S. Markets","host":"","path":"\u002Fus-markets\u002F","items":[]},{"name":"europe_markets","label":"Europe Markets","host":"","path":"\u002Fmarkets-europe\u002F","region":"WORLD","items":[]},{"name":"china_markets","label":"China Markets","host":"","path":"\u002Fchina-markets\u002F","region":"WORLD","items":[]},{"name":"asia_markets","label":"Asia Markets","host":"","path":"\u002Fmarkets-asia-pacific\u002F","region":"WORLD","items":[]},{"name":"world_markets","label":"World Markets","host":"","path":"\u002Fworld-markets\u002F","region":"WORLD","items":[]},{"name":"currencies","label":"Currencies","host":"","path":"\u002Fcurrencies\u002F","items":[]},{"name":"cryptocurrency","label":"Cryptocurrency","host":"","path":"\u002Fcryptocurrency\u002F","items":[]},{"name":"futures & commodities","label":"Futures & Commodities","host":"","path":"\u002Ffutures-and-commodities\u002F","items":[]},{"name":"bonds","label":"Bonds","host":"","path":"\u002Fbonds\u002F","items":[]},{"name":"funds & etfs","label":"Funds & ETFs","host":"","path":"\u002Ffunds-and-etfs\u002F","items":[]}]},{"name":"business_news","label":"Business","host":"","path":"\u002Fbusiness\u002F","items":[{"name":"economy","label":"Economy","host":"","path":"\u002Feconomy\u002F","items":[]},{"name":"finance","label":"Finance","host":"","path":"\u002Ffinance\u002F","items":[]},{"name":"health & science","label":"Health & Science","host":"","path":"\u002Fhealth-and-science\u002F","items":[]},{"name":"media","label":"Media","host":"","path":"\u002Fmedia\u002F","items":[]},{"name":"real_estate","label":"Real Estate","host":"","path":"\u002Freal-estate\u002F","items":[]},{"name":"energy","label":"Energy","host":"","path":"\u002Fenergy\u002F","items":[]},{"name":"climate","label":"Climate","host":"","path":"\u002Fclimate\u002F","items":[]},{"name":"transportation","label":"Transportation","host":"","path":"\u002Ftransportation\u002F","items":[]},{"name":"industrials","label":"Industrials","host":"","path":"\u002Findustrials\u002F","items":[]},{"name":"retail","label":"Retail","host":"","path":"\u002Fretail\u002F","items":[]},{"name":"wealth","label":"Wealth","host":"","path":"\u002Fwealth\u002F","items":[]},{"name":"sports","label":"Sports","host":"","path":"\u002Fsports\u002F","items":[]},{"name":"life","label":"Life","host":"","path":"\u002Flife\u002F","items":[]},{"name":"small_business","label":"Small Business","host":"","path":"\u002Fsmall-business\u002F","items":[]}]},{"name":"investing","label":"Investing","host":"","path":"\u002Finvesting\u002F","items":[{"name":"personal_finance","label":"Personal Finance","host":"","path":"\u002Fpersonal-finance\u002F","items":[]},{"name":"fintech","label":"Fintech","host":"","path":"\u002Ffintech\u002F","items":[]},{"name":"financial_advisors","label":"Financial Advisors","host":"","path":"\u002Ffinancial-advisors\u002F","items":[]},{"name":"options_action","label":"Options Action","host":"","path":"\u002Foptions-action\u002F","items":[]},{"name":"etf_street","label":"ETF Street","host":"","path":"\u002Fetf-street\u002F","items":[]},{"name":"buffett_archive","label":"Buffett Archive","host":"https:\u002F\u002Fbuffett.cnbc.com","path":"","items":[]},{"name":"earnings","label":"Earnings","host":"","path":"\u002Fearnings\u002F","items":[]},{"name":"trader_talk","label":"Trader Talk","host":"","path":"\u002Ftrader-talk\u002F","items":[]}]},{"name":"tech","label":"Tech","host":"","path":"\u002Ftechnology\u002F","items":[{"name":"cybersecurity","label":"Cybersecurity","host":"","path":"\u002Fcybersecurity\u002F","items":[]},{"name":"enterprise","label":"Enterprise","host":"","path":"\u002Fenterprise\u002F","items":[]},{"name":"internet","label":"Internet","host":"","path":"\u002Finternet\u002F","items":[]},{"name":"media","label":"Media","host":"","path":"\u002Fmedia\u002F","items":[]},{"name":"mobile","label":"Mobile","host":"","path":"\u002Fmobile\u002F","items":[]},{"name":"social_media","label":"Social Media","host":"","path":"\u002Fsocial-media\u002F","items":[]},{"name":"cnbc_disruptors","label":"CNBC Disruptor 50","host":"","path":"\u002Fcnbc-disruptors\u002F","items":[]},{"name":"tech_guide","label":"Tech Guide","host":"","path":"\u002Ftech-guide\u002F","items":[]}]},{"name":"politics","label":"Politics","host":"","path":"\u002Fpolitics\u002F","items":[{"name":"white_house","label":"White House","host":"","path":"\u002Fwhite-house\u002F","items":[]},{"name":"policy","label":"Policy","host":"","path":"\u002Fpolicy\u002F","items":[]},{"name":"defense","label":"Defense","host":"","path":"\u002Fdefense\u002F","items":[]},{"name":"congress","label":"Congress","host":"","path":"\u002Fcongress\u002F","items":[]},{"name":"equity_opportunity","label":"Equity and Opportunity","host":"","path":"\u002Fequity-opportunity\u002F","items":[]},{"name":"europe","label":"Europe Politics","host":"","path":"\u002Feurope-politics\u002F","region":"WORLD","items":[]},{"name":"china","label":"China Politics","host":"","path":"\u002Fchina-politics\u002F","region":"WORLD","items":[]},{"name":"asia","label":"Asia Politics","host":"","path":"\u002Fasia-politics\u002F","region":"WORLD","items":[]},{"name":"world","label":"World Politics","host":"","path":"\u002Fworld-politics\u002F","region":"WORLD","items":[]}]},{"name":"video","label":"Video","host":"","path":"\u002Ftv\u002F","items":[{"name":"latest_videos","label":"Latest Video","host":"","path":"\u002Flatest-video\u002F","items":[]},{"name":"full_episodes","label":"Full Episodes","host":"","path":"\u002Flive-tv\u002Ffull-episodes\u002F","items":[]},{"name":"livestream","label":"Livestream","host":"","path":"\u002Flive-tv\u002F","items":[]},{"name":"top_video","label":"Top Video","host":"","path":"\u002Ftop-video\u002F","items":[]},{"name":"live_audio","label":"Live Audio","host":"","path":"\u002Flive-audio\u002F","items":[]},{"name":"europe_tv","label":"Europe TV","host":"","path":"\u002Feurope-television\u002F","region":"WORLD","items":[]},{"name":"asia_tv","label":"Asia TV","host":"","path":"\u002Fasia-business-day\u002F","region":"WORLD","items":[]},{"name":"cnbc_podcasts","label":"CNBC Podcasts","host":"","path":"\u002Fpodcast\u002F","items":[]},{"name":"ceo_interviews","label":"CEO Interviews","host":"","path":"\u002Fvideo-ceo-interviews\u002F","items":[]},{"name":"digital_originals","label":"Digital Originals","host":"","path":"\u002Fdigital-original\u002F","items":[]}]},{"name":"watchlist","label":"Watchlist","host":"","path":"\u002Fwatchlist\u002F","items":[]},{"name":"investing_club","label":"Investing Club","host":"","path":"\u002Finvestingclub\u002F","items":[{"name":"trust_portfolio","label":"Trust Portfolio","host":"","path":"\u002Finvestingclub\u002Fcharitable-trust\u002F","items":[]},{"name":"analysis","label":"Analysis","host":"","path":"\u002Finvestingclub\u002Fanalysis\u002F","items":[]},{"name":"trade_alerts","label":"Trade Alerts","host":"","path":"\u002Finvestingclub\u002Ftrade-alerts\u002F","items":[]},{"name":"meeting_videos","label":"Meeting Videos","host":"","path":"\u002Finvestingclub\u002Fvideo\u002F","items":[]},{"name":"homestretch","label":"Homestretch","host":"","path":"\u002Finvestingclub\u002Fhomestretch\u002F","items":[]},{"name":"jims_comlumns","label":"Jim's Columns","host":"","path":"\u002Finvestingclub\u002Fjim-cramer-columns\u002F","items":[]},{"name":"education","label":"Education","host":"","path":"\u002Finvestingclub\u002Feducation\u002F","items":[]},{"name":"subscribe_to_investing_club","label":"Subscribe","host":"","path":"\u002Finvestingclub\u002Fsubscribe","items":[]},{"name":"user_signin_investing_club","label":"Sign In","host":"","items":[]}]},{"name":"pro","label":"PRO","host":"","path":"\u002Fpro\u002F","items":[{"name":"pro_news","label":"Pro News","host":"","path":"\u002Fpro\u002Fnews\u002F","items":[]},{"name":"pro_livestream","label":"Livestream","host":"","path":"\u002Flive-tv\u002F","items":[]},{"name":"full_episodes","label":"Full Episodes","host":"","path":"\u002Flive-tv\u002Ffull-episodes\u002F","items":[]},{"name":"pro_stock_screener","label":"Stock Screener","host":"","path":"\u002Fpro-stock-screener\u002F","items":[]},{"name":"market_forecast","label":"Market Forecast","host":"","path":"\u002F2023\u002F05\u002F11\u002Fmarket-strategist-survey-forecast.html","items":[]},{"name":"options_investing","label":"Options Investing","host":"","path":"\u002Fpro\u002Foptions-investing\u002F","items":[]},{"name":"chart_investing_pro","label":"Chart Investing","host":"","path":"\u002Fcnbc-pro-chart-investing\u002F","items":[]},{"name":"subscribe_to_pro","label":"Subscribe","host":"","path":"\u002Fapplication\u002Fpro","items":[]},{"name":"user_signin_pro","label":"Sign In","host":"","items":[]}]}],"edition":[{"name":"us_edition","label":"USA","host":"","path":"\u002F?region=usa","items":[]},{"name":"international_edition","label":"INTL","host":"","path":"\u002Fworld\u002F","items":[]}],"featured":[{"name":"makeit","label":"Make It","host":"","path":"\u002Fmake-it\u002F","items":[]},{"name":"select","label":"Select","host":"","path":"\u002Fselect\u002F","items":[{"name":"credit-cards","label":"Credit Cards","host":"","path":"\u002Fselect\u002Fcredit-cards\u002F","items":[{"name":"find-the-credit-card-for-you","label":"Find the Credit Card for You","host":"","path":"\u002Fselect\u002Fcredit-card-marketplace\u002F","items":[]},{"name":"best-credit-cards","label":"Best Credit Cards","host":"","path":"\u002Fselect\u002Fbest-credit-cards\u002F","items":[]},{"name":"best-rewards-credit-cards","label":"Best Rewards Credit Cards","host":"","path":"\u002Fselect\u002Fbest-rewards-credit-cards\u002F","items":[]},{"name":"best-travel-credit-cards","label":"Best Travel Credit Cards","host":"","path":"\u002Fselect\u002Fbest-travel-credit-cards\u002F","items":[]},{"name":"best-0%-apr-credit-cards","label":"Best 0% APR Credit Cards","host":"","path":"\u002Fselect\u002Fbest-zero-interest-credit-cards\u002F","items":[]},{"name":"best-balance-transfer-credit-cards","label":"Best Balance Transfer Credit Cards","host":"","path":"\u002Fselect\u002Fbest-balance-transfer-credit-cards\u002F","items":[]},{"name":"best-cash-back-credit-cards","label":"Best Cash Back Credit Cards","host":"","path":"\u002Fselect\u002Fbest-cash-back-credit-cards\u002F","items":[]},{"name":"best-credit-card-welcome-bonuses","label":"Best Credit Card Welcome Bonuses","host":"","path":"\u002Fselect\u002Fbest-credit-card-sign-up-bonuses\u002F","items":[]},{"name":"best-credit-cards-to-build-credit","label":"Best Credit Cards to Build Credit","host":"","path":"\u002Fselect\u002Fthe-best-credit-cards-for-building-credit\u002F","items":[]}]},{"name":"loans","label":"Loans","host":"","path":"\u002Fselect\u002Floans\u002F","items":[{"name":"find-the-best-personal-loan-for-you","label":"Find the Best Personal Loan for You","host":"","path":"\u002Fselect\u002Fpersonal-loan-marketplace\u002F","items":[]},{"name":"best-personal-loans","label":"Best Personal Loans","host":"","path":"\u002Fselect\u002Fbest-personal-loans\u002F","items":[]},{"name":"best-debt-consolidation-loans","label":"Best Debt Consolidation Loans","host":"","path":"\u002Fselect\u002Fbest-debt-consolidation-loans\u002F","items":[]},{"name":"best-loans-to-refinance-credit-card-debt","label":"Best Loans to Refinance Credit Card Debt","host":"","path":"\u002Fselect\u002Fbest-loans-for-refinancing-credit-card-debt\u002F","items":[]},{"name":"best-loans-with-fast-funding","label":"Best Loans with Fast Funding","host":"","path":"\u002Fselect\u002F6-personal-loans-thatll-get-you-funded-in-as-little-as-1-business-day\u002F","items":[]},{"name":"best-small-personal-loans","label":"Best Small Personal Loans","host":"","path":"\u002Fselect\u002Fbest-small-personal-loans\u002F","items":[]},{"name":"best-large-personal-loans","label":"Best Large Personal Loans","host":"","path":"\u002Fselect\u002Fpersonal-loan-lenders-borrow-50000\u002F","items":[]},{"name":"best-personal-loans-to-apply-online-","label":"Best Personal Loans to Apply Online","host":"","path":"\u002Fselect\u002Fpersonal-loan-online-applications\u002F","items":[]},{"name":"best-student-loan-refinance","label":"Best Student Loan Refinance","host":"","path":"\u002Fselect\u002Fbest-student-loan-refinance-companies\u002F","items":[]}]},{"name":"banking","label":"Banking","host":"","path":"\u002Fselect\u002Fbanking\u002F","items":[{"name":"find-the-savings-account-for-you","label":"Find the Savings Account for You","host":"","path":"\u002Fselect\u002Fsavings-marketplace\u002F","items":[]},{"name":"best-high-yield-savings-accounts","label":"Best High Yield Savings Accounts","host":"","path":"\u002Fselect\u002Fbest-high-yield-savings-accounts\u002F","items":[]},{"name":"best-big-bank-savings-accounts-","label":"Best Big Bank Savings Accounts","host":"","path":"\u002Fselect\u002Fbest-brick-and-mortar-savings-accounts\u002F","items":[]},{"name":"best-big-bank-checking-accounts","label":"Best Big Bank Checking Accounts","host":"","path":"\u002Fselect\u002Fbest-brick-mortar-checking-accounts\u002F","items":[]},{"name":"best-no-fee-checking-accounts","label":"Best No Fee Checking Accounts","host":"","path":"\u002Fselect\u002Fbest-no-fee-checking-accounts\u002F","items":[]},{"name":"no-overdraft-fee-checking-accounts-","label":"No Overdraft Fee Checking Accounts","host":"","path":"\u002Fselect\u002Fchecking-accounts-with-no-overdraft-fees\u002F","items":[]},{"name":"best-checking-account-bonuses","label":"Best Checking Account Bonuses","host":"","path":"\u002Fselect\u002Fbest-checking-account-bonuses\u002F","items":[]},{"name":"best-money-market-accounts","label":"Best Money Market Accounts","host":"","path":"\u002Fselect\u002Fbest-money-market-accounts\u002F","items":[]},{"name":"best-cds","label":"Best CDs","host":"","path":"\u002Fselect\u002Fbest-certificates-of-deposits\u002F","items":[]},{"name":"best-credit-unions","label":"Best Credit Unions","host":"","path":"\u002Fselect\u002Fbest-credit-unions\u002F","items":[]}]},{"name":"mortgages","label":"Mortgages","host":"","path":"\u002Fselect\u002Fmortgages\u002F","items":[{"name":"best-mortgages","label":"Best Mortgages","host":"","path":"\u002Fselect\u002Fbest-mortgage-lenders\u002F","items":[]},{"name":"best-mortgages-for-small-down-payment","label":"Best Mortgages for Small Down Payment","host":"","path":"\u002Fselect\u002Fmortgage-lenders-for-a-small-down-payment\u002F","items":[]},{"name":"best-mortgages-for-no-down-payment","label":"Best Mortgages for No Down Payment","host":"","path":"\u002Fselect\u002Fbest-mortgage-lenders-va-loans-usda-loans\u002F","items":[]},{"name":"best-mortgages-with-no-origination-fee","label":"Best Mortgages with No Origination Fee","host":"","path":"\u002Fselect\u002Fbest-mortgage-lenders-that-dont-charge-origination-fees\u002F","items":[]},{"name":"best-mortgages-for-average-credit-score","label":"Best Mortgages for Average Credit Score","host":"","path":"\u002Fselect\u002Fbest-mortgage-lenders-average-credit-score\u002F","items":[]},{"name":"adjustable-rate-mortgages","label":"Adjustable Rate Mortgages","host":"","path":"\u002Fselect\u002Fadjustable-rate-mortgage-pros-and-cons\u002F","items":[]},{"name":"affording-a-mortgage-","label":"Affording a Mortgage","host":"","path":"\u002Fselect\u002Fmortgage-affordability\u002F","items":[]}]},{"name":"insurance","label":"Insurance","host":"","path":"\u002Fselect\u002Finsurance\u002F","items":[{"name":"best-life-insurance-","label":"Best Life Insurance","host":"","path":"\u002Fselect\u002Fbest-life-insurance-companies\u002F","items":[]},{"name":"best-homeowners-insurance-","label":"Best Homeowners Insurance","host":"","path":"\u002Fselect\u002Fbest-homeowners-insurance-companies\u002F","items":[]},{"name":"best-renters-insurance-","label":"Best Renters Insurance","host":"","path":"\u002Fselect\u002Fbest-renters-insurance-companies\u002F","items":[]},{"name":"best-car-insurance-","label":"Best Car Insurance","host":"","path":"\u002Fselect\u002Fbest-car-insurance-companies\u002F","items":[]},{"name":"travel-insurance-","label":"Travel Insurance","host":"","path":"\u002Fselect\u002Ftravel-insurance-guide\u002F","items":[]}]},{"name":"credit-monitoring","label":"Credit Monitoring","host":"","path":"\u002Fselect\u002Fcredit-monitoring\u002F","items":[{"name":"best-credit-monitoring-services","label":"Best Credit Monitoring Services","host":"","path":"\u002Fselect\u002Fbest-credit-monitoring-services\u002F","items":[]},{"name":"best-identity-theft-protection","label":"Best Identity Theft Protection","host":"","path":"\u002Fselect\u002Fbest-identity-theft-protection-services\u002F","items":[]},{"name":"how-to-boost-your-credit-score","label":"How to Boost Your Credit Score","host":"","path":"\u002Fselect\u002Fhow-experian-boost-works\u002F","items":[]},{"name":"credit-repair-services","label":"Credit Repair Services","host":"","path":"\u002Fselect\u002Fhow-do-credit-repair-services-work\u002F","items":[]}]},{"name":"personal-finance","label":"Personal Finance","host":"","path":"\u002Fselect\u002Fpersonal-finance\u002F","items":[{"name":"best-budgeting-apps","label":"Best Budgeting Apps","host":"","path":"\u002Fselect\u002Fbest-budgeting-apps\u002F","items":[]},{"name":"best-expense-tracker-apps","label":"Best Expense Tracker Apps","host":"","path":"\u002Fselect\u002Fbest-expense-tracker-apps\u002F","items":[]},{"name":"best-money-transfer-apps","label":"Best Money Transfer Apps","host":"","path":"\u002Fselect\u002Fbest-money-transfer-payment-apps\u002F","items":[]},{"name":"best-resale-apps-and-sites","label":"Best Resale Apps and Sites","host":"","path":"\u002Fselect\u002Fbest-resale-apps-and-websites\u002F","items":[]},{"name":"buy-now-pay-later-(bnpl)-apps","label":"Buy Now Pay Later (BNPL) Apps","host":"","path":"\u002Fselect\u002Fbest-buy-now-pay-later-apps\u002F","items":[]},{"name":"best-debt-relief-","label":"Best Debt Relief","host":"","path":"\u002Fselect\u002Fbest-debt-relief-companies\u002F","items":[]}]},{"name":"small-business","label":"Small Business","host":"","path":"\u002Fselect\u002Fsmall-business\u002F","items":[{"name":"best-small-business-savings-accounts","label":"Best Small Business Savings Accounts","host":"","path":"\u002Fselect\u002Fbest-small-business-savings-accounts\u002F","items":[]},{"name":"best-small-business-checking-accounts","label":"Best Small Business Checking Accounts","host":"","path":"\u002Fselect\u002Fbest-business-checking-accounts\u002F","items":[]},{"name":"best-credit-cards-for-small-business","label":"Best Credit Cards for Small Business","host":"","path":"\u002Fselect\u002Fbest-small-business-credit-cards\u002F","items":[]},{"name":"best-small-business-loans","label":"Best Small Business Loans","host":"","path":"\u002Fselect\u002Fbest-small-business-loans\u002F","items":[]},{"name":"best-tax-software-for-small-business","label":"Best Tax Software for Small Business","host":"","path":"\u002Fselect\u002Fbest-tax-software-for-small-businesses\u002F","items":[]}]},{"name":"taxes","label":"Taxes","host":"","path":"\u002Fselect\u002Ftaxes\u002F","items":[{"name":"filing-for-free","label":"Filing For Free","host":"","path":"\u002Fselect\u002Fhow-to-file-your-taxes-for-free\u002F","items":[]},{"name":"best-tax-software","label":"Best Tax Software","host":"","path":"\u002Fselect\u002Fbest-tax-software\u002F","items":[]},{"name":"best-tax-software-for-small-businesses","label":"Best Tax Software for Small Businesses","host":"","path":"\u002Fselect\u002Fbest-tax-software-for-small-businesses\u002F","items":[]},{"name":"tax-refunds","label":"Tax Refunds","host":"","path":"\u002Fselect\u002Fhow-to-check-the-status-of-your-2020-tax-refund\u002F","items":[]},{"name":"tax-brackets","label":"Tax Brackets","host":"","path":"\u002Fselect\u002Ffederal-income-tax-brackets-tax-rates\u002F","items":[]},{"name":"tax-tips","label":"Tax Tips","host":"","path":"\u002Fselect\u002Fhow-to-reduce-taxable-income\u002F","items":[]},{"name":"tax-by-state","label":"Tax By State","host":"","path":"\u002Fselect\u002Fstates-with-no-income-tax\u002F","items":[]},{"name":"tax-payment-plans","label":"Tax Payment Plans","host":"","path":"\u002Fselect\u002Ftax-payment-plan-options\u002F","items":[]}]},{"name":"help-for-low-credit-scores","label":"Help for Low Credit Scores","host":"","path":"\u002Fselect\u002Flow-credit-scores\u002F","items":[{"name":"best-credit-cards-for-bad-credit","label":"Best Credit Cards for Bad Credit","host":"","path":"\u002Fselect\u002Fbest-credit-cards-for-bad-credit\u002F","items":[]},{"name":"best-personal-loans-for-bad-credit","label":"Best Personal Loans for Bad Credit","host":"","path":"\u002Fselect\u002Fbest-personal-loans-for-bad-credit\u002F","items":[]},{"name":"best-debt-consolidation-loans-for-bad-credit","label":"Best Debt Consolidation Loans for Bad Credit","host":"","path":"\u002Fselect\u002Fbest-debt-consolidation-loans-for-bad-credit\u002F","items":[]},{"name":"personal-loans-if-you-don't-have-credit","label":"Personal Loans if You Don't Have Credit","host":"","path":"\u002Fselect\u002Fpersonal-loan-lenders-to-consider-if-you-dont-have-credit-score\u002F","items":[]},{"name":"best-credit-cards-for-building-credit","label":"Best Credit Cards for Building Credit","host":"","path":"\u002Fselect\u002Fthe-best-credit-cards-for-building-credit\u002F","items":[]},{"name":"personal-loans-for-580-credit-score-or-lower","label":"Personal Loans for 580 Credit Score or Lower","host":"","path":"\u002Fselect\u002Fpersonal-loans-to-apply-credit-score-580-or-lower\u002F","items":[]},{"name":"personal-loans-for-670-credit-score-or-lower","label":"Personal Loans for 670 Credit Score or Lower","host":"","path":"\u002Fselect\u002Fpersonal-loan-lenders-credit-score-below-670\u002F","items":[]},{"name":"best-mortgages-for-bad-credit","label":"Best Mortgages for Bad Credit","host":"","path":"\u002Fselect\u002Fbest-mortgage-lenders-bad-credit-score\u002F","items":[]},{"name":"best-hardship-loans","label":"Best Hardship Loans","host":"","path":"\u002Fselect\u002Fbest-hardship-loans\u002F","items":[]},{"name":"how-to-boost-your-credit-score","label":"How to Boost Your Credit Score","host":"","path":"\u002Fselect\u002Fhow-experian-boost-works\u002F","items":[]}]},{"name":"investing","label":"Investing","host":"","path":"\u002Fselect\u002Finvesting\u002F","items":[{"name":"best-ira-accounts","label":"Best IRA Accounts","host":"","path":"\u002Fselect\u002Fbest-ira-accounts\u002F","items":[]},{"name":"best-roth-ira-accounts","label":"Best Roth IRA Accounts","host":"","path":"\u002Fselect\u002Fbest-roth-ira-accounts\u002F","items":[]},{"name":"best-investing-apps","label":"Best Investing Apps","host":"","path":"\u002Fselect\u002Fbest-investing-apps\u002F","items":[]},{"name":"best-free-stock-trading-platforms","label":"Best Free Stock Trading Platforms","host":"","path":"\u002Fselect\u002Fbest-brokerage-free-stock-trading\u002F","items":[]},{"name":"best-robo-advisors","label":"Best Robo-Advisors","host":"","path":"\u002Fselect\u002Fbest-robo-advisors\u002F","items":[]},{"name":"index-funds","label":"Index Funds","host":"","path":"\u002Fselect\u002Fwhat-are-index-funds\u002F","items":[]},{"name":"mutual-funds","label":"Mutual Funds","host":"","path":"\u002Fselect\u002Fwhat-are-mutual-funds\u002F","items":[]},{"name":"etfs","label":"ETFs","host":"","path":"\u002Fselect\u002Fwhat-are-etfs-should-you-invest\u002F","items":[]},{"name":"bonds","label":"Bonds","host":"","path":"\u002Fselect\u002Fwhat-are-bonds\u002F","items":[]}]}]}]}}},"request":{"cookies":{"region":"WORLD"},"hostname":"web.cnbc.com","query":{},"headers":{"partner":"cnbc01"},"site":"cnbc","path":"\u002Fworld-top-news\u002F"},"quote":{},"sailthru":{"sailthruLoaded":false},"relatedVideos":{},"videoPlaceholders":{"activeVideoPlaceholderKey":null,"placeholders":{}},"marketSummary":{}}; window.__c_data={}; window.styles={"containers\u002FApp\u002Fstyles.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","articleBody":"App-articleBody","bodyText":"App-bodyText","listWrapper":"App-listWrapper","listTitle":"App-listTitle","contentWrapper":"App-contentWrapper","contentWrapperClock":"App-contentWrapperClock","containerClick":"App-containerClick","proContentRecommendation":"App-proContentRecommendation","makeit":"App-makeit","buttonContainer":"App-buttonContainer","buttonLink":"App-buttonLink"},"_style":undefined},"containers\u002FBrandPageWrapper\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","contentWrapper":"BrandPageWrapper-contentWrapper","xfinity":"BrandPageWrapper-xfinity","countDownClock":"BrandPageWrapper-countDownClock","fiveThings":"BrandPageWrapper-fiveThings","advertorial":"BrandPageWrapper-advertorial","MainContent":"BrandPageWrapper-MainContent","PageBuilder-pageWrapper":"BrandPageWrapper-PageBuilder-pageWrapper","PageBuilder-pageRow":"BrandPageWrapper-PageBuilder-pageRow","darkTheme":"BrandPageWrapper-darkTheme","newsAlert":"BrandPageWrapper-newsAlert","liveAlert":"BrandPageWrapper-liveAlert","liveAlertAd":"BrandPageWrapper-liveAlertAd","contentWrapperClock":"BrandPageWrapper-contentWrapperClock","mobileWebview":"BrandPageWrapper-mobileWebview"},"_style":undefined},"components\u002FGlobalNavigation\u002Fshared\u002Fnav-menu\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","navMenuAllAccess":"nav-menu-navMenuAllAccess","navMenuPro":"nav-menu-navMenuPro","navMenuIC":"nav-menu-navMenuIC","navMenu":"nav-menu-navMenu","navMenuLoggedIn":"nav-menu-navMenuLoggedIn","navMenuSticky":"nav-menu-navMenuSticky nav-menu-navMenu","navMenuStickyAllAccess":"nav-menu-navMenuStickyAllAccess nav-menu-navMenu","navMenuStickyPro":"nav-menu-navMenuStickyPro nav-menu-navMenu","navMenuStickyIC":"nav-menu-navMenuStickyIC nav-menu-navMenu","navMenuStickyLoggedIn":"nav-menu-navMenuStickyLoggedIn nav-menu-navMenu","navMenuArticle":"nav-menu-navMenuArticle nav-menu-navMenu","withOpenSearch":"nav-menu-withOpenSearch","subLinks":"nav-menu-subLinks","navMenuArticleSticky":"nav-menu-navMenuArticleSticky nav-menu-navMenuSticky nav-menu-navMenu","navMenuArticleStickyAllAccess":"nav-menu-navMenuArticleStickyAllAccess nav-menu-navMenuStickyAllAccess nav-menu-navMenu","navMenuArticleStickyOneAccess":"nav-menu-navMenuArticleStickyOneAccess nav-menu-navMenuStickyPro nav-menu-navMenu","navMenuArticleStickyIC":"nav-menu-navMenuArticleStickyIC nav-menu-navMenuStickyIC nav-menu-navMenu","logoStickyContainer":"nav-menu-logoStickyContainer","buttonAllAccess":"nav-menu-buttonAllAccess","buttonText":"nav-menu-buttonText","subLink":"nav-menu-subLink","buttonPro":"nav-menu-buttonPro","buttonIC":"nav-menu-buttonIC","button":"nav-menu-button","hamburgerIC":"nav-menu-hamburgerIC nav-menu-button","hamburgerAllAccess":"nav-menu-hamburgerAllAccess nav-menu-button","hamburgerPro":"nav-menu-hamburgerPro nav-menu-button","hamburger":"nav-menu-hamburger nav-menu-button","articleHamburger":"nav-menu-articleHamburger nav-menu-hamburger nav-menu-button","articleHamburgerAllAccess":"nav-menu-articleHamburgerAllAccess nav-menu-hamburgerAllAccess nav-menu-button","articleHamburgerPro":"nav-menu-articleHamburgerPro nav-menu-hamburgerPro nav-menu-button","desktopHamburger":"nav-menu-desktopHamburger nav-menu-button","desktopHamburgerAllAccess":"nav-menu-desktopHamburgerAllAccess nav-menu-button","desktopHamburgerIC":"nav-menu-desktopHamburgerIC nav-menu-button","desktopHamburgerPro":"nav-menu-desktopHamburgerPro nav-menu-button","desktopHamburgerSticky":"nav-menu-desktopHamburgerSticky nav-menu-desktopHamburger nav-menu-button","desktopHamburgerStickyAllAccess":"nav-menu-desktopHamburgerStickyAllAccess nav-menu-desktopHamburgerAllAccess nav-menu-button","desktopHamburgerStickyPro":"nav-menu-desktopHamburgerStickyPro nav-menu-desktopHamburgerPro nav-menu-button","desktopHamburgerStickyIC":"nav-menu-desktopHamburgerStickyIC nav-menu-desktopHamburgerIC nav-menu-button","desktopHamburgerArticleSticky":"nav-menu-desktopHamburgerArticleSticky nav-menu-desktopHamburgerSticky nav-menu-desktopHamburger nav-menu-button","desktopHamburgerArticleStickyAllAccess":"nav-menu-desktopHamburgerArticleStickyAllAccess nav-menu-desktopHamburgerStickyAllAccess nav-menu-desktopHamburgerAllAccess nav-menu-button","desktopHamburgerArticleStickyOneAccess":"nav-menu-desktopHamburgerArticleStickyOneAccess nav-menu-desktopHamburgerStickyPro nav-menu-desktopHamburgerPro nav-menu-button","desktopHamburgerArticleStickyIC":"nav-menu-desktopHamburgerArticleStickyIC nav-menu-desktopHamburgerStickyIC nav-menu-desktopHamburgerIC nav-menu-button","articleButtonText":"nav-menu-articleButtonText nav-menu-buttonText","articleButtonTextAllAccess":"nav-menu-articleButtonTextAllAccess nav-menu-buttonText","articleButtonTextPro":"nav-menu-articleButtonTextPro nav-menu-buttonText","articleButtonTextIC":"nav-menu-articleButtonTextIC nav-menu-buttonText","logo":"nav-menu-logo","logoSticky":"nav-menu-logoSticky nav-menu-logo","logoStickyMobilePro":"nav-menu-logoStickyMobilePro nav-menu-logo","logoStickyMobileAllAccess":"nav-menu-logoStickyMobileAllAccess","logoStickyMobileIC":"nav-menu-logoStickyMobileIC","mainLinks":"nav-menu-mainLinks","mainLinksSticky":"nav-menu-mainLinksSticky nav-menu-mainLinks","mainLinksWrapper":"nav-menu-mainLinksWrapper","mainLinksWrapperStart":"nav-menu-mainLinksWrapperStart nav-menu-mainLinksWrapper","articleMainWrapper":"nav-menu-articleMainWrapper","articleContent":"nav-menu-articleContent","articleTitle":"nav-menu-articleTitle","articleTitleWithoutShareComponent":"nav-menu-articleTitleWithoutShareComponent","articleSocial":"nav-menu-articleSocial","articleHidden":"nav-menu-articleHidden","navLinks":"nav-menu-navLinks","linksSticky":"nav-menu-linksSticky","articleNavLinks":"nav-menu-articleNavLinks","primaryLink":"nav-menu-primaryLink","active":"nav-menu-active","navUnderline":"nav-menu-navUnderline","navUnderlineAllAccess":"nav-menu-navUnderlineAllAccess","navUnderlineIC":"nav-menu-navUnderlineIC","navUnderlinePro":"nav-menu-navUnderlinePro","progressBarContainer":"nav-menu-progressBarContainer","logoContainer":"nav-menu-logoContainer","navDropdownWrap":"nav-menu-navDropdownWrap","subLinks-enter":"nav-menu-subLinks-enter","subLinks-enter-active":"nav-menu-subLinks-enter-active","proLockIcon":"nav-menu-proLockIcon","investingClubLockIcon":"nav-menu-investingClubLockIcon","proPillIcon":"nav-menu-proPillIcon","investingClubPillIcon":"nav-menu-investingClubPillIcon","berkshireWatchLive":"nav-menu-berkshireWatchLive","liveText":"nav-menu-liveText","pulse":"nav-menu-pulse","watchLive":"nav-menu-watchLive","showTitle":"nav-menu-showTitle","wrapperButton":"nav-menu-wrapperButton","signupBtnStickyNav":"nav-menu-signupBtnStickyNav","WatchLiveWithSignUpBtn":"nav-menu-WatchLiveWithSignUpBtn","menuPromotion":"nav-menu-menuPromotion","subMenuPromotion":"nav-menu-subMenuPromotion","menuPromotionNoLockIcon":"nav-menu-menuPromotionNoLockIcon"},"_style":undefined},"components\u002FGlobalNavigation\u002Fshared\u002FSearchToggle\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","button":"SearchToggle-button","signinButton":"SearchToggle-signinButton","signinButtonBtn":"SearchToggle-signinButtonBtn","closeButtonText":"SearchToggle-closeButtonText","searchOpen":"SearchToggle-searchOpen","megaMenuSearchToggler":"SearchToggle-megaMenuSearchToggler","megaMenuSearchTogglerAllAccess":"SearchToggle-megaMenuSearchTogglerAllAccess","megaMenuSearchTogglerIC":"SearchToggle-megaMenuSearchTogglerIC","megaMenuSearchTogglerPro":"SearchToggle-megaMenuSearchTogglerPro","mega-menu":"SearchToggle-mega-menu","articleButton":"SearchToggle-articleButton","buttonSticky":"SearchToggle-buttonSticky SearchToggle-button","megaMenuButton":"SearchToggle-megaMenuButton","megaMenuButtonAllAccess":"SearchToggle-megaMenuButtonAllAccess","megaMenuButtonPro":"SearchToggle-megaMenuButtonPro","megaMenuButtonIC":"SearchToggle-megaMenuButtonIC"},"_style":undefined},"containers\u002FPageBuilder\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","containerFluidWidths":"PageBuilder-containerFluidWidths","containerWidth100":"PageBuilder-containerWidth100","page":"PageBuilder-page","advertorialPage":"PageBuilder-advertorialPage","pageGrid":"PageBuilder-pageGrid","pageWrapper":"PageBuilder-pageWrapper","pageRow":"PageBuilder-pageRow","pageRowFlex":"PageBuilder-pageRowFlex PageBuilder-pageRow","rowUnderAd":"PageBuilder-rowUnderAd PageBuilder-pageRow","rowWithBackground":"PageBuilder-rowWithBackground PageBuilder-pageRow","isAdvertorial":"PageBuilder-isAdvertorial","flipRowOrder":"PageBuilder-flipRowOrder PageBuilder-pageRow","col":"PageBuilder-col","col-3":"PageBuilder-col-3 PageBuilder-col","col-6":"PageBuilder-col-6 PageBuilder-col","col-9":"PageBuilder-col-9 PageBuilder-col","article":"PageBuilder-article","col-12":"PageBuilder-col-12 PageBuilder-col","col-full":"PageBuilder-col-full PageBuilder-col","clear-col-padding":"PageBuilder-clear-col-padding","paddedWrapper":"PageBuilder-paddedWrapper","hasBanner":"PageBuilder-hasBanner","sidebar":"PageBuilder-sidebar","sidebarLeft":"PageBuilder-sidebarLeft PageBuilder-sidebar","sidebarLeftNav":"PageBuilder-sidebarLeftNav","sidebarPro":"PageBuilder-sidebarPro","AdvertorialStory-ArticleHeader-1":"PageBuilder-AdvertorialStory-ArticleHeader-1"},"_style":undefined},"components\u002Fshared\u002FMps\u002FAdUnits\u002FSponsorLogo\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","container":"SponsorLogo-container"},"_style":undefined},"components\u002FPcmModule\u002FAds\u002FTopBanner\u002Fstyles.cnbc.scss":{"default":{"container":"TopBanner-container","berkshireEvent":"TopBanner-berkshireEvent"},"_style":undefined},"components\u002FPcmModule\u002FLatestNews\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","header":"LatestNews-header","item":"LatestNews-item","iconCleared":"LatestNews-iconCleared","container":"LatestNews-container","headline":"LatestNews-headline","videoIcon":"LatestNews-videoIcon","wrapper":"LatestNews-wrapper","timestamp":"LatestNews-timestamp","source":"LatestNews-source","proPill":"LatestNews-proPill","investingClubPill":"LatestNews-investingClubPill","watchLivePill":"LatestNews-watchLivePill","isHomePage":"LatestNews-isHomePage","hideGradient":"LatestNews-hideGradient","list":"LatestNews-list","headlineWrapper":"LatestNews-headlineWrapper","visitedIcon":"LatestNews-visitedIcon","buttonContainer":"LatestNews-buttonContainer","isIntlHomepage":"LatestNews-isIntlHomepage","noWatchLiveAbove":"LatestNews-noWatchLiveAbove","button":"LatestNews-button","newsTabButton":"LatestNews-newsTabButton","tradeAlertLabel":"LatestNews-tradeAlertLabel"},"_style":undefined},"components\u002FPcmModule\u002FAds\u002FBoxInline\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","container":"BoxInline-container"},"_style":undefined},"components\u002FPcmModule\u002FAds\u002FBoxRail\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","container":"BoxRail-container","container-right":"BoxRail-container-right","container-left":"BoxRail-container-left","adWrapperSticky":"BoxRail-adWrapperSticky","adWrapperStickyNewsAlert":"BoxRail-adWrapperStickyNewsAlert","ad":"BoxRail-ad"},"_style":undefined},"components\u002Fshared\u002FTable\u002FTableHeader\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","container":"TableHeader-container","title":"TableHeader-title","themeTitle":"TableHeader-themeTitle TableHeader-title","link":"TableHeader-link"},"_style":undefined},"components\u002Fshared\u002FTable\u002FBasicTable\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","basicTable":"BasicTable-basicTable","tableWrapper":"BasicTable-tableWrapper","portfolioTableWrapper":"BasicTable-portfolioTableWrapper","table":"BasicTable-table","tableHeadingSortable":"BasicTable-tableHeadingSortable","portfolioTd":"BasicTable-portfolioTd","portfolioHeader":"BasicTable-portfolioHeader","portfolioHeaderJustify":"BasicTable-portfolioHeaderJustify","watchlistTableHeaderJustify":"BasicTable-watchlistTableHeaderJustify","portfolioHeaderName":"BasicTable-portfolioHeaderName","portfolioHeaderSortIcon":"BasicTable-portfolioHeaderSortIcon","articleContainer":"BasicTable-articleContainer","tableHeading":"BasicTable-tableHeading","tableBody":"BasicTable-tableBody","container":"BasicTable-container","portfolioTableHeading":"BasicTable-portfolioTableHeading","portfolioHeaderTh":"BasicTable-portfolioHeaderTh","textData":"BasicTable-textData","numData":"BasicTable-numData","floatingTable":"BasicTable-floatingTable BasicTable-container","portfolioScroll":"BasicTable-portfolioScroll","scrollGradient":"BasicTable-scrollGradient","quoteGain":"BasicTable-quoteGain","quoteDecline":"BasicTable-quoteDecline","watchlistTableQuote":"BasicTable-watchlistTableQuote","changePositive":"BasicTable-changePositive","changeNegative":"BasicTable-changeNegative BasicTable-changePositive","symbol":"BasicTable-symbol","name":"BasicTable-name","unchanged":"BasicTable-unchanged BasicTable-numData","portfolioSummary":"BasicTable-portfolioSummary","portfolioSummaryPositive":"BasicTable-portfolioSummaryPositive","portfolioSummaryNegative":"BasicTable-portfolioSummaryNegative","symbolName":"BasicTable-symbolName","addWatchlist":"BasicTable-addWatchlist","desktopOnly":"BasicTable-desktopOnly","dropdownStyles":"BasicTable-dropdownStyles","dataRow":"BasicTable-dataRow","fairValueQuote":"BasicTable-fairValueQuote"},"_style":undefined},"components\u002Fshared\u002FCard\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","card":"Card-card","title":"Card-title","package":"Card-package","titleAndFooter":"Card-titleAndFooter","rectangleToLeftSquareMedia":"Card-rectangleToLeftSquareMedia Card-card","leftSquareMedia":"Card-leftSquareMedia Card-card","mediaContainer":"Card-mediaContainer","textContent":"Card-textContent","aboveImageTitle":"Card-aboveImageTitle","mediaContainerPackage":"Card-mediaContainerPackage","squareMediaContainer":"Card-squareMediaContainer","rectangleMediaContainer":"Card-rectangleMediaContainer","imageGradient":"Card-imageGradient","videoFooter":"Card-videoFooter","videoFooterContent":"Card-videoFooterContent","videoLabel":"Card-videoLabel","videoTime":"Card-videoTime Card-videoLabel","totalTime":"Card-totalTime Card-videoTime Card-videoLabel","byline":"Card-byline","threeUpCardFooterStyle":"Card-threeUpCardFooterStyle","threeUpBylineStyle":"Card-threeUpBylineStyle","bylinePackage":"Card-bylinePackage Card-byline","time":"Card-time","timePackage":"Card-timePackage Card-time","sponsoredLogo":"Card-sponsoredLogo","packageTitle":"Card-packageTitle","live":"Card-live","titleOnly":"Card-titleOnly Card-card","pro":"Card-pro","titleOnlyUltraDense":"Card-titleOnlyUltraDense Card-card","titleOnlyImageDense":"Card-titleOnlyImageDense Card-titleOnly Card-card","titleOnlyPackage":"Card-titleOnlyPackage Card-titleOnly Card-card Card-package","titleOnlyTopBorder":"Card-titleOnlyTopBorder Card-titleOnly Card-card","titleOnlyNoBorder":"Card-titleOnlyNoBorder Card-titleOnly Card-card","titleOnlyTopSolidBorder":"Card-titleOnlyTopSolidBorder Card-titleOnly Card-card","titleOnlyHalf":"Card-titleOnlyHalf Card-titleOnly Card-card","titleOnlyHalfPackage":"Card-titleOnlyHalfPackage Card-titleOnlyHalf Card-titleOnly Card-card Card-package","titleByline":"Card-titleByline Card-card","titleBylinePackage":"Card-titleBylinePackage Card-titleByline Card-card Card-package","titleBylineNoBorder":"Card-titleBylineNoBorder Card-card","titleBylineRight":"Card-titleBylineRight Card-card","largeTitleByline":"Card-largeTitleByline Card-card","proPill":"Card-proPill","watchLivePill":"Card-watchLivePill","investingClubPill":"Card-investingClubPill","titleBylineHalf":"Card-titleBylineHalf Card-card","featuredRectangleMedia":"Card-featuredRectangleMedia Card-card","imageContainer":"Card-imageContainer","specialReportsRiver":"Card-specialReportsRiver Card-card","cardFooter":"Card-cardFooter","bylineContainer":"Card-bylineContainer","bylineDivider":"Card-bylineDivider","titleContainer":"Card-titleContainer","featuredRectangleMediaImagedense":"Card-featuredRectangleMediaImagedense Card-featuredRectangleMedia Card-card","featuredRectangleMediaPackage":"Card-featuredRectangleMediaPackage Card-featuredRectangleMedia Card-card Card-package","featuredSecondaryRectangleMedia":"Card-featuredSecondaryRectangleMedia Card-card","featuredSecondaryRectangleMediaPackage":"Card-featuredSecondaryRectangleMediaPackage Card-featuredSecondaryRectangleMedia Card-card Card-package","rectangleMedia":"Card-rectangleMedia Card-card","standardBreakerCard":"Card-standardBreakerCard","rectangleMediaUltraDense":"Card-rectangleMediaUltraDense Card-rectangleMedia Card-card","bylinePosition":"Card-bylinePosition","rectangleMediaPackage":"Card-rectangleMediaPackage Card-rectangleMedia Card-card Card-package","rectangleMediaHalf":"Card-rectangleMediaHalf Card-card","rectangleMediaHalfNoBorder":"Card-rectangleMediaHalfNoBorder Card-card","leftRectangleToTopMedia":"Card-leftRectangleToTopMedia Card-card","rectangleToRectangleMediaHalf":"Card-rectangleToRectangleMediaHalf Card-card","recToRecMediaHalf":"Card-recToRecMediaHalf Card-card","squareMedia":"Card-squareMedia Card-card","squareMediaImageDense":"Card-squareMediaImageDense Card-squareMedia Card-card","rectangleToLeftSquareMediaUltraDense":"Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card","mediaContainerInner":"Card-mediaContainerInner","featuredSquareToRectangleMedia":"Card-featuredSquareToRectangleMedia Card-card","squareLeadMediaLeft":"Card-squareLeadMediaLeft Card-card","featuredRectangleToRectangleMedia":"Card-featuredRectangleToRectangleMedia Card-featuredSquareToRectangleMedia Card-card","squareToRectangleMediaPackage":"Card-squareToRectangleMediaPackage Card-card Card-package","placeholder":"Card-placeholder","eyebrow":"Card-eyebrow","eyebrowContainer":"Card-eyebrowContainer","titleOnlyFourUp":"Card-titleOnlyFourUp Card-titleOnly Card-card","cnbcvideo":"Card-cnbcvideo","webresource":"Card-webresource","proSmall":"Card-proSmall","proIcon":"Card-proIcon","threeUpStackRectangleSquareMedia":"Card-threeUpStackRectangleSquareMedia Card-rectangleToLeftSquareMedia Card-card","description":"Card-description","threeUpRectangleSquareMediaDescription":"Card-threeUpRectangleSquareMediaDescription Card-rectangleToLeftSquareMedia Card-card","titleOnlyThreeUpStack":"Card-titleOnlyThreeUpStack Card-titleOnly Card-card","titleOnlyThreeUpStackLast":"Card-titleOnlyThreeUpStackLast Card-titleOnlyThreeUpStack Card-titleOnly Card-card","videoIcon":"Card-videoIcon","aboveImageContent":"Card-aboveImageContent","specialReportTimestamp":"Card-specialReportTimestamp"},"_style":undefined},"components\u002FPcmModule\u002FAds\u002FMidResponsive\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","midResponsiveContainer":"MidResponsive-midResponsiveContainer"},"_style":undefined},"components\u002FPcmModule\u002FTrendingNowBreaker\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","containerFluidWidths":"TrendingNowBreaker-containerFluidWidths","containerWidth100":"TrendingNowBreaker-containerWidth100","page":"TrendingNowBreaker-page","advertorialPage":"TrendingNowBreaker-advertorialPage","pageGrid":"TrendingNowBreaker-pageGrid","pageWrapper":"TrendingNowBreaker-pageWrapper","pageRow":"TrendingNowBreaker-pageRow","pageRowFlex":"TrendingNowBreaker-pageRowFlex TrendingNowBreaker-pageRow","rowUnderAd":"TrendingNowBreaker-rowUnderAd TrendingNowBreaker-pageRow","rowWithBackground":"TrendingNowBreaker-rowWithBackground TrendingNowBreaker-pageRow","isAdvertorial":"TrendingNowBreaker-isAdvertorial","flipRowOrder":"TrendingNowBreaker-flipRowOrder TrendingNowBreaker-pageRow","col":"TrendingNowBreaker-col","col-3":"TrendingNowBreaker-col-3 TrendingNowBreaker-col","col-6":"TrendingNowBreaker-col-6 TrendingNowBreaker-col","col-9":"TrendingNowBreaker-col-9 TrendingNowBreaker-col","article":"TrendingNowBreaker-article","col-12":"TrendingNowBreaker-col-12 TrendingNowBreaker-col","col-full":"TrendingNowBreaker-col-full TrendingNowBreaker-col","clear-col-padding":"TrendingNowBreaker-clear-col-padding","paddedWrapper":"TrendingNowBreaker-paddedWrapper","hasBanner":"TrendingNowBreaker-hasBanner","sidebar":"TrendingNowBreaker-sidebar","sidebarLeft":"TrendingNowBreaker-sidebarLeft TrendingNowBreaker-sidebar","sidebarLeftNav":"TrendingNowBreaker-sidebarLeftNav","sidebarPro":"TrendingNowBreaker-sidebarPro","AdvertorialStory-ArticleHeader-1":"TrendingNowBreaker-AdvertorialStory-ArticleHeader-1"},"_style":undefined},"components\u002FPcmModule\u002FTrendingNowBreaker\u002FTrendingNow\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","container":"TrendingNow-container","heading":"TrendingNow-heading","storyContainer":"TrendingNow-storyContainer"},"_style":undefined},"components\u002FPcmModule\u002FTrendingNowBreaker\u002FTrendingNow\u002FTrendingNowItem\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","linkWrap":"TrendingNowItem-linkWrap","title":"TrendingNowItem-title","number":"TrendingNowItem-number","storyItem":"TrendingNowItem-storyItem"},"_style":undefined},"components\u002FPcmModule\u002FTwoColumnImageDense\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","containerFluidWidths":"TwoColumnImageDense-containerFluidWidths","containerWidth100":"TwoColumnImageDense-containerWidth100","page":"TwoColumnImageDense-page","advertorialPage":"TwoColumnImageDense-advertorialPage","pageGrid":"TwoColumnImageDense-pageGrid","pageWrapper":"TwoColumnImageDense-pageWrapper","pageRow":"TwoColumnImageDense-pageRow","pageRowFlex":"TwoColumnImageDense-pageRowFlex TwoColumnImageDense-pageRow","rowUnderAd":"TwoColumnImageDense-rowUnderAd TwoColumnImageDense-pageRow","rowWithBackground":"TwoColumnImageDense-rowWithBackground TwoColumnImageDense-pageRow","isAdvertorial":"TwoColumnImageDense-isAdvertorial","flipRowOrder":"TwoColumnImageDense-flipRowOrder TwoColumnImageDense-pageRow","col":"TwoColumnImageDense-col","col-3":"TwoColumnImageDense-col-3 TwoColumnImageDense-col","col-6":"TwoColumnImageDense-col-6 TwoColumnImageDense-col","col-9":"TwoColumnImageDense-col-9 TwoColumnImageDense-col","article":"TwoColumnImageDense-article","col-12":"TwoColumnImageDense-col-12 TwoColumnImageDense-col","col-full":"TwoColumnImageDense-col-full TwoColumnImageDense-col","clear-col-padding":"TwoColumnImageDense-clear-col-padding","paddedWrapper":"TwoColumnImageDense-paddedWrapper","hasBanner":"TwoColumnImageDense-hasBanner","sidebar":"TwoColumnImageDense-sidebar","sidebarLeft":"TwoColumnImageDense-sidebarLeft TwoColumnImageDense-sidebar","sidebarLeftNav":"TwoColumnImageDense-sidebarLeftNav","sidebarPro":"TwoColumnImageDense-sidebarPro","AdvertorialStory-ArticleHeader-1":"TwoColumnImageDense-AdvertorialStory-ArticleHeader-1","imageDense":"TwoColumnImageDense-imageDense"},"_style":undefined},"components\u002Fshared\u002FSectionWrapper\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","container":"SectionWrapper-container","twoThirds":"SectionWrapper-twoThirds SectionWrapper-container","header":"SectionWrapper-header","decoration":"SectionWrapper-decoration","title":"SectionWrapper-title","titleImage":"SectionWrapper-titleImage","sponsorIcon":"SectionWrapper-sponsorIcon","link":"SectionWrapper-link","content":"SectionWrapper-content","latestContent":"SectionWrapper-latestContent","latestNews":"SectionWrapper-latestNews"},"_style":undefined},"components\u002FColumn\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","cardRow":"Column-cardRow","dualLeadLeft":"Column-dualLeadLeft","dualLeadLeftPackage":"Column-dualLeadLeftPackage","dualLeadRight":"Column-dualLeadRight","dualLeadRightPackage":"Column-dualLeadRightPackage","dynamicContentLeft":"Column-dynamicContentLeft","dynamicContentRight":"Column-dynamicContentRight","singleLeadLeft":"Column-singleLeadLeft","imageDenseModRight":"Column-imageDenseModRight","featuredRectangleMedia":"Column-featuredRectangleMedia","singleLeadLeftPackage":"Column-singleLeadLeftPackage","singleLeadRight":"Column-singleLeadRight","imageDenseModLeft":"Column-imageDenseModLeft","standardBreakerCard":"Column-standardBreakerCard","squareMedia":"Column-squareMedia","card":"Column-card","singleLeadRightPackage":"Column-singleLeadRightPackage","miniHeroLeft":"Column-miniHeroLeft","miniHeroRight":"Column-miniHeroRight","squareLeadLeft":"Column-squareLeadLeft","squareImageDenseLeft":"Column-squareImageDenseLeft","rectangleLeadLeft":"Column-rectangleLeadLeft Column-squareLeadLeft","squareLeadLeftPackage":"Column-squareLeadLeftPackage","squareLeadRight":"Column-squareLeadRight","squareImageDenseRight":"Column-squareImageDenseRight","rectangleLeadRight":"Column-rectangleLeadRight Column-squareLeadRight","squareLeadRightPackage":"Column-squareLeadRightPackage","threeUpUltraDense":"Column-threeUpUltraDense","threeUp":"Column-threeUp","dense":"Column-dense","fourUp":"Column-fourUp","threeUpStack":"Column-threeUpStack","twoUp":"Column-twoUp","imageDenseLeft":"Column-imageDenseLeft","imageDenseRight":"Column-imageDenseRight","dynamicContentMobile":"Column-dynamicContentMobile","oneImageDense":"Column-oneImageDense","flexibleLabel":"Column-flexibleLabel","topBorder":"Column-topBorder","topMargin":"Column-topMargin","videoFeatured":"Column-videoFeatured"},"_style":undefined},"components\u002Fshared\u002FPlayButton\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","container":"PlayButton-container","base":"PlayButton-base","featured":"PlayButton-featured PlayButton-base","featuredMediaPlaybutton":"PlayButton-featuredMediaPlaybutton","icon":"PlayButton-icon","flyout":"PlayButton-flyout","suppressFlyout":"PlayButton-suppressFlyout","hover":"PlayButton-hover","iconHover":"PlayButton-iconHover","playlistWrapper":"PlayButton-playlistWrapper","playlist":"PlayButton-playlist","featuredPlaylist":"PlayButton-featuredPlaylist PlayButton-playlist","sizeVariationOne":"PlayButton-sizeVariationOne","sizeVariationFive":"PlayButton-sizeVariationFive","smallVersion":"PlayButton-smallVersion"},"_style":undefined}}; window.__ff_data={"1w23e432we34rtrefallback":false,"3gswv8f8":false,"3s9ma3n1":false,"4rj3orcxu":true,"ALL_ACCESS":true,"EMBEDDED_CHARTS_REFRESH":false,"FEATURE_FLAG_BACKUP_STREAM":false,"FEATURE_FLAG_ENABLE_BREAKING_NEWS_SPONSOR":false,"FEATURE_FLAG_ENABLE_CNBC_PLUS":true,"FEATURE_FLAG_ENABLE_DATA_STREAM":true,"FEATURE_FLAG_ENABLE_GLOBAL_STREAM":false,"FEATURE_FLAG_ENABLE_SR_AND_BD_LARGE_HEADER":false,"FEATURE_FLAG_MARKETS_BANNER":true,"FEATURE_FLAG_MENU_PROMOTION":{},"FEATURE_FLAG_PORTFOLIO":false,"FEATURE_FLAG_RELEASE_PRO_DAI":false,"FEATURE_FLAG_SET_LDJSON_CREATED_DATE_TO_UPDATED_DATE":{"evergreen":[107083232,107372396,107369267]},"FEATURE_FLAG_SET_STRUCTURED_DATA_CREATED_DATE_TO_UPDATED_DATE":false,"FEATURE_FLAG_SHOW_NEW_STOCK_SCREENER":false,"FEATURE_FLAG_SIDE_DRAWER":true,"FEATURE_FLAG_SS_URL":true,"FEATURE_FLAG_STOCK_SCREENER":true,"FEATURE_FLAG_STOCK_SCREENER_ATTR_PROMO":{},"FEATURE_FLAG_STOCK_SCREENER_LINKS":true,"FEATURE_FLAG_STOCK_SCREENER_SAVE":true,"FEATURE_FLAG_TOS":false,"FEATURE_FLAG_WATCHLIST_NOTIFICATIONS":false,"GATED_ARTICLE_PASS_REFERRER":true,"LIVE_ALERTS_BANNER_AD":false,"MARKET_MOVERS_QUOTE_DROPDOWN":true,"MOST_ACTIVE_UNUSUAL_VOLUME_QUOTE_DROPDOWN":true,"STOCK_SCREENER_FILTER_CONFIG":"","TIPRANKS_ANALYST_FORECAST":true,"TIPRANKS_ANALYST_FORECAST_QUOTE":true,"TUNE_IN_TEXT_STRUCTURED":true,"ajs283so32":true,"b9t8er7t":false,"bionicflag1234":false,"coreVideo":"\u002FNimSmuMOlcc1shKlcyjhFglzgkIpuYb5\u002FipCmVvA\u002FenHvedfO+Wjp9HW4W\u002F9Uj1","credit-card-ratings-display":false,"crfaccOnArt":true,"d1qp45cb":true,"e9vq3e7c":true,"enable-livetv-autoplay":true,"esn1c5ma":true,"f3t2ngps":false,"g1pcp62":true,"gwthaaliga":false,"hfdas89":true,"ic1mp2tcd3":true,"j9dpb393":false,"jrxcxwx":true,"most-popular-query-ids-by-vertical":{"msnbc":"nccl00088112233","news":"nccl00011223344","today":"tdcl00055667799"},"new-watchlist-landing-page":true,"qssltb.123":true,"quoteModuleCreateAccount":true,"s7dfahu9":true,"signBtnArtColl":true,"signupBtn.1":false,"signupBtnG":false,"test-json":{},"test-ops":false,"use-core-video":true,"xbzkxvk":true,"$flagsState":{"1w23e432we34rtrefallback":{"version":3,"variation":1},"3gswv8f8":{"version":4,"variation":1},"3s9ma3n1":{"version":4,"variation":1},"4rj3orcxu":{"version":3,"variation":0},"ALL_ACCESS":{"version":3,"variation":0},"EMBEDDED_CHARTS_REFRESH":{"version":2,"variation":1},"FEATURE_FLAG_BACKUP_STREAM":{"version":4,"variation":1},"FEATURE_FLAG_ENABLE_BREAKING_NEWS_SPONSOR":{"version":2,"variation":1},"FEATURE_FLAG_ENABLE_CNBC_PLUS":{"version":5,"variation":0},"FEATURE_FLAG_ENABLE_DATA_STREAM":{"version":5,"variation":0},"FEATURE_FLAG_ENABLE_GLOBAL_STREAM":{"version":2,"variation":1},"FEATURE_FLAG_ENABLE_SR_AND_BD_LARGE_HEADER":{"version":2,"variation":1},"FEATURE_FLAG_MARKETS_BANNER":{"version":5,"variation":0},"FEATURE_FLAG_MENU_PROMOTION":{"version":20,"variation":1},"FEATURE_FLAG_PORTFOLIO":{"version":3,"variation":1},"FEATURE_FLAG_RELEASE_PRO_DAI":{"version":2,"variation":1},"FEATURE_FLAG_SET_LDJSON_CREATED_DATE_TO_UPDATED_DATE":{"version":18,"variation":0},"FEATURE_FLAG_SET_STRUCTURED_DATA_CREATED_DATE_TO_UPDATED_DATE":{"version":2,"variation":1},"FEATURE_FLAG_SHOW_NEW_STOCK_SCREENER":{"version":6,"variation":1},"FEATURE_FLAG_SIDE_DRAWER":{"version":5,"variation":0},"FEATURE_FLAG_SS_URL":{"version":3,"variation":0},"FEATURE_FLAG_STOCK_SCREENER":{"version":3,"variation":0},"FEATURE_FLAG_STOCK_SCREENER_ATTR_PROMO":{"version":5,"variation":1},"FEATURE_FLAG_STOCK_SCREENER_LINKS":{"version":3,"variation":0},"FEATURE_FLAG_STOCK_SCREENER_SAVE":{"version":3,"variation":0},"FEATURE_FLAG_TOS":{"version":2,"variation":1},"FEATURE_FLAG_WATCHLIST_NOTIFICATIONS":{"version":2,"variation":1},"GATED_ARTICLE_PASS_REFERRER":{"version":5,"variation":0},"LIVE_ALERTS_BANNER_AD":{"version":2,"variation":1},"MARKET_MOVERS_QUOTE_DROPDOWN":{"version":3,"variation":0},"MOST_ACTIVE_UNUSUAL_VOLUME_QUOTE_DROPDOWN":{"version":3,"variation":0},"STOCK_SCREENER_FILTER_CONFIG":{"version":3,"variation":1},"TIPRANKS_ANALYST_FORECAST":{"version":3,"variation":0},"TIPRANKS_ANALYST_FORECAST_QUOTE":{"version":3,"variation":0},"TUNE_IN_TEXT_STRUCTURED":{"version":3,"variation":0},"ajs283so32":{"version":8,"variation":0},"b9t8er7t":{"version":5,"variation":1},"bionicflag1234":{"version":2,"variation":1},"coreVideo":{"version":6,"variation":0},"credit-card-ratings-display":{"version":2,"variation":1},"crfaccOnArt":{"version":3,"variation":0},"d1qp45cb":{"version":3,"variation":0},"e9vq3e7c":{"version":3,"variation":0},"enable-livetv-autoplay":{"version":3,"variation":0},"esn1c5ma":{"version":3,"variation":0},"f3t2ngps":{"version":2,"variation":1},"g1pcp62":{"version":3,"variation":0},"gwthaaliga":{"version":2,"variation":1},"hfdas89":{"version":3,"variation":0},"ic1mp2tcd3":{"version":3,"variation":0},"j9dpb393":{"version":8,"variation":1},"jrxcxwx":{"version":3,"variation":0},"most-popular-query-ids-by-vertical":{"version":2,"variation":0},"new-watchlist-landing-page":{"version":3,"variation":0},"qssltb.123":{"version":6,"variation":0},"quoteModuleCreateAccount":{"version":3,"variation":0},"s7dfahu9":{"version":4,"variation":0},"signBtnArtColl":{"version":3,"variation":0},"signupBtn.1":{"version":2,"variation":1},"signupBtnG":{"version":4,"variation":1},"test-json":{"version":5,"variation":1},"test-ops":{"version":2,"variation":1},"use-core-video":{"version":3,"variation":0},"xbzkxvk":{"version":4,"variation":0}},"$valid":true}; window.PARSELY={"video":{"autotrack":false}};</script><script charset="UTF-8">
            var onLoadScripts = [{"text":"var __CNBC_META_DATA={\"layout\":[],\"aboutThisSection\":null,\"additionalMetadata\":null,\"additionalSectionContentFormatted\":\"NA\",\"additionalSectionContentFormattedFull\":\"NA\",\"authorFormatted\":\"NA\",\"authorFormattedFull\":\"NA\",\"brand\":\"cnbc\",\"color\":null,\"contentClassification\":[],\"cmsTemplate\":\"Topic Template\",\"creatorOverwrite\":null,\"creatorOverwriteFormatted\":\"NA\",\"dateFirstPublished\":\"2013-05-10T14:41:50+0000\",\"dateLastPublished\":\"2024-08-21T14:43:49+0000\",\"datePublished\":\"2016-09-27T13:00:09+0000\",\"description\":\"CNBC International is the world leader for news on business, technology, China, trade, oil prices, the Middle East and markets.\",\"expires\":null,\"headline\":\"World News & Analysis\",\"id\":100727362,\"liveURL\":\"\u002Fworld-top-news\u002F\",\"native\":false,\"pageName\":\"100727362|world-top-news\",\"premium\":false,\"projectContentFormatted\":\"NA\",\"projectContentFormattedFull\":\"NA\",\"projectTeamContentFormatted\":\"cnbc europe tea|cnbc asia team\",\"projectTeamContentFormattedFull\":\"cnbc europe team|cnbc asia team\",\"relatedTagsFilteredFormatted\":\"cnbc meets|charting asia\",\"relatedTagsFilteredFormattedFull\":\"cnbc meets|charting asia\",\"sectionHierarchyFormatted\":\"international t\",\"sectionHierarchyFormattedFull\":\"international top news and analysis\",\"seoTitle\":\"International Business, World News & Global Stock Market Analysis\",\"shortDateFirstPublished\":\"05\u002F10\u002F2013\",\"shortDateLastPublished\":\"08\u002F21\u002F2024\",\"shortDatePublished\":\"9\u002F27\u002F2016\",\"shortenedUrls\":null,\"slug\":\"International: Top News and Analysis\",\"sourceOrganizationFormatted\":\"NA\",\"sourceOrganizationFormattedFull\":\"NA\",\"subDomain\":\"https:\u002F\u002Fwww.cnbc.com\",\"subType\":\"section\",\"tagName\":\"International: Top News And Analysis\",\"tagNameFormatted\":\"international t\",\"tagNameFormattedFull\":\"international top news and analysis\",\"template\":\"Home Page International\",\"title\":\"International: Top News And Analysis\",\"type\":\"franchise\",\"url\":\"https:\u002F\u002Fwww.cnbc.com\u002Fworld\u002F\",\"canonicalUrlOverride\":null,\"vcpsId\":null,\"additionalSectionContent\":[],\"author\":[],\"featuredMedia\":null,\"projectContent\":[],\"projectTeamContent\":[{\"headline\":null,\"id\":100002778,\"tagName\":\"CNBC Europe Team\",\"tagNameFormatted\":\"cnbc europe tea\",\"tagNameFormattedFull\":\"cnbc europe team\",\"__typename\":\"team\"},{\"headline\":null,\"id\":100002784,\"tagName\":\"CNBC Asia Team\",\"tagNameFormatted\":\"cnbc asia team\",\"tagNameFormattedFull\":\"cnbc asia team\",\"__typename\":\"team\"}],\"promoImage\":null,\"publisher\":{\"logo\":\"https:\u002F\u002Fsc.cnbcfm.com\u002Fapplications\u002Fcnbc.com\u002Fstaticcontent\u002Fimg\u002Fcnbc-hdr-logo2.png\",\"name\":\"CNBC\",\"__typename\":\"publisher\"},\"relatedContent\":[{\"headline\":\"U.S. News\",\"id\":15837362,\"tagName\":\"US: News\",\"tagNameFormatted\":\"us news\",\"tagNameFormattedFull\":\"us news\",\"type\":\"franchise\",\"__typename\":\"tag\"},{\"headline\":\"Asia-Pacific News\",\"id\":19832390,\"tagName\":\"Asia News\",\"tagNameFormatted\":\"asia news\",\"tagNameFormattedFull\":\"asia news\",\"type\":\"franchise\",\"__typename\":\"tag\"},{\"headline\":\"Europe News\",\"id\":19794221,\"tagName\":\"Europe News\",\"tagNameFormatted\":\"europe news\",\"tagNameFormattedFull\":\"europe news\",\"type\":\"franchise\",\"__typename\":\"tag\"}],\"relatedTags\":[{\"id\":43025367,\"name\":\"CNBC Meets\",\"tagName\":\"CNBC Meets\",\"__typename\":\"tag\"},{\"id\":23103686,\"name\":\"Charting Asia with Daryl Guppy\",\"tagName\":\"Charting Asia\",\"__typename\":\"tag\"}],\"relatedTagsFiltered\":[{\"headline\":\"CNBC Meets\",\"id\":43025367,\"name\":\"CNBC Meets\",\"tagName\":\"CNBC Meets\",\"tagNameFormatted\":\"cnbc meets\",\"tagNameFormattedFull\":\"cnbc meets\",\"type\":\"franchise\",\"__typename\":\"tag\"},{\"headline\":\"Charting Asia with Daryl Guppy\",\"id\":23103686,\"name\":\"Charting Asia with Daryl Guppy\",\"tagName\":\"Charting Asia\",\"tagNameFormatted\":\"charting asia\",\"tagNameFormattedFull\":\"charting asia\",\"type\":\"franchise\",\"__typename\":\"tag\"}],\"section\":{\"eyebrow\":\"CNBC Utilities Page\",\"headline\":\"CNBC Utilities Page\",\"id\":101050794,\"subType\":\"section\",\"tagName\":\"CNBC Utilities Page\",\"tagNameFormatted\":\"cnbc utilities \",\"tagNameFormattedFull\":\"cnbc utilities page\",\"title\":\"CNBC Utilities Page\",\"type\":\"franchise\",\"url\":\"https:\u002F\u002Fwww.cnbc.com\u002Futility-page\u002F\",\"__typename\":\"franchise\"},\"sectionHierarchy\":[{\"id\":100727362,\"order\":1,\"tagName\":\"International: Top News And Analysis\",\"tagNameFormatted\":\"international t\",\"tagNameFormattedFull\":\"international top news and analysis\",\"__typename\":\"sectionHierarchy\"}],\"sourceOrganization\":null,\"__typename\":\"page\",\"queryParams\":{}};var mpscall = {\"id\":100727362,\"slug\":\"International: Top News and Analysis\",\"type\":\"franchise\",\"title\":\"International: Top News And Analysis\",\"headline\":\"World News & Analysis\",\"pubdate\":1368196910,\"cat\":\"International: Top News And Analysis\",\"adunits\":\"Top Banner|Box Rail|Box Inline|Logo|Mid Responsive|Countdown Clock|Sponsor Logo|Native Ultra Dense|Native Three Up|Native Ticker|Box Search\",\"dateline\":1474981209,\"nid\":100727362,\"site\":\"cnbc-web\",\"content_id\":100727362,\"path\":\"\u002Fid\u002F100727362\",\"cag[template]\":\"Home Page International\",\"is_sponsored\":0,\"is_premium\":0,\"cag[source]\":\"\",\"cag[brand]\":\"cnbc\",\"cag[creator]\":\"\",\"cag[company]\":\"\",\"cag[team]\":\"CNBC Europe Team|CNBC Asia Team\",\"cag[section]\":\"International: Top News And Analysis\",\"cag[tags]\":\"CNBC Meets|Charting Asia\",\"cag[additional_sections]\":\"\",\"subtype\":\"section\",\"cag[datePublished]\":1474981209,\"cag[dateLastPublished]\":1724251429,\"cag[dateFirstPublished]\":1368196910,\"cag[creator_overwrite]\":null,\"cag[project]\":\"\"} || {};mpscall.path = mpscall.path || window.location.pathname + (window.location.search ? '?' + window.location.search : ''); var mpsopts = mpsopts || {\"host\":\"mps.cnbc.com\",\"updatecorrelator\":true,\"callback\":\"mpsCallback\"} || {};var mps=mps||{};mps._ext=mps._ext||{};mps._adsheld=[];mps._queue=mps._queue||{};mps._queue.mpsloaded=mps._queue.mpsloaded||[];mps._queue.mpsinit=mps._queue.mpsinit||[];mps._queue.gptloaded=mps._queue.gptloaded||[];mps._queue.adload=mps._queue.adload||[];mps._queue.adclone=mps._queue.adclone||[];mps._queue.adview=mps._queue.adview||[];mps._queue.refreshads=mps._queue.refreshads||[];mps.__timer=Date.now?Date.now():(function(){return+new Date})();mps.__intcode=\"v2\";if(typeof mps.getAd!=\"function\")mps.getAd=function(adunit){if(typeof adunit!=\"string\")return false;var slotid=\"mps-getad-\"+adunit.replace(\u002FW\u002Fg,\"\");if(!mps._ext||!mps._ext.loaded){mps._queue.gptloaded.push(function(){typeof mps._gptfirst==\"function\"&&mps._gptfirst(adunit,slotid);mps.insertAd(\"#\"+slotid,adunit)});mps._adsheld.push(adunit)}return'\u003Cdiv id=\"'+slotid+'\" class=\"mps-wrapper\" data-mps-fill-slot=\"'+adunit+'\"\u003E\u003C\u002Fdiv\u003E'};(function(){head=document.head||document.getElementsByTagName(\"head\")[0],mpsload=document.createElement(\"script\");mpsload.src=\"\u002F\u002F\"+mpsopts.host+\"\u002Ffetch\u002Fext\u002Fload-\"+mpscall.site+\".js?nowrite=2\";mpsload.id=\"mps-load\";head.insertBefore(mpsload,head.firstChild)})();"}].concat([{"id":"__LOADABLE_REQUIRED_CHUNKS__","dangerouslySetInnerHTML":{"__html":"[54711,39232,22143,98051,32427,12497,93855,60424,98132,23787,31018,46961,74134,84851,84502,14984,79386,15641,49181,10472,12532,33082,79815,56646,32243,5519,7486,41741,3182]"},"type":"application\u002Fjson","text":"[54711,39232,22143,98051,32427,12497,93855,60424,98132,23787,31018,46961,74134,84851,84502,14984,79386,15641,49181,10472,12532,33082,79815,56646,32243,5519,7486,41741,3182]"},{"id":"__LOADABLE_REQUIRED_CHUNKS___ext","dangerouslySetInnerHTML":{"__html":"{\"namedChunks\":[\"CNBCGlobalNav\",\"components-PcmModule-MarketsBanner\",\"components-PcmModule-Ads-TopBanner\",\"components-PcmModule-QuickLinks\",\"components-PcmModule-LegacyPlayerContainer\",\"components-PcmModule-FeaturedNewsHero\",\"components-PcmModule-LatestNews\",\"components-PcmModule-Ads-BoxInline\",\"components-PcmModule-EventSignUpHP\",\"components-PcmModule-QuoteFinder\",\"components-PcmModule-MarketMoversPlus\",\"components-PcmModule-RiverPlus\",\"components-PcmModule-Ads-BoxRail\",\"components-PcmModule-MarketsModule\",\"components-shared-Card\",\"components-PcmModule-Ads-MidResponsive\",\"components-PcmModule-VideoBreakerFeatured\",\"components-PcmModule-Breakers-FeaturedBreaker\",\"components-PcmModule-TrendingNowBreaker\",\"components-PcmModule-TwoColumnImageDense\",\"components-Column\",\"components-Footer-CNBCFooter\"]}"},"type":"application\u002Fjson","text":"{\"namedChunks\":[\"CNBCGlobalNav\",\"components-PcmModule-MarketsBanner\",\"components-PcmModule-Ads-TopBanner\",\"components-PcmModule-QuickLinks\",\"components-PcmModule-LegacyPlayerContainer\",\"components-PcmModule-FeaturedNewsHero\",\"components-PcmModule-LatestNews\",\"components-PcmModule-Ads-BoxInline\",\"components-PcmModule-EventSignUpHP\",\"components-PcmModule-QuoteFinder\",\"components-PcmModule-MarketMoversPlus\",\"components-PcmModule-RiverPlus\",\"components-PcmModule-Ads-BoxRail\",\"components-PcmModule-MarketsModule\",\"components-shared-Card\",\"components-PcmModule-Ads-MidResponsive\",\"components-PcmModule-VideoBreakerFeatured\",\"components-PcmModule-Breakers-FeaturedBreaker\",\"components-PcmModule-TrendingNowBreaker\",\"components-PcmModule-TwoColumnImageDense\",\"components-Column\",\"components-Footer-CNBCFooter\"]}"},{"async":true,"data-chunk":"main","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fmain-37c2d3419753c15b6ae9.js","text":undefined},{"async":true,"data-chunk":"CNBCGlobalNav","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002F54711-074183786c75107fe881.js","text":undefined},{"async":true,"data-chunk":"CNBCGlobalNav","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002F39232-441ed94f5c408157935b.js","text":undefined},{"async":true,"data-chunk":"CNBCGlobalNav","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002F22143-499b162db2fa51141497.js","text":undefined},{"async":true,"data-chunk":"CNBCGlobalNav","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002F98051-8ef3c8da838640dce6e1.js","text":undefined},{"async":true,"data-chunk":"CNBCGlobalNav","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002FCNBCGlobalNav-827fab83e29db698ed0a.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-MarketsBanner","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fcomponents-PcmModule-MarketsBanner-64183bfc5529c43fa4c8.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-Ads-TopBanner","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fcomponents-PcmModule-Ads-TopBanner-eff93b6c9936548d80d1.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-QuickLinks","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fcomponents-PcmModule-QuickLinks-ff3da69fb210a129df52.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-LegacyPlayerContainer","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fcomponents-PcmModule-LegacyPlayerContainer-914b66d44239746adc27.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-FeaturedNewsHero","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fcomponents-PcmModule-FeaturedNewsHero-c68b83c1fddbce9cd6fd.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-EventSignUpHP","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fcomponents-PcmModule-EventSignUpHP-26c8bc94a98bb7237c8e.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-QuoteFinder","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fcomponents-PcmModule-QuoteFinder-bb2a43cdd62e8d965c75.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-MarketMoversPlus","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fcomponents-PcmModule-MarketMoversPlus-0aa6c9ed1d93c1d044c3.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-RiverPlus","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fcomponents-PcmModule-RiverPlus-e330835f29746f5abaee.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-Ads-BoxRail","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fcomponents-PcmModule-Ads-BoxRail-e5bc2aa430bec08bd929.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-MarketsModule","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002F14984-6687886021e23649eab2.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-MarketsModule","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fcomponents-PcmModule-MarketsModule-82b78d3fc88b74ac3934.js","text":undefined},{"async":true,"data-chunk":"components-shared-Card","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002F15641-3efad4eb048bac43c4ea.js","text":undefined},{"async":true,"data-chunk":"components-shared-Card","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002F49181-590c1330b8b3c38c85a1.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-Ads-MidResponsive","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fcomponents-PcmModule-Ads-MidResponsive-8a544ff9931197ae617d.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-VideoBreakerFeatured","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002F12532-2f3f00a9d7512f1ebaea.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-VideoBreakerFeatured","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002F33082-851f19e555aa4c73f6e0.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-VideoBreakerFeatured","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002F79815-445debc26f6c92804c3b.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-VideoBreakerFeatured","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fcomponents-Column-f6a8929d74962773bbe4.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-VideoBreakerFeatured","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fcomponents-PcmModule-VideoBreakerFeatured-d7bbaa06c377fd9414bd.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-Breakers-FeaturedBreaker","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fcomponents-PcmModule-Breakers-FeaturedBreaker-426e0a4fb8ecada475c4.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-TrendingNowBreaker","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fcomponents-PcmModule-TrendingNowBreaker-e3d403c139abcd7be687.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-TwoColumnImageDense","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fcomponents-PcmModule-TwoColumnImageDense-692740462083e87ec1ed.js","text":undefined},{"async":true,"data-chunk":"components-Footer-CNBCFooter","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fcomponents-Footer-CNBCFooter-996fa06f332dfd1f8ce8.js","text":undefined}]);

            if (window.addEventListener) window.addEventListener('load', loadScripts, false);
            else if (window.attachEvent) window.attachEvent('onload', loadScripts);

            function loadScripts() {
              (onLoadScripts || []).map(function(onLoadScript) {
                var script = document.createElement('script');

                Object.keys(onLoadScript).map(function(key) {
                  const value = onLoadScript[key];
                  if (key.includes('data-')) script.setAttribute(key, value);
                  else script[key] = value;
                });

                document.body.appendChild(script);
              });
            }
          </script><script src="https://zephr-templates.cnbc.com/integration.js" type="text/javascript"></script><link href="https://zephr-templates.cnbc.com/integration.css" rel="stylesheet" type="text/css"/><div id="zephr-outcome"></div></body></html>
In [116]:
headings = soup.find('div', class_="LatestNews-headlineWrapper")
headings
Out[116]:
<div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">21 Min Ago</time></span><a class="ProPill-proPillLink" data-type="pro-button" href="/pro/"><svg alt="CNBC Pro" class="LatestNews-proPill ProPill-proPill" height="16" viewbox="0 0 43 22"><rect fill="#047E2E" height="100%" width="100%"></rect><path d="M9.08 15V6.6H12.392C14.36 6.6 15.584 7.716 15.584 9.408V9.432C15.584 11.316 14.072 12.3 12.224 12.3H10.556V15H9.08ZM10.556 10.968H12.272C13.388 10.968 14.084 10.344 14.084 9.468V9.444C14.084 8.46 13.376 7.944 12.272 7.944H10.556V10.968ZM17.0956 15V6.6H20.8396C21.8956 6.6 22.7236 6.912 23.2636 7.44C23.7076 7.896 23.9596 8.52 23.9596 9.252V9.276C23.9596 10.656 23.1316 11.484 21.9676 11.82L24.2356 15H22.4836L20.4196 12.072H18.5716V15H17.0956ZM18.5716 10.764H20.7316C21.7876 10.764 22.4596 10.212 22.4596 9.36V9.336C22.4596 8.436 21.8116 7.944 20.7196 7.944H18.5716V10.764ZM29.7755 15.144C27.1955 15.144 25.3955 13.188 25.3955 10.824V10.8C25.3955 8.436 27.2195 6.456 29.7995 6.456C32.3795 6.456 34.1795 8.412 34.1795 10.776V10.8C34.1795 13.164 32.3555 15.144 29.7755 15.144ZM29.7995 13.776C31.4675 13.776 32.6315 12.456 32.6315 10.824V10.8C32.6315 9.168 31.4435 7.812 29.7755 7.812C28.1075 7.812 26.9435 9.144 26.9435 10.776V10.8C26.9435 12.432 28.1315 13.776 29.7995 13.776Z" fill="white"></path></svg></a><a class="LatestNews-headline" href="https://www.cnbc.com/2024/08/21/this-payments-stock-has-broken-out-of-a-2-year-sideways-pattern-using-options-to-play-it.html" title="This stock has broken out of a 2-year sideways pattern. Using options to play it">This stock has broken out of a 2-year sideways pattern. Using options to play it</a></div>
In [118]:
headings.text
Out[118]:
'21 Min AgoThis stock has broken out of a 2-year sideways pattern. Using options to play it'
In [121]:
date = soup.find('span', class_="RiverByline-datePublished")
date
Out[121]:
<span class="RiverByline-datePublished">6 hours ago</span>
In [122]:
date.text
Out[122]:
'6 hours ago'
In [125]:
news_link = soup.find('div', class_="Card-titleContainer")
news_link
Out[125]:
<div class="Card-titleContainer"><div><a class="Card-title" href="https://www.cnbc.com/2024/08/21/us-treasurys-ahead-of-fed-meeting-minutes-release.html" target="">10-year Treasury yield holds steady ahead of Fed meeting minutes release</a></div></div>
In [126]:
news_link.text
Out[126]:
'10-year Treasury yield holds steady ahead of Fed meeting minutes release'
In [127]:
headings = []

for i in soup.find_all('div', class_="LatestNews-headlineWrapper"):
        headings.append(i.text)
        
headings
Out[127]:
['21 Min AgoThis stock has broken out of a 2-year sideways pattern. Using options to play it',
 '22 Min AgoNonfarm payroll growth revised down by 818,000, Labor Department says',
 '57 Min AgoLNG is booming as Asia looks for coal substitutes — these stocks could surge ',
 '1 Hour AgoThe explosion of online sports betting is taking a toll on how people invest',
 '2 Hours Ago2 in 3 college seniors are stressed about the tight job market',
 "2 Hours Ago44-year-old’s garage side hustle brings in $148K/year: 'Almost anyone can do it'",
 '2 Hours AgoMap: See how far $1,000 goes in every state',
 '2 Hours AgoWall Street tries to keep momentum with Fed minutes looming',
 "2 Hours AgoJim Cramer's top 10 things to watch in the stock market Wednesday",
 '2 Hours AgoHow much money it takes to be considered wealthy in 12 major U.S. cities',
 '2 Hours AgoAs strength training gets more popular, Peloton and Planet Fitness shift focus ',
 '3 Hours AgoWhy the latest mpox outbreak is raising alarm among health experts',
 "3 Hours AgoTarget CEO addresses 'price gouging' accusations in retail",
 "3 Hours AgoStocks making the biggest moves premarket: Target, JD.com, Macy's and more",
 "3 Hours AgoWednesday's top analyst calls: Nvidia, Apple, Netflix, Sunrun, Amazon",
 '3 Hours AgoFord delays new EV plant, cancels electric three-row SUV ',
 '3 Hours AgoStartup using blockchain to prevent AI copyright theft valued over $2 billion',
 '3 Hours AgoTJX Companies raises full-year guidance, posts 5.6% sales gain',
 '3 Hours Ago5 things to know before the stock market opens Wednesday',
 "3 Hours AgoSwiftflation unlikely to impact the Bank of England's rate policy, analyst says",
 '4 Hours AgoStocks to buy when the Fed starts cutting interest rates, according to Jefferies',
 '4 Hours AgoMacy’s cuts sales forecast as department stores struggle to draw shoppers',
 "4 Hours AgoAfter mini-boom, weekly mortgage refinance demand falls back 15%. Here's why.",
 '4 Hours AgoStrategist expects the U.S. dollar to drift much lower against the Japanese yen',
 '5 Hours AgoChina calls EU tariffs on EVs unfair, says it take measures to defend industry',
 '5 Hours AgoHow a weaker dollar can help on the U.S. economy',
 '5 Hours AgoSesame to offer compounded versions of Wegovy through $249 weight loss program',
 '5 Hours AgoAnalyst calls: Texas Instruments upgraded, buy the dip on smartphone glass stock',
 '6 Hours Ago10-year Treasury yield holds steady ahead of Fed meeting minutes release',
 '6 Hours AgoTwo bodies found in Sicily yacht wreckage as search for missing passengers continues']
In [128]:
date = []

for i in soup.find_all('div', class_="Card-titleContainer"):
        date.append(i.text)
        
date
Out[128]:
['10-year Treasury yield holds steady ahead of Fed meeting minutes release',
 'S&P 500 ticks higher as Wall Street awaits Fed minutes: Live updates',
 'Stocks making the biggest moves after hours: Toll Brothers, Microchip Technology and more',
 "'Get Britain building again': New UK finance chief restores housing targets",
 "Britain's Labour pulled off a thumping election victory with just 34% of the national vote",
 "UK's Labour Party secures landslide victory in general election",
 'Labour does not have much headroom in terms of fiscal changes, economist says',
 'Outgoing UK PM Rishi Sunak to step down as Conservative Party leader',
 'This startup will sell methane-eating microbes to Whole Foods',
 'Air New Zealand becomes first major airline to scrap its 2030 climate goal',
 'World shatters heat record for the second time in just two days',
 'World logs hottest day since records began, researchers say',
 'Scientists discover ‘dark oxygen’ in depths of Pacific Ocean in landmark study',
 "'The World' is a luxury ship that travels the world full time — here's how much an apartment on it costs",
 "'Travel is too expensive right now': Americans spend less or skip trips altogether  ",
 'How the ultra wealthy travel in Singapore',
 "Planning a luxury trip to Singapore? Here's where to stay, shop and eat",
 'A $1.4 million vacation? Look inside a yacht that costs that much per week',
 '2 in 3 college seniors are stressed about the tight job market—how to stand out, says career counselor who’s...',
 "44-year-old’s garage side hustle brings in $148K/year: 'Almost anyone can do it'",
 'Map: See how far $1,000 goes in every state',
 'How much money it takes to be considered wealthy in 12 major U.S. cities',
 'How to be happier, wealthier, and more financially secure by achieving financial wellness',
 'What are the economics of war?',
 'What is the internet of bodies?',
 'How the world got into $315 trillion of debt',
 'eVTOLS: Are flying cars finally becoming reality?',
 "How China's property bubble burst"]
In [129]:
news_link = []

for i in soup.find_all('div', class_="Card-titleContainer"):
        news_link.append(i.text)
        
news_link
Out[129]:
['10-year Treasury yield holds steady ahead of Fed meeting minutes release',
 'S&P 500 ticks higher as Wall Street awaits Fed minutes: Live updates',
 'Stocks making the biggest moves after hours: Toll Brothers, Microchip Technology and more',
 "'Get Britain building again': New UK finance chief restores housing targets",
 "Britain's Labour pulled off a thumping election victory with just 34% of the national vote",
 "UK's Labour Party secures landslide victory in general election",
 'Labour does not have much headroom in terms of fiscal changes, economist says',
 'Outgoing UK PM Rishi Sunak to step down as Conservative Party leader',
 'This startup will sell methane-eating microbes to Whole Foods',
 'Air New Zealand becomes first major airline to scrap its 2030 climate goal',
 'World shatters heat record for the second time in just two days',
 'World logs hottest day since records began, researchers say',
 'Scientists discover ‘dark oxygen’ in depths of Pacific Ocean in landmark study',
 "'The World' is a luxury ship that travels the world full time — here's how much an apartment on it costs",
 "'Travel is too expensive right now': Americans spend less or skip trips altogether  ",
 'How the ultra wealthy travel in Singapore',
 "Planning a luxury trip to Singapore? Here's where to stay, shop and eat",
 'A $1.4 million vacation? Look inside a yacht that costs that much per week',
 '2 in 3 college seniors are stressed about the tight job market—how to stand out, says career counselor who’s...',
 "44-year-old’s garage side hustle brings in $148K/year: 'Almost anyone can do it'",
 'Map: See how far $1,000 goes in every state',
 'How much money it takes to be considered wealthy in 12 major U.S. cities',
 'How to be happier, wealthier, and more financially secure by achieving financial wellness',
 'What are the economics of war?',
 'What is the internet of bodies?',
 'How the world got into $315 trillion of debt',
 'eVTOLS: Are flying cars finally becoming reality?',
 "How China's property bubble burst"]

(6) Please visit https://www.keaipublishing.com/en/journals/artificial-intelligence-in-agriculture/most-downloadedarticles/ and scrapa) Paper title b) date c) Author

In [130]:
page = requests.get('https://www.keaipublishing.com/en/journals/artificial-intelligence-in-agriculture/most-downloadedarticles/')
In [131]:
page
Out[131]:
<Response [400]>
In [132]:
soup = BeautifulSoup(page.content)
soup
Out[132]:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html><head><title>Bad Request</title>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type"/></head>
<body><h2>Bad Request - Invalid URL</h2>
<hr/><p>HTTP Error 400. The request URL is invalid.</p>
</body></html>
In [135]:
Paper_title  = soup.find('div', class_="h5 article-title")
Paper_title
In [136]:
date  = soup.find('div', class_="h5 article-title")
date
In [137]:
author  = soup.find('div', class_="article-authors")
author
In [ ]: